cmd.c 57.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
/**
  * This file contains the handling of command.
  * It prepares command and sends it to firmware when it is ready.
  */

#include <net/iw_handler.h>
#include "host.h"
#include "hostcmd.h"
#include "decl.h"
#include "defs.h"
#include "dev.h"
#include "join.h"
#include "wext.h"
14
#include "cmd.h"
15

16 17
static struct cmd_ctrl_node *lbs_get_cmd_ctrl_node(struct lbs_private *priv);
static void lbs_set_cmd_ctrl_node(struct lbs_private *priv,
18
		    struct cmd_ctrl_node *ptempnode,
19
		    void *pdata_buf);
20

21 22

/**
23
 *  @brief Checks whether a command is allowed in Power Save mode
24 25
 *
 *  @param command the command ID
26
 *  @return 	   1 if allowed, 0 if not allowed
27
 */
28
static u8 is_command_allowed_in_ps(u16 cmd)
29
{
30 31 32 33 34
	switch (cmd) {
	case CMD_802_11_RSSI:
		return 1;
	default:
		break;
35 36 37 38
	}
	return 0;
}

39 40 41 42 43 44 45 46
/**
 *  @brief Updates the hardware details like MAC address and regulatory region
 *
 *  @param priv    	A pointer to struct lbs_private structure
 *
 *  @return 	   	0 on success, error on failure
 */
int lbs_update_hw_spec(struct lbs_private *priv)
47
{
48 49 50 51
	struct cmd_ds_get_hw_spec cmd;
	int ret = -1;
	u32 i;
	DECLARE_MAC_BUF(mac);
52

53
	lbs_deb_enter(LBS_DEB_CMD);
54

55 56 57
	memset(&cmd, 0, sizeof(cmd));
	cmd.hdr.size = cpu_to_le16(sizeof(cmd));
	memcpy(cmd.permanentaddr, priv->current_addr, ETH_ALEN);
58
	ret = lbs_cmd_with_response(priv, CMD_GET_HW_SPEC, &cmd);
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
	if (ret)
		goto out;

	priv->fwcapinfo = le32_to_cpu(cmd.fwcapinfo);
	memcpy(priv->fwreleasenumber, cmd.fwreleasenumber, 4);

	lbs_deb_cmd("GET_HW_SPEC: firmware release %u.%u.%up%u\n",
		    priv->fwreleasenumber[2], priv->fwreleasenumber[1],
		    priv->fwreleasenumber[0], priv->fwreleasenumber[3]);
	lbs_deb_cmd("GET_HW_SPEC: MAC addr %s\n",
		    print_mac(mac, cmd.permanentaddr));
	lbs_deb_cmd("GET_HW_SPEC: hardware interface 0x%x, hardware spec 0x%04x\n",
		    cmd.hwifversion, cmd.version);

	/* Clamp region code to 8-bit since FW spec indicates that it should
	 * only ever be 8-bit, even though the field size is 16-bit.  Some firmware
	 * returns non-zero high 8 bits here.
	 */
	priv->regioncode = le16_to_cpu(cmd.regioncode) & 0xFF;

	for (i = 0; i < MRVDRV_MAX_REGION_CODE; i++) {
		/* use the region code to search for the index */
		if (priv->regioncode == lbs_region_code_to_index[i])
			break;
	}

	/* if it's unidentified region code, use the default (USA) */
	if (i >= MRVDRV_MAX_REGION_CODE) {
		priv->regioncode = 0x10;
		lbs_pr_info("unidentified region code; using the default (USA)\n");
	}

	if (priv->current_addr[0] == 0xff)
		memmove(priv->current_addr, cmd.permanentaddr, ETH_ALEN);
93

94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
	memcpy(priv->dev->dev_addr, priv->current_addr, ETH_ALEN);
	if (priv->mesh_dev)
		memcpy(priv->mesh_dev->dev_addr, priv->current_addr, ETH_ALEN);

	if (lbs_set_regiontable(priv, priv->regioncode, 0)) {
		ret = -1;
		goto out;
	}

	if (lbs_set_universaltable(priv, 0)) {
		ret = -1;
		goto out;
	}

out:
109
	lbs_deb_leave(LBS_DEB_CMD);
110
	return ret;
111 112
}

113
int lbs_host_sleep_cfg(struct lbs_private *priv, uint32_t criteria)
114 115 116 117 118
{
	struct cmd_ds_host_sleep cmd_config;
	int ret;

	cmd_config.criteria = cpu_to_le32(criteria);
119 120
	cmd_config.gpio = priv->wol_gpio;
	cmd_config.gap = priv->wol_gap;
121

122
	ret = lbs_cmd_with_response(priv, CMD_802_11_HOST_SLEEP_CFG, &cmd_config);
123 124 125 126
	if (!ret) {
		lbs_deb_cmd("Set WOL criteria to %x\n", criteria);
		priv->wol_criteria = criteria;
	} else {
127 128
		lbs_pr_info("HOST_SLEEP_CFG failed %d\n", ret);
	}
129

130 131 132 133
	return ret;
}
EXPORT_SYMBOL_GPL(lbs_host_sleep_cfg);

134
static int lbs_cmd_802_11_ps_mode(struct lbs_private *priv,
135 136 137 138 139
				   struct cmd_ds_command *cmd,
				   u16 cmd_action)
{
	struct cmd_ds_802_11_ps_mode *psm = &cmd->params.psmode;

140
	lbs_deb_enter(LBS_DEB_CMD);
141

142
	cmd->command = cpu_to_le16(CMD_802_11_PS_MODE);
143 144
	cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_ps_mode) +
				S_DS_GEN);
145 146
	psm->action = cpu_to_le16(cmd_action);
	psm->multipledtim = 0;
147
	switch (cmd_action) {
148
	case CMD_SUBCMD_ENTER_PS:
149
		lbs_deb_cmd("PS command:" "SubCode- Enter PS\n");
150

151
		psm->locallisteninterval = 0;
152
		psm->nullpktinterval = 0;
153
		psm->multipledtim =
154
		    cpu_to_le16(MRVDRV_DEFAULT_MULTIPLE_DTIM);
155 156
		break;

157
	case CMD_SUBCMD_EXIT_PS:
158
		lbs_deb_cmd("PS command:" "SubCode- Exit PS\n");
159 160
		break;

161
	case CMD_SUBCMD_SLEEP_CONFIRMED:
162
		lbs_deb_cmd("PS command: SubCode- sleep confirm\n");
163 164 165 166 167 168
		break;

	default:
		break;
	}

169
	lbs_deb_leave(LBS_DEB_CMD);
170 171 172
	return 0;
}

173
static int lbs_cmd_802_11_inactivity_timeout(struct lbs_private *priv,
174 175 176 177 178
					      struct cmd_ds_command *cmd,
					      u16 cmd_action, void *pdata_buf)
{
	u16 *timeout = pdata_buf;

179 180
	lbs_deb_enter(LBS_DEB_CMD);

181
	cmd->command = cpu_to_le16(CMD_802_11_INACTIVITY_TIMEOUT);
182 183 184 185 186 187 188
	cmd->size =
	    cpu_to_le16(sizeof(struct cmd_ds_802_11_inactivity_timeout)
			     + S_DS_GEN);

	cmd->params.inactivity_timeout.action = cpu_to_le16(cmd_action);

	if (cmd_action)
189
		cmd->params.inactivity_timeout.timeout = cpu_to_le16(*timeout);
190 191 192
	else
		cmd->params.inactivity_timeout.timeout = 0;

193
	lbs_deb_leave(LBS_DEB_CMD);
194 195 196
	return 0;
}

197
static int lbs_cmd_802_11_sleep_params(struct lbs_private *priv,
198 199 200 201 202
					struct cmd_ds_command *cmd,
					u16 cmd_action)
{
	struct cmd_ds_802_11_sleep_params *sp = &cmd->params.sleep_params;

203
	lbs_deb_enter(LBS_DEB_CMD);
204

205 206
	cmd->size = cpu_to_le16((sizeof(struct cmd_ds_802_11_sleep_params)) +
				S_DS_GEN);
207
	cmd->command = cpu_to_le16(CMD_802_11_SLEEP_PARAMS);
208

209
	if (cmd_action == CMD_ACT_GET) {
210
		memset(&priv->sp, 0, sizeof(struct sleep_params));
211 212
		memset(sp, 0, sizeof(struct cmd_ds_802_11_sleep_params));
		sp->action = cpu_to_le16(cmd_action);
213
	} else if (cmd_action == CMD_ACT_SET) {
214
		sp->action = cpu_to_le16(cmd_action);
215 216 217 218 219 220
		sp->error = cpu_to_le16(priv->sp.sp_error);
		sp->offset = cpu_to_le16(priv->sp.sp_offset);
		sp->stabletime = cpu_to_le16(priv->sp.sp_stabletime);
		sp->calcontrol = (u8) priv->sp.sp_calcontrol;
		sp->externalsleepclk = (u8) priv->sp.sp_extsleepclk;
		sp->reserved = cpu_to_le16(priv->sp.sp_reserved);
221 222
	}

223
	lbs_deb_leave(LBS_DEB_CMD);
224 225 226
	return 0;
}

227
static int lbs_cmd_802_11_set_wep(struct lbs_private *priv,
228 229 230 231 232 233 234 235
                                   struct cmd_ds_command *cmd,
                                   u32 cmd_act,
                                   void * pdata_buf)
{
	struct cmd_ds_802_11_set_wep *wep = &cmd->params.wep;
	int ret = 0;
	struct assoc_request * assoc_req = pdata_buf;

236
	lbs_deb_enter(LBS_DEB_CMD);
237

238
	cmd->command = cpu_to_le16(CMD_802_11_SET_WEP);
239
	cmd->size = cpu_to_le16(sizeof(*wep) + S_DS_GEN);
240

241
	if (cmd_act == CMD_ACT_ADD) {
242 243 244
		int i;

		if (!assoc_req) {
245
			lbs_deb_cmd("Invalid association request!\n");
246 247 248 249
			ret = -1;
			goto done;
		}

250
		wep->action = cpu_to_le16(CMD_ACT_ADD);
251 252

		/* default tx key index */
253
		wep->keyindex = cpu_to_le16((u16)(assoc_req->wep_tx_keyidx &
254
						  (u32)CMD_WEP_KEY_INDEX_MASK));
255 256 257

		/* Copy key types and material to host command structure */
		for (i = 0; i < 4; i++) {
258
			struct enc_key * pkey = &assoc_req->wep_keys[i];
259 260 261

			switch (pkey->len) {
			case KEY_LEN_WEP_40:
H
Holger Schurig 已提交
262
				wep->keytype[i] = CMD_TYPE_WEP_40_BIT;
263 264
				memmove(&wep->keymaterial[i], pkey->key,
				        pkey->len);
265
				lbs_deb_cmd("SET_WEP: add key %d (40 bit)\n", i);
266 267
				break;
			case KEY_LEN_WEP_104:
H
Holger Schurig 已提交
268
				wep->keytype[i] = CMD_TYPE_WEP_104_BIT;
269 270
				memmove(&wep->keymaterial[i], pkey->key,
				        pkey->len);
271
				lbs_deb_cmd("SET_WEP: add key %d (104 bit)\n", i);
272 273 274 275
				break;
			case 0:
				break;
			default:
276
				lbs_deb_cmd("SET_WEP: invalid key %d, length %d\n",
277 278 279 280 281 282
				       i, pkey->len);
				ret = -1;
				goto done;
				break;
			}
		}
283
	} else if (cmd_act == CMD_ACT_REMOVE) {
284
		/* ACT_REMOVE clears _all_ WEP keys */
285
		wep->action = cpu_to_le16(CMD_ACT_REMOVE);
286 287

		/* default tx key index */
288
		wep->keyindex = cpu_to_le16((u16)(priv->wep_tx_keyidx &
289
						  (u32)CMD_WEP_KEY_INDEX_MASK));
290
		lbs_deb_cmd("SET_WEP: remove key %d\n", priv->wep_tx_keyidx);
291 292 293 294 295
	}

	ret = 0;

done:
296
	lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
297 298 299
	return ret;
}

300
static int lbs_cmd_802_11_enable_rsn(struct lbs_private *priv,
301
				      struct cmd_ds_command *cmd,
302 303
				      u16 cmd_action,
				      void * pdata_buf)
304 305
{
	struct cmd_ds_802_11_enable_rsn *penableRSN = &cmd->params.enbrsn;
306
	u32 * enable = pdata_buf;
307 308

	lbs_deb_enter(LBS_DEB_CMD);
309

310
	cmd->command = cpu_to_le16(CMD_802_11_ENABLE_RSN);
311
	cmd->size = cpu_to_le16(sizeof(*penableRSN) + S_DS_GEN);
312
	penableRSN->action = cpu_to_le16(cmd_action);
313

314
	if (cmd_action == CMD_ACT_SET) {
315
		if (*enable)
316
			penableRSN->enable = cpu_to_le16(CMD_ENABLE_RSN);
317
		else
318
			penableRSN->enable = cpu_to_le16(CMD_DISABLE_RSN);
319
		lbs_deb_cmd("ENABLE_RSN: %d\n", *enable);
320 321
	}

322
	lbs_deb_leave(LBS_DEB_CMD);
323 324 325 326
	return 0;
}


327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372
static ssize_t lbs_tlv_size(const u8 *tlv, u16 size)
{
	ssize_t pos = 0;
	struct mrvlietypesheader *tlv_h;
	while (pos < size) {
		u16 length;
		tlv_h = (struct mrvlietypesheader *) tlv;
		if (tlv_h->len == 0)
			return pos;
		length = le16_to_cpu(tlv_h->len) +
			sizeof(struct mrvlietypesheader);
		pos += length;
		tlv += length;
	}
	return pos;
}


static void lbs_cmd_802_11_subscribe_event(struct lbs_private *priv,
	struct cmd_ds_command *cmd, u16 cmd_action,
	void *pdata_buf)
{
	struct cmd_ds_802_11_subscribe_event *events =
		(struct cmd_ds_802_11_subscribe_event *) pdata_buf;

	/* pdata_buf points to a struct cmd_ds_802_11_subscribe_event and room
	 * for various Marvell TLVs */

	lbs_deb_enter(LBS_DEB_CMD);

	cmd->size = cpu_to_le16(sizeof(*events)
			- sizeof(events->tlv)
			+ S_DS_GEN);
	cmd->params.subscribe_event.action = cpu_to_le16(cmd_action);
	if (cmd_action == CMD_ACT_GET) {
		cmd->params.subscribe_event.events = 0;
	} else {
		ssize_t sz = lbs_tlv_size(events->tlv, sizeof(events->tlv));
		cmd->size = cpu_to_le16(le16_to_cpu(cmd->size) + sz);
		cmd->params.subscribe_event.events = events->events;
		memcpy(cmd->params.subscribe_event.tlv, events->tlv, sz);
	}

	lbs_deb_leave(LBS_DEB_CMD);
}

373
static void set_one_wpa_key(struct MrvlIEtype_keyParamSet * pkeyparamset,
374
                            struct enc_key * pkey)
375
{
376 377
	lbs_deb_enter(LBS_DEB_CMD);

378
	if (pkey->flags & KEY_INFO_WPA_ENABLED) {
379
		pkeyparamset->keyinfo |= cpu_to_le16(KEY_INFO_WPA_ENABLED);
380 381 382
	}
	if (pkey->flags & KEY_INFO_WPA_UNICAST) {
		pkeyparamset->keyinfo |= cpu_to_le16(KEY_INFO_WPA_UNICAST);
383 384
	}
	if (pkey->flags & KEY_INFO_WPA_MCAST) {
385 386 387 388
		pkeyparamset->keyinfo |= cpu_to_le16(KEY_INFO_WPA_MCAST);
	}

	pkeyparamset->type = cpu_to_le16(TLV_TYPE_KEY_MATERIAL);
389
	pkeyparamset->keytypeid = cpu_to_le16(pkey->type);
390 391 392 393 394 395
	pkeyparamset->keylen = cpu_to_le16(pkey->len);
	memcpy(pkeyparamset->key, pkey->key, pkey->len);
	pkeyparamset->length = cpu_to_le16(  sizeof(pkeyparamset->keytypeid)
	                                        + sizeof(pkeyparamset->keyinfo)
	                                        + sizeof(pkeyparamset->keylen)
	                                        + sizeof(pkeyparamset->key));
396
	lbs_deb_leave(LBS_DEB_CMD);
397 398
}

399
static int lbs_cmd_802_11_key_material(struct lbs_private *priv,
400 401 402 403 404 405
					struct cmd_ds_command *cmd,
					u16 cmd_action,
					u32 cmd_oid, void *pdata_buf)
{
	struct cmd_ds_802_11_key_material *pkeymaterial =
	    &cmd->params.keymaterial;
406
	struct assoc_request * assoc_req = pdata_buf;
407 408 409
	int ret = 0;
	int index = 0;

410
	lbs_deb_enter(LBS_DEB_CMD);
411

412
	cmd->command = cpu_to_le16(CMD_802_11_KEY_MATERIAL);
413 414
	pkeymaterial->action = cpu_to_le16(cmd_action);

415
	if (cmd_action == CMD_ACT_GET) {
416
		cmd->size = cpu_to_le16(S_DS_GEN + sizeof (pkeymaterial->action));
417 418 419 420 421 422
		ret = 0;
		goto done;
	}

	memset(&pkeymaterial->keyParamSet, 0, sizeof(pkeymaterial->keyParamSet));

423
	if (test_bit(ASSOC_FLAG_WPA_UCAST_KEY, &assoc_req->flags)) {
424
		set_one_wpa_key(&pkeymaterial->keyParamSet[index],
425
		                &assoc_req->wpa_unicast_key);
426 427 428
		index++;
	}

429
	if (test_bit(ASSOC_FLAG_WPA_MCAST_KEY, &assoc_req->flags)) {
430
		set_one_wpa_key(&pkeymaterial->keyParamSet[index],
431
		                &assoc_req->wpa_mcast_key);
432 433 434 435
		index++;
	}

	cmd->size = cpu_to_le16(  S_DS_GEN
436 437
	                        + sizeof (pkeymaterial->action)
	                        + (index * sizeof(struct MrvlIEtype_keyParamSet)));
438 439 440 441

	ret = 0;

done:
442
	lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
443 444 445
	return ret;
}

446
static int lbs_cmd_802_11_reset(struct lbs_private *priv,
447 448 449 450
				 struct cmd_ds_command *cmd, int cmd_action)
{
	struct cmd_ds_802_11_reset *reset = &cmd->params.reset;

451 452
	lbs_deb_enter(LBS_DEB_CMD);

453
	cmd->command = cpu_to_le16(CMD_802_11_RESET);
454 455 456
	cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_reset) + S_DS_GEN);
	reset->action = cpu_to_le16(cmd_action);

457
	lbs_deb_leave(LBS_DEB_CMD);
458 459 460
	return 0;
}

461
static int lbs_cmd_802_11_get_log(struct lbs_private *priv,
462 463
				   struct cmd_ds_command *cmd)
{
464
	lbs_deb_enter(LBS_DEB_CMD);
465
	cmd->command = cpu_to_le16(CMD_802_11_GET_LOG);
466 467 468
	cmd->size =
		cpu_to_le16(sizeof(struct cmd_ds_802_11_get_log) + S_DS_GEN);

469
	lbs_deb_leave(LBS_DEB_CMD);
470 471 472
	return 0;
}

473
static int lbs_cmd_802_11_get_stat(struct lbs_private *priv,
474 475
				    struct cmd_ds_command *cmd)
{
476
	lbs_deb_enter(LBS_DEB_CMD);
477
	cmd->command = cpu_to_le16(CMD_802_11_GET_STAT);
478
	cmd->size =
479
	    cpu_to_le16(sizeof(struct cmd_ds_802_11_get_stat) + S_DS_GEN);
480

481
	lbs_deb_leave(LBS_DEB_CMD);
482 483 484
	return 0;
}

485
static int lbs_cmd_802_11_snmp_mib(struct lbs_private *priv,
486 487 488 489 490 491 492
				    struct cmd_ds_command *cmd,
				    int cmd_action,
				    int cmd_oid, void *pdata_buf)
{
	struct cmd_ds_802_11_snmp_mib *pSNMPMIB = &cmd->params.smib;
	u8 ucTemp;

493
	lbs_deb_enter(LBS_DEB_CMD);
494

495
	lbs_deb_cmd("SNMP_CMD: cmd_oid = 0x%x\n", cmd_oid);
496

497
	cmd->command = cpu_to_le16(CMD_802_11_SNMP_MIB);
498
	cmd->size = cpu_to_le16(sizeof(*pSNMPMIB) + S_DS_GEN);
499 500 501 502

	switch (cmd_oid) {
	case OID_802_11_INFRASTRUCTURE_MODE:
	{
503
		u8 mode = (u8) (size_t) pdata_buf;
504 505
		pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_SET);
		pSNMPMIB->oid = cpu_to_le16((u16) DESIRED_BSSTYPE_I);
H
Holger Schurig 已提交
506
		pSNMPMIB->bufsize = cpu_to_le16(sizeof(u8));
507
		if (mode == IW_MODE_ADHOC) {
508
			ucTemp = SNMP_MIB_VALUE_ADHOC;
509 510 511 512
		} else {
			/* Infra and Auto modes */
			ucTemp = SNMP_MIB_VALUE_INFRA;
		}
513 514 515 516 517 518 519 520 521 522

		memmove(pSNMPMIB->value, &ucTemp, sizeof(u8));

		break;
	}

	case OID_802_11D_ENABLE:
		{
			u32 ulTemp;

523
			pSNMPMIB->oid = cpu_to_le16((u16) DOT11D_I);
524

525
			if (cmd_action == CMD_ACT_SET) {
H
Holger Schurig 已提交
526 527
				pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_SET);
				pSNMPMIB->bufsize = cpu_to_le16(sizeof(u16));
528
				ulTemp = *(u32 *)pdata_buf;
529
				*((__le16 *)(pSNMPMIB->value)) =
530 531 532 533 534 535 536 537 538
				    cpu_to_le16((u16) ulTemp);
			}
			break;
		}

	case OID_802_11_FRAGMENTATION_THRESHOLD:
		{
			u32 ulTemp;

539
			pSNMPMIB->oid = cpu_to_le16((u16) FRAGTHRESH_I);
540

541 542 543 544
			if (cmd_action == CMD_ACT_GET) {
				pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_GET);
			} else if (cmd_action == CMD_ACT_SET) {
				pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_SET);
545
				pSNMPMIB->bufsize = cpu_to_le16(sizeof(u16));
546
				ulTemp = *((u32 *) pdata_buf);
547
				*((__le16 *)(pSNMPMIB->value)) =
548 549 550 551 552 553 554 555 556 557 558
				    cpu_to_le16((u16) ulTemp);

			}

			break;
		}

	case OID_802_11_RTS_THRESHOLD:
		{

			u32 ulTemp;
H
Holger Schurig 已提交
559
			pSNMPMIB->oid = cpu_to_le16(RTSTHRESH_I);
560

561 562 563 564
			if (cmd_action == CMD_ACT_GET) {
				pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_GET);
			} else if (cmd_action == CMD_ACT_SET) {
				pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_SET);
565 566 567
				pSNMPMIB->bufsize = cpu_to_le16(sizeof(u16));
				ulTemp = *((u32 *)pdata_buf);
				*(__le16 *)(pSNMPMIB->value) =
568 569 570 571 572 573
				    cpu_to_le16((u16) ulTemp);

			}
			break;
		}
	case OID_802_11_TX_RETRYCOUNT:
574
		pSNMPMIB->oid = cpu_to_le16((u16) SHORT_RETRYLIM_I);
575

576 577 578 579
		if (cmd_action == CMD_ACT_GET) {
			pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_GET);
		} else if (cmd_action == CMD_ACT_SET) {
			pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_SET);
580
			pSNMPMIB->bufsize = cpu_to_le16(sizeof(u16));
581
			*((__le16 *)(pSNMPMIB->value)) =
582
			    cpu_to_le16((u16) priv->txretrycount);
583 584 585 586 587 588 589
		}

		break;
	default:
		break;
	}

590
	lbs_deb_cmd(
591
	       "SNMP_CMD: command=0x%x, size=0x%x, seqnum=0x%x, result=0x%x\n",
592 593
	       le16_to_cpu(cmd->command), le16_to_cpu(cmd->size),
	       le16_to_cpu(cmd->seqnum), le16_to_cpu(cmd->result));
594

595
	lbs_deb_cmd(
596
	       "SNMP_CMD: action 0x%x, oid 0x%x, oidsize 0x%x, value 0x%x\n",
597 598 599
	       le16_to_cpu(pSNMPMIB->querytype), le16_to_cpu(pSNMPMIB->oid),
	       le16_to_cpu(pSNMPMIB->bufsize),
	       le16_to_cpu(*(__le16 *) pSNMPMIB->value));
600

601
	lbs_deb_leave(LBS_DEB_CMD);
602 603 604
	return 0;
}

605
static int lbs_cmd_802_11_radio_control(struct lbs_private *priv,
606 607 608
					 struct cmd_ds_command *cmd,
					 int cmd_action)
{
609
	struct cmd_ds_802_11_radio_control *pradiocontrol = &cmd->params.radio;
610

611
	lbs_deb_enter(LBS_DEB_CMD);
612 613 614 615

	cmd->size =
	    cpu_to_le16((sizeof(struct cmd_ds_802_11_radio_control)) +
			     S_DS_GEN);
616
	cmd->command = cpu_to_le16(CMD_802_11_RADIO_CONTROL);
617 618 619

	pradiocontrol->action = cpu_to_le16(cmd_action);

620
	switch (priv->preamble) {
621
	case CMD_TYPE_SHORT_PREAMBLE:
622 623 624
		pradiocontrol->control = cpu_to_le16(SET_SHORT_PREAMBLE);
		break;

625
	case CMD_TYPE_LONG_PREAMBLE:
626 627 628
		pradiocontrol->control = cpu_to_le16(SET_LONG_PREAMBLE);
		break;

629
	case CMD_TYPE_AUTO_PREAMBLE:
630 631 632 633 634
	default:
		pradiocontrol->control = cpu_to_le16(SET_AUTO_PREAMBLE);
		break;
	}

635
	if (priv->radioon)
636 637 638 639
		pradiocontrol->control |= cpu_to_le16(TURN_ON_RF);
	else
		pradiocontrol->control &= cpu_to_le16(~TURN_ON_RF);

640
	lbs_deb_leave(LBS_DEB_CMD);
641 642 643
	return 0;
}

644
static int lbs_cmd_802_11_rf_tx_power(struct lbs_private *priv,
645 646 647 648 649 650
				       struct cmd_ds_command *cmd,
				       u16 cmd_action, void *pdata_buf)
{

	struct cmd_ds_802_11_rf_tx_power *prtp = &cmd->params.txp;

651
	lbs_deb_enter(LBS_DEB_CMD);
652 653

	cmd->size =
654
	    cpu_to_le16((sizeof(struct cmd_ds_802_11_rf_tx_power)) + S_DS_GEN);
655
	cmd->command = cpu_to_le16(CMD_802_11_RF_TX_POWER);
656
	prtp->action = cpu_to_le16(cmd_action);
657

658 659 660
	lbs_deb_cmd("RF_TX_POWER_CMD: size:%d cmd:0x%x Act:%d\n",
		    le16_to_cpu(cmd->size), le16_to_cpu(cmd->command),
		    le16_to_cpu(prtp->action));
661 662

	switch (cmd_action) {
663 664
	case CMD_ACT_TX_POWER_OPT_GET:
		prtp->action = cpu_to_le16(CMD_ACT_GET);
665 666 667
		prtp->currentlevel = 0;
		break;

668 669 670
	case CMD_ACT_TX_POWER_OPT_SET_HIGH:
		prtp->action = cpu_to_le16(CMD_ACT_SET);
		prtp->currentlevel = cpu_to_le16(CMD_ACT_TX_POWER_INDEX_HIGH);
671 672
		break;

673 674 675
	case CMD_ACT_TX_POWER_OPT_SET_MID:
		prtp->action = cpu_to_le16(CMD_ACT_SET);
		prtp->currentlevel = cpu_to_le16(CMD_ACT_TX_POWER_INDEX_MID);
676 677
		break;

678 679
	case CMD_ACT_TX_POWER_OPT_SET_LOW:
		prtp->action = cpu_to_le16(CMD_ACT_SET);
680 681 682
		prtp->currentlevel = cpu_to_le16(*((u16 *) pdata_buf));
		break;
	}
683 684

	lbs_deb_leave(LBS_DEB_CMD);
685 686 687
	return 0;
}

688
static int lbs_cmd_802_11_monitor_mode(struct lbs_private *priv,
689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707
				      struct cmd_ds_command *cmd,
				      u16 cmd_action, void *pdata_buf)
{
	struct cmd_ds_802_11_monitor_mode *monitor = &cmd->params.monitor;

	cmd->command = cpu_to_le16(CMD_802_11_MONITOR_MODE);
	cmd->size =
	    cpu_to_le16(sizeof(struct cmd_ds_802_11_monitor_mode) +
			     S_DS_GEN);

	monitor->action = cpu_to_le16(cmd_action);
	if (cmd_action == CMD_ACT_SET) {
		monitor->mode =
		    cpu_to_le16((u16) (*(u32 *) pdata_buf));
	}

	return 0;
}

708
static int lbs_cmd_802_11_rate_adapt_rateset(struct lbs_private *priv,
709 710 711 712 713 714
					      struct cmd_ds_command *cmd,
					      u16 cmd_action)
{
	struct cmd_ds_802_11_rate_adapt_rateset
	*rateadapt = &cmd->params.rateset;

715
	lbs_deb_enter(LBS_DEB_CMD);
716 717 718
	cmd->size =
	    cpu_to_le16(sizeof(struct cmd_ds_802_11_rate_adapt_rateset)
			     + S_DS_GEN);
719
	cmd->command = cpu_to_le16(CMD_802_11_RATE_ADAPT_RATESET);
720

721
	rateadapt->action = cpu_to_le16(cmd_action);
722 723
	rateadapt->enablehwauto = cpu_to_le16(priv->enablehwauto);
	rateadapt->bitmap = cpu_to_le16(priv->ratebitmap);
724

725
	lbs_deb_leave(LBS_DEB_CMD);
726 727 728
	return 0;
}

729 730 731 732 733 734 735 736
/**
 *  @brief Get the current data rate
 *
 *  @param priv    	A pointer to struct lbs_private structure
 *
 *  @return 	   	The data rate on success, error on failure
 */
int lbs_get_data_rate(struct lbs_private *priv)
737
{
738 739
	struct cmd_ds_802_11_data_rate cmd;
	int ret = -1;
740

741
	lbs_deb_enter(LBS_DEB_CMD);
742

743 744 745 746
	memset(&cmd, 0, sizeof(cmd));
	cmd.hdr.size = cpu_to_le16(sizeof(cmd));
	cmd.action = cpu_to_le16(CMD_ACT_GET_TX_RATE);

747
	ret = lbs_cmd_with_response(priv, CMD_802_11_DATA_RATE, &cmd);
748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790
	if (ret)
		goto out;

	lbs_deb_hex(LBS_DEB_CMD, "DATA_RATE_RESP", (u8 *) &cmd, sizeof (cmd));

	ret = (int) lbs_fw_index_to_data_rate(cmd.rates[0]);
	lbs_deb_cmd("DATA_RATE: current rate 0x%02x\n", ret);

out:
	lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
	return ret;
}

/**
 *  @brief Set the data rate
 *
 *  @param priv    	A pointer to struct lbs_private structure
 *  @param rate  	The desired data rate, or 0 to clear a locked rate
 *
 *  @return 	   	0 on success, error on failure
 */
int lbs_set_data_rate(struct lbs_private *priv, u8 rate)
{
	struct cmd_ds_802_11_data_rate cmd;
	int ret = 0;

	lbs_deb_enter(LBS_DEB_CMD);

	memset(&cmd, 0, sizeof(cmd));
	cmd.hdr.size = cpu_to_le16(sizeof(cmd));

	if (rate > 0) {
		cmd.action = cpu_to_le16(CMD_ACT_SET_TX_FIX_RATE);
		cmd.rates[0] = lbs_data_rate_to_fw_index(rate);
		if (cmd.rates[0] == 0) {
			lbs_deb_cmd("DATA_RATE: invalid requested rate of"
			            " 0x%02X\n", rate);
			ret = 0;
			goto out;
		}
		lbs_deb_cmd("DATA_RATE: set fixed 0x%02X\n", cmd.rates[0]);
	} else {
		cmd.action = cpu_to_le16(CMD_ACT_SET_TX_AUTO);
791
		lbs_deb_cmd("DATA_RATE: setting auto\n");
792 793
	}

794
	ret = lbs_cmd_with_response(priv, CMD_802_11_DATA_RATE, &cmd);
795 796 797 798 799 800 801 802 803 804 805 806 807 808
	if (ret)
		goto out;

	lbs_deb_hex(LBS_DEB_CMD, "DATA_RATE_RESP", (u8 *) &cmd, sizeof (cmd));

	/* FIXME: get actual rates FW can do if this command actually returns
	 * all data rates supported.
	 */
	priv->cur_rate = lbs_fw_index_to_data_rate(cmd.rates[0]);
	lbs_deb_cmd("DATA_RATE: current rate is 0x%02x\n", priv->cur_rate);

out:
	lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
	return ret;
809 810
}

811
static int lbs_cmd_mac_multicast_adr(struct lbs_private *priv,
812 813 814 815 816
				      struct cmd_ds_command *cmd,
				      u16 cmd_action)
{
	struct cmd_ds_mac_multicast_adr *pMCastAdr = &cmd->params.madr;

817
	lbs_deb_enter(LBS_DEB_CMD);
818
	cmd->size = cpu_to_le16(sizeof(struct cmd_ds_mac_multicast_adr) +
819
			     S_DS_GEN);
820
	cmd->command = cpu_to_le16(CMD_MAC_MULTICAST_ADR);
821

822
	lbs_deb_cmd("MULTICAST_ADR: setting %d addresses\n", pMCastAdr->nr_of_adrs);
823 824
	pMCastAdr->action = cpu_to_le16(cmd_action);
	pMCastAdr->nr_of_adrs =
825 826 827
	    cpu_to_le16((u16) priv->nr_of_multicastmacaddr);
	memcpy(pMCastAdr->maclist, priv->multicastlist,
	       priv->nr_of_multicastmacaddr * ETH_ALEN);
828

829
	lbs_deb_leave(LBS_DEB_CMD);
830 831 832
	return 0;
}

833 834 835 836 837 838 839 840
/**
 *  @brief Get the radio channel
 *
 *  @param priv    	A pointer to struct lbs_private structure
 *
 *  @return 	   	The channel on success, error on failure
 */
int lbs_get_channel(struct lbs_private *priv)
841
{
842 843
	struct cmd_ds_802_11_rf_channel cmd;
	int ret = 0;
844

845
	lbs_deb_enter(LBS_DEB_CMD);
846

847 848
	cmd.hdr.size = cpu_to_le16(sizeof(cmd));
	cmd.action = cpu_to_le16(CMD_OPT_802_11_RF_CHANNEL_GET);
849

850
	ret = lbs_cmd_with_response(priv, CMD_802_11_RF_CHANNEL, &cmd);
851 852
	if (ret)
		goto out;
853

854 855
	ret = le16_to_cpu(cmd.channel);
	lbs_deb_cmd("current radio channel is %d\n", ret);
856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881

out:
	lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
	return ret;
}

/**
 *  @brief Set the radio channel
 *
 *  @param priv    	A pointer to struct lbs_private structure
 *  @param channel  	The desired channel, or 0 to clear a locked channel
 *
 *  @return 	   	0 on success, error on failure
 */
int lbs_set_channel(struct lbs_private *priv, u8 channel)
{
	struct cmd_ds_802_11_rf_channel cmd;
	u8 old_channel = priv->curbssparams.channel;
	int ret = 0;

	lbs_deb_enter(LBS_DEB_CMD);

	cmd.hdr.size = cpu_to_le16(sizeof(cmd));
	cmd.action = cpu_to_le16(CMD_OPT_802_11_RF_CHANNEL_SET);
	cmd.channel = cpu_to_le16(channel);

882
	ret = lbs_cmd_with_response(priv, CMD_802_11_RF_CHANNEL, &cmd);
883 884 885
	if (ret)
		goto out;

886 887 888
	priv->curbssparams.channel = (uint8_t) le16_to_cpu(cmd.channel);
	lbs_deb_cmd("channel switch from %d to %d\n", old_channel,
		priv->curbssparams.channel);
889 890 891 892

out:
	lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
	return ret;
893 894
}

895
static int lbs_cmd_802_11_rssi(struct lbs_private *priv,
896 897 898
				struct cmd_ds_command *cmd)
{

899
	lbs_deb_enter(LBS_DEB_CMD);
900
	cmd->command = cpu_to_le16(CMD_802_11_RSSI);
901
	cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_rssi) + S_DS_GEN);
902
	cmd->params.rssi.N = cpu_to_le16(DEFAULT_BCN_AVG_FACTOR);
903 904

	/* reset Beacon SNR/NF/RSSI values */
905 906 907 908 909 910
	priv->SNR[TYPE_BEACON][TYPE_NOAVG] = 0;
	priv->SNR[TYPE_BEACON][TYPE_AVG] = 0;
	priv->NF[TYPE_BEACON][TYPE_NOAVG] = 0;
	priv->NF[TYPE_BEACON][TYPE_AVG] = 0;
	priv->RSSI[TYPE_BEACON][TYPE_NOAVG] = 0;
	priv->RSSI[TYPE_BEACON][TYPE_AVG] = 0;
911

912
	lbs_deb_leave(LBS_DEB_CMD);
913 914 915
	return 0;
}

916
static int lbs_cmd_reg_access(struct lbs_private *priv,
917 918 919
			       struct cmd_ds_command *cmdptr,
			       u8 cmd_action, void *pdata_buf)
{
920
	struct lbs_offset_value *offval;
921

922
	lbs_deb_enter(LBS_DEB_CMD);
923

924
	offval = (struct lbs_offset_value *)pdata_buf;
925

H
Holger Schurig 已提交
926
	switch (le16_to_cpu(cmdptr->command)) {
927
	case CMD_MAC_REG_ACCESS:
928 929 930 931
		{
			struct cmd_ds_mac_reg_access *macreg;

			cmdptr->size =
932 933
			    cpu_to_le16(sizeof (struct cmd_ds_mac_reg_access)
					+ S_DS_GEN);
934 935 936 937 938 939 940 941 942 943 944
			macreg =
			    (struct cmd_ds_mac_reg_access *)&cmdptr->params.
			    macreg;

			macreg->action = cpu_to_le16(cmd_action);
			macreg->offset = cpu_to_le16((u16) offval->offset);
			macreg->value = cpu_to_le32(offval->value);

			break;
		}

945
	case CMD_BBP_REG_ACCESS:
946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963
		{
			struct cmd_ds_bbp_reg_access *bbpreg;

			cmdptr->size =
			    cpu_to_le16(sizeof
					     (struct cmd_ds_bbp_reg_access)
					     + S_DS_GEN);
			bbpreg =
			    (struct cmd_ds_bbp_reg_access *)&cmdptr->params.
			    bbpreg;

			bbpreg->action = cpu_to_le16(cmd_action);
			bbpreg->offset = cpu_to_le16((u16) offval->offset);
			bbpreg->value = (u8) offval->value;

			break;
		}

964
	case CMD_RF_REG_ACCESS:
965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986
		{
			struct cmd_ds_rf_reg_access *rfreg;

			cmdptr->size =
			    cpu_to_le16(sizeof
					     (struct cmd_ds_rf_reg_access) +
					     S_DS_GEN);
			rfreg =
			    (struct cmd_ds_rf_reg_access *)&cmdptr->params.
			    rfreg;

			rfreg->action = cpu_to_le16(cmd_action);
			rfreg->offset = cpu_to_le16((u16) offval->offset);
			rfreg->value = (u8) offval->value;

			break;
		}

	default:
		break;
	}

987
	lbs_deb_leave(LBS_DEB_CMD);
988 989 990
	return 0;
}

991
static int lbs_cmd_802_11_mac_address(struct lbs_private *priv,
992 993 994 995
				       struct cmd_ds_command *cmd,
				       u16 cmd_action)
{

996
	lbs_deb_enter(LBS_DEB_CMD);
997
	cmd->command = cpu_to_le16(CMD_802_11_MAC_ADDRESS);
998
	cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_mac_address) +
999 1000 1001 1002 1003
			     S_DS_GEN);
	cmd->result = 0;

	cmd->params.macadd.action = cpu_to_le16(cmd_action);

1004
	if (cmd_action == CMD_ACT_SET) {
1005
		memcpy(cmd->params.macadd.macadd,
1006 1007
		       priv->current_addr, ETH_ALEN);
		lbs_deb_hex(LBS_DEB_CMD, "SET_CMD: MAC addr", priv->current_addr, 6);
1008 1009
	}

1010
	lbs_deb_leave(LBS_DEB_CMD);
1011 1012 1013
	return 0;
}

1014
static int lbs_cmd_802_11_eeprom_access(struct lbs_private *priv,
1015 1016 1017
					 struct cmd_ds_command *cmd,
					 int cmd_action, void *pdata_buf)
{
1018
	struct lbs_ioctl_regrdwr *ea = pdata_buf;
1019

1020
	lbs_deb_enter(LBS_DEB_CMD);
1021

1022
	cmd->command = cpu_to_le16(CMD_802_11_EEPROM_ACCESS);
1023 1024
	cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_eeprom_access) +
				S_DS_GEN);
1025 1026 1027 1028 1029 1030 1031
	cmd->result = 0;

	cmd->params.rdeeprom.action = cpu_to_le16(ea->action);
	cmd->params.rdeeprom.offset = cpu_to_le16(ea->offset);
	cmd->params.rdeeprom.bytecount = cpu_to_le16(ea->NOB);
	cmd->params.rdeeprom.value = 0;

1032
	lbs_deb_leave(LBS_DEB_CMD);
1033 1034 1035
	return 0;
}

1036
static int lbs_cmd_bt_access(struct lbs_private *priv,
1037 1038 1039 1040
			       struct cmd_ds_command *cmd,
			       u16 cmd_action, void *pdata_buf)
{
	struct cmd_ds_bt_access *bt_access = &cmd->params.bt;
1041
	lbs_deb_enter_args(LBS_DEB_CMD, "action %d", cmd_action);
1042

1043
	cmd->command = cpu_to_le16(CMD_BT_ACCESS);
1044
	cmd->size = cpu_to_le16(sizeof(struct cmd_ds_bt_access) + S_DS_GEN);
1045 1046 1047 1048
	cmd->result = 0;
	bt_access->action = cpu_to_le16(cmd_action);

	switch (cmd_action) {
1049
	case CMD_ACT_BT_ACCESS_ADD:
1050
		memcpy(bt_access->addr1, pdata_buf, 2 * ETH_ALEN);
1051
		lbs_deb_hex(LBS_DEB_MESH, "BT_ADD: blinded MAC addr", bt_access->addr1, 6);
1052
		break;
1053
	case CMD_ACT_BT_ACCESS_DEL:
1054
		memcpy(bt_access->addr1, pdata_buf, 1 * ETH_ALEN);
1055
		lbs_deb_hex(LBS_DEB_MESH, "BT_DEL: blinded MAC addr", bt_access->addr1, 6);
1056
		break;
1057
	case CMD_ACT_BT_ACCESS_LIST:
1058 1059
		bt_access->id = cpu_to_le32(*(u32 *) pdata_buf);
		break;
1060
	case CMD_ACT_BT_ACCESS_RESET:
1061
		break;
1062
	case CMD_ACT_BT_ACCESS_SET_INVERT:
1063 1064
		bt_access->id = cpu_to_le32(*(u32 *) pdata_buf);
		break;
1065
	case CMD_ACT_BT_ACCESS_GET_INVERT:
1066
		break;
1067 1068 1069
	default:
		break;
	}
1070
	lbs_deb_leave(LBS_DEB_CMD);
1071 1072 1073
	return 0;
}

1074
static int lbs_cmd_fwt_access(struct lbs_private *priv,
1075 1076 1077 1078
			       struct cmd_ds_command *cmd,
			       u16 cmd_action, void *pdata_buf)
{
	struct cmd_ds_fwt_access *fwt_access = &cmd->params.fwt;
1079
	lbs_deb_enter_args(LBS_DEB_CMD, "action %d", cmd_action);
1080

1081
	cmd->command = cpu_to_le16(CMD_FWT_ACCESS);
1082
	cmd->size = cpu_to_le16(sizeof(struct cmd_ds_fwt_access) + S_DS_GEN);
1083 1084 1085 1086 1087 1088 1089 1090 1091
	cmd->result = 0;

	if (pdata_buf)
		memcpy(fwt_access, pdata_buf, sizeof(*fwt_access));
	else
		memset(fwt_access, 0, sizeof(*fwt_access));

	fwt_access->action = cpu_to_le16(cmd_action);

1092
	lbs_deb_leave(LBS_DEB_CMD);
1093 1094 1095
	return 0;
}

1096 1097
int lbs_mesh_access(struct lbs_private *priv, uint16_t cmd_action,
		    struct cmd_ds_mesh_access *cmd)
1098
{
1099 1100
	int ret;

1101
	lbs_deb_enter_args(LBS_DEB_CMD, "action %d", cmd_action);
1102

1103 1104 1105
	cmd->hdr.command = cpu_to_le16(CMD_MESH_ACCESS);
	cmd->hdr.size = cpu_to_le16(sizeof(struct cmd_ds_mesh_access) + S_DS_GEN);
	cmd->hdr.result = 0;
1106

1107
	cmd->action = cpu_to_le16(cmd_action);
1108

1109
	ret = lbs_cmd_with_response(priv, CMD_MESH_ACCESS, cmd);
1110

1111
	lbs_deb_leave(LBS_DEB_CMD);
1112
	return ret;
1113
}
1114
EXPORT_SYMBOL_GPL(lbs_mesh_access);
1115

1116
int lbs_mesh_config(struct lbs_private *priv, uint16_t enable, uint16_t chan)
1117 1118 1119 1120 1121
{
	struct cmd_ds_mesh_config cmd;

	memset(&cmd, 0, sizeof(cmd));
	cmd.action = cpu_to_le16(enable);
1122
	cmd.channel = cpu_to_le16(chan);
1123
	cmd.type = cpu_to_le16(priv->mesh_tlv);
1124

1125 1126 1127 1128
	if (enable) {
		cmd.length = cpu_to_le16(priv->mesh_ssid_len);
		memcpy(cmd.data, priv->mesh_ssid, priv->mesh_ssid_len);
	}
1129
	lbs_deb_cmd("mesh config enable %d TLV %x channel %d SSID %s\n",
1130
		    enable, priv->mesh_tlv, chan,
1131
		    escape_essid(priv->mesh_ssid, priv->mesh_ssid_len));
1132
	return lbs_cmd_with_response(priv, CMD_MESH_CONFIG, &cmd);
1133 1134
}

1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148
static int lbs_cmd_bcn_ctrl(struct lbs_private * priv,
				struct cmd_ds_command *cmd,
				u16 cmd_action)
{
	struct cmd_ds_802_11_beacon_control
		*bcn_ctrl = &cmd->params.bcn_ctrl;

	lbs_deb_enter(LBS_DEB_CMD);
	cmd->size =
	    cpu_to_le16(sizeof(struct cmd_ds_802_11_beacon_control)
			     + S_DS_GEN);
	cmd->command = cpu_to_le16(CMD_802_11_BEACON_CTRL);

	bcn_ctrl->action = cpu_to_le16(cmd_action);
1149 1150
	bcn_ctrl->beacon_enable = cpu_to_le16(priv->beacon_enable);
	bcn_ctrl->beacon_period = cpu_to_le16(priv->beacon_period);
1151 1152 1153 1154 1155

	lbs_deb_leave(LBS_DEB_CMD);
	return 0;
}

1156
/*
1157
 * Note: NEVER use lbs_queue_cmd() with addtail==0 other than for
1158 1159
 * the command timer, because it does not account for queued commands.
 */
1160
void lbs_queue_cmd(struct lbs_private *priv,
1161 1162
	struct cmd_ctrl_node *cmdnode,
	u8 addtail)
1163 1164 1165
{
	unsigned long flags;

1166
	lbs_deb_enter(LBS_DEB_HOST);
1167

1168 1169
	if (!cmdnode) {
		lbs_deb_host("QUEUE_CMD: cmdnode is NULL\n");
1170 1171
		goto done;
	}
1172 1173 1174 1175
	if (!cmdnode->cmdbuf->size) {
		lbs_deb_host("DNLD_CMD: cmd size is zero\n");
		goto done;
	}
1176 1177

	/* Exit_PS command needs to be queued in the header always. */
1178 1179 1180
	if (le16_to_cpu(cmdnode->cmdbuf->command) == CMD_802_11_PS_MODE) {
		struct cmd_ds_802_11_ps_mode *psm = (void *) cmdnode->cmdbuf;

1181
		if (psm->action == cpu_to_le16(CMD_SUBCMD_EXIT_PS)) {
1182
			if (priv->psstate != PS_STATE_FULL_POWER)
1183 1184 1185 1186
				addtail = 0;
		}
	}

1187
	spin_lock_irqsave(&priv->driver_lock, flags);
1188

1189
	if (addtail)
1190
		list_add_tail(&cmdnode->list, &priv->cmdpendingq);
1191
	else
1192
		list_add(&cmdnode->list, &priv->cmdpendingq);
1193

1194
	spin_unlock_irqrestore(&priv->driver_lock, flags);
1195

1196
	lbs_deb_host("QUEUE_CMD: inserted command 0x%04x into cmdpendingq\n",
1197
		     le16_to_cpu(cmdnode->cmdbuf->command));
1198 1199

done:
1200
	lbs_deb_leave(LBS_DEB_HOST);
1201 1202
}

1203 1204
static int lbs_submit_command(struct lbs_private *priv,
			      struct cmd_ctrl_node *cmdnode)
1205 1206
{
	unsigned long flags;
1207
	struct cmd_header *cmd;
1208
	int ret = -1;
1209 1210 1211
	u16 cmdsize;
	u16 command;

1212
	lbs_deb_enter(LBS_DEB_HOST);
1213

1214
	cmd = cmdnode->cmdbuf;
1215

1216 1217 1218 1219
	spin_lock_irqsave(&priv->driver_lock, flags);
	priv->cur_cmd = cmdnode;
	priv->cur_cmd_retcode = 0;
	spin_unlock_irqrestore(&priv->driver_lock, flags);
1220

1221 1222
	cmdsize = le16_to_cpu(cmd->size);
	command = le16_to_cpu(cmd->command);
1223

1224 1225
	lbs_deb_host("DNLD_CMD: command 0x%04x, seq %d, size %d, jiffies %lu\n",
		     command, le16_to_cpu(cmd->seqnum), cmdsize, jiffies);
1226
	lbs_deb_hex(LBS_DEB_HOST, "DNLD_CMD", (void *) cmdnode->cmdbuf, cmdsize);
1227

1228
	ret = priv->hw_host_to_card(priv, MVMS_CMD, (u8 *) cmd, cmdsize);
1229 1230
	if (ret) {
		lbs_pr_info("DNLD_CMD: hw_host_to_card failed: %d\n", ret);
1231
		spin_lock_irqsave(&priv->driver_lock, flags);
1232
		lbs_complete_command(priv, priv->cur_cmd, ret);
1233
		spin_unlock_irqrestore(&priv->driver_lock, flags);
1234 1235 1236
		goto done;
	}

1237
	lbs_deb_cmd("DNLD_CMD: sent command 0x%04x, jiffies %lu\n", command, jiffies);
1238 1239

	/* Setup the timer after transmit command */
1240 1241
	if (command == CMD_802_11_SCAN || command == CMD_802_11_AUTHENTICATE
	    || command == CMD_802_11_ASSOCIATE)
1242
		mod_timer(&priv->command_timer, jiffies + (10*HZ));
1243
	else
1244
		mod_timer(&priv->command_timer, jiffies + (5*HZ));
1245 1246 1247

	ret = 0;

1248
done:
1249
	lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
1250 1251 1252
	return ret;
}

1253
static int lbs_cmd_mac_control(struct lbs_private *priv,
1254 1255 1256 1257
				struct cmd_ds_command *cmd)
{
	struct cmd_ds_mac_control *mac = &cmd->params.macctrl;

1258
	lbs_deb_enter(LBS_DEB_CMD);
1259

1260
	cmd->command = cpu_to_le16(CMD_MAC_CONTROL);
1261
	cmd->size = cpu_to_le16(sizeof(struct cmd_ds_mac_control) + S_DS_GEN);
1262
	mac->action = cpu_to_le16(priv->currentpacketfilter);
1263

1264
	lbs_deb_cmd("MAC_CONTROL: action 0x%x, size %d\n",
1265
		    le16_to_cpu(mac->action), le16_to_cpu(cmd->size));
1266

1267
	lbs_deb_leave(LBS_DEB_CMD);
1268 1269 1270 1271 1272
	return 0;
}

/**
 *  This function inserts command node to cmdfreeq
1273
 *  after cleans it. Requires priv->driver_lock held.
1274
 */
1275
static void __lbs_cleanup_and_insert_cmd(struct lbs_private *priv,
1276
					 struct cmd_ctrl_node *cmdnode)
1277
{
1278 1279 1280 1281 1282 1283 1284
	lbs_deb_enter(LBS_DEB_HOST);

	if (!cmdnode)
		goto out;

	cmdnode->callback = NULL;
	cmdnode->callback_arg = 0;
1285

1286
	memset(cmdnode->cmdbuf, 0, LBS_CMD_BUFFER_SIZE);
1287

1288 1289 1290
	list_add_tail(&cmdnode->list, &priv->cmdfreeq);
 out:
	lbs_deb_leave(LBS_DEB_HOST);
1291 1292
}

1293 1294
static void lbs_cleanup_and_insert_cmd(struct lbs_private *priv,
	struct cmd_ctrl_node *ptempcmd)
1295 1296 1297
{
	unsigned long flags;

1298
	spin_lock_irqsave(&priv->driver_lock, flags);
1299
	__lbs_cleanup_and_insert_cmd(priv, ptempcmd);
1300
	spin_unlock_irqrestore(&priv->driver_lock, flags);
1301 1302
}

1303 1304 1305 1306 1307
void lbs_complete_command(struct lbs_private *priv, struct cmd_ctrl_node *cmd,
			  int result)
{
	if (cmd == priv->cur_cmd)
		priv->cur_cmd_retcode = result;
1308 1309 1310 1311

	cmd->cmdwaitqwoken = 1;
	wake_up_interruptible(&cmd->cmdwait_q);

1312 1313
	if (!cmd->callback)
		__lbs_cleanup_and_insert_cmd(priv, cmd);
1314 1315 1316
	priv->cur_cmd = NULL;
}

1317
int lbs_set_radio_control(struct lbs_private *priv)
1318 1319 1320
{
	int ret = 0;

1321
	lbs_deb_enter(LBS_DEB_CMD);
1322

1323
	ret = lbs_prepare_and_send_command(priv,
1324 1325 1326
				    CMD_802_11_RADIO_CONTROL,
				    CMD_ACT_SET,
				    CMD_OPTION_WAITFORRSP, 0, NULL);
1327

1328
	lbs_deb_cmd("RADIO_SET: radio %d, preamble %d\n",
1329
	       priv->radioon, priv->preamble);
1330

1331
	lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
1332 1333 1334
	return ret;
}

1335
int lbs_set_mac_packet_filter(struct lbs_private *priv)
1336 1337 1338
{
	int ret = 0;

1339
	lbs_deb_enter(LBS_DEB_CMD);
1340 1341

	/* Send MAC control command to station */
1342
	ret = lbs_prepare_and_send_command(priv,
1343
				    CMD_MAC_CONTROL, 0, 0, 0, NULL);
1344

1345
	lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
1346 1347 1348 1349 1350 1351
	return ret;
}

/**
 *  @brief This function prepare the command before send to firmware.
 *
1352
 *  @param priv		A pointer to struct lbs_private structure
1353 1354 1355 1356 1357 1358 1359
 *  @param cmd_no	command number
 *  @param cmd_action	command action: GET or SET
 *  @param wait_option	wait option: wait response or not
 *  @param cmd_oid	cmd oid: treated as sub command
 *  @param pdata_buf	A pointer to informaion buffer
 *  @return 		0 or -1
 */
1360
int lbs_prepare_and_send_command(struct lbs_private *priv,
1361 1362 1363 1364 1365 1366 1367 1368 1369
			  u16 cmd_no,
			  u16 cmd_action,
			  u16 wait_option, u32 cmd_oid, void *pdata_buf)
{
	int ret = 0;
	struct cmd_ctrl_node *cmdnode;
	struct cmd_ds_command *cmdptr;
	unsigned long flags;

1370
	lbs_deb_enter(LBS_DEB_HOST);
1371

1372 1373
	if (!priv) {
		lbs_deb_host("PREP_CMD: priv is NULL\n");
1374 1375 1376 1377
		ret = -1;
		goto done;
	}

1378
	if (priv->surpriseremoved) {
1379
		lbs_deb_host("PREP_CMD: card removed\n");
1380 1381 1382 1383
		ret = -1;
		goto done;
	}

1384
	cmdnode = lbs_get_cmd_ctrl_node(priv);
1385 1386

	if (cmdnode == NULL) {
1387
		lbs_deb_host("PREP_CMD: cmdnode is NULL\n");
1388 1389

		/* Wake up main thread to execute next command */
1390
		wake_up_interruptible(&priv->waitq);
1391 1392 1393 1394
		ret = -1;
		goto done;
	}

1395
	lbs_set_cmd_ctrl_node(priv, cmdnode, pdata_buf);
1396

1397
	cmdptr = (struct cmd_ds_command *)cmdnode->cmdbuf;
1398

1399
	lbs_deb_host("PREP_CMD: command 0x%04x\n", cmd_no);
1400 1401

	/* Set sequence number, command and INT option */
1402 1403
	priv->seqnum++;
	cmdptr->seqnum = cpu_to_le16(priv->seqnum);
1404

1405
	cmdptr->command = cpu_to_le16(cmd_no);
1406 1407 1408
	cmdptr->result = 0;

	switch (cmd_no) {
1409
	case CMD_802_11_PS_MODE:
1410
		ret = lbs_cmd_802_11_ps_mode(priv, cmdptr, cmd_action);
1411 1412
		break;

1413
	case CMD_802_11_SCAN:
1414
		ret = lbs_cmd_80211_scan(priv, cmdptr, pdata_buf);
1415 1416
		break;

1417
	case CMD_MAC_CONTROL:
1418
		ret = lbs_cmd_mac_control(priv, cmdptr);
1419 1420
		break;

1421 1422
	case CMD_802_11_ASSOCIATE:
	case CMD_802_11_REASSOCIATE:
1423
		ret = lbs_cmd_80211_associate(priv, cmdptr, pdata_buf);
1424 1425
		break;

1426
	case CMD_802_11_DEAUTHENTICATE:
1427
		ret = lbs_cmd_80211_deauthenticate(priv, cmdptr);
1428 1429
		break;

1430
	case CMD_802_11_SET_WEP:
1431
		ret = lbs_cmd_802_11_set_wep(priv, cmdptr, cmd_action, pdata_buf);
1432 1433
		break;

1434
	case CMD_802_11_AD_HOC_START:
1435
		ret = lbs_cmd_80211_ad_hoc_start(priv, cmdptr, pdata_buf);
1436
		break;
1437
	case CMD_CODE_DNLD:
1438 1439
		break;

1440
	case CMD_802_11_RESET:
1441
		ret = lbs_cmd_802_11_reset(priv, cmdptr, cmd_action);
1442 1443
		break;

1444
	case CMD_802_11_GET_LOG:
1445
		ret = lbs_cmd_802_11_get_log(priv, cmdptr);
1446 1447
		break;

1448
	case CMD_802_11_AUTHENTICATE:
1449
		ret = lbs_cmd_80211_authenticate(priv, cmdptr, pdata_buf);
1450 1451
		break;

1452
	case CMD_802_11_GET_STAT:
1453
		ret = lbs_cmd_802_11_get_stat(priv, cmdptr);
1454 1455
		break;

1456
	case CMD_802_11_SNMP_MIB:
1457
		ret = lbs_cmd_802_11_snmp_mib(priv, cmdptr,
1458 1459 1460
					       cmd_action, cmd_oid, pdata_buf);
		break;

1461 1462 1463
	case CMD_MAC_REG_ACCESS:
	case CMD_BBP_REG_ACCESS:
	case CMD_RF_REG_ACCESS:
1464
		ret = lbs_cmd_reg_access(priv, cmdptr, cmd_action, pdata_buf);
1465 1466
		break;

1467
	case CMD_802_11_RF_TX_POWER:
1468
		ret = lbs_cmd_802_11_rf_tx_power(priv, cmdptr,
1469 1470 1471
						  cmd_action, pdata_buf);
		break;

1472
	case CMD_802_11_RADIO_CONTROL:
1473
		ret = lbs_cmd_802_11_radio_control(priv, cmdptr, cmd_action);
1474 1475
		break;

1476
	case CMD_802_11_RATE_ADAPT_RATESET:
1477
		ret = lbs_cmd_802_11_rate_adapt_rateset(priv,
1478 1479 1480
							 cmdptr, cmd_action);
		break;

1481
	case CMD_MAC_MULTICAST_ADR:
1482
		ret = lbs_cmd_mac_multicast_adr(priv, cmdptr, cmd_action);
1483 1484
		break;

1485
	case CMD_802_11_MONITOR_MODE:
1486
		ret = lbs_cmd_802_11_monitor_mode(priv, cmdptr,
1487 1488 1489
				          cmd_action, pdata_buf);
		break;

1490
	case CMD_802_11_AD_HOC_JOIN:
1491
		ret = lbs_cmd_80211_ad_hoc_join(priv, cmdptr, pdata_buf);
1492 1493
		break;

1494
	case CMD_802_11_RSSI:
1495
		ret = lbs_cmd_802_11_rssi(priv, cmdptr);
1496 1497
		break;

1498
	case CMD_802_11_AD_HOC_STOP:
1499
		ret = lbs_cmd_80211_ad_hoc_stop(priv, cmdptr);
1500 1501
		break;

1502
	case CMD_802_11_ENABLE_RSN:
1503
		ret = lbs_cmd_802_11_enable_rsn(priv, cmdptr, cmd_action,
1504
				pdata_buf);
1505 1506
		break;

1507
	case CMD_802_11_KEY_MATERIAL:
1508
		ret = lbs_cmd_802_11_key_material(priv, cmdptr, cmd_action,
1509
				cmd_oid, pdata_buf);
1510 1511
		break;

1512
	case CMD_802_11_PAIRWISE_TSC:
1513
		break;
1514
	case CMD_802_11_GROUP_TSC:
1515 1516
		break;

1517
	case CMD_802_11_MAC_ADDRESS:
1518
		ret = lbs_cmd_802_11_mac_address(priv, cmdptr, cmd_action);
1519 1520
		break;

1521
	case CMD_802_11_EEPROM_ACCESS:
1522
		ret = lbs_cmd_802_11_eeprom_access(priv, cmdptr,
1523 1524 1525
						    cmd_action, pdata_buf);
		break;

1526 1527
	case CMD_802_11_SET_AFC:
	case CMD_802_11_GET_AFC:
1528 1529

		cmdptr->command = cpu_to_le16(cmd_no);
1530 1531
		cmdptr->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_afc) +
					   S_DS_GEN);
1532 1533 1534 1535 1536 1537 1538

		memmove(&cmdptr->params.afc,
			pdata_buf, sizeof(struct cmd_ds_802_11_afc));

		ret = 0;
		goto done;

1539
	case CMD_802_11D_DOMAIN_INFO:
1540
		ret = lbs_cmd_802_11d_domain_info(priv, cmdptr,
1541 1542 1543
						   cmd_no, cmd_action);
		break;

1544
	case CMD_802_11_SLEEP_PARAMS:
1545
		ret = lbs_cmd_802_11_sleep_params(priv, cmdptr, cmd_action);
1546
		break;
1547
	case CMD_802_11_INACTIVITY_TIMEOUT:
1548
		ret = lbs_cmd_802_11_inactivity_timeout(priv, cmdptr,
1549
							 cmd_action, pdata_buf);
1550
		lbs_set_cmd_ctrl_node(priv, cmdnode, pdata_buf);
1551 1552
		break;

1553 1554
	case CMD_802_11_TPC_CFG:
		cmdptr->command = cpu_to_le16(CMD_802_11_TPC_CFG);
1555 1556 1557 1558 1559 1560 1561 1562 1563
		cmdptr->size =
		    cpu_to_le16(sizeof(struct cmd_ds_802_11_tpc_cfg) +
				     S_DS_GEN);

		memmove(&cmdptr->params.tpccfg,
			pdata_buf, sizeof(struct cmd_ds_802_11_tpc_cfg));

		ret = 0;
		break;
1564
	case CMD_802_11_LED_GPIO_CTRL:
1565 1566 1567 1568 1569 1570 1571 1572 1573 1574
		{
			struct mrvlietypes_ledgpio *gpio =
			    (struct mrvlietypes_ledgpio*)
			    cmdptr->params.ledgpio.data;

			memmove(&cmdptr->params.ledgpio,
				pdata_buf,
				sizeof(struct cmd_ds_802_11_led_ctrl));

			cmdptr->command =
1575
			    cpu_to_le16(CMD_802_11_LED_GPIO_CTRL);
1576 1577 1578

#define ACTION_NUMLED_TLVTYPE_LEN_FIELDS_LEN 8
			cmdptr->size =
H
Holger Schurig 已提交
1579 1580 1581 1582
			    cpu_to_le16(le16_to_cpu(gpio->header.len)
				+ S_DS_GEN
				+ ACTION_NUMLED_TLVTYPE_LEN_FIELDS_LEN);
			gpio->header.len = gpio->header.len;
1583 1584 1585 1586

			ret = 0;
			break;
		}
1587 1588 1589 1590
	case CMD_802_11_SUBSCRIBE_EVENT:
		lbs_cmd_802_11_subscribe_event(priv, cmdptr,
			cmd_action, pdata_buf);
		break;
1591 1592
	case CMD_802_11_PWR_CFG:
		cmdptr->command = cpu_to_le16(CMD_802_11_PWR_CFG);
1593 1594 1595 1596 1597 1598 1599 1600
		cmdptr->size =
		    cpu_to_le16(sizeof(struct cmd_ds_802_11_pwr_cfg) +
				     S_DS_GEN);
		memmove(&cmdptr->params.pwrcfg, pdata_buf,
			sizeof(struct cmd_ds_802_11_pwr_cfg));

		ret = 0;
		break;
1601
	case CMD_BT_ACCESS:
1602
		ret = lbs_cmd_bt_access(priv, cmdptr, cmd_action, pdata_buf);
1603 1604
		break;

1605
	case CMD_FWT_ACCESS:
1606
		ret = lbs_cmd_fwt_access(priv, cmdptr, cmd_action, pdata_buf);
1607 1608
		break;

1609 1610
	case CMD_GET_TSF:
		cmdptr->command = cpu_to_le16(CMD_GET_TSF);
1611 1612
		cmdptr->size = cpu_to_le16(sizeof(struct cmd_ds_get_tsf) +
					   S_DS_GEN);
1613 1614
		ret = 0;
		break;
1615 1616 1617
	case CMD_802_11_BEACON_CTRL:
		ret = lbs_cmd_bcn_ctrl(priv, cmdptr, cmd_action);
		break;
1618
	default:
1619
		lbs_deb_host("PREP_CMD: unknown command 0x%04x\n", cmd_no);
1620 1621 1622 1623 1624 1625
		ret = -1;
		break;
	}

	/* return error, since the command preparation failed */
	if (ret != 0) {
1626
		lbs_deb_host("PREP_CMD: command preparation failed\n");
1627
		lbs_cleanup_and_insert_cmd(priv, cmdnode);
1628 1629 1630 1631 1632 1633
		ret = -1;
		goto done;
	}

	cmdnode->cmdwaitqwoken = 0;

1634
	lbs_queue_cmd(priv, cmdnode, 1);
1635
	wake_up_interruptible(&priv->waitq);
1636

1637
	if (wait_option & CMD_OPTION_WAITFORRSP) {
1638
		lbs_deb_host("PREP_CMD: wait for response\n");
1639 1640 1641 1642 1643
		might_sleep();
		wait_event_interruptible(cmdnode->cmdwait_q,
					 cmdnode->cmdwaitqwoken);
	}

1644 1645
	spin_lock_irqsave(&priv->driver_lock, flags);
	if (priv->cur_cmd_retcode) {
1646
		lbs_deb_host("PREP_CMD: command failed with return code %d\n",
1647 1648
		       priv->cur_cmd_retcode);
		priv->cur_cmd_retcode = 0;
1649 1650
		ret = -1;
	}
1651
	spin_unlock_irqrestore(&priv->driver_lock, flags);
1652 1653

done:
1654
	lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
1655 1656
	return ret;
}
1657
EXPORT_SYMBOL_GPL(lbs_prepare_and_send_command);
1658 1659 1660 1661 1662

/**
 *  @brief This function allocates the command buffer and link
 *  it to command free queue.
 *
1663
 *  @param priv		A pointer to struct lbs_private structure
1664 1665
 *  @return 		0 or -1
 */
1666
int lbs_allocate_cmd_buffer(struct lbs_private *priv)
1667 1668
{
	int ret = 0;
1669
	u32 bufsize;
1670
	u32 i;
1671
	struct cmd_ctrl_node *cmdarray;
1672

1673
	lbs_deb_enter(LBS_DEB_HOST);
1674

1675 1676 1677
	/* Allocate and initialize the command array */
	bufsize = sizeof(struct cmd_ctrl_node) * LBS_NUM_CMD_BUFFERS;
	if (!(cmdarray = kzalloc(bufsize, GFP_KERNEL))) {
1678
		lbs_deb_host("ALLOC_CMD_BUF: tempcmd_array is NULL\n");
1679 1680 1681
		ret = -1;
		goto done;
	}
1682
	priv->cmd_array = cmdarray;
1683

1684 1685 1686 1687
	/* Allocate and initialize each command buffer in the command array */
	for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) {
		cmdarray[i].cmdbuf = kzalloc(LBS_CMD_BUFFER_SIZE, GFP_KERNEL);
		if (!cmdarray[i].cmdbuf) {
1688
			lbs_deb_host("ALLOC_CMD_BUF: ptempvirtualaddr is NULL\n");
1689 1690 1691 1692 1693
			ret = -1;
			goto done;
		}
	}

1694 1695 1696
	for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) {
		init_waitqueue_head(&cmdarray[i].cmdwait_q);
		lbs_cleanup_and_insert_cmd(priv, &cmdarray[i]);
1697 1698
	}
	ret = 0;
1699 1700

done:
1701
	lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
1702 1703 1704 1705 1706 1707
	return ret;
}

/**
 *  @brief This function frees the command buffer.
 *
1708
 *  @param priv		A pointer to struct lbs_private structure
1709 1710
 *  @return 		0 or -1
 */
1711
int lbs_free_cmd_buffer(struct lbs_private *priv)
1712
{
1713
	struct cmd_ctrl_node *cmdarray;
1714 1715
	unsigned int i;

1716
	lbs_deb_enter(LBS_DEB_HOST);
1717 1718

	/* need to check if cmd array is allocated or not */
1719
	if (priv->cmd_array == NULL) {
1720
		lbs_deb_host("FREE_CMD_BUF: cmd_array is NULL\n");
1721 1722 1723
		goto done;
	}

1724
	cmdarray = priv->cmd_array;
1725 1726

	/* Release shared memory buffers */
1727 1728 1729 1730
	for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) {
		if (cmdarray[i].cmdbuf) {
			kfree(cmdarray[i].cmdbuf);
			cmdarray[i].cmdbuf = NULL;
1731 1732 1733 1734
		}
	}

	/* Release cmd_ctrl_node */
1735 1736 1737
	if (priv->cmd_array) {
		kfree(priv->cmd_array);
		priv->cmd_array = NULL;
1738 1739 1740
	}

done:
1741
	lbs_deb_leave(LBS_DEB_HOST);
1742 1743 1744 1745 1746 1747 1748
	return 0;
}

/**
 *  @brief This function gets a free command node if available in
 *  command free queue.
 *
1749
 *  @param priv		A pointer to struct lbs_private structure
1750 1751
 *  @return cmd_ctrl_node A pointer to cmd_ctrl_node structure or NULL
 */
1752
static struct cmd_ctrl_node *lbs_get_cmd_ctrl_node(struct lbs_private *priv)
1753 1754 1755 1756
{
	struct cmd_ctrl_node *tempnode;
	unsigned long flags;

1757 1758
	lbs_deb_enter(LBS_DEB_HOST);

1759
	if (!priv)
1760 1761
		return NULL;

1762
	spin_lock_irqsave(&priv->driver_lock, flags);
1763

1764 1765
	if (!list_empty(&priv->cmdfreeq)) {
		tempnode = list_first_entry(&priv->cmdfreeq,
1766 1767
					    struct cmd_ctrl_node, list);
		list_del(&tempnode->list);
1768
	} else {
1769
		lbs_deb_host("GET_CMD_NODE: cmd_ctrl_node is not available\n");
1770 1771 1772
		tempnode = NULL;
	}

1773
	spin_unlock_irqrestore(&priv->driver_lock, flags);
1774

1775
	lbs_deb_leave(LBS_DEB_HOST);
1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788
	return tempnode;
}

/**
 *  @brief This function cleans command node.
 *
 *  @param ptempnode	A pointer to cmdCtrlNode structure
 *  @return 		n/a
 */

/**
 *  @brief This function initializes the command node.
 *
1789
 *  @param priv		A pointer to struct lbs_private structure
1790 1791 1792 1793
 *  @param ptempnode	A pointer to cmd_ctrl_node structure
 *  @param pdata_buf	A pointer to informaion buffer
 *  @return 		0 or -1
 */
1794 1795
static void lbs_set_cmd_ctrl_node(struct lbs_private *priv,
				  struct cmd_ctrl_node *ptempnode,
1796
				  void *pdata_buf)
1797
{
1798
	lbs_deb_enter(LBS_DEB_HOST);
1799 1800 1801 1802

	if (!ptempnode)
		return;

1803
	ptempnode->callback = NULL;
1804
	ptempnode->callback_arg = (unsigned long)pdata_buf;
1805

1806
	lbs_deb_leave(LBS_DEB_HOST);
1807 1808 1809 1810 1811 1812 1813
}

/**
 *  @brief This function executes next command in command
 *  pending queue. It will put fimware back to PS mode
 *  if applicable.
 *
1814
 *  @param priv     A pointer to struct lbs_private structure
1815 1816
 *  @return 	   0 or -1
 */
1817
int lbs_execute_next_command(struct lbs_private *priv)
1818 1819
{
	struct cmd_ctrl_node *cmdnode = NULL;
1820
	struct cmd_header *cmd;
1821 1822 1823
	unsigned long flags;
	int ret = 0;

1824
	// Debug group is LBS_DEB_THREAD and not LBS_DEB_HOST, because the
1825
	// only caller to us is lbs_thread() and we get even when a
1826 1827
	// data packet is received
	lbs_deb_enter(LBS_DEB_THREAD);
1828

1829
	spin_lock_irqsave(&priv->driver_lock, flags);
1830

1831
	if (priv->cur_cmd) {
1832
		lbs_pr_alert( "EXEC_NEXT_CMD: already processing command!\n");
1833
		spin_unlock_irqrestore(&priv->driver_lock, flags);
1834 1835 1836 1837
		ret = -1;
		goto done;
	}

1838 1839
	if (!list_empty(&priv->cmdpendingq)) {
		cmdnode = list_first_entry(&priv->cmdpendingq,
1840
					   struct cmd_ctrl_node, list);
1841 1842
	}

1843
	spin_unlock_irqrestore(&priv->driver_lock, flags);
1844 1845

	if (cmdnode) {
1846
		cmd = cmdnode->cmdbuf;
1847

1848
		if (is_command_allowed_in_ps(le16_to_cpu(cmd->command))) {
1849 1850
			if ((priv->psstate == PS_STATE_SLEEP) ||
			    (priv->psstate == PS_STATE_PRE_SLEEP)) {
1851 1852
				lbs_deb_host(
				       "EXEC_NEXT_CMD: cannot send cmd 0x%04x in psstate %d\n",
1853
				       le16_to_cpu(cmd->command),
1854
				       priv->psstate);
1855 1856 1857
				ret = -1;
				goto done;
			}
1858
			lbs_deb_host("EXEC_NEXT_CMD: OK to send command "
1859 1860
				     "0x%04x in psstate %d\n",
				     le16_to_cpu(cmd->command), priv->psstate);
1861
		} else if (priv->psstate != PS_STATE_FULL_POWER) {
1862 1863 1864
			/*
			 * 1. Non-PS command:
			 * Queue it. set needtowakeup to TRUE if current state
1865
			 * is SLEEP, otherwise call lbs_ps_wakeup to send Exit_PS.
1866 1867 1868 1869 1870 1871 1872
			 * 2. PS command but not Exit_PS:
			 * Ignore it.
			 * 3. PS command Exit_PS:
			 * Set needtowakeup to TRUE if current state is SLEEP,
			 * otherwise send this command down to firmware
			 * immediately.
			 */
1873
			if (cmd->command != cpu_to_le16(CMD_802_11_PS_MODE)) {
1874 1875
				/*  Prepare to send Exit PS,
				 *  this non PS command will be sent later */
1876 1877
				if ((priv->psstate == PS_STATE_SLEEP)
				    || (priv->psstate == PS_STATE_PRE_SLEEP)
1878 1879 1880
				    ) {
					/* w/ new scheme, it will not reach here.
					   since it is blocked in main_thread. */
1881
					priv->needtowakeup = 1;
1882
				} else
1883
					lbs_ps_wakeup(priv, 0);
1884 1885 1886 1887 1888 1889 1890 1891

				ret = 0;
				goto done;
			} else {
				/*
				 * PS command. Ignore it if it is not Exit_PS.
				 * otherwise send it down immediately.
				 */
1892
				struct cmd_ds_802_11_ps_mode *psm = (void *)cmd;
1893

1894 1895
				lbs_deb_host(
				       "EXEC_NEXT_CMD: PS cmd, action 0x%02x\n",
1896 1897
				       psm->action);
				if (psm->action !=
1898
				    cpu_to_le16(CMD_SUBCMD_EXIT_PS)) {
1899 1900
					lbs_deb_host(
					       "EXEC_NEXT_CMD: ignore ENTER_PS cmd\n");
1901
					list_del(&cmdnode->list);
1902 1903 1904
					spin_lock_irqsave(&priv->driver_lock, flags);
					lbs_complete_command(priv, cmdnode, 0);
					spin_unlock_irqrestore(&priv->driver_lock, flags);
1905 1906 1907 1908 1909

					ret = 0;
					goto done;
				}

1910 1911
				if ((priv->psstate == PS_STATE_SLEEP) ||
				    (priv->psstate == PS_STATE_PRE_SLEEP)) {
1912 1913
					lbs_deb_host(
					       "EXEC_NEXT_CMD: ignore EXIT_PS cmd in sleep\n");
1914
					list_del(&cmdnode->list);
1915 1916 1917
					spin_lock_irqsave(&priv->driver_lock, flags);
					lbs_complete_command(priv, cmdnode, 0);
					spin_unlock_irqrestore(&priv->driver_lock, flags);
1918
					priv->needtowakeup = 1;
1919 1920 1921 1922 1923

					ret = 0;
					goto done;
				}

1924 1925
				lbs_deb_host(
				       "EXEC_NEXT_CMD: sending EXIT_PS\n");
1926 1927
			}
		}
1928
		list_del(&cmdnode->list);
1929
		lbs_deb_host("EXEC_NEXT_CMD: sending command 0x%04x\n",
1930
			    le16_to_cpu(cmd->command));
1931
		lbs_submit_command(priv, cmdnode);
1932 1933 1934 1935 1936
	} else {
		/*
		 * check if in power save mode, if yes, put the device back
		 * to PS mode
		 */
1937 1938 1939 1940 1941 1942
		if ((priv->psmode != LBS802_11POWERMODECAM) &&
		    (priv->psstate == PS_STATE_FULL_POWER) &&
		    ((priv->connect_status == LBS_CONNECTED) ||
		    (priv->mesh_connect_status == LBS_CONNECTED))) {
			if (priv->secinfo.WPAenabled ||
			    priv->secinfo.WPA2enabled) {
1943
				/* check for valid WPA group keys */
1944 1945
				if (priv->wpa_mcast_key.len ||
				    priv->wpa_unicast_key.len) {
1946
					lbs_deb_host(
1947 1948
					       "EXEC_NEXT_CMD: WPA enabled and GTK_SET"
					       " go back to PS_SLEEP");
1949
					lbs_ps_sleep(priv, 0);
1950 1951
				}
			} else {
1952 1953 1954
				lbs_deb_host(
				       "EXEC_NEXT_CMD: cmdpendingq empty, "
				       "go back to PS_SLEEP");
1955
				lbs_ps_sleep(priv, 0);
1956 1957 1958 1959 1960 1961
			}
		}
	}

	ret = 0;
done:
1962
	lbs_deb_leave(LBS_DEB_THREAD);
1963 1964 1965
	return ret;
}

1966
void lbs_send_iwevcustom_event(struct lbs_private *priv, s8 *str)
1967 1968 1969 1970
{
	union iwreq_data iwrq;
	u8 buf[50];

1971
	lbs_deb_enter(LBS_DEB_WEXT);
1972 1973 1974 1975 1976 1977 1978 1979 1980

	memset(&iwrq, 0, sizeof(union iwreq_data));
	memset(buf, 0, sizeof(buf));

	snprintf(buf, sizeof(buf) - 1, "%s", str);

	iwrq.data.length = strlen(buf) + 1 + IW_EV_LCP_LEN;

	/* Send Event to upper layer */
1981 1982 1983
	lbs_deb_wext("event indication string %s\n", (char *)buf);
	lbs_deb_wext("event indication length %d\n", iwrq.data.length);
	lbs_deb_wext("sending wireless event IWEVCUSTOM for %s\n", str);
1984

1985
	wireless_send_event(priv->dev, IWEVCUSTOM, &iwrq, buf);
1986

1987
	lbs_deb_leave(LBS_DEB_WEXT);
1988 1989
}

1990
static int sendconfirmsleep(struct lbs_private *priv, u8 *cmdptr, u16 size)
1991 1992 1993 1994
{
	unsigned long flags;
	int ret = 0;

1995
	lbs_deb_enter(LBS_DEB_HOST);
1996

1997
	lbs_deb_host("SEND_SLEEPC_CMD: before download, cmd size %d\n",
1998 1999
	       size);

2000
	lbs_deb_hex(LBS_DEB_HOST, "sleep confirm command", cmdptr, size);
2001

2002
	ret = priv->hw_host_to_card(priv, MVMS_CMD, cmdptr, size);
2003
	priv->dnld_sent = DNLD_RES_RECEIVED;
2004

2005 2006
	spin_lock_irqsave(&priv->driver_lock, flags);
	if (priv->intcounter || priv->currenttxskb)
2007
		lbs_deb_host("SEND_SLEEPC_CMD: intcounter %d, currenttxskb %p\n",
2008 2009
		       priv->intcounter, priv->currenttxskb);
	spin_unlock_irqrestore(&priv->driver_lock, flags);
2010 2011 2012 2013 2014

	if (ret) {
		lbs_pr_alert(
		       "SEND_SLEEPC_CMD: Host to Card failed for Confirm Sleep\n");
	} else {
2015 2016 2017
		spin_lock_irqsave(&priv->driver_lock, flags);
		if (!priv->intcounter) {
			priv->psstate = PS_STATE_SLEEP;
2018
		} else {
2019
			lbs_deb_host("SEND_SLEEPC_CMD: after sent, intcounter %d\n",
2020
			       priv->intcounter);
2021
		}
2022
		spin_unlock_irqrestore(&priv->driver_lock, flags);
2023

2024
		lbs_deb_host("SEND_SLEEPC_CMD: sent confirm sleep\n");
2025 2026
	}

2027
	lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
2028 2029 2030
	return ret;
}

2031
void lbs_ps_sleep(struct lbs_private *priv, int wait_option)
2032
{
2033
	lbs_deb_enter(LBS_DEB_HOST);
2034 2035 2036 2037 2038 2039

	/*
	 * PS is currently supported only in Infrastructure mode
	 * Remove this check if it is to be supported in IBSS mode also
	 */

2040
	lbs_prepare_and_send_command(priv, CMD_802_11_PS_MODE,
2041
			      CMD_SUBCMD_ENTER_PS, wait_option, 0, NULL);
2042

2043
	lbs_deb_leave(LBS_DEB_HOST);
2044 2045 2046
}

/**
2047
 *  @brief This function sends Exit_PS command to firmware.
2048
 *
2049
 *  @param priv    	A pointer to struct lbs_private structure
2050 2051 2052
 *  @param wait_option	wait response or not
 *  @return 	   	n/a
 */
2053
void lbs_ps_wakeup(struct lbs_private *priv, int wait_option)
2054
{
2055
	__le32 Localpsmode;
2056

2057
	lbs_deb_enter(LBS_DEB_HOST);
2058

2059
	Localpsmode = cpu_to_le32(LBS802_11POWERMODECAM);
2060

2061
	lbs_prepare_and_send_command(priv, CMD_802_11_PS_MODE,
2062
			      CMD_SUBCMD_EXIT_PS,
2063 2064
			      wait_option, 0, &Localpsmode);

2065
	lbs_deb_leave(LBS_DEB_HOST);
2066 2067 2068 2069 2070 2071
}

/**
 *  @brief This function checks condition and prepares to
 *  send sleep confirm command to firmware if ok.
 *
2072
 *  @param priv    	A pointer to struct lbs_private structure
2073 2074 2075
 *  @param psmode  	Power Saving mode
 *  @return 	   	n/a
 */
2076
void lbs_ps_confirm_sleep(struct lbs_private *priv, u16 psmode)
2077 2078 2079 2080
{
	unsigned long flags =0;
	u8 allowed = 1;

2081
	lbs_deb_enter(LBS_DEB_HOST);
2082

2083
	if (priv->dnld_sent) {
2084
		allowed = 0;
2085
		lbs_deb_host("dnld_sent was set\n");
2086 2087
	}

2088 2089
	spin_lock_irqsave(&priv->driver_lock, flags);
	if (priv->cur_cmd) {
2090
		allowed = 0;
2091
		lbs_deb_host("cur_cmd was set\n");
2092
	}
2093
	if (priv->intcounter > 0) {
2094
		allowed = 0;
2095
		lbs_deb_host("intcounter %d\n", priv->intcounter);
2096
	}
2097
	spin_unlock_irqrestore(&priv->driver_lock, flags);
2098 2099

	if (allowed) {
2100
		lbs_deb_host("sending lbs_ps_confirm_sleep\n");
2101
		sendconfirmsleep(priv, (u8 *) & priv->lbs_ps_confirm_sleep,
2102 2103
				 sizeof(struct PS_CMD_ConfirmSleep));
	} else {
2104
		lbs_deb_host("sleep confirm has been delayed\n");
2105 2106
	}

2107
	lbs_deb_leave(LBS_DEB_HOST);
2108
}
2109 2110


2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121
/**
 *  @brief Simple callback that copies response back into command
 *
 *  @param priv    	A pointer to struct lbs_private structure
 *  @param extra  	A pointer to the original command structure for which
 *                      'resp' is a response
 *  @param resp         A pointer to the command response
 *
 *  @return 	   	0 on success, error on failure
 */
int lbs_cmd_copyback(struct lbs_private *priv, unsigned long extra,
2122
		     struct cmd_header *resp)
2123 2124 2125 2126 2127 2128 2129 2130
{
	struct cmd_header *buf = (void *)extra;
	uint16_t copy_len;

	lbs_deb_enter(LBS_DEB_CMD);

	copy_len = min(le16_to_cpu(buf->size), le16_to_cpu(resp->size));
	lbs_deb_cmd("Copying back %u bytes; command response was %u bytes, "
2131 2132
		    "copy back buffer was %u bytes\n", copy_len,
		    le16_to_cpu(resp->size), le16_to_cpu(buf->size));
2133 2134 2135 2136 2137
	memcpy(buf, resp, copy_len);

	lbs_deb_leave(LBS_DEB_CMD);
	return 0;
}
2138
EXPORT_SYMBOL_GPL(lbs_cmd_copyback);
2139

2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155
/**
 *  @brief Simple way to call firmware functions
 *
 *  @param priv    	A pointer to struct lbs_private structure
 *  @param psmode  	one of the many CMD_802_11_xxxx
 *  @param cmd          pointer to the parameters structure for above command
 *                      (this should not include the command, size, sequence
 *                      and result fields from struct cmd_ds_gen)
 *  @param cmd_size     size structure pointed to by cmd
 *  @param rsp          pointer to an area where the result should be placed
 *  @param rsp_size     pointer to the size of the rsp area. If the firmware
 *                      returns fewer bytes, then this *rsp_size will be
 *                      changed to the actual size.
 *  @return 	   	-1 in case of a higher level error, otherwise
 *                      the result code from the firmware
 */
2156 2157 2158
int __lbs_cmd(struct lbs_private *priv, uint16_t command,
	      struct cmd_header *in_cmd, int in_cmd_size,
	      int (*callback)(struct lbs_private *, unsigned long, struct cmd_header *),
2159
	      unsigned long callback_arg)
2160 2161 2162 2163 2164 2165 2166
{
	struct cmd_ctrl_node *cmdnode;
	unsigned long flags;
	int ret = 0;

	lbs_deb_enter(LBS_DEB_HOST);

2167 2168
	if (!priv) {
		lbs_deb_host("PREP_CMD: priv is NULL\n");
2169 2170 2171 2172
		ret = -1;
		goto done;
	}

2173
	if (priv->surpriseremoved) {
2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188
		lbs_deb_host("PREP_CMD: card removed\n");
		ret = -1;
		goto done;
	}

	cmdnode = lbs_get_cmd_ctrl_node(priv);
	if (cmdnode == NULL) {
		lbs_deb_host("PREP_CMD: cmdnode is NULL\n");

		/* Wake up main thread to execute next command */
		wake_up_interruptible(&priv->waitq);
		ret = -1;
		goto done;
	}

2189
	cmdnode->callback = callback;
2190
	cmdnode->callback_arg = callback_arg;
2191

2192
	/* Copy the incoming command to the buffer */
2193
	memcpy(cmdnode->cmdbuf, in_cmd, in_cmd_size);
2194

2195
	/* Set sequence number, clean result, move to buffer */
2196
	priv->seqnum++;
2197 2198 2199 2200
	cmdnode->cmdbuf->command = cpu_to_le16(command);
	cmdnode->cmdbuf->size    = cpu_to_le16(in_cmd_size);
	cmdnode->cmdbuf->seqnum  = cpu_to_le16(priv->seqnum);
	cmdnode->cmdbuf->result  = 0;
2201 2202 2203 2204 2205 2206 2207

	lbs_deb_host("PREP_CMD: command 0x%04x\n", command);

	/* here was the big old switch() statement, which is now obsolete,
	 * because the caller of lbs_cmd() sets up all of *cmd for us. */

	cmdnode->cmdwaitqwoken = 0;
2208
	lbs_queue_cmd(priv, cmdnode, 1);
2209 2210 2211 2212 2213
	wake_up_interruptible(&priv->waitq);

	might_sleep();
	wait_event_interruptible(cmdnode->cmdwait_q, cmdnode->cmdwaitqwoken);

2214 2215
	spin_lock_irqsave(&priv->driver_lock, flags);
	if (priv->cur_cmd_retcode) {
2216
		lbs_deb_host("PREP_CMD: command failed with return code %d\n",
2217 2218
		       priv->cur_cmd_retcode);
		priv->cur_cmd_retcode = 0;
2219 2220
		ret = -1;
	}
2221
	__lbs_cleanup_and_insert_cmd(priv, cmdnode);
2222
	spin_unlock_irqrestore(&priv->driver_lock, flags);
2223 2224 2225 2226 2227

done:
	lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
	return ret;
}
2228
EXPORT_SYMBOL_GPL(__lbs_cmd);
2229 2230