blob: dde17c65bccd429b475b46f78a49f425dd51609d [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"
14
15static void cleanup_cmdnode(struct cmd_ctrl_node *ptempnode);
16
17static u16 commands_allowed_in_ps[] = {
Dan Williams0aef64d2007-08-02 11:31:18 -040018 CMD_802_11_RSSI,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020019};
20
21/**
22 * @brief This function checks if the commans is allowed
23 * in PS mode not.
24 *
25 * @param command the command ID
26 * @return TRUE or FALSE
27 */
David Woodhouse981f1872007-05-25 23:36:54 -040028static u8 is_command_allowed_in_ps(__le16 command)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020029{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020030 int i;
31
David Woodhouse981f1872007-05-25 23:36:54 -040032 for (i = 0; i < ARRAY_SIZE(commands_allowed_in_ps); i++) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020033 if (command == cpu_to_le16(commands_allowed_in_ps[i]))
34 return 1;
35 }
36
37 return 0;
38}
39
Holger Schurig69f90322007-11-23 15:43:44 +010040static int lbs_cmd_hw_spec(struct lbs_private *priv, struct cmd_ds_command *cmd)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020041{
42 struct cmd_ds_get_hw_spec *hwspec = &cmd->params.hwspec;
43
Holger Schurig9012b282007-05-25 11:27:16 -040044 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020045
Dan Williams0aef64d2007-08-02 11:31:18 -040046 cmd->command = cpu_to_le16(CMD_GET_HW_SPEC);
David Woodhouse981f1872007-05-25 23:36:54 -040047 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_get_hw_spec) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020048 memcpy(hwspec->permanentaddr, priv->adapter->current_addr, ETH_ALEN);
49
Holger Schurig9012b282007-05-25 11:27:16 -040050 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020051 return 0;
52}
53
Holger Schurig69f90322007-11-23 15:43:44 +010054static int lbs_cmd_802_11_ps_mode(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020055 struct cmd_ds_command *cmd,
56 u16 cmd_action)
57{
58 struct cmd_ds_802_11_ps_mode *psm = &cmd->params.psmode;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020059
Holger Schurig9012b282007-05-25 11:27:16 -040060 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020061
Dan Williams0aef64d2007-08-02 11:31:18 -040062 cmd->command = cpu_to_le16(CMD_802_11_PS_MODE);
David Woodhouse981f1872007-05-25 23:36:54 -040063 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_ps_mode) +
64 S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020065 psm->action = cpu_to_le16(cmd_action);
66 psm->multipledtim = 0;
David Woodhouse981f1872007-05-25 23:36:54 -040067 switch (cmd_action) {
Dan Williams0aef64d2007-08-02 11:31:18 -040068 case CMD_SUBCMD_ENTER_PS:
Holger Schurig9012b282007-05-25 11:27:16 -040069 lbs_deb_cmd("PS command:" "SubCode- Enter PS\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020070
Holger Schurig252cf0d2007-08-02 13:09:34 -040071 psm->locallisteninterval = 0;
Holger Schurig97605c32007-08-02 13:09:15 -040072 psm->nullpktinterval = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020073 psm->multipledtim =
Holger Schurig56c46562007-08-02 13:09:49 -040074 cpu_to_le16(MRVDRV_DEFAULT_MULTIPLE_DTIM);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020075 break;
76
Dan Williams0aef64d2007-08-02 11:31:18 -040077 case CMD_SUBCMD_EXIT_PS:
Holger Schurig9012b282007-05-25 11:27:16 -040078 lbs_deb_cmd("PS command:" "SubCode- Exit PS\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020079 break;
80
Dan Williams0aef64d2007-08-02 11:31:18 -040081 case CMD_SUBCMD_SLEEP_CONFIRMED:
Holger Schurig9012b282007-05-25 11:27:16 -040082 lbs_deb_cmd("PS command: SubCode- sleep confirm\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020083 break;
84
85 default:
86 break;
87 }
88
Holger Schurig9012b282007-05-25 11:27:16 -040089 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020090 return 0;
91}
92
Holger Schurig69f90322007-11-23 15:43:44 +010093static int lbs_cmd_802_11_inactivity_timeout(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020094 struct cmd_ds_command *cmd,
95 u16 cmd_action, void *pdata_buf)
96{
97 u16 *timeout = pdata_buf;
98
Holger Schurig8ff12da2007-08-02 11:54:31 -040099 lbs_deb_enter(LBS_DEB_CMD);
100
Dan Williams0aef64d2007-08-02 11:31:18 -0400101 cmd->command = cpu_to_le16(CMD_802_11_INACTIVITY_TIMEOUT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200102 cmd->size =
103 cpu_to_le16(sizeof(struct cmd_ds_802_11_inactivity_timeout)
104 + S_DS_GEN);
105
106 cmd->params.inactivity_timeout.action = cpu_to_le16(cmd_action);
107
108 if (cmd_action)
David Woodhouse981f1872007-05-25 23:36:54 -0400109 cmd->params.inactivity_timeout.timeout = cpu_to_le16(*timeout);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200110 else
111 cmd->params.inactivity_timeout.timeout = 0;
112
Holger Schurig8ff12da2007-08-02 11:54:31 -0400113 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200114 return 0;
115}
116
Holger Schurig69f90322007-11-23 15:43:44 +0100117static int lbs_cmd_802_11_sleep_params(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200118 struct cmd_ds_command *cmd,
119 u16 cmd_action)
120{
Holger Schurig69f90322007-11-23 15:43:44 +0100121 struct lbs_adapter *adapter = priv->adapter;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200122 struct cmd_ds_802_11_sleep_params *sp = &cmd->params.sleep_params;
123
Holger Schurig9012b282007-05-25 11:27:16 -0400124 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200125
David Woodhouse981f1872007-05-25 23:36:54 -0400126 cmd->size = cpu_to_le16((sizeof(struct cmd_ds_802_11_sleep_params)) +
127 S_DS_GEN);
Dan Williams0aef64d2007-08-02 11:31:18 -0400128 cmd->command = cpu_to_le16(CMD_802_11_SLEEP_PARAMS);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200129
Dan Williams0aef64d2007-08-02 11:31:18 -0400130 if (cmd_action == CMD_ACT_GET) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200131 memset(&adapter->sp, 0, sizeof(struct sleep_params));
132 memset(sp, 0, sizeof(struct cmd_ds_802_11_sleep_params));
133 sp->action = cpu_to_le16(cmd_action);
Dan Williams0aef64d2007-08-02 11:31:18 -0400134 } else if (cmd_action == CMD_ACT_SET) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200135 sp->action = cpu_to_le16(cmd_action);
136 sp->error = cpu_to_le16(adapter->sp.sp_error);
137 sp->offset = cpu_to_le16(adapter->sp.sp_offset);
138 sp->stabletime = cpu_to_le16(adapter->sp.sp_stabletime);
139 sp->calcontrol = (u8) adapter->sp.sp_calcontrol;
140 sp->externalsleepclk = (u8) adapter->sp.sp_extsleepclk;
141 sp->reserved = cpu_to_le16(adapter->sp.sp_reserved);
142 }
143
Holger Schurig9012b282007-05-25 11:27:16 -0400144 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200145 return 0;
146}
147
Holger Schurig69f90322007-11-23 15:43:44 +0100148static int lbs_cmd_802_11_set_wep(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200149 struct cmd_ds_command *cmd,
150 u32 cmd_act,
151 void * pdata_buf)
152{
153 struct cmd_ds_802_11_set_wep *wep = &cmd->params.wep;
Holger Schurig69f90322007-11-23 15:43:44 +0100154 struct lbs_adapter *adapter = priv->adapter;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200155 int ret = 0;
156 struct assoc_request * assoc_req = pdata_buf;
157
Holger Schurig9012b282007-05-25 11:27:16 -0400158 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200159
Dan Williams0aef64d2007-08-02 11:31:18 -0400160 cmd->command = cpu_to_le16(CMD_802_11_SET_WEP);
David Woodhouse981f1872007-05-25 23:36:54 -0400161 cmd->size = cpu_to_le16(sizeof(*wep) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200162
Dan Williams0aef64d2007-08-02 11:31:18 -0400163 if (cmd_act == CMD_ACT_ADD) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200164 int i;
165
166 if (!assoc_req) {
Holger Schurig9012b282007-05-25 11:27:16 -0400167 lbs_deb_cmd("Invalid association request!");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200168 ret = -1;
169 goto done;
170 }
171
Dan Williams0aef64d2007-08-02 11:31:18 -0400172 wep->action = cpu_to_le16(CMD_ACT_ADD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200173
174 /* default tx key index */
David Woodhouse981f1872007-05-25 23:36:54 -0400175 wep->keyindex = cpu_to_le16((u16)(assoc_req->wep_tx_keyidx &
Dan Williams0aef64d2007-08-02 11:31:18 -0400176 (u32)CMD_WEP_KEY_INDEX_MASK));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200177
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200178 /* Copy key types and material to host command structure */
179 for (i = 0; i < 4; i++) {
Dan Williams1443b652007-08-02 10:45:55 -0400180 struct enc_key * pkey = &assoc_req->wep_keys[i];
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200181
182 switch (pkey->len) {
183 case KEY_LEN_WEP_40:
Holger Schurig6470a892007-10-08 11:07:27 +0200184 wep->keytype[i] = CMD_TYPE_WEP_40_BIT;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200185 memmove(&wep->keymaterial[i], pkey->key,
186 pkey->len);
Holger Schurig8ff12da2007-08-02 11:54:31 -0400187 lbs_deb_cmd("SET_WEP: add key %d (40 bit)\n", i);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200188 break;
189 case KEY_LEN_WEP_104:
Holger Schurig6470a892007-10-08 11:07:27 +0200190 wep->keytype[i] = CMD_TYPE_WEP_104_BIT;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200191 memmove(&wep->keymaterial[i], pkey->key,
192 pkey->len);
Holger Schurig8ff12da2007-08-02 11:54:31 -0400193 lbs_deb_cmd("SET_WEP: add key %d (104 bit)\n", i);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200194 break;
195 case 0:
196 break;
197 default:
Holger Schurig8ff12da2007-08-02 11:54:31 -0400198 lbs_deb_cmd("SET_WEP: invalid key %d, length %d\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200199 i, pkey->len);
200 ret = -1;
201 goto done;
202 break;
203 }
204 }
Dan Williams0aef64d2007-08-02 11:31:18 -0400205 } else if (cmd_act == CMD_ACT_REMOVE) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200206 /* ACT_REMOVE clears _all_ WEP keys */
Dan Williams0aef64d2007-08-02 11:31:18 -0400207 wep->action = cpu_to_le16(CMD_ACT_REMOVE);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200208
209 /* default tx key index */
David Woodhouse981f1872007-05-25 23:36:54 -0400210 wep->keyindex = cpu_to_le16((u16)(adapter->wep_tx_keyidx &
Dan Williams0aef64d2007-08-02 11:31:18 -0400211 (u32)CMD_WEP_KEY_INDEX_MASK));
Holger Schurig8ff12da2007-08-02 11:54:31 -0400212 lbs_deb_cmd("SET_WEP: remove key %d\n", adapter->wep_tx_keyidx);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200213 }
214
215 ret = 0;
216
217done:
Holger Schurig9012b282007-05-25 11:27:16 -0400218 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200219 return ret;
220}
221
Holger Schurig69f90322007-11-23 15:43:44 +0100222static int lbs_cmd_802_11_enable_rsn(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200223 struct cmd_ds_command *cmd,
Dan Williams90a42212007-05-25 23:01:24 -0400224 u16 cmd_action,
225 void * pdata_buf)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200226{
227 struct cmd_ds_802_11_enable_rsn *penableRSN = &cmd->params.enbrsn;
Dan Williams18c96c342007-06-18 12:01:12 -0400228 u32 * enable = pdata_buf;
Dan Williams90a42212007-05-25 23:01:24 -0400229
230 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200231
Dan Williams0aef64d2007-08-02 11:31:18 -0400232 cmd->command = cpu_to_le16(CMD_802_11_ENABLE_RSN);
David Woodhouse981f1872007-05-25 23:36:54 -0400233 cmd->size = cpu_to_le16(sizeof(*penableRSN) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200234 penableRSN->action = cpu_to_le16(cmd_action);
Dan Williams18c96c342007-06-18 12:01:12 -0400235
Dan Williams0aef64d2007-08-02 11:31:18 -0400236 if (cmd_action == CMD_ACT_SET) {
Dan Williams18c96c342007-06-18 12:01:12 -0400237 if (*enable)
Dan Williams0aef64d2007-08-02 11:31:18 -0400238 penableRSN->enable = cpu_to_le16(CMD_ENABLE_RSN);
Dan Williams18c96c342007-06-18 12:01:12 -0400239 else
Dan Williams0aef64d2007-08-02 11:31:18 -0400240 penableRSN->enable = cpu_to_le16(CMD_DISABLE_RSN);
Holger Schurig8ff12da2007-08-02 11:54:31 -0400241 lbs_deb_cmd("ENABLE_RSN: %d\n", *enable);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200242 }
243
Dan Williams90a42212007-05-25 23:01:24 -0400244 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200245 return 0;
246}
247
248
249static void set_one_wpa_key(struct MrvlIEtype_keyParamSet * pkeyparamset,
Dan Williams1443b652007-08-02 10:45:55 -0400250 struct enc_key * pkey)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200251{
Holger Schurig8ff12da2007-08-02 11:54:31 -0400252 lbs_deb_enter(LBS_DEB_CMD);
253
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200254 if (pkey->flags & KEY_INFO_WPA_ENABLED) {
Dan Williams90a42212007-05-25 23:01:24 -0400255 pkeyparamset->keyinfo |= cpu_to_le16(KEY_INFO_WPA_ENABLED);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200256 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200257 if (pkey->flags & KEY_INFO_WPA_UNICAST) {
258 pkeyparamset->keyinfo |= cpu_to_le16(KEY_INFO_WPA_UNICAST);
Dan Williams90a42212007-05-25 23:01:24 -0400259 }
260 if (pkey->flags & KEY_INFO_WPA_MCAST) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200261 pkeyparamset->keyinfo |= cpu_to_le16(KEY_INFO_WPA_MCAST);
262 }
263
264 pkeyparamset->type = cpu_to_le16(TLV_TYPE_KEY_MATERIAL);
Dan Williams1443b652007-08-02 10:45:55 -0400265 pkeyparamset->keytypeid = cpu_to_le16(pkey->type);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200266 pkeyparamset->keylen = cpu_to_le16(pkey->len);
267 memcpy(pkeyparamset->key, pkey->key, pkey->len);
268 pkeyparamset->length = cpu_to_le16( sizeof(pkeyparamset->keytypeid)
269 + sizeof(pkeyparamset->keyinfo)
270 + sizeof(pkeyparamset->keylen)
271 + sizeof(pkeyparamset->key));
Holger Schurig8ff12da2007-08-02 11:54:31 -0400272 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200273}
274
Holger Schurig69f90322007-11-23 15:43:44 +0100275static int lbs_cmd_802_11_key_material(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200276 struct cmd_ds_command *cmd,
277 u16 cmd_action,
278 u32 cmd_oid, void *pdata_buf)
279{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200280 struct cmd_ds_802_11_key_material *pkeymaterial =
281 &cmd->params.keymaterial;
Dan Williams90a42212007-05-25 23:01:24 -0400282 struct assoc_request * assoc_req = pdata_buf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200283 int ret = 0;
284 int index = 0;
285
Holger Schurig9012b282007-05-25 11:27:16 -0400286 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200287
Dan Williams0aef64d2007-08-02 11:31:18 -0400288 cmd->command = cpu_to_le16(CMD_802_11_KEY_MATERIAL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200289 pkeymaterial->action = cpu_to_le16(cmd_action);
290
Dan Williams0aef64d2007-08-02 11:31:18 -0400291 if (cmd_action == CMD_ACT_GET) {
Dan Williams90a42212007-05-25 23:01:24 -0400292 cmd->size = cpu_to_le16(S_DS_GEN + sizeof (pkeymaterial->action));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200293 ret = 0;
294 goto done;
295 }
296
297 memset(&pkeymaterial->keyParamSet, 0, sizeof(pkeymaterial->keyParamSet));
298
Dan Williams90a42212007-05-25 23:01:24 -0400299 if (test_bit(ASSOC_FLAG_WPA_UCAST_KEY, &assoc_req->flags)) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200300 set_one_wpa_key(&pkeymaterial->keyParamSet[index],
Dan Williams90a42212007-05-25 23:01:24 -0400301 &assoc_req->wpa_unicast_key);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200302 index++;
303 }
304
Dan Williams90a42212007-05-25 23:01:24 -0400305 if (test_bit(ASSOC_FLAG_WPA_MCAST_KEY, &assoc_req->flags)) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200306 set_one_wpa_key(&pkeymaterial->keyParamSet[index],
Dan Williams90a42212007-05-25 23:01:24 -0400307 &assoc_req->wpa_mcast_key);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200308 index++;
309 }
310
311 cmd->size = cpu_to_le16( S_DS_GEN
Dan Williams90a42212007-05-25 23:01:24 -0400312 + sizeof (pkeymaterial->action)
313 + (index * sizeof(struct MrvlIEtype_keyParamSet)));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200314
315 ret = 0;
316
317done:
Holger Schurig9012b282007-05-25 11:27:16 -0400318 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200319 return ret;
320}
321
Holger Schurig69f90322007-11-23 15:43:44 +0100322static int lbs_cmd_802_11_reset(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200323 struct cmd_ds_command *cmd, int cmd_action)
324{
325 struct cmd_ds_802_11_reset *reset = &cmd->params.reset;
326
Holger Schurig8ff12da2007-08-02 11:54:31 -0400327 lbs_deb_enter(LBS_DEB_CMD);
328
Dan Williams0aef64d2007-08-02 11:31:18 -0400329 cmd->command = cpu_to_le16(CMD_802_11_RESET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200330 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_reset) + S_DS_GEN);
331 reset->action = cpu_to_le16(cmd_action);
332
Holger Schurig8ff12da2007-08-02 11:54:31 -0400333 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200334 return 0;
335}
336
Holger Schurig69f90322007-11-23 15:43:44 +0100337static int lbs_cmd_802_11_get_log(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200338 struct cmd_ds_command *cmd)
339{
Holger Schurig8ff12da2007-08-02 11:54:31 -0400340 lbs_deb_enter(LBS_DEB_CMD);
Dan Williams0aef64d2007-08-02 11:31:18 -0400341 cmd->command = cpu_to_le16(CMD_802_11_GET_LOG);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200342 cmd->size =
343 cpu_to_le16(sizeof(struct cmd_ds_802_11_get_log) + S_DS_GEN);
344
Holger Schurig8ff12da2007-08-02 11:54:31 -0400345 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200346 return 0;
347}
348
Holger Schurig69f90322007-11-23 15:43:44 +0100349static int lbs_cmd_802_11_get_stat(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200350 struct cmd_ds_command *cmd)
351{
Holger Schurig8ff12da2007-08-02 11:54:31 -0400352 lbs_deb_enter(LBS_DEB_CMD);
Dan Williams0aef64d2007-08-02 11:31:18 -0400353 cmd->command = cpu_to_le16(CMD_802_11_GET_STAT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200354 cmd->size =
David Woodhouse981f1872007-05-25 23:36:54 -0400355 cpu_to_le16(sizeof(struct cmd_ds_802_11_get_stat) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200356
Holger Schurig8ff12da2007-08-02 11:54:31 -0400357 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200358 return 0;
359}
360
Holger Schurig69f90322007-11-23 15:43:44 +0100361static int lbs_cmd_802_11_snmp_mib(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200362 struct cmd_ds_command *cmd,
363 int cmd_action,
364 int cmd_oid, void *pdata_buf)
365{
366 struct cmd_ds_802_11_snmp_mib *pSNMPMIB = &cmd->params.smib;
Holger Schurig69f90322007-11-23 15:43:44 +0100367 struct lbs_adapter *adapter = priv->adapter;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200368 u8 ucTemp;
369
Holger Schurig9012b282007-05-25 11:27:16 -0400370 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200371
Holger Schurig9012b282007-05-25 11:27:16 -0400372 lbs_deb_cmd("SNMP_CMD: cmd_oid = 0x%x\n", cmd_oid);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200373
Dan Williams0aef64d2007-08-02 11:31:18 -0400374 cmd->command = cpu_to_le16(CMD_802_11_SNMP_MIB);
David Woodhouse981f1872007-05-25 23:36:54 -0400375 cmd->size = cpu_to_le16(sizeof(*pSNMPMIB) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200376
377 switch (cmd_oid) {
378 case OID_802_11_INFRASTRUCTURE_MODE:
379 {
Dan Williams0dc5a292007-05-10 22:58:02 -0400380 u8 mode = (u8) (size_t) pdata_buf;
Dan Williams0aef64d2007-08-02 11:31:18 -0400381 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_SET);
382 pSNMPMIB->oid = cpu_to_le16((u16) DESIRED_BSSTYPE_I);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200383 pSNMPMIB->bufsize = sizeof(u8);
Dan Williams0dc5a292007-05-10 22:58:02 -0400384 if (mode == IW_MODE_ADHOC) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200385 ucTemp = SNMP_MIB_VALUE_ADHOC;
Dan Williams0dc5a292007-05-10 22:58:02 -0400386 } else {
387 /* Infra and Auto modes */
388 ucTemp = SNMP_MIB_VALUE_INFRA;
389 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200390
391 memmove(pSNMPMIB->value, &ucTemp, sizeof(u8));
392
393 break;
394 }
395
396 case OID_802_11D_ENABLE:
397 {
398 u32 ulTemp;
399
Dan Williams0aef64d2007-08-02 11:31:18 -0400400 pSNMPMIB->oid = cpu_to_le16((u16) DOT11D_I);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200401
Dan Williams0aef64d2007-08-02 11:31:18 -0400402 if (cmd_action == CMD_ACT_SET) {
403 pSNMPMIB->querytype = CMD_ACT_SET;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200404 pSNMPMIB->bufsize = sizeof(u16);
405 ulTemp = *(u32 *)pdata_buf;
David Woodhouse981f1872007-05-25 23:36:54 -0400406 *((__le16 *)(pSNMPMIB->value)) =
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200407 cpu_to_le16((u16) ulTemp);
408 }
409 break;
410 }
411
412 case OID_802_11_FRAGMENTATION_THRESHOLD:
413 {
414 u32 ulTemp;
415
Dan Williams0aef64d2007-08-02 11:31:18 -0400416 pSNMPMIB->oid = cpu_to_le16((u16) FRAGTHRESH_I);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200417
Dan Williams0aef64d2007-08-02 11:31:18 -0400418 if (cmd_action == CMD_ACT_GET) {
419 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_GET);
420 } else if (cmd_action == CMD_ACT_SET) {
421 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_SET);
David Woodhouse981f1872007-05-25 23:36:54 -0400422 pSNMPMIB->bufsize = cpu_to_le16(sizeof(u16));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200423 ulTemp = *((u32 *) pdata_buf);
David Woodhouse981f1872007-05-25 23:36:54 -0400424 *((__le16 *)(pSNMPMIB->value)) =
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200425 cpu_to_le16((u16) ulTemp);
426
427 }
428
429 break;
430 }
431
432 case OID_802_11_RTS_THRESHOLD:
433 {
434
435 u32 ulTemp;
Dan Williams0aef64d2007-08-02 11:31:18 -0400436 pSNMPMIB->oid = le16_to_cpu((u16) RTSTHRESH_I);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200437
Dan Williams0aef64d2007-08-02 11:31:18 -0400438 if (cmd_action == CMD_ACT_GET) {
439 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_GET);
440 } else if (cmd_action == CMD_ACT_SET) {
441 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_SET);
David Woodhouse981f1872007-05-25 23:36:54 -0400442 pSNMPMIB->bufsize = cpu_to_le16(sizeof(u16));
443 ulTemp = *((u32 *)pdata_buf);
444 *(__le16 *)(pSNMPMIB->value) =
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200445 cpu_to_le16((u16) ulTemp);
446
447 }
448 break;
449 }
450 case OID_802_11_TX_RETRYCOUNT:
Dan Williams0aef64d2007-08-02 11:31:18 -0400451 pSNMPMIB->oid = cpu_to_le16((u16) SHORT_RETRYLIM_I);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200452
Dan Williams0aef64d2007-08-02 11:31:18 -0400453 if (cmd_action == CMD_ACT_GET) {
454 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_GET);
455 } else if (cmd_action == CMD_ACT_SET) {
456 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_SET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200457 pSNMPMIB->bufsize = cpu_to_le16(sizeof(u16));
David Woodhouse981f1872007-05-25 23:36:54 -0400458 *((__le16 *)(pSNMPMIB->value)) =
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200459 cpu_to_le16((u16) adapter->txretrycount);
460 }
461
462 break;
463 default:
464 break;
465 }
466
Holger Schurig9012b282007-05-25 11:27:16 -0400467 lbs_deb_cmd(
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200468 "SNMP_CMD: command=0x%x, size=0x%x, seqnum=0x%x, result=0x%x\n",
David Woodhouse981f1872007-05-25 23:36:54 -0400469 le16_to_cpu(cmd->command), le16_to_cpu(cmd->size),
470 le16_to_cpu(cmd->seqnum), le16_to_cpu(cmd->result));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200471
Holger Schurig9012b282007-05-25 11:27:16 -0400472 lbs_deb_cmd(
Holger Schurig8ff12da2007-08-02 11:54:31 -0400473 "SNMP_CMD: action 0x%x, oid 0x%x, oidsize 0x%x, value 0x%x\n",
David Woodhouse981f1872007-05-25 23:36:54 -0400474 le16_to_cpu(pSNMPMIB->querytype), le16_to_cpu(pSNMPMIB->oid),
475 le16_to_cpu(pSNMPMIB->bufsize),
476 le16_to_cpu(*(__le16 *) pSNMPMIB->value));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200477
Holger Schurig9012b282007-05-25 11:27:16 -0400478 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200479 return 0;
480}
481
Holger Schurig69f90322007-11-23 15:43:44 +0100482static int lbs_cmd_802_11_radio_control(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200483 struct cmd_ds_command *cmd,
484 int cmd_action)
485{
Holger Schurig69f90322007-11-23 15:43:44 +0100486 struct lbs_adapter *adapter = priv->adapter;
David Woodhouse981f1872007-05-25 23:36:54 -0400487 struct cmd_ds_802_11_radio_control *pradiocontrol = &cmd->params.radio;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200488
Holger Schurig9012b282007-05-25 11:27:16 -0400489 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200490
491 cmd->size =
492 cpu_to_le16((sizeof(struct cmd_ds_802_11_radio_control)) +
493 S_DS_GEN);
Dan Williams0aef64d2007-08-02 11:31:18 -0400494 cmd->command = cpu_to_le16(CMD_802_11_RADIO_CONTROL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200495
496 pradiocontrol->action = cpu_to_le16(cmd_action);
497
498 switch (adapter->preamble) {
Dan Williams0aef64d2007-08-02 11:31:18 -0400499 case CMD_TYPE_SHORT_PREAMBLE:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200500 pradiocontrol->control = cpu_to_le16(SET_SHORT_PREAMBLE);
501 break;
502
Dan Williams0aef64d2007-08-02 11:31:18 -0400503 case CMD_TYPE_LONG_PREAMBLE:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200504 pradiocontrol->control = cpu_to_le16(SET_LONG_PREAMBLE);
505 break;
506
Dan Williams0aef64d2007-08-02 11:31:18 -0400507 case CMD_TYPE_AUTO_PREAMBLE:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200508 default:
509 pradiocontrol->control = cpu_to_le16(SET_AUTO_PREAMBLE);
510 break;
511 }
512
513 if (adapter->radioon)
514 pradiocontrol->control |= cpu_to_le16(TURN_ON_RF);
515 else
516 pradiocontrol->control &= cpu_to_le16(~TURN_ON_RF);
517
Holger Schurig9012b282007-05-25 11:27:16 -0400518 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200519 return 0;
520}
521
Holger Schurig69f90322007-11-23 15:43:44 +0100522static int lbs_cmd_802_11_rf_tx_power(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200523 struct cmd_ds_command *cmd,
524 u16 cmd_action, void *pdata_buf)
525{
526
527 struct cmd_ds_802_11_rf_tx_power *prtp = &cmd->params.txp;
528
Holger Schurig9012b282007-05-25 11:27:16 -0400529 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200530
531 cmd->size =
David Woodhouse981f1872007-05-25 23:36:54 -0400532 cpu_to_le16((sizeof(struct cmd_ds_802_11_rf_tx_power)) + S_DS_GEN);
Dan Williams0aef64d2007-08-02 11:31:18 -0400533 cmd->command = cpu_to_le16(CMD_802_11_RF_TX_POWER);
David Woodhouse981f1872007-05-25 23:36:54 -0400534 prtp->action = cpu_to_le16(cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200535
David Woodhouse981f1872007-05-25 23:36:54 -0400536 lbs_deb_cmd("RF_TX_POWER_CMD: size:%d cmd:0x%x Act:%d\n",
537 le16_to_cpu(cmd->size), le16_to_cpu(cmd->command),
538 le16_to_cpu(prtp->action));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200539
540 switch (cmd_action) {
Dan Williams0aef64d2007-08-02 11:31:18 -0400541 case CMD_ACT_TX_POWER_OPT_GET:
542 prtp->action = cpu_to_le16(CMD_ACT_GET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200543 prtp->currentlevel = 0;
544 break;
545
Dan Williams0aef64d2007-08-02 11:31:18 -0400546 case CMD_ACT_TX_POWER_OPT_SET_HIGH:
547 prtp->action = cpu_to_le16(CMD_ACT_SET);
548 prtp->currentlevel = cpu_to_le16(CMD_ACT_TX_POWER_INDEX_HIGH);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200549 break;
550
Dan Williams0aef64d2007-08-02 11:31:18 -0400551 case CMD_ACT_TX_POWER_OPT_SET_MID:
552 prtp->action = cpu_to_le16(CMD_ACT_SET);
553 prtp->currentlevel = cpu_to_le16(CMD_ACT_TX_POWER_INDEX_MID);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200554 break;
555
Dan Williams0aef64d2007-08-02 11:31:18 -0400556 case CMD_ACT_TX_POWER_OPT_SET_LOW:
557 prtp->action = cpu_to_le16(CMD_ACT_SET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200558 prtp->currentlevel = cpu_to_le16(*((u16 *) pdata_buf));
559 break;
560 }
Holger Schurig9012b282007-05-25 11:27:16 -0400561
562 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200563 return 0;
564}
565
Holger Schurig69f90322007-11-23 15:43:44 +0100566static int lbs_cmd_802_11_monitor_mode(struct lbs_private *priv,
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -0400567 struct cmd_ds_command *cmd,
568 u16 cmd_action, void *pdata_buf)
569{
570 struct cmd_ds_802_11_monitor_mode *monitor = &cmd->params.monitor;
571
572 cmd->command = cpu_to_le16(CMD_802_11_MONITOR_MODE);
573 cmd->size =
574 cpu_to_le16(sizeof(struct cmd_ds_802_11_monitor_mode) +
575 S_DS_GEN);
576
577 monitor->action = cpu_to_le16(cmd_action);
578 if (cmd_action == CMD_ACT_SET) {
579 monitor->mode =
580 cpu_to_le16((u16) (*(u32 *) pdata_buf));
581 }
582
583 return 0;
584}
585
Holger Schurig69f90322007-11-23 15:43:44 +0100586static int lbs_cmd_802_11_rate_adapt_rateset(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200587 struct cmd_ds_command *cmd,
588 u16 cmd_action)
589{
590 struct cmd_ds_802_11_rate_adapt_rateset
591 *rateadapt = &cmd->params.rateset;
Holger Schurig69f90322007-11-23 15:43:44 +0100592 struct lbs_adapter *adapter = priv->adapter;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200593
Holger Schurig8ff12da2007-08-02 11:54:31 -0400594 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200595 cmd->size =
596 cpu_to_le16(sizeof(struct cmd_ds_802_11_rate_adapt_rateset)
597 + S_DS_GEN);
Dan Williams0aef64d2007-08-02 11:31:18 -0400598 cmd->command = cpu_to_le16(CMD_802_11_RATE_ADAPT_RATESET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200599
David Woodhouse981f1872007-05-25 23:36:54 -0400600 rateadapt->action = cpu_to_le16(cmd_action);
601 rateadapt->enablehwauto = cpu_to_le16(adapter->enablehwauto);
602 rateadapt->bitmap = cpu_to_le16(adapter->ratebitmap);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200603
Holger Schurig9012b282007-05-25 11:27:16 -0400604 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200605 return 0;
606}
607
Holger Schurig69f90322007-11-23 15:43:44 +0100608static int lbs_cmd_802_11_data_rate(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200609 struct cmd_ds_command *cmd,
610 u16 cmd_action)
611{
612 struct cmd_ds_802_11_data_rate *pdatarate = &cmd->params.drate;
Holger Schurig69f90322007-11-23 15:43:44 +0100613 struct lbs_adapter *adapter = priv->adapter;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200614
Holger Schurig9012b282007-05-25 11:27:16 -0400615 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200616
David Woodhouse981f1872007-05-25 23:36:54 -0400617 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_data_rate) +
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200618 S_DS_GEN);
Dan Williams0aef64d2007-08-02 11:31:18 -0400619 cmd->command = cpu_to_le16(CMD_802_11_DATA_RATE);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200620 memset(pdatarate, 0, sizeof(struct cmd_ds_802_11_data_rate));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200621 pdatarate->action = cpu_to_le16(cmd_action);
622
Dan Williamsffcae952007-08-02 11:35:46 -0400623 if (cmd_action == CMD_ACT_SET_TX_FIX_RATE) {
Holger Schurig10078322007-11-15 18:05:47 -0500624 pdatarate->rates[0] = lbs_data_rate_to_fw_index(adapter->cur_rate);
Holger Schurig8ff12da2007-08-02 11:54:31 -0400625 lbs_deb_cmd("DATA_RATE: set fixed 0x%02X\n",
Dan Williams8c512762007-08-02 11:40:45 -0400626 adapter->cur_rate);
Dan Williamsffcae952007-08-02 11:35:46 -0400627 } else if (cmd_action == CMD_ACT_SET_TX_AUTO) {
Holger Schurig8ff12da2007-08-02 11:54:31 -0400628 lbs_deb_cmd("DATA_RATE: setting auto\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200629 }
630
Holger Schurig9012b282007-05-25 11:27:16 -0400631 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200632 return 0;
633}
634
Holger Schurig69f90322007-11-23 15:43:44 +0100635static int lbs_cmd_mac_multicast_adr(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200636 struct cmd_ds_command *cmd,
637 u16 cmd_action)
638{
639 struct cmd_ds_mac_multicast_adr *pMCastAdr = &cmd->params.madr;
Holger Schurig69f90322007-11-23 15:43:44 +0100640 struct lbs_adapter *adapter = priv->adapter;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200641
Holger Schurig8ff12da2007-08-02 11:54:31 -0400642 lbs_deb_enter(LBS_DEB_CMD);
David Woodhouse981f1872007-05-25 23:36:54 -0400643 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_mac_multicast_adr) +
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200644 S_DS_GEN);
Dan Williams0aef64d2007-08-02 11:31:18 -0400645 cmd->command = cpu_to_le16(CMD_MAC_MULTICAST_ADR);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200646
Holger Schurig8ff12da2007-08-02 11:54:31 -0400647 lbs_deb_cmd("MULTICAST_ADR: setting %d addresses\n", pMCastAdr->nr_of_adrs);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200648 pMCastAdr->action = cpu_to_le16(cmd_action);
649 pMCastAdr->nr_of_adrs =
650 cpu_to_le16((u16) adapter->nr_of_multicastmacaddr);
651 memcpy(pMCastAdr->maclist, adapter->multicastlist,
652 adapter->nr_of_multicastmacaddr * ETH_ALEN);
653
Holger Schurig8ff12da2007-08-02 11:54:31 -0400654 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200655 return 0;
656}
657
Holger Schurig69f90322007-11-23 15:43:44 +0100658static int lbs_cmd_802_11_rf_channel(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200659 struct cmd_ds_command *cmd,
660 int option, void *pdata_buf)
661{
662 struct cmd_ds_802_11_rf_channel *rfchan = &cmd->params.rfchannel;
663
Holger Schurig8ff12da2007-08-02 11:54:31 -0400664 lbs_deb_enter(LBS_DEB_CMD);
Dan Williams0aef64d2007-08-02 11:31:18 -0400665 cmd->command = cpu_to_le16(CMD_802_11_RF_CHANNEL);
David Woodhouse981f1872007-05-25 23:36:54 -0400666 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_rf_channel) +
667 S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200668
Dan Williams0aef64d2007-08-02 11:31:18 -0400669 if (option == CMD_OPT_802_11_RF_CHANNEL_SET) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200670 rfchan->currentchannel = cpu_to_le16(*((u16 *) pdata_buf));
671 }
672
673 rfchan->action = cpu_to_le16(option);
674
Holger Schurig8ff12da2007-08-02 11:54:31 -0400675 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200676 return 0;
677}
678
Holger Schurig69f90322007-11-23 15:43:44 +0100679static int lbs_cmd_802_11_rssi(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200680 struct cmd_ds_command *cmd)
681{
Holger Schurig69f90322007-11-23 15:43:44 +0100682 struct lbs_adapter *adapter = priv->adapter;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200683
Holger Schurig8ff12da2007-08-02 11:54:31 -0400684 lbs_deb_enter(LBS_DEB_CMD);
Dan Williams0aef64d2007-08-02 11:31:18 -0400685 cmd->command = cpu_to_le16(CMD_802_11_RSSI);
David Woodhouse981f1872007-05-25 23:36:54 -0400686 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_rssi) + S_DS_GEN);
Holger Schuriga783f1e2007-08-02 13:08:24 -0400687 cmd->params.rssi.N = cpu_to_le16(DEFAULT_BCN_AVG_FACTOR);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200688
689 /* reset Beacon SNR/NF/RSSI values */
690 adapter->SNR[TYPE_BEACON][TYPE_NOAVG] = 0;
691 adapter->SNR[TYPE_BEACON][TYPE_AVG] = 0;
692 adapter->NF[TYPE_BEACON][TYPE_NOAVG] = 0;
693 adapter->NF[TYPE_BEACON][TYPE_AVG] = 0;
694 adapter->RSSI[TYPE_BEACON][TYPE_NOAVG] = 0;
695 adapter->RSSI[TYPE_BEACON][TYPE_AVG] = 0;
696
Holger Schurig8ff12da2007-08-02 11:54:31 -0400697 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200698 return 0;
699}
700
Holger Schurig69f90322007-11-23 15:43:44 +0100701static int lbs_cmd_reg_access(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200702 struct cmd_ds_command *cmdptr,
703 u8 cmd_action, void *pdata_buf)
704{
Holger Schurig10078322007-11-15 18:05:47 -0500705 struct lbs_offset_value *offval;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200706
Holger Schurig9012b282007-05-25 11:27:16 -0400707 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200708
Holger Schurig10078322007-11-15 18:05:47 -0500709 offval = (struct lbs_offset_value *)pdata_buf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200710
711 switch (cmdptr->command) {
Dan Williams0aef64d2007-08-02 11:31:18 -0400712 case CMD_MAC_REG_ACCESS:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200713 {
714 struct cmd_ds_mac_reg_access *macreg;
715
716 cmdptr->size =
David Woodhouse981f1872007-05-25 23:36:54 -0400717 cpu_to_le16(sizeof (struct cmd_ds_mac_reg_access)
718 + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200719 macreg =
720 (struct cmd_ds_mac_reg_access *)&cmdptr->params.
721 macreg;
722
723 macreg->action = cpu_to_le16(cmd_action);
724 macreg->offset = cpu_to_le16((u16) offval->offset);
725 macreg->value = cpu_to_le32(offval->value);
726
727 break;
728 }
729
Dan Williams0aef64d2007-08-02 11:31:18 -0400730 case CMD_BBP_REG_ACCESS:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200731 {
732 struct cmd_ds_bbp_reg_access *bbpreg;
733
734 cmdptr->size =
735 cpu_to_le16(sizeof
736 (struct cmd_ds_bbp_reg_access)
737 + S_DS_GEN);
738 bbpreg =
739 (struct cmd_ds_bbp_reg_access *)&cmdptr->params.
740 bbpreg;
741
742 bbpreg->action = cpu_to_le16(cmd_action);
743 bbpreg->offset = cpu_to_le16((u16) offval->offset);
744 bbpreg->value = (u8) offval->value;
745
746 break;
747 }
748
Dan Williams0aef64d2007-08-02 11:31:18 -0400749 case CMD_RF_REG_ACCESS:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200750 {
751 struct cmd_ds_rf_reg_access *rfreg;
752
753 cmdptr->size =
754 cpu_to_le16(sizeof
755 (struct cmd_ds_rf_reg_access) +
756 S_DS_GEN);
757 rfreg =
758 (struct cmd_ds_rf_reg_access *)&cmdptr->params.
759 rfreg;
760
761 rfreg->action = cpu_to_le16(cmd_action);
762 rfreg->offset = cpu_to_le16((u16) offval->offset);
763 rfreg->value = (u8) offval->value;
764
765 break;
766 }
767
768 default:
769 break;
770 }
771
Holger Schurig9012b282007-05-25 11:27:16 -0400772 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200773 return 0;
774}
775
Holger Schurig69f90322007-11-23 15:43:44 +0100776static int lbs_cmd_802_11_mac_address(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200777 struct cmd_ds_command *cmd,
778 u16 cmd_action)
779{
Holger Schurig69f90322007-11-23 15:43:44 +0100780 struct lbs_adapter *adapter = priv->adapter;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200781
Holger Schurig8ff12da2007-08-02 11:54:31 -0400782 lbs_deb_enter(LBS_DEB_CMD);
Dan Williams0aef64d2007-08-02 11:31:18 -0400783 cmd->command = cpu_to_le16(CMD_802_11_MAC_ADDRESS);
David Woodhouse981f1872007-05-25 23:36:54 -0400784 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_mac_address) +
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200785 S_DS_GEN);
786 cmd->result = 0;
787
788 cmd->params.macadd.action = cpu_to_le16(cmd_action);
789
Dan Williams0aef64d2007-08-02 11:31:18 -0400790 if (cmd_action == CMD_ACT_SET) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200791 memcpy(cmd->params.macadd.macadd,
792 adapter->current_addr, ETH_ALEN);
Holger Schurigece56192007-08-02 11:53:06 -0400793 lbs_deb_hex(LBS_DEB_CMD, "SET_CMD: MAC addr", adapter->current_addr, 6);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200794 }
795
Holger Schurig8ff12da2007-08-02 11:54:31 -0400796 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200797 return 0;
798}
799
Holger Schurig69f90322007-11-23 15:43:44 +0100800static int lbs_cmd_802_11_eeprom_access(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200801 struct cmd_ds_command *cmd,
802 int cmd_action, void *pdata_buf)
803{
Holger Schurig10078322007-11-15 18:05:47 -0500804 struct lbs_ioctl_regrdwr *ea = pdata_buf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200805
Holger Schurig9012b282007-05-25 11:27:16 -0400806 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200807
Dan Williams0aef64d2007-08-02 11:31:18 -0400808 cmd->command = cpu_to_le16(CMD_802_11_EEPROM_ACCESS);
David Woodhouse981f1872007-05-25 23:36:54 -0400809 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_eeprom_access) +
810 S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200811 cmd->result = 0;
812
813 cmd->params.rdeeprom.action = cpu_to_le16(ea->action);
814 cmd->params.rdeeprom.offset = cpu_to_le16(ea->offset);
815 cmd->params.rdeeprom.bytecount = cpu_to_le16(ea->NOB);
816 cmd->params.rdeeprom.value = 0;
817
Holger Schurig8ff12da2007-08-02 11:54:31 -0400818 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200819 return 0;
820}
821
Holger Schurig69f90322007-11-23 15:43:44 +0100822static int lbs_cmd_bt_access(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200823 struct cmd_ds_command *cmd,
824 u16 cmd_action, void *pdata_buf)
825{
826 struct cmd_ds_bt_access *bt_access = &cmd->params.bt;
Holger Schurig8ff12da2007-08-02 11:54:31 -0400827 lbs_deb_enter_args(LBS_DEB_CMD, "action %d", cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200828
Dan Williams0aef64d2007-08-02 11:31:18 -0400829 cmd->command = cpu_to_le16(CMD_BT_ACCESS);
David Woodhouse981f1872007-05-25 23:36:54 -0400830 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_bt_access) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200831 cmd->result = 0;
832 bt_access->action = cpu_to_le16(cmd_action);
833
834 switch (cmd_action) {
Dan Williams0aef64d2007-08-02 11:31:18 -0400835 case CMD_ACT_BT_ACCESS_ADD:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200836 memcpy(bt_access->addr1, pdata_buf, 2 * ETH_ALEN);
Holger Schurigece56192007-08-02 11:53:06 -0400837 lbs_deb_hex(LBS_DEB_MESH, "BT_ADD: blinded MAC addr", bt_access->addr1, 6);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200838 break;
Dan Williams0aef64d2007-08-02 11:31:18 -0400839 case CMD_ACT_BT_ACCESS_DEL:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200840 memcpy(bt_access->addr1, pdata_buf, 1 * ETH_ALEN);
Holger Schurigece56192007-08-02 11:53:06 -0400841 lbs_deb_hex(LBS_DEB_MESH, "BT_DEL: blinded MAC addr", bt_access->addr1, 6);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200842 break;
Dan Williams0aef64d2007-08-02 11:31:18 -0400843 case CMD_ACT_BT_ACCESS_LIST:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200844 bt_access->id = cpu_to_le32(*(u32 *) pdata_buf);
845 break;
Dan Williams0aef64d2007-08-02 11:31:18 -0400846 case CMD_ACT_BT_ACCESS_RESET:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200847 break;
Dan Williams0aef64d2007-08-02 11:31:18 -0400848 case CMD_ACT_BT_ACCESS_SET_INVERT:
Luis Carlos Cobo90e8eaf2007-05-25 13:53:26 -0400849 bt_access->id = cpu_to_le32(*(u32 *) pdata_buf);
850 break;
Dan Williams0aef64d2007-08-02 11:31:18 -0400851 case CMD_ACT_BT_ACCESS_GET_INVERT:
Luis Carlos Cobo90e8eaf2007-05-25 13:53:26 -0400852 break;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200853 default:
854 break;
855 }
Holger Schurig8ff12da2007-08-02 11:54:31 -0400856 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200857 return 0;
858}
859
Holger Schurig69f90322007-11-23 15:43:44 +0100860static int lbs_cmd_fwt_access(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200861 struct cmd_ds_command *cmd,
862 u16 cmd_action, void *pdata_buf)
863{
864 struct cmd_ds_fwt_access *fwt_access = &cmd->params.fwt;
Holger Schurig8ff12da2007-08-02 11:54:31 -0400865 lbs_deb_enter_args(LBS_DEB_CMD, "action %d", cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200866
Dan Williams0aef64d2007-08-02 11:31:18 -0400867 cmd->command = cpu_to_le16(CMD_FWT_ACCESS);
David Woodhouse981f1872007-05-25 23:36:54 -0400868 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_fwt_access) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200869 cmd->result = 0;
870
871 if (pdata_buf)
872 memcpy(fwt_access, pdata_buf, sizeof(*fwt_access));
873 else
874 memset(fwt_access, 0, sizeof(*fwt_access));
875
876 fwt_access->action = cpu_to_le16(cmd_action);
877
Holger Schurig8ff12da2007-08-02 11:54:31 -0400878 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200879 return 0;
880}
881
Holger Schurig69f90322007-11-23 15:43:44 +0100882static int lbs_cmd_mesh_access(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200883 struct cmd_ds_command *cmd,
884 u16 cmd_action, void *pdata_buf)
885{
886 struct cmd_ds_mesh_access *mesh_access = &cmd->params.mesh;
Holger Schurig8ff12da2007-08-02 11:54:31 -0400887 lbs_deb_enter_args(LBS_DEB_CMD, "action %d", cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200888
Dan Williams0aef64d2007-08-02 11:31:18 -0400889 cmd->command = cpu_to_le16(CMD_MESH_ACCESS);
David Woodhouse981f1872007-05-25 23:36:54 -0400890 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_mesh_access) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200891 cmd->result = 0;
892
893 if (pdata_buf)
894 memcpy(mesh_access, pdata_buf, sizeof(*mesh_access));
895 else
896 memset(mesh_access, 0, sizeof(*mesh_access));
897
898 mesh_access->action = cpu_to_le16(cmd_action);
899
Holger Schurig8ff12da2007-08-02 11:54:31 -0400900 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200901 return 0;
902}
903
Brajesh Dave96287ac2007-11-20 17:44:28 -0500904static int lbs_cmd_bcn_ctrl(struct lbs_private * priv,
905 struct cmd_ds_command *cmd,
906 u16 cmd_action)
907{
908 struct cmd_ds_802_11_beacon_control
909 *bcn_ctrl = &cmd->params.bcn_ctrl;
910 struct lbs_adapter *adapter = priv->adapter;
911
912 lbs_deb_enter(LBS_DEB_CMD);
913 cmd->size =
914 cpu_to_le16(sizeof(struct cmd_ds_802_11_beacon_control)
915 + S_DS_GEN);
916 cmd->command = cpu_to_le16(CMD_802_11_BEACON_CTRL);
917
918 bcn_ctrl->action = cpu_to_le16(cmd_action);
919 bcn_ctrl->beacon_enable = cpu_to_le16(adapter->beacon_enable);
920 bcn_ctrl->beacon_period = cpu_to_le16(adapter->beacon_period);
921
922 lbs_deb_leave(LBS_DEB_CMD);
923 return 0;
924}
925
Holger Schurig69f90322007-11-23 15:43:44 +0100926static int lbs_cmd_set_boot2_ver(struct lbs_private *priv,
Luis Carlos Cobo63f00232007-08-02 13:19:24 -0400927 struct cmd_ds_command *cmd,
928 u16 cmd_action, void *pdata_buf)
929{
930 struct cmd_ds_set_boot2_ver *boot2_ver = &cmd->params.boot2_ver;
931 cmd->command = cpu_to_le16(CMD_SET_BOOT2_VER);
932 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_set_boot2_ver) + S_DS_GEN);
933 boot2_ver->version = priv->boot2_version;
934 return 0;
935}
936
Marcelo Tosatti29f5f2a2007-10-30 10:52:46 -0400937/*
Holger Schurig10078322007-11-15 18:05:47 -0500938 * Note: NEVER use lbs_queue_cmd() with addtail==0 other than for
Marcelo Tosatti29f5f2a2007-10-30 10:52:46 -0400939 * the command timer, because it does not account for queued commands.
940 */
Holger Schurig69f90322007-11-23 15:43:44 +0100941void lbs_queue_cmd(struct lbs_adapter *adapter,
942 struct cmd_ctrl_node *cmdnode,
943 u8 addtail)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200944{
945 unsigned long flags;
946 struct cmd_ds_command *cmdptr;
947
Holger Schurig8ff12da2007-08-02 11:54:31 -0400948 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200949
950 if (!cmdnode) {
Holger Schurig8ff12da2007-08-02 11:54:31 -0400951 lbs_deb_host("QUEUE_CMD: cmdnode is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200952 goto done;
953 }
954
955 cmdptr = (struct cmd_ds_command *)cmdnode->bufvirtualaddr;
956 if (!cmdptr) {
Holger Schurig8ff12da2007-08-02 11:54:31 -0400957 lbs_deb_host("QUEUE_CMD: cmdptr is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200958 goto done;
959 }
960
961 /* Exit_PS command needs to be queued in the header always. */
Dan Williams0aef64d2007-08-02 11:31:18 -0400962 if (cmdptr->command == CMD_802_11_PS_MODE) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200963 struct cmd_ds_802_11_ps_mode *psm = &cmdptr->params.psmode;
Dan Williams0aef64d2007-08-02 11:31:18 -0400964 if (psm->action == cpu_to_le16(CMD_SUBCMD_EXIT_PS)) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200965 if (adapter->psstate != PS_STATE_FULL_POWER)
966 addtail = 0;
967 }
968 }
969
970 spin_lock_irqsave(&adapter->driver_lock, flags);
971
Marcelo Tosatti29f5f2a2007-10-30 10:52:46 -0400972 if (addtail) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200973 list_add_tail((struct list_head *)cmdnode,
974 &adapter->cmdpendingq);
Marcelo Tosatti29f5f2a2007-10-30 10:52:46 -0400975 adapter->nr_cmd_pending++;
976 } else
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200977 list_add((struct list_head *)cmdnode, &adapter->cmdpendingq);
978
979 spin_unlock_irqrestore(&adapter->driver_lock, flags);
980
Holger Schurig8ff12da2007-08-02 11:54:31 -0400981 lbs_deb_host("QUEUE_CMD: inserted command 0x%04x into cmdpendingq\n",
David Woodhouse981f1872007-05-25 23:36:54 -0400982 le16_to_cpu(((struct cmd_ds_gen*)cmdnode->bufvirtualaddr)->command));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200983
984done:
Holger Schurig8ff12da2007-08-02 11:54:31 -0400985 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200986}
987
988/*
989 * TODO: Fix the issue when DownloadcommandToStation is being called the
Holger Schurig8ff12da2007-08-02 11:54:31 -0400990 * second time when the command times out. All the cmdptr->xxx are in little
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200991 * endian and therefore all the comparissions will fail.
992 * For now - we are not performing the endian conversion the second time - but
993 * for PS and DEEP_SLEEP we need to worry
994 */
Holger Schurig69f90322007-11-23 15:43:44 +0100995static int DownloadcommandToStation(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200996 struct cmd_ctrl_node *cmdnode)
997{
998 unsigned long flags;
999 struct cmd_ds_command *cmdptr;
Holger Schurig69f90322007-11-23 15:43:44 +01001000 struct lbs_adapter *adapter = priv->adapter;
Eugene Teob031ac12007-08-02 13:18:07 -04001001 int ret = -1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001002 u16 cmdsize;
1003 u16 command;
1004
Holger Schurig8ff12da2007-08-02 11:54:31 -04001005 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001006
1007 if (!adapter || !cmdnode) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001008 lbs_deb_host("DNLD_CMD: adapter or cmdmode is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001009 goto done;
1010 }
1011
1012 cmdptr = (struct cmd_ds_command *)cmdnode->bufvirtualaddr;
1013
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001014 spin_lock_irqsave(&adapter->driver_lock, flags);
1015 if (!cmdptr || !cmdptr->size) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001016 lbs_deb_host("DNLD_CMD: cmdptr is NULL or zero\n");
Holger Schurig10078322007-11-15 18:05:47 -05001017 __lbs_cleanup_and_insert_cmd(priv, cmdnode);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001018 spin_unlock_irqrestore(&adapter->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001019 goto done;
1020 }
1021
1022 adapter->cur_cmd = cmdnode;
1023 adapter->cur_cmd_retcode = 0;
1024 spin_unlock_irqrestore(&adapter->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001025
1026 cmdsize = cmdptr->size;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001027 command = cpu_to_le16(cmdptr->command);
1028
Holger Schurig8ff12da2007-08-02 11:54:31 -04001029 lbs_deb_host("DNLD_CMD: command 0x%04x, size %d, jiffies %lu\n",
1030 command, le16_to_cpu(cmdptr->size), jiffies);
1031 lbs_deb_hex(LBS_DEB_HOST, "DNLD_CMD", cmdnode->bufvirtualaddr, cmdsize);
1032
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001033 cmdnode->cmdwaitqwoken = 0;
1034 cmdsize = cpu_to_le16(cmdsize);
1035
Holger Schurig208fdd22007-05-25 12:17:06 -04001036 ret = priv->hw_host_to_card(priv, MVMS_CMD, (u8 *) cmdptr, cmdsize);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001037
1038 if (ret != 0) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001039 lbs_deb_host("DNLD_CMD: hw_host_to_card failed\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001040 spin_lock_irqsave(&adapter->driver_lock, flags);
Pierre Ossman794760f2007-08-20 12:24:42 -04001041 adapter->cur_cmd_retcode = ret;
Holger Schurig10078322007-11-15 18:05:47 -05001042 __lbs_cleanup_and_insert_cmd(priv, adapter->cur_cmd);
Pierre Ossman794760f2007-08-20 12:24:42 -04001043 adapter->nr_cmd_pending--;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001044 adapter->cur_cmd = NULL;
1045 spin_unlock_irqrestore(&adapter->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001046 goto done;
1047 }
1048
Holger Schurig8ff12da2007-08-02 11:54:31 -04001049 lbs_deb_cmd("DNLD_CMD: sent command 0x%04x, jiffies %lu\n", command, jiffies);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001050
1051 /* Setup the timer after transmit command */
Dan Williams0aef64d2007-08-02 11:31:18 -04001052 if (command == CMD_802_11_SCAN || command == CMD_802_11_AUTHENTICATE
1053 || command == CMD_802_11_ASSOCIATE)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001054 mod_timer(&adapter->command_timer, jiffies + (10*HZ));
1055 else
1056 mod_timer(&adapter->command_timer, jiffies + (5*HZ));
1057
1058 ret = 0;
1059
Holger Schurig9012b282007-05-25 11:27:16 -04001060done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001061 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001062 return ret;
1063}
1064
Holger Schurig69f90322007-11-23 15:43:44 +01001065static int lbs_cmd_mac_control(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001066 struct cmd_ds_command *cmd)
1067{
1068 struct cmd_ds_mac_control *mac = &cmd->params.macctrl;
1069
Holger Schurig9012b282007-05-25 11:27:16 -04001070 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001071
Dan Williams0aef64d2007-08-02 11:31:18 -04001072 cmd->command = cpu_to_le16(CMD_MAC_CONTROL);
David Woodhouse981f1872007-05-25 23:36:54 -04001073 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_mac_control) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001074 mac->action = cpu_to_le16(priv->adapter->currentpacketfilter);
1075
Holger Schurig8ff12da2007-08-02 11:54:31 -04001076 lbs_deb_cmd("MAC_CONTROL: action 0x%x, size %d\n",
David Woodhouse981f1872007-05-25 23:36:54 -04001077 le16_to_cpu(mac->action), le16_to_cpu(cmd->size));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001078
Holger Schurig9012b282007-05-25 11:27:16 -04001079 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001080 return 0;
1081}
1082
1083/**
1084 * This function inserts command node to cmdfreeq
1085 * after cleans it. Requires adapter->driver_lock held.
1086 */
Holger Schurig69f90322007-11-23 15:43:44 +01001087void __lbs_cleanup_and_insert_cmd(struct lbs_private *priv,
1088 struct cmd_ctrl_node *ptempcmd)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001089{
Holger Schurig69f90322007-11-23 15:43:44 +01001090 struct lbs_adapter *adapter = priv->adapter;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001091
1092 if (!ptempcmd)
Holger Schurig8ff12da2007-08-02 11:54:31 -04001093 return;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001094
1095 cleanup_cmdnode(ptempcmd);
1096 list_add_tail((struct list_head *)ptempcmd, &adapter->cmdfreeq);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001097}
1098
Holger Schurig69f90322007-11-23 15:43:44 +01001099static void lbs_cleanup_and_insert_cmd(struct lbs_private *priv,
1100 struct cmd_ctrl_node *ptempcmd)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001101{
1102 unsigned long flags;
1103
1104 spin_lock_irqsave(&priv->adapter->driver_lock, flags);
Holger Schurig10078322007-11-15 18:05:47 -05001105 __lbs_cleanup_and_insert_cmd(priv, ptempcmd);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001106 spin_unlock_irqrestore(&priv->adapter->driver_lock, flags);
1107}
1108
Holger Schurig69f90322007-11-23 15:43:44 +01001109int lbs_set_radio_control(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001110{
1111 int ret = 0;
1112
Holger Schurig9012b282007-05-25 11:27:16 -04001113 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001114
Holger Schurig10078322007-11-15 18:05:47 -05001115 ret = lbs_prepare_and_send_command(priv,
Dan Williams0aef64d2007-08-02 11:31:18 -04001116 CMD_802_11_RADIO_CONTROL,
1117 CMD_ACT_SET,
1118 CMD_OPTION_WAITFORRSP, 0, NULL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001119
Holger Schurig8ff12da2007-08-02 11:54:31 -04001120 lbs_deb_cmd("RADIO_SET: radio %d, preamble %d\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001121 priv->adapter->radioon, priv->adapter->preamble);
1122
Holger Schurig9012b282007-05-25 11:27:16 -04001123 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001124 return ret;
1125}
1126
Holger Schurig69f90322007-11-23 15:43:44 +01001127int lbs_set_mac_packet_filter(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001128{
1129 int ret = 0;
1130
Holger Schurig9012b282007-05-25 11:27:16 -04001131 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001132
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001133 /* Send MAC control command to station */
Holger Schurig10078322007-11-15 18:05:47 -05001134 ret = lbs_prepare_and_send_command(priv,
Dan Williams0aef64d2007-08-02 11:31:18 -04001135 CMD_MAC_CONTROL, 0, 0, 0, NULL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001136
Holger Schurig9012b282007-05-25 11:27:16 -04001137 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001138 return ret;
1139}
1140
1141/**
1142 * @brief This function prepare the command before send to firmware.
1143 *
Holger Schurig69f90322007-11-23 15:43:44 +01001144 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001145 * @param cmd_no command number
1146 * @param cmd_action command action: GET or SET
1147 * @param wait_option wait option: wait response or not
1148 * @param cmd_oid cmd oid: treated as sub command
1149 * @param pdata_buf A pointer to informaion buffer
1150 * @return 0 or -1
1151 */
Holger Schurig69f90322007-11-23 15:43:44 +01001152int lbs_prepare_and_send_command(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001153 u16 cmd_no,
1154 u16 cmd_action,
1155 u16 wait_option, u32 cmd_oid, void *pdata_buf)
1156{
1157 int ret = 0;
Holger Schurig69f90322007-11-23 15:43:44 +01001158 struct lbs_adapter *adapter = priv->adapter;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001159 struct cmd_ctrl_node *cmdnode;
1160 struct cmd_ds_command *cmdptr;
1161 unsigned long flags;
1162
Holger Schurig8ff12da2007-08-02 11:54:31 -04001163 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001164
1165 if (!adapter) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001166 lbs_deb_host("PREP_CMD: adapter is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001167 ret = -1;
1168 goto done;
1169 }
1170
1171 if (adapter->surpriseremoved) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001172 lbs_deb_host("PREP_CMD: card removed\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001173 ret = -1;
1174 goto done;
1175 }
1176
Holger Schurig10078322007-11-15 18:05:47 -05001177 cmdnode = lbs_get_free_cmd_ctrl_node(priv);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001178
1179 if (cmdnode == NULL) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001180 lbs_deb_host("PREP_CMD: cmdnode is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001181
1182 /* Wake up main thread to execute next command */
Dan Williamsfe336152007-08-02 11:32:25 -04001183 wake_up_interruptible(&priv->waitq);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001184 ret = -1;
1185 goto done;
1186 }
1187
Holger Schurig10078322007-11-15 18:05:47 -05001188 lbs_set_cmd_ctrl_node(priv, cmdnode, cmd_oid, wait_option, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001189
1190 cmdptr = (struct cmd_ds_command *)cmdnode->bufvirtualaddr;
1191
Holger Schurig8ff12da2007-08-02 11:54:31 -04001192 lbs_deb_host("PREP_CMD: command 0x%04x\n", cmd_no);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001193
1194 if (!cmdptr) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001195 lbs_deb_host("PREP_CMD: cmdptr is NULL\n");
Holger Schurig10078322007-11-15 18:05:47 -05001196 lbs_cleanup_and_insert_cmd(priv, cmdnode);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001197 ret = -1;
1198 goto done;
1199 }
1200
1201 /* Set sequence number, command and INT option */
1202 adapter->seqnum++;
1203 cmdptr->seqnum = cpu_to_le16(adapter->seqnum);
1204
David Woodhouse981f1872007-05-25 23:36:54 -04001205 cmdptr->command = cpu_to_le16(cmd_no);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001206 cmdptr->result = 0;
1207
1208 switch (cmd_no) {
Dan Williams0aef64d2007-08-02 11:31:18 -04001209 case CMD_GET_HW_SPEC:
Holger Schurig10078322007-11-15 18:05:47 -05001210 ret = lbs_cmd_hw_spec(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001211 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001212 case CMD_802_11_PS_MODE:
Holger Schurig10078322007-11-15 18:05:47 -05001213 ret = lbs_cmd_802_11_ps_mode(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001214 break;
1215
Dan Williams0aef64d2007-08-02 11:31:18 -04001216 case CMD_802_11_SCAN:
Holger Schurig10078322007-11-15 18:05:47 -05001217 ret = lbs_cmd_80211_scan(priv, cmdptr, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001218 break;
1219
Dan Williams0aef64d2007-08-02 11:31:18 -04001220 case CMD_MAC_CONTROL:
Holger Schurig10078322007-11-15 18:05:47 -05001221 ret = lbs_cmd_mac_control(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001222 break;
1223
Dan Williams0aef64d2007-08-02 11:31:18 -04001224 case CMD_802_11_ASSOCIATE:
1225 case CMD_802_11_REASSOCIATE:
Holger Schurig10078322007-11-15 18:05:47 -05001226 ret = lbs_cmd_80211_associate(priv, cmdptr, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001227 break;
1228
Dan Williams0aef64d2007-08-02 11:31:18 -04001229 case CMD_802_11_DEAUTHENTICATE:
Holger Schurig10078322007-11-15 18:05:47 -05001230 ret = lbs_cmd_80211_deauthenticate(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001231 break;
1232
Dan Williams0aef64d2007-08-02 11:31:18 -04001233 case CMD_802_11_SET_WEP:
Holger Schurig10078322007-11-15 18:05:47 -05001234 ret = lbs_cmd_802_11_set_wep(priv, cmdptr, cmd_action, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001235 break;
1236
Dan Williams0aef64d2007-08-02 11:31:18 -04001237 case CMD_802_11_AD_HOC_START:
Holger Schurig10078322007-11-15 18:05:47 -05001238 ret = lbs_cmd_80211_ad_hoc_start(priv, cmdptr, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001239 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001240 case CMD_CODE_DNLD:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001241 break;
1242
Dan Williams0aef64d2007-08-02 11:31:18 -04001243 case CMD_802_11_RESET:
Holger Schurig10078322007-11-15 18:05:47 -05001244 ret = lbs_cmd_802_11_reset(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001245 break;
1246
Dan Williams0aef64d2007-08-02 11:31:18 -04001247 case CMD_802_11_GET_LOG:
Holger Schurig10078322007-11-15 18:05:47 -05001248 ret = lbs_cmd_802_11_get_log(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001249 break;
1250
Dan Williams0aef64d2007-08-02 11:31:18 -04001251 case CMD_802_11_AUTHENTICATE:
Holger Schurig10078322007-11-15 18:05:47 -05001252 ret = lbs_cmd_80211_authenticate(priv, cmdptr, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001253 break;
1254
Dan Williams0aef64d2007-08-02 11:31:18 -04001255 case CMD_802_11_GET_STAT:
Holger Schurig10078322007-11-15 18:05:47 -05001256 ret = lbs_cmd_802_11_get_stat(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001257 break;
1258
Dan Williams0aef64d2007-08-02 11:31:18 -04001259 case CMD_802_11_SNMP_MIB:
Holger Schurig10078322007-11-15 18:05:47 -05001260 ret = lbs_cmd_802_11_snmp_mib(priv, cmdptr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001261 cmd_action, cmd_oid, pdata_buf);
1262 break;
1263
Dan Williams0aef64d2007-08-02 11:31:18 -04001264 case CMD_MAC_REG_ACCESS:
1265 case CMD_BBP_REG_ACCESS:
1266 case CMD_RF_REG_ACCESS:
Holger Schurig10078322007-11-15 18:05:47 -05001267 ret = lbs_cmd_reg_access(priv, cmdptr, cmd_action, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001268 break;
1269
Dan Williams0aef64d2007-08-02 11:31:18 -04001270 case CMD_802_11_RF_CHANNEL:
Holger Schurig10078322007-11-15 18:05:47 -05001271 ret = lbs_cmd_802_11_rf_channel(priv, cmdptr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001272 cmd_action, pdata_buf);
1273 break;
1274
Dan Williams0aef64d2007-08-02 11:31:18 -04001275 case CMD_802_11_RF_TX_POWER:
Holger Schurig10078322007-11-15 18:05:47 -05001276 ret = lbs_cmd_802_11_rf_tx_power(priv, cmdptr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001277 cmd_action, pdata_buf);
1278 break;
1279
Dan Williams0aef64d2007-08-02 11:31:18 -04001280 case CMD_802_11_RADIO_CONTROL:
Holger Schurig10078322007-11-15 18:05:47 -05001281 ret = lbs_cmd_802_11_radio_control(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001282 break;
1283
Dan Williams0aef64d2007-08-02 11:31:18 -04001284 case CMD_802_11_DATA_RATE:
Holger Schurig10078322007-11-15 18:05:47 -05001285 ret = lbs_cmd_802_11_data_rate(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001286 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001287 case CMD_802_11_RATE_ADAPT_RATESET:
Holger Schurig10078322007-11-15 18:05:47 -05001288 ret = lbs_cmd_802_11_rate_adapt_rateset(priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001289 cmdptr, cmd_action);
1290 break;
1291
Dan Williams0aef64d2007-08-02 11:31:18 -04001292 case CMD_MAC_MULTICAST_ADR:
Holger Schurig10078322007-11-15 18:05:47 -05001293 ret = lbs_cmd_mac_multicast_adr(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001294 break;
1295
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -04001296 case CMD_802_11_MONITOR_MODE:
Holger Schurig10078322007-11-15 18:05:47 -05001297 ret = lbs_cmd_802_11_monitor_mode(priv, cmdptr,
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -04001298 cmd_action, pdata_buf);
1299 break;
1300
Dan Williams0aef64d2007-08-02 11:31:18 -04001301 case CMD_802_11_AD_HOC_JOIN:
Holger Schurig10078322007-11-15 18:05:47 -05001302 ret = lbs_cmd_80211_ad_hoc_join(priv, cmdptr, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001303 break;
1304
Dan Williams0aef64d2007-08-02 11:31:18 -04001305 case CMD_802_11_RSSI:
Holger Schurig10078322007-11-15 18:05:47 -05001306 ret = lbs_cmd_802_11_rssi(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001307 break;
1308
Dan Williams0aef64d2007-08-02 11:31:18 -04001309 case CMD_802_11_AD_HOC_STOP:
Holger Schurig10078322007-11-15 18:05:47 -05001310 ret = lbs_cmd_80211_ad_hoc_stop(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001311 break;
1312
Dan Williams0aef64d2007-08-02 11:31:18 -04001313 case CMD_802_11_ENABLE_RSN:
Holger Schurig10078322007-11-15 18:05:47 -05001314 ret = lbs_cmd_802_11_enable_rsn(priv, cmdptr, cmd_action,
Dan Williams90a42212007-05-25 23:01:24 -04001315 pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001316 break;
1317
Dan Williams0aef64d2007-08-02 11:31:18 -04001318 case CMD_802_11_KEY_MATERIAL:
Holger Schurig10078322007-11-15 18:05:47 -05001319 ret = lbs_cmd_802_11_key_material(priv, cmdptr, cmd_action,
Dan Williams90a42212007-05-25 23:01:24 -04001320 cmd_oid, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001321 break;
1322
Dan Williams0aef64d2007-08-02 11:31:18 -04001323 case CMD_802_11_PAIRWISE_TSC:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001324 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001325 case CMD_802_11_GROUP_TSC:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001326 break;
1327
Dan Williams0aef64d2007-08-02 11:31:18 -04001328 case CMD_802_11_MAC_ADDRESS:
Holger Schurig10078322007-11-15 18:05:47 -05001329 ret = lbs_cmd_802_11_mac_address(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001330 break;
1331
Dan Williams0aef64d2007-08-02 11:31:18 -04001332 case CMD_802_11_EEPROM_ACCESS:
Holger Schurig10078322007-11-15 18:05:47 -05001333 ret = lbs_cmd_802_11_eeprom_access(priv, cmdptr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001334 cmd_action, pdata_buf);
1335 break;
1336
Dan Williams0aef64d2007-08-02 11:31:18 -04001337 case CMD_802_11_SET_AFC:
1338 case CMD_802_11_GET_AFC:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001339
1340 cmdptr->command = cpu_to_le16(cmd_no);
David Woodhouse981f1872007-05-25 23:36:54 -04001341 cmdptr->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_afc) +
1342 S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001343
1344 memmove(&cmdptr->params.afc,
1345 pdata_buf, sizeof(struct cmd_ds_802_11_afc));
1346
1347 ret = 0;
1348 goto done;
1349
Dan Williams0aef64d2007-08-02 11:31:18 -04001350 case CMD_802_11D_DOMAIN_INFO:
Holger Schurig10078322007-11-15 18:05:47 -05001351 ret = lbs_cmd_802_11d_domain_info(priv, cmdptr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001352 cmd_no, cmd_action);
1353 break;
1354
Dan Williams0aef64d2007-08-02 11:31:18 -04001355 case CMD_802_11_SLEEP_PARAMS:
Holger Schurig10078322007-11-15 18:05:47 -05001356 ret = lbs_cmd_802_11_sleep_params(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001357 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001358 case CMD_802_11_INACTIVITY_TIMEOUT:
Holger Schurig10078322007-11-15 18:05:47 -05001359 ret = lbs_cmd_802_11_inactivity_timeout(priv, cmdptr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001360 cmd_action, pdata_buf);
Holger Schurig10078322007-11-15 18:05:47 -05001361 lbs_set_cmd_ctrl_node(priv, cmdnode, 0, 0, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001362 break;
1363
Dan Williams0aef64d2007-08-02 11:31:18 -04001364 case CMD_802_11_TPC_CFG:
1365 cmdptr->command = cpu_to_le16(CMD_802_11_TPC_CFG);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001366 cmdptr->size =
1367 cpu_to_le16(sizeof(struct cmd_ds_802_11_tpc_cfg) +
1368 S_DS_GEN);
1369
1370 memmove(&cmdptr->params.tpccfg,
1371 pdata_buf, sizeof(struct cmd_ds_802_11_tpc_cfg));
1372
1373 ret = 0;
1374 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001375 case CMD_802_11_LED_GPIO_CTRL:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001376 {
1377 struct mrvlietypes_ledgpio *gpio =
1378 (struct mrvlietypes_ledgpio*)
1379 cmdptr->params.ledgpio.data;
1380
1381 memmove(&cmdptr->params.ledgpio,
1382 pdata_buf,
1383 sizeof(struct cmd_ds_802_11_led_ctrl));
1384
1385 cmdptr->command =
Dan Williams0aef64d2007-08-02 11:31:18 -04001386 cpu_to_le16(CMD_802_11_LED_GPIO_CTRL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001387
1388#define ACTION_NUMLED_TLVTYPE_LEN_FIELDS_LEN 8
1389 cmdptr->size =
1390 cpu_to_le16(gpio->header.len + S_DS_GEN +
1391 ACTION_NUMLED_TLVTYPE_LEN_FIELDS_LEN);
1392 gpio->header.len = cpu_to_le16(gpio->header.len);
1393
1394 ret = 0;
1395 break;
1396 }
Dan Williams0aef64d2007-08-02 11:31:18 -04001397 case CMD_802_11_PWR_CFG:
1398 cmdptr->command = cpu_to_le16(CMD_802_11_PWR_CFG);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001399 cmdptr->size =
1400 cpu_to_le16(sizeof(struct cmd_ds_802_11_pwr_cfg) +
1401 S_DS_GEN);
1402 memmove(&cmdptr->params.pwrcfg, pdata_buf,
1403 sizeof(struct cmd_ds_802_11_pwr_cfg));
1404
1405 ret = 0;
1406 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001407 case CMD_BT_ACCESS:
Holger Schurig10078322007-11-15 18:05:47 -05001408 ret = lbs_cmd_bt_access(priv, cmdptr, cmd_action, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001409 break;
1410
Dan Williams0aef64d2007-08-02 11:31:18 -04001411 case CMD_FWT_ACCESS:
Holger Schurig10078322007-11-15 18:05:47 -05001412 ret = lbs_cmd_fwt_access(priv, cmdptr, cmd_action, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001413 break;
1414
Dan Williams0aef64d2007-08-02 11:31:18 -04001415 case CMD_MESH_ACCESS:
Holger Schurig10078322007-11-15 18:05:47 -05001416 ret = lbs_cmd_mesh_access(priv, cmdptr, cmd_action, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001417 break;
1418
Luis Carlos Cobo63f00232007-08-02 13:19:24 -04001419 case CMD_SET_BOOT2_VER:
Holger Schurig10078322007-11-15 18:05:47 -05001420 ret = lbs_cmd_set_boot2_ver(priv, cmdptr, cmd_action, pdata_buf);
Luis Carlos Cobo63f00232007-08-02 13:19:24 -04001421 break;
1422
Dan Williams0aef64d2007-08-02 11:31:18 -04001423 case CMD_GET_TSF:
1424 cmdptr->command = cpu_to_le16(CMD_GET_TSF);
David Woodhouse981f1872007-05-25 23:36:54 -04001425 cmdptr->size = cpu_to_le16(sizeof(struct cmd_ds_get_tsf) +
1426 S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001427 ret = 0;
1428 break;
Brajesh Dave96287ac2007-11-20 17:44:28 -05001429 case CMD_802_11_BEACON_CTRL:
1430 ret = lbs_cmd_bcn_ctrl(priv, cmdptr, cmd_action);
1431 break;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001432 default:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001433 lbs_deb_host("PREP_CMD: unknown command 0x%04x\n", cmd_no);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001434 ret = -1;
1435 break;
1436 }
1437
1438 /* return error, since the command preparation failed */
1439 if (ret != 0) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001440 lbs_deb_host("PREP_CMD: command preparation failed\n");
Holger Schurig10078322007-11-15 18:05:47 -05001441 lbs_cleanup_and_insert_cmd(priv, cmdnode);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001442 ret = -1;
1443 goto done;
1444 }
1445
1446 cmdnode->cmdwaitqwoken = 0;
1447
Holger Schurig10078322007-11-15 18:05:47 -05001448 lbs_queue_cmd(adapter, cmdnode, 1);
Dan Williamsfe336152007-08-02 11:32:25 -04001449 wake_up_interruptible(&priv->waitq);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001450
Dan Williams0aef64d2007-08-02 11:31:18 -04001451 if (wait_option & CMD_OPTION_WAITFORRSP) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001452 lbs_deb_host("PREP_CMD: wait for response\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001453 might_sleep();
1454 wait_event_interruptible(cmdnode->cmdwait_q,
1455 cmdnode->cmdwaitqwoken);
1456 }
1457
1458 spin_lock_irqsave(&adapter->driver_lock, flags);
1459 if (adapter->cur_cmd_retcode) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001460 lbs_deb_host("PREP_CMD: command failed with return code %d\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001461 adapter->cur_cmd_retcode);
1462 adapter->cur_cmd_retcode = 0;
1463 ret = -1;
1464 }
1465 spin_unlock_irqrestore(&adapter->driver_lock, flags);
1466
1467done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001468 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001469 return ret;
1470}
Holger Schurig10078322007-11-15 18:05:47 -05001471EXPORT_SYMBOL_GPL(lbs_prepare_and_send_command);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001472
1473/**
1474 * @brief This function allocates the command buffer and link
1475 * it to command free queue.
1476 *
Holger Schurig69f90322007-11-23 15:43:44 +01001477 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001478 * @return 0 or -1
1479 */
Holger Schurig69f90322007-11-23 15:43:44 +01001480int lbs_allocate_cmd_buffer(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001481{
1482 int ret = 0;
1483 u32 ulbufsize;
1484 u32 i;
1485 struct cmd_ctrl_node *tempcmd_array;
1486 u8 *ptempvirtualaddr;
Holger Schurig69f90322007-11-23 15:43:44 +01001487 struct lbs_adapter *adapter = priv->adapter;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001488
Holger Schurig8ff12da2007-08-02 11:54:31 -04001489 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001490
1491 /* Allocate and initialize cmdCtrlNode */
1492 ulbufsize = sizeof(struct cmd_ctrl_node) * MRVDRV_NUM_OF_CMD_BUFFER;
1493
Holger Schurigfb3dddf2007-05-25 11:58:22 -04001494 if (!(tempcmd_array = kzalloc(ulbufsize, GFP_KERNEL))) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001495 lbs_deb_host("ALLOC_CMD_BUF: tempcmd_array is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001496 ret = -1;
1497 goto done;
1498 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001499 adapter->cmd_array = tempcmd_array;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001500
1501 /* Allocate and initialize command buffers */
1502 ulbufsize = MRVDRV_SIZE_OF_CMD_BUFFER;
1503 for (i = 0; i < MRVDRV_NUM_OF_CMD_BUFFER; i++) {
Holger Schurigfb3dddf2007-05-25 11:58:22 -04001504 if (!(ptempvirtualaddr = kzalloc(ulbufsize, GFP_KERNEL))) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001505 lbs_deb_host("ALLOC_CMD_BUF: ptempvirtualaddr is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001506 ret = -1;
1507 goto done;
1508 }
1509
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001510 /* Update command buffer virtual */
1511 tempcmd_array[i].bufvirtualaddr = ptempvirtualaddr;
1512 }
1513
1514 for (i = 0; i < MRVDRV_NUM_OF_CMD_BUFFER; i++) {
1515 init_waitqueue_head(&tempcmd_array[i].cmdwait_q);
Holger Schurig10078322007-11-15 18:05:47 -05001516 lbs_cleanup_and_insert_cmd(priv, &tempcmd_array[i]);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001517 }
1518
1519 ret = 0;
Holger Schurig9012b282007-05-25 11:27:16 -04001520
1521done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001522 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001523 return ret;
1524}
1525
1526/**
1527 * @brief This function frees the command buffer.
1528 *
Holger Schurig69f90322007-11-23 15:43:44 +01001529 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001530 * @return 0 or -1
1531 */
Holger Schurig69f90322007-11-23 15:43:44 +01001532int lbs_free_cmd_buffer(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001533{
David Woodhouse981f1872007-05-25 23:36:54 -04001534 u32 ulbufsize; /* Someone needs to die for this. Slowly and painfully */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001535 unsigned int i;
1536 struct cmd_ctrl_node *tempcmd_array;
Holger Schurig69f90322007-11-23 15:43:44 +01001537 struct lbs_adapter *adapter = priv->adapter;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001538
Holger Schurig8ff12da2007-08-02 11:54:31 -04001539 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001540
1541 /* need to check if cmd array is allocated or not */
1542 if (adapter->cmd_array == NULL) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001543 lbs_deb_host("FREE_CMD_BUF: cmd_array is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001544 goto done;
1545 }
1546
1547 tempcmd_array = adapter->cmd_array;
1548
1549 /* Release shared memory buffers */
1550 ulbufsize = MRVDRV_SIZE_OF_CMD_BUFFER;
1551 for (i = 0; i < MRVDRV_NUM_OF_CMD_BUFFER; i++) {
1552 if (tempcmd_array[i].bufvirtualaddr) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001553 kfree(tempcmd_array[i].bufvirtualaddr);
1554 tempcmd_array[i].bufvirtualaddr = NULL;
1555 }
1556 }
1557
1558 /* Release cmd_ctrl_node */
1559 if (adapter->cmd_array) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001560 kfree(adapter->cmd_array);
1561 adapter->cmd_array = NULL;
1562 }
1563
1564done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001565 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001566 return 0;
1567}
1568
1569/**
1570 * @brief This function gets a free command node if available in
1571 * command free queue.
1572 *
Holger Schurig69f90322007-11-23 15:43:44 +01001573 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001574 * @return cmd_ctrl_node A pointer to cmd_ctrl_node structure or NULL
1575 */
Holger Schurig69f90322007-11-23 15:43:44 +01001576struct cmd_ctrl_node *lbs_get_free_cmd_ctrl_node(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001577{
1578 struct cmd_ctrl_node *tempnode;
Holger Schurig69f90322007-11-23 15:43:44 +01001579 struct lbs_adapter *adapter = priv->adapter;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001580 unsigned long flags;
1581
Holger Schurig8ff12da2007-08-02 11:54:31 -04001582 lbs_deb_enter(LBS_DEB_HOST);
1583
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001584 if (!adapter)
1585 return NULL;
1586
1587 spin_lock_irqsave(&adapter->driver_lock, flags);
1588
1589 if (!list_empty(&adapter->cmdfreeq)) {
1590 tempnode = (struct cmd_ctrl_node *)adapter->cmdfreeq.next;
1591 list_del((struct list_head *)tempnode);
1592 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001593 lbs_deb_host("GET_CMD_NODE: cmd_ctrl_node is not available\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001594 tempnode = NULL;
1595 }
1596
1597 spin_unlock_irqrestore(&adapter->driver_lock, flags);
1598
Holger Schurig8ff12da2007-08-02 11:54:31 -04001599 if (tempnode)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001600 cleanup_cmdnode(tempnode);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001601
Holger Schurig8ff12da2007-08-02 11:54:31 -04001602 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001603 return tempnode;
1604}
1605
1606/**
1607 * @brief This function cleans command node.
1608 *
1609 * @param ptempnode A pointer to cmdCtrlNode structure
1610 * @return n/a
1611 */
1612static void cleanup_cmdnode(struct cmd_ctrl_node *ptempnode)
1613{
Holger Schurig8ff12da2007-08-02 11:54:31 -04001614 lbs_deb_enter(LBS_DEB_HOST);
1615
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001616 if (!ptempnode)
1617 return;
1618 ptempnode->cmdwaitqwoken = 1;
1619 wake_up_interruptible(&ptempnode->cmdwait_q);
1620 ptempnode->status = 0;
1621 ptempnode->cmd_oid = (u32) 0;
1622 ptempnode->wait_option = 0;
1623 ptempnode->pdata_buf = NULL;
1624
1625 if (ptempnode->bufvirtualaddr != NULL)
1626 memset(ptempnode->bufvirtualaddr, 0, MRVDRV_SIZE_OF_CMD_BUFFER);
Holger Schurig8ff12da2007-08-02 11:54:31 -04001627
1628 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001629}
1630
1631/**
1632 * @brief This function initializes the command node.
1633 *
Holger Schurig69f90322007-11-23 15:43:44 +01001634 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001635 * @param ptempnode A pointer to cmd_ctrl_node structure
1636 * @param cmd_oid cmd oid: treated as sub command
1637 * @param wait_option wait option: wait response or not
1638 * @param pdata_buf A pointer to informaion buffer
1639 * @return 0 or -1
1640 */
Holger Schurig69f90322007-11-23 15:43:44 +01001641void lbs_set_cmd_ctrl_node(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001642 struct cmd_ctrl_node *ptempnode,
1643 u32 cmd_oid, u16 wait_option, void *pdata_buf)
1644{
Holger Schurig8ff12da2007-08-02 11:54:31 -04001645 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001646
1647 if (!ptempnode)
1648 return;
1649
1650 ptempnode->cmd_oid = cmd_oid;
1651 ptempnode->wait_option = wait_option;
1652 ptempnode->pdata_buf = pdata_buf;
1653
Holger Schurig8ff12da2007-08-02 11:54:31 -04001654 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001655}
1656
1657/**
1658 * @brief This function executes next command in command
1659 * pending queue. It will put fimware back to PS mode
1660 * if applicable.
1661 *
Holger Schurig69f90322007-11-23 15:43:44 +01001662 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001663 * @return 0 or -1
1664 */
Holger Schurig69f90322007-11-23 15:43:44 +01001665int lbs_execute_next_command(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001666{
Holger Schurig69f90322007-11-23 15:43:44 +01001667 struct lbs_adapter *adapter = priv->adapter;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001668 struct cmd_ctrl_node *cmdnode = NULL;
1669 struct cmd_ds_command *cmdptr;
1670 unsigned long flags;
1671 int ret = 0;
1672
Holger Schurig8ff12da2007-08-02 11:54:31 -04001673 // Debug group is LBS_DEB_THREAD and not LBS_DEB_HOST, because the
Holger Schurig10078322007-11-15 18:05:47 -05001674 // only caller to us is lbs_thread() and we get even when a
Holger Schurig8ff12da2007-08-02 11:54:31 -04001675 // data packet is received
1676 lbs_deb_enter(LBS_DEB_THREAD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001677
1678 spin_lock_irqsave(&adapter->driver_lock, flags);
1679
1680 if (adapter->cur_cmd) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001681 lbs_pr_alert( "EXEC_NEXT_CMD: already processing command!\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001682 spin_unlock_irqrestore(&adapter->driver_lock, flags);
1683 ret = -1;
1684 goto done;
1685 }
1686
1687 if (!list_empty(&adapter->cmdpendingq)) {
1688 cmdnode = (struct cmd_ctrl_node *)
1689 adapter->cmdpendingq.next;
1690 }
1691
1692 spin_unlock_irqrestore(&adapter->driver_lock, flags);
1693
1694 if (cmdnode) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001695 cmdptr = (struct cmd_ds_command *)cmdnode->bufvirtualaddr;
1696
1697 if (is_command_allowed_in_ps(cmdptr->command)) {
David Woodhouse981f1872007-05-25 23:36:54 -04001698 if ((adapter->psstate == PS_STATE_SLEEP) ||
1699 (adapter->psstate == PS_STATE_PRE_SLEEP)) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001700 lbs_deb_host(
1701 "EXEC_NEXT_CMD: cannot send cmd 0x%04x in psstate %d\n",
David Woodhouse981f1872007-05-25 23:36:54 -04001702 le16_to_cpu(cmdptr->command),
1703 adapter->psstate);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001704 ret = -1;
1705 goto done;
1706 }
Holger Schurig8ff12da2007-08-02 11:54:31 -04001707 lbs_deb_host("EXEC_NEXT_CMD: OK to send command "
1708 "0x%04x in psstate %d\n",
David Woodhouse981f1872007-05-25 23:36:54 -04001709 le16_to_cpu(cmdptr->command),
1710 adapter->psstate);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001711 } else if (adapter->psstate != PS_STATE_FULL_POWER) {
1712 /*
1713 * 1. Non-PS command:
1714 * Queue it. set needtowakeup to TRUE if current state
Holger Schurig10078322007-11-15 18:05:47 -05001715 * is SLEEP, otherwise call lbs_ps_wakeup to send Exit_PS.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001716 * 2. PS command but not Exit_PS:
1717 * Ignore it.
1718 * 3. PS command Exit_PS:
1719 * Set needtowakeup to TRUE if current state is SLEEP,
1720 * otherwise send this command down to firmware
1721 * immediately.
1722 */
1723 if (cmdptr->command !=
Dan Williams0aef64d2007-08-02 11:31:18 -04001724 cpu_to_le16(CMD_802_11_PS_MODE)) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001725 /* Prepare to send Exit PS,
1726 * this non PS command will be sent later */
1727 if ((adapter->psstate == PS_STATE_SLEEP)
1728 || (adapter->psstate == PS_STATE_PRE_SLEEP)
1729 ) {
1730 /* w/ new scheme, it will not reach here.
1731 since it is blocked in main_thread. */
1732 adapter->needtowakeup = 1;
1733 } else
Holger Schurig10078322007-11-15 18:05:47 -05001734 lbs_ps_wakeup(priv, 0);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001735
1736 ret = 0;
1737 goto done;
1738 } else {
1739 /*
1740 * PS command. Ignore it if it is not Exit_PS.
1741 * otherwise send it down immediately.
1742 */
1743 struct cmd_ds_802_11_ps_mode *psm =
1744 &cmdptr->params.psmode;
1745
Holger Schurig8ff12da2007-08-02 11:54:31 -04001746 lbs_deb_host(
1747 "EXEC_NEXT_CMD: PS cmd, action 0x%02x\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001748 psm->action);
1749 if (psm->action !=
Dan Williams0aef64d2007-08-02 11:31:18 -04001750 cpu_to_le16(CMD_SUBCMD_EXIT_PS)) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001751 lbs_deb_host(
1752 "EXEC_NEXT_CMD: ignore ENTER_PS cmd\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001753 list_del((struct list_head *)cmdnode);
Holger Schurig10078322007-11-15 18:05:47 -05001754 lbs_cleanup_and_insert_cmd(priv, cmdnode);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001755
1756 ret = 0;
1757 goto done;
1758 }
1759
David Woodhouse981f1872007-05-25 23:36:54 -04001760 if ((adapter->psstate == PS_STATE_SLEEP) ||
1761 (adapter->psstate == PS_STATE_PRE_SLEEP)) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001762 lbs_deb_host(
1763 "EXEC_NEXT_CMD: ignore EXIT_PS cmd in sleep\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001764 list_del((struct list_head *)cmdnode);
Holger Schurig10078322007-11-15 18:05:47 -05001765 lbs_cleanup_and_insert_cmd(priv, cmdnode);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001766 adapter->needtowakeup = 1;
1767
1768 ret = 0;
1769 goto done;
1770 }
1771
Holger Schurig8ff12da2007-08-02 11:54:31 -04001772 lbs_deb_host(
1773 "EXEC_NEXT_CMD: sending EXIT_PS\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001774 }
1775 }
1776 list_del((struct list_head *)cmdnode);
Holger Schurig8ff12da2007-08-02 11:54:31 -04001777 lbs_deb_host("EXEC_NEXT_CMD: sending command 0x%04x\n",
David Woodhouse981f1872007-05-25 23:36:54 -04001778 le16_to_cpu(cmdptr->command));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001779 DownloadcommandToStation(priv, cmdnode);
1780 } else {
1781 /*
1782 * check if in power save mode, if yes, put the device back
1783 * to PS mode
1784 */
Holger Schurig10078322007-11-15 18:05:47 -05001785 if ((adapter->psmode != LBS802_11POWERMODECAM) &&
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001786 (adapter->psstate == PS_STATE_FULL_POWER) &&
Brajesh Dave01d77d82007-11-20 17:44:14 -05001787 ((adapter->connect_status == LBS_CONNECTED) ||
1788 (adapter->mesh_connect_status == LBS_CONNECTED))) {
David Woodhouse981f1872007-05-25 23:36:54 -04001789 if (adapter->secinfo.WPAenabled ||
1790 adapter->secinfo.WPA2enabled) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001791 /* check for valid WPA group keys */
David Woodhouse981f1872007-05-25 23:36:54 -04001792 if (adapter->wpa_mcast_key.len ||
1793 adapter->wpa_unicast_key.len) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001794 lbs_deb_host(
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001795 "EXEC_NEXT_CMD: WPA enabled and GTK_SET"
1796 " go back to PS_SLEEP");
Holger Schurig10078322007-11-15 18:05:47 -05001797 lbs_ps_sleep(priv, 0);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001798 }
1799 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001800 lbs_deb_host(
1801 "EXEC_NEXT_CMD: cmdpendingq empty, "
1802 "go back to PS_SLEEP");
Holger Schurig10078322007-11-15 18:05:47 -05001803 lbs_ps_sleep(priv, 0);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001804 }
1805 }
1806 }
1807
1808 ret = 0;
1809done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001810 lbs_deb_leave(LBS_DEB_THREAD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001811 return ret;
1812}
1813
Holger Schurig69f90322007-11-23 15:43:44 +01001814void lbs_send_iwevcustom_event(struct lbs_private *priv, s8 *str)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001815{
1816 union iwreq_data iwrq;
1817 u8 buf[50];
1818
Holger Schurig8ff12da2007-08-02 11:54:31 -04001819 lbs_deb_enter(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001820
1821 memset(&iwrq, 0, sizeof(union iwreq_data));
1822 memset(buf, 0, sizeof(buf));
1823
1824 snprintf(buf, sizeof(buf) - 1, "%s", str);
1825
1826 iwrq.data.length = strlen(buf) + 1 + IW_EV_LCP_LEN;
1827
1828 /* Send Event to upper layer */
Holger Schurig8ff12da2007-08-02 11:54:31 -04001829 lbs_deb_wext("event indication string %s\n", (char *)buf);
1830 lbs_deb_wext("event indication length %d\n", iwrq.data.length);
1831 lbs_deb_wext("sending wireless event IWEVCUSTOM for %s\n", str);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001832
Holger Schurig634b8f42007-05-25 13:05:16 -04001833 wireless_send_event(priv->dev, IWEVCUSTOM, &iwrq, buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001834
Holger Schurig8ff12da2007-08-02 11:54:31 -04001835 lbs_deb_leave(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001836}
1837
Holger Schurig69f90322007-11-23 15:43:44 +01001838static int sendconfirmsleep(struct lbs_private *priv, u8 *cmdptr, u16 size)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001839{
1840 unsigned long flags;
Holger Schurig69f90322007-11-23 15:43:44 +01001841 struct lbs_adapter *adapter = priv->adapter;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001842 int ret = 0;
1843
Holger Schurig8ff12da2007-08-02 11:54:31 -04001844 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001845
Holger Schurig8ff12da2007-08-02 11:54:31 -04001846 lbs_deb_host("SEND_SLEEPC_CMD: before download, cmd size %d\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001847 size);
1848
Holger Schurig8ff12da2007-08-02 11:54:31 -04001849 lbs_deb_hex(LBS_DEB_HOST, "sleep confirm command", cmdptr, size);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001850
Holger Schurig208fdd22007-05-25 12:17:06 -04001851 ret = priv->hw_host_to_card(priv, MVMS_CMD, cmdptr, size);
Holger Schurig634b8f42007-05-25 13:05:16 -04001852 priv->dnld_sent = DNLD_RES_RECEIVED;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001853
1854 spin_lock_irqsave(&adapter->driver_lock, flags);
1855 if (adapter->intcounter || adapter->currenttxskb)
Holger Schurig8ff12da2007-08-02 11:54:31 -04001856 lbs_deb_host("SEND_SLEEPC_CMD: intcounter %d, currenttxskb %p\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001857 adapter->intcounter, adapter->currenttxskb);
1858 spin_unlock_irqrestore(&adapter->driver_lock, flags);
1859
1860 if (ret) {
1861 lbs_pr_alert(
1862 "SEND_SLEEPC_CMD: Host to Card failed for Confirm Sleep\n");
1863 } else {
1864 spin_lock_irqsave(&adapter->driver_lock, flags);
1865 if (!adapter->intcounter) {
1866 adapter->psstate = PS_STATE_SLEEP;
1867 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001868 lbs_deb_host("SEND_SLEEPC_CMD: after sent, intcounter %d\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001869 adapter->intcounter);
1870 }
1871 spin_unlock_irqrestore(&adapter->driver_lock, flags);
1872
Holger Schurig8ff12da2007-08-02 11:54:31 -04001873 lbs_deb_host("SEND_SLEEPC_CMD: sent confirm sleep\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001874 }
1875
Holger Schurig8ff12da2007-08-02 11:54:31 -04001876 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001877 return ret;
1878}
1879
Holger Schurig69f90322007-11-23 15:43:44 +01001880void lbs_ps_sleep(struct lbs_private *priv, int wait_option)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001881{
Holger Schurig8ff12da2007-08-02 11:54:31 -04001882 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001883
1884 /*
1885 * PS is currently supported only in Infrastructure mode
1886 * Remove this check if it is to be supported in IBSS mode also
1887 */
1888
Holger Schurig10078322007-11-15 18:05:47 -05001889 lbs_prepare_and_send_command(priv, CMD_802_11_PS_MODE,
Dan Williams0aef64d2007-08-02 11:31:18 -04001890 CMD_SUBCMD_ENTER_PS, wait_option, 0, NULL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001891
Holger Schurig8ff12da2007-08-02 11:54:31 -04001892 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001893}
1894
1895/**
Holger Schurig8ff12da2007-08-02 11:54:31 -04001896 * @brief This function sends Exit_PS command to firmware.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001897 *
Holger Schurig69f90322007-11-23 15:43:44 +01001898 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001899 * @param wait_option wait response or not
1900 * @return n/a
1901 */
Holger Schurig69f90322007-11-23 15:43:44 +01001902void lbs_ps_wakeup(struct lbs_private *priv, int wait_option)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001903{
David Woodhouse981f1872007-05-25 23:36:54 -04001904 __le32 Localpsmode;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001905
Holger Schurig8ff12da2007-08-02 11:54:31 -04001906 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001907
Holger Schurig10078322007-11-15 18:05:47 -05001908 Localpsmode = cpu_to_le32(LBS802_11POWERMODECAM);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001909
Holger Schurig10078322007-11-15 18:05:47 -05001910 lbs_prepare_and_send_command(priv, CMD_802_11_PS_MODE,
Dan Williams0aef64d2007-08-02 11:31:18 -04001911 CMD_SUBCMD_EXIT_PS,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001912 wait_option, 0, &Localpsmode);
1913
Holger Schurig8ff12da2007-08-02 11:54:31 -04001914 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001915}
1916
1917/**
1918 * @brief This function checks condition and prepares to
1919 * send sleep confirm command to firmware if ok.
1920 *
Holger Schurig69f90322007-11-23 15:43:44 +01001921 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001922 * @param psmode Power Saving mode
1923 * @return n/a
1924 */
Holger Schurig69f90322007-11-23 15:43:44 +01001925void lbs_ps_confirm_sleep(struct lbs_private *priv, u16 psmode)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001926{
1927 unsigned long flags =0;
Holger Schurig69f90322007-11-23 15:43:44 +01001928 struct lbs_adapter *adapter = priv->adapter;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001929 u8 allowed = 1;
1930
Holger Schurig8ff12da2007-08-02 11:54:31 -04001931 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001932
Holger Schurig634b8f42007-05-25 13:05:16 -04001933 if (priv->dnld_sent) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001934 allowed = 0;
Holger Schurig8ff12da2007-08-02 11:54:31 -04001935 lbs_deb_host("dnld_sent was set");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001936 }
1937
1938 spin_lock_irqsave(&adapter->driver_lock, flags);
1939 if (adapter->cur_cmd) {
1940 allowed = 0;
Holger Schurig8ff12da2007-08-02 11:54:31 -04001941 lbs_deb_host("cur_cmd was set");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001942 }
1943 if (adapter->intcounter > 0) {
1944 allowed = 0;
Holger Schurig8ff12da2007-08-02 11:54:31 -04001945 lbs_deb_host("intcounter %d", adapter->intcounter);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001946 }
1947 spin_unlock_irqrestore(&adapter->driver_lock, flags);
1948
1949 if (allowed) {
Holger Schurig10078322007-11-15 18:05:47 -05001950 lbs_deb_host("sending lbs_ps_confirm_sleep\n");
1951 sendconfirmsleep(priv, (u8 *) & adapter->lbs_ps_confirm_sleep,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001952 sizeof(struct PS_CMD_ConfirmSleep));
1953 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001954 lbs_deb_host("sleep confirm has been delayed\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001955 }
1956
Holger Schurig8ff12da2007-08-02 11:54:31 -04001957 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001958}