cmd.c 39.2 KB
Newer Older
1 2 3 4 5
/**
  * This file contains the handling of command.
  * It prepares command and sends it to firmware when it is ready.
  */

6
#include <linux/kfifo.h>
7
#include <linux/sched.h>
8
#include <linux/slab.h>
9

10 11 12 13
#include "host.h"
#include "decl.h"
#include "defs.h"
#include "dev.h"
14
#include "assoc.h"
15
#include "wext.h"
16
#include "scan.h"
17
#include "cmd.h"
18

19

20
static struct cmd_ctrl_node *lbs_get_cmd_ctrl_node(struct lbs_private *priv);
21

22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
/**
 *  @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,
		     struct cmd_header *resp)
{
	struct cmd_header *buf = (void *)extra;
	uint16_t copy_len;

	copy_len = min(le16_to_cpu(buf->size), le16_to_cpu(resp->size));
	memcpy(buf, resp, copy_len);
	return 0;
}
EXPORT_SYMBOL_GPL(lbs_cmd_copyback);

/**
 *  @brief Simple callback that ignores the result. Use this if
 *  you just want to send a command to the hardware, but don't
 *  care for the result.
 *
 *  @param priv         ignored
 *  @param extra        ignored
 *  @param resp         ignored
 *
 *  @return 	   	0 for success
 */
static int lbs_cmd_async_callback(struct lbs_private *priv, unsigned long extra,
		     struct cmd_header *resp)
{
	return 0;
}


62
/**
63
 *  @brief Checks whether a command is allowed in Power Save mode
64 65
 *
 *  @param command the command ID
66
 *  @return 	   1 if allowed, 0 if not allowed
67
 */
68
static u8 is_command_allowed_in_ps(u16 cmd)
69
{
70 71 72 73 74
	switch (cmd) {
	case CMD_802_11_RSSI:
		return 1;
	default:
		break;
75 76 77 78
	}
	return 0;
}

79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
/**
 *  @brief This function checks if the command is allowed.
 *
 *  @param priv         A pointer to lbs_private structure
 *  @return             allowed or not allowed.
 */

static int lbs_is_cmd_allowed(struct lbs_private *priv)
{
	int ret = 1;

	lbs_deb_enter(LBS_DEB_CMD);

	if (!priv->is_auto_deep_sleep_enabled) {
		if (priv->is_deep_sleep) {
			lbs_deb_cmd("command not allowed in deep sleep\n");
			ret = 0;
		}
	}

	lbs_deb_leave(LBS_DEB_CMD);
	return ret;
}

103 104 105 106 107 108 109 110
/**
 *  @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)
111
{
112 113 114
	struct cmd_ds_get_hw_spec cmd;
	int ret = -1;
	u32 i;
115

116
	lbs_deb_enter(LBS_DEB_CMD);
117

118 119 120
	memset(&cmd, 0, sizeof(cmd));
	cmd.hdr.size = cpu_to_le16(sizeof(cmd));
	memcpy(cmd.permanentaddr, priv->current_addr, ETH_ALEN);
121
	ret = lbs_cmd_with_response(priv, CMD_GET_HW_SPEC, &cmd);
122 123 124 125 126
	if (ret)
		goto out;

	priv->fwcapinfo = le32_to_cpu(cmd.fwcapinfo);

127 128 129 130 131 132 133 134 135 136
	/* The firmware release is in an interesting format: the patch
	 * level is in the most significant nibble ... so fix that: */
	priv->fwrelease = le32_to_cpu(cmd.fwrelease);
	priv->fwrelease = (priv->fwrelease << 8) |
		(priv->fwrelease >> 24 & 0xff);

	/* Some firmware capabilities:
	 * CF card    firmware 5.0.16p0:   cap 0x00000303
	 * USB dongle firmware 5.110.17p2: cap 0x00000303
	 */
J
Johannes Berg 已提交
137 138
	lbs_pr_info("%pM, fw %u.%u.%up%u, cap 0x%08x\n",
		cmd.permanentaddr,
139 140 141 142 143
		priv->fwrelease >> 24 & 0xff,
		priv->fwrelease >> 16 & 0xff,
		priv->fwrelease >>  8 & 0xff,
		priv->fwrelease       & 0xff,
		priv->fwcapinfo);
144 145 146 147 148 149
	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.
150 151 152
	 *
	 * Firmware version 4.0.102 used in CF8381 has region code shifted.  We
	 * need to check for this problem and handle it properly.
153
	 */
154 155 156 157
	if (MRVL_FW_MAJOR_REV(priv->fwrelease) == MRVL_FW_V4)
		priv->regioncode = (le16_to_cpu(cmd.regioncode) >> 8) & 0xFF;
	else
		priv->regioncode = le16_to_cpu(cmd.regioncode) & 0xFF;
158 159 160 161 162 163 164 165 166 167 168 169 170 171 172

	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);
173

174 175 176 177 178 179 180 181 182 183
	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;
	}

out:
184
	lbs_deb_leave(LBS_DEB_CMD);
185
	return ret;
186 187
}

188 189
int lbs_host_sleep_cfg(struct lbs_private *priv, uint32_t criteria,
		struct wol_config *p_wol_config)
190 191 192 193
{
	struct cmd_ds_host_sleep cmd_config;
	int ret;

194
	cmd_config.hdr.size = cpu_to_le16(sizeof(cmd_config));
195
	cmd_config.criteria = cpu_to_le32(criteria);
196 197
	cmd_config.gpio = priv->wol_gpio;
	cmd_config.gap = priv->wol_gap;
198

199 200 201 202 203 204
	if (p_wol_config != NULL)
		memcpy((uint8_t *)&cmd_config.wol_conf, (uint8_t *)p_wol_config,
				sizeof(struct wol_config));
	else
		cmd_config.wol_conf.action = CMD_ACT_ACTION_NONE;

205
	ret = lbs_cmd_with_response(priv, CMD_802_11_HOST_SLEEP_CFG, &cmd_config);
206
	if (!ret) {
207 208 209 210 211 212 213
		if (criteria) {
			lbs_deb_cmd("Set WOL criteria to %x\n", criteria);
			priv->wol_criteria = criteria;
		} else
			memcpy((uint8_t *) p_wol_config,
					(uint8_t *)&cmd_config.wol_conf,
					sizeof(struct wol_config));
214
	} else {
215 216
		lbs_pr_info("HOST_SLEEP_CFG failed %d\n", ret);
	}
217

218 219 220 221
	return ret;
}
EXPORT_SYMBOL_GPL(lbs_host_sleep_cfg);

222
static int lbs_cmd_802_11_ps_mode(struct cmd_ds_command *cmd,
223 224 225 226
				   u16 cmd_action)
{
	struct cmd_ds_802_11_ps_mode *psm = &cmd->params.psmode;

227
	lbs_deb_enter(LBS_DEB_CMD);
228

229
	cmd->command = cpu_to_le16(CMD_802_11_PS_MODE);
230
	cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_ps_mode) +
231
				sizeof(struct cmd_header));
232 233
	psm->action = cpu_to_le16(cmd_action);
	psm->multipledtim = 0;
234
	switch (cmd_action) {
235
	case CMD_SUBCMD_ENTER_PS:
236
		lbs_deb_cmd("PS command:" "SubCode- Enter PS\n");
237

238
		psm->locallisteninterval = 0;
239
		psm->nullpktinterval = 0;
240
		psm->multipledtim =
241
		    cpu_to_le16(MRVDRV_DEFAULT_MULTIPLE_DTIM);
242 243
		break;

244
	case CMD_SUBCMD_EXIT_PS:
245
		lbs_deb_cmd("PS command:" "SubCode- Exit PS\n");
246 247
		break;

248
	case CMD_SUBCMD_SLEEP_CONFIRMED:
249
		lbs_deb_cmd("PS command: SubCode- sleep confirm\n");
250 251 252 253 254 255
		break;

	default:
		break;
	}

256
	lbs_deb_leave(LBS_DEB_CMD);
257 258 259
	return 0;
}

260 261
int lbs_cmd_802_11_sleep_params(struct lbs_private *priv, uint16_t cmd_action,
				struct sleep_params *sp)
262
{
263 264
	struct cmd_ds_802_11_sleep_params cmd;
	int ret;
265

266
	lbs_deb_enter(LBS_DEB_CMD);
267

268
	if (cmd_action == CMD_ACT_GET) {
269 270 271 272 273 274 275 276
		memset(&cmd, 0, sizeof(cmd));
	} else {
		cmd.error = cpu_to_le16(sp->sp_error);
		cmd.offset = cpu_to_le16(sp->sp_offset);
		cmd.stabletime = cpu_to_le16(sp->sp_stabletime);
		cmd.calcontrol = sp->sp_calcontrol;
		cmd.externalsleepclk = sp->sp_extsleepclk;
		cmd.reserved = cpu_to_le16(sp->sp_reserved);
277
	}
278 279
	cmd.hdr.size = cpu_to_le16(sizeof(cmd));
	cmd.action = cpu_to_le16(cmd_action);
280

281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298
	ret = lbs_cmd_with_response(priv, CMD_802_11_SLEEP_PARAMS, &cmd);

	if (!ret) {
		lbs_deb_cmd("error 0x%x, offset 0x%x, stabletime 0x%x, "
			    "calcontrol 0x%x extsleepclk 0x%x\n",
			    le16_to_cpu(cmd.error), le16_to_cpu(cmd.offset),
			    le16_to_cpu(cmd.stabletime), cmd.calcontrol,
			    cmd.externalsleepclk);

		sp->sp_error = le16_to_cpu(cmd.error);
		sp->sp_offset = le16_to_cpu(cmd.offset);
		sp->sp_stabletime = le16_to_cpu(cmd.stabletime);
		sp->sp_calcontrol = cmd.calcontrol;
		sp->sp_extsleepclk = cmd.externalsleepclk;
		sp->sp_reserved = le16_to_cpu(cmd.reserved);
	}

	lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
299 300 301
	return 0;
}

302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 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
static int lbs_wait_for_ds_awake(struct lbs_private *priv)
{
	int ret = 0;

	lbs_deb_enter(LBS_DEB_CMD);

	if (priv->is_deep_sleep) {
		if (!wait_event_interruptible_timeout(priv->ds_awake_q,
					!priv->is_deep_sleep, (10 * HZ))) {
			lbs_pr_err("ds_awake_q: timer expired\n");
			ret = -1;
		}
	}

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

int lbs_set_deep_sleep(struct lbs_private *priv, int deep_sleep)
{
	int ret =  0;

	lbs_deb_enter(LBS_DEB_CMD);

	if (deep_sleep) {
		if (priv->is_deep_sleep != 1) {
			lbs_deb_cmd("deep sleep: sleep\n");
			BUG_ON(!priv->enter_deep_sleep);
			ret = priv->enter_deep_sleep(priv);
			if (!ret) {
				netif_stop_queue(priv->dev);
				netif_carrier_off(priv->dev);
			}
		} else {
			lbs_pr_err("deep sleep: already enabled\n");
		}
	} else {
		if (priv->is_deep_sleep) {
			lbs_deb_cmd("deep sleep: wakeup\n");
			BUG_ON(!priv->exit_deep_sleep);
			ret = priv->exit_deep_sleep(priv);
			if (!ret) {
				ret = lbs_wait_for_ds_awake(priv);
				if (ret)
					lbs_pr_err("deep sleep: wakeup"
							"failed\n");
			}
		}
	}

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

356 357 358 359 360 361 362 363 364 365
/**
 *  @brief Set an SNMP MIB value
 *
 *  @param priv    	A pointer to struct lbs_private structure
 *  @param oid  	The OID to set in the firmware
 *  @param val  	Value to set the OID to
 *
 *  @return 	   	0 on success, error on failure
 */
int lbs_set_snmp_mib(struct lbs_private *priv, u32 oid, u16 val)
366
{
367 368
	struct cmd_ds_802_11_snmp_mib cmd;
	int ret;
369

370
	lbs_deb_enter(LBS_DEB_CMD);
371

372 373 374 375
	memset(&cmd, 0, sizeof (cmd));
	cmd.hdr.size = cpu_to_le16(sizeof(cmd));
	cmd.action = cpu_to_le16(CMD_ACT_SET);
	cmd.oid = cpu_to_le16((u16) oid);
376

377 378 379
	switch (oid) {
	case SNMP_MIB_OID_BSS_TYPE:
		cmd.bufsize = cpu_to_le16(sizeof(u8));
380
		cmd.value[0] = val;
381 382 383 384 385 386 387 388
		break;
	case SNMP_MIB_OID_11D_ENABLE:
	case SNMP_MIB_OID_FRAG_THRESHOLD:
	case SNMP_MIB_OID_RTS_THRESHOLD:
	case SNMP_MIB_OID_SHORT_RETRY_LIMIT:
	case SNMP_MIB_OID_LONG_RETRY_LIMIT:
		cmd.bufsize = cpu_to_le16(sizeof(u16));
		*((__le16 *)(&cmd.value)) = cpu_to_le16(val);
389
		break;
390 391 392 393
	default:
		lbs_deb_cmd("SNMP_CMD: (set) unhandled OID 0x%x\n", oid);
		ret = -EINVAL;
		goto out;
394 395
	}

396 397
	lbs_deb_cmd("SNMP_CMD: (set) oid 0x%x, oid size 0x%x, value 0x%x\n",
		    le16_to_cpu(cmd.oid), le16_to_cpu(cmd.bufsize), val);
398

399
	ret = lbs_cmd_with_response(priv, CMD_802_11_SNMP_MIB, &cmd);
400

401 402 403 404
out:
	lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
	return ret;
}
405

406 407 408 409 410 411 412 413 414 415 416 417 418
/**
 *  @brief Get an SNMP MIB value
 *
 *  @param priv    	A pointer to struct lbs_private structure
 *  @param oid  	The OID to retrieve from the firmware
 *  @param out_val  	Location for the returned value
 *
 *  @return 	   	0 on success, error on failure
 */
int lbs_get_snmp_mib(struct lbs_private *priv, u32 oid, u16 *out_val)
{
	struct cmd_ds_802_11_snmp_mib cmd;
	int ret;
419

420
	lbs_deb_enter(LBS_DEB_CMD);
421

422 423 424 425
	memset(&cmd, 0, sizeof (cmd));
	cmd.hdr.size = cpu_to_le16(sizeof(cmd));
	cmd.action = cpu_to_le16(CMD_ACT_GET);
	cmd.oid = cpu_to_le16(oid);
426

427 428 429
	ret = lbs_cmd_with_response(priv, CMD_802_11_SNMP_MIB, &cmd);
	if (ret)
		goto out;
430

431 432
	switch (le16_to_cpu(cmd.bufsize)) {
	case sizeof(u8):
433
		*out_val = cmd.value[0];
434 435 436
		break;
	case sizeof(u16):
		*out_val = le16_to_cpu(*((__le16 *)(&cmd.value)));
437 438
		break;
	default:
439 440
		lbs_deb_cmd("SNMP_CMD: (get) unhandled OID 0x%x size %d\n",
		            oid, le16_to_cpu(cmd.bufsize));
441 442 443
		break;
	}

444 445 446
out:
	lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
	return ret;
447 448
}

449 450 451 452 453 454 455 456 457 458 459 460
/**
 *  @brief Get the min, max, and current TX power
 *
 *  @param priv    	A pointer to struct lbs_private structure
 *  @param curlevel  	Current power level in dBm
 *  @param minlevel  	Minimum supported power level in dBm (optional)
 *  @param maxlevel  	Maximum supported power level in dBm (optional)
 *
 *  @return 	   	0 on success, error on failure
 */
int lbs_get_tx_power(struct lbs_private *priv, s16 *curlevel, s16 *minlevel,
		     s16 *maxlevel)
461
{
462 463
	struct cmd_ds_802_11_rf_tx_power cmd;
	int ret;
464

465
	lbs_deb_enter(LBS_DEB_CMD);
466

467 468 469 470 471 472 473 474
	memset(&cmd, 0, sizeof(cmd));
	cmd.hdr.size = cpu_to_le16(sizeof(cmd));
	cmd.action = cpu_to_le16(CMD_ACT_GET);

	ret = lbs_cmd_with_response(priv, CMD_802_11_RF_TX_POWER, &cmd);
	if (ret == 0) {
		*curlevel = le16_to_cpu(cmd.curlevel);
		if (minlevel)
475
			*minlevel = cmd.minlevel;
476
		if (maxlevel)
477
			*maxlevel = cmd.maxlevel;
478
	}
479

480 481 482
	lbs_deb_leave(LBS_DEB_CMD);
	return ret;
}
483

484 485 486 487 488 489 490 491 492 493 494 495
/**
 *  @brief Set the TX power
 *
 *  @param priv    	A pointer to struct lbs_private structure
 *  @param dbm  	The desired power level in dBm
 *
 *  @return 	   	0 on success, error on failure
 */
int lbs_set_tx_power(struct lbs_private *priv, s16 dbm)
{
	struct cmd_ds_802_11_rf_tx_power cmd;
	int ret;
496

497
	lbs_deb_enter(LBS_DEB_CMD);
498

499 500 501 502
	memset(&cmd, 0, sizeof(cmd));
	cmd.hdr.size = cpu_to_le16(sizeof(cmd));
	cmd.action = cpu_to_le16(CMD_ACT_SET);
	cmd.curlevel = cpu_to_le16(dbm);
503

504 505 506
	lbs_deb_cmd("SET_RF_TX_POWER: %d dBm\n", dbm);

	ret = lbs_cmd_with_response(priv, CMD_802_11_RF_TX_POWER, &cmd);
507 508

	lbs_deb_leave(LBS_DEB_CMD);
509
	return ret;
510 511
}

512
static int lbs_cmd_802_11_monitor_mode(struct cmd_ds_command *cmd,
513 514 515 516 517 518 519
				      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) +
520
			     sizeof(struct cmd_header));
521 522 523 524 525 526 527 528 529 530

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

	return 0;
}

531 532 533 534 535 536 537
/**
 *  @brief Get the radio channel
 *
 *  @param priv    	A pointer to struct lbs_private structure
 *
 *  @return 	   	The channel on success, error on failure
 */
538
static int lbs_get_channel(struct lbs_private *priv)
539
{
540 541
	struct cmd_ds_802_11_rf_channel cmd;
	int ret = 0;
542

543
	lbs_deb_enter(LBS_DEB_CMD);
544

545
	memset(&cmd, 0, sizeof(cmd));
546 547
	cmd.hdr.size = cpu_to_le16(sizeof(cmd));
	cmd.action = cpu_to_le16(CMD_OPT_802_11_RF_CHANNEL_GET);
548

549
	ret = lbs_cmd_with_response(priv, CMD_802_11_RF_CHANNEL, &cmd);
550 551
	if (ret)
		goto out;
552

553 554
	ret = le16_to_cpu(cmd.channel);
	lbs_deb_cmd("current radio channel is %d\n", ret);
555 556 557 558 559 560

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

561 562 563 564 565 566 567 568 569
int lbs_update_channel(struct lbs_private *priv)
{
	int ret;

	/* the channel in f/w could be out of sync; get the current channel */
	lbs_deb_enter(LBS_DEB_ASSOC);

	ret = lbs_get_channel(priv);
	if (ret > 0) {
570
		priv->channel = ret;
571 572 573 574 575 576
		ret = 0;
	}
	lbs_deb_leave_args(LBS_DEB_ASSOC, "ret %d", ret);
	return ret;
}

577 578 579 580 581 582 583 584 585 586 587
/**
 *  @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;
588
#ifdef DEBUG
589
	u8 old_channel = priv->channel;
590
#endif
591 592 593 594
	int ret = 0;

	lbs_deb_enter(LBS_DEB_CMD);

595
	memset(&cmd, 0, sizeof(cmd));
596 597 598 599
	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);

600
	ret = lbs_cmd_with_response(priv, CMD_802_11_RF_CHANNEL, &cmd);
601 602 603
	if (ret)
		goto out;

604
	priv->channel = (uint8_t) le16_to_cpu(cmd.channel);
605
	lbs_deb_cmd("channel switch from %d to %d\n", old_channel,
606
		priv->channel);
607 608 609 610

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

613
static int lbs_cmd_reg_access(struct cmd_ds_command *cmdptr,
614 615
			       u8 cmd_action, void *pdata_buf)
{
616
	struct lbs_offset_value *offval;
617

618
	lbs_deb_enter(LBS_DEB_CMD);
619

620
	offval = (struct lbs_offset_value *)pdata_buf;
621

H
Holger Schurig 已提交
622
	switch (le16_to_cpu(cmdptr->command)) {
623
	case CMD_MAC_REG_ACCESS:
624 625 626 627
		{
			struct cmd_ds_mac_reg_access *macreg;

			cmdptr->size =
628
			    cpu_to_le16(sizeof (struct cmd_ds_mac_reg_access)
629
					+ sizeof(struct cmd_header));
630 631 632 633 634 635 636 637 638 639 640
			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;
		}

641
	case CMD_BBP_REG_ACCESS:
642 643 644 645 646 647
		{
			struct cmd_ds_bbp_reg_access *bbpreg;

			cmdptr->size =
			    cpu_to_le16(sizeof
					     (struct cmd_ds_bbp_reg_access)
648
					     + sizeof(struct cmd_header));
649 650 651 652 653 654 655 656 657 658 659
			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;
		}

660
	case CMD_RF_REG_ACCESS:
661 662 663 664 665 666
		{
			struct cmd_ds_rf_reg_access *rfreg;

			cmdptr->size =
			    cpu_to_le16(sizeof
					     (struct cmd_ds_rf_reg_access) +
667
					     sizeof(struct cmd_header));
668 669 670 671 672 673 674 675 676 677 678 679 680 681 682
			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;
	}

683
	lbs_deb_leave(LBS_DEB_CMD);
684 685 686
	return 0;
}

687 688
static void lbs_queue_cmd(struct lbs_private *priv,
			  struct cmd_ctrl_node *cmdnode)
689 690
{
	unsigned long flags;
691
	int addtail = 1;
692

693
	lbs_deb_enter(LBS_DEB_HOST);
694

695 696
	if (!cmdnode) {
		lbs_deb_host("QUEUE_CMD: cmdnode is NULL\n");
697 698
		goto done;
	}
699 700 701 702
	if (!cmdnode->cmdbuf->size) {
		lbs_deb_host("DNLD_CMD: cmd size is zero\n");
		goto done;
	}
703
	cmdnode->result = 0;
704 705

	/* Exit_PS command needs to be queued in the header always. */
706
	if (le16_to_cpu(cmdnode->cmdbuf->command) == CMD_802_11_PS_MODE) {
707
		struct cmd_ds_802_11_ps_mode *psm = (void *) &cmdnode->cmdbuf[1];
708

709
		if (psm->action == cpu_to_le16(CMD_SUBCMD_EXIT_PS)) {
710
			if (priv->psstate != PS_STATE_FULL_POWER)
711 712 713 714
				addtail = 0;
		}
	}

715
	spin_lock_irqsave(&priv->driver_lock, flags);
716

717
	if (addtail)
718
		list_add_tail(&cmdnode->list, &priv->cmdpendingq);
719
	else
720
		list_add(&cmdnode->list, &priv->cmdpendingq);
721

722
	spin_unlock_irqrestore(&priv->driver_lock, flags);
723

724
	lbs_deb_host("QUEUE_CMD: inserted command 0x%04x into cmdpendingq\n",
725
		     le16_to_cpu(cmdnode->cmdbuf->command));
726 727

done:
728
	lbs_deb_leave(LBS_DEB_HOST);
729 730
}

731 732
static void lbs_submit_command(struct lbs_private *priv,
			       struct cmd_ctrl_node *cmdnode)
733 734
{
	unsigned long flags;
735
	struct cmd_header *cmd;
736 737
	uint16_t cmdsize;
	uint16_t command;
738
	int timeo = 3 * HZ;
739
	int ret;
740

741
	lbs_deb_enter(LBS_DEB_HOST);
742

743
	cmd = cmdnode->cmdbuf;
744

745 746 747 748
	spin_lock_irqsave(&priv->driver_lock, flags);
	priv->cur_cmd = cmdnode;
	priv->cur_cmd_retcode = 0;
	spin_unlock_irqrestore(&priv->driver_lock, flags);
749

750 751
	cmdsize = le16_to_cpu(cmd->size);
	command = le16_to_cpu(cmd->command);
752

753
	/* These commands take longer */
754
	if (command == CMD_802_11_SCAN || command == CMD_802_11_ASSOCIATE)
755
		timeo = 5 * HZ;
756

H
Holger Schurig 已提交
757 758
	lbs_deb_cmd("DNLD_CMD: command 0x%04x, seq %d, size %d\n",
		     command, le16_to_cpu(cmd->seqnum), cmdsize);
759
	lbs_deb_hex(LBS_DEB_CMD, "DNLD_CMD", (void *) cmdnode->cmdbuf, cmdsize);
760

761
	ret = priv->hw_host_to_card(priv, MVMS_CMD, (u8 *) cmd, cmdsize);
762

763 764
	if (ret) {
		lbs_pr_info("DNLD_CMD: hw_host_to_card failed: %d\n", ret);
765 766
		/* Let the timer kick in and retry, and potentially reset
		   the whole thing if the condition persists */
767
		timeo = HZ/4;
768
	}
769

770 771 772 773 774 775 776 777 778 779 780
	if (command == CMD_802_11_DEEP_SLEEP) {
		if (priv->is_auto_deep_sleep_enabled) {
			priv->wakeup_dev_required = 1;
			priv->dnld_sent = 0;
		}
		priv->is_deep_sleep = 1;
		lbs_complete_command(priv, cmdnode, 0);
	} else {
		/* Setup the timer after transmit command */
		mod_timer(&priv->command_timer, jiffies + timeo);
	}
781

782
	lbs_deb_leave(LBS_DEB_HOST);
783 784 785 786
}

/**
 *  This function inserts command node to cmdfreeq
787
 *  after cleans it. Requires priv->driver_lock held.
788
 */
789
static void __lbs_cleanup_and_insert_cmd(struct lbs_private *priv,
790
					 struct cmd_ctrl_node *cmdnode)
791
{
792 793 794 795 796 797 798
	lbs_deb_enter(LBS_DEB_HOST);

	if (!cmdnode)
		goto out;

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

800
	memset(cmdnode->cmdbuf, 0, LBS_CMD_BUFFER_SIZE);
801

802 803 804
	list_add_tail(&cmdnode->list, &priv->cmdfreeq);
 out:
	lbs_deb_leave(LBS_DEB_HOST);
805 806
}

807 808
static void lbs_cleanup_and_insert_cmd(struct lbs_private *priv,
	struct cmd_ctrl_node *ptempcmd)
809 810 811
{
	unsigned long flags;

812
	spin_lock_irqsave(&priv->driver_lock, flags);
813
	__lbs_cleanup_and_insert_cmd(priv, ptempcmd);
814
	spin_unlock_irqrestore(&priv->driver_lock, flags);
815 816
}

817 818 819 820 821
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;
822

823
	cmd->result = result;
824 825 826
	cmd->cmdwaitqwoken = 1;
	wake_up_interruptible(&cmd->cmdwait_q);

827
	if (!cmd->callback || cmd->callback == lbs_cmd_async_callback)
828
		__lbs_cleanup_and_insert_cmd(priv, cmd);
829 830 831
	priv->cur_cmd = NULL;
}

832
int lbs_set_radio(struct lbs_private *priv, u8 preamble, u8 radio_on)
833
{
834
	struct cmd_ds_802_11_radio_control cmd;
835
	int ret = -EINVAL;
836

837
	lbs_deb_enter(LBS_DEB_CMD);
838

839 840 841
	cmd.hdr.size = cpu_to_le16(sizeof(cmd));
	cmd.action = cpu_to_le16(CMD_ACT_SET);

842 843 844 845 846 847 848 849 850 851 852 853
	/* Only v8 and below support setting the preamble */
	if (priv->fwrelease < 0x09000000) {
		switch (preamble) {
		case RADIO_PREAMBLE_SHORT:
		case RADIO_PREAMBLE_AUTO:
		case RADIO_PREAMBLE_LONG:
			cmd.control = cpu_to_le16(preamble);
			break;
		default:
			goto out;
		}
	}
854

855 856 857 858 859
	if (radio_on)
		cmd.control |= cpu_to_le16(0x1);
	else {
		cmd.control &= cpu_to_le16(~0x1);
		priv->txpower_cur = 0;
860
	}
861

862 863
	lbs_deb_cmd("RADIO_CONTROL: radio %s, preamble %d\n",
		    radio_on ? "ON" : "OFF", preamble);
864

865
	priv->radio_on = radio_on;
866 867

	ret = lbs_cmd_with_response(priv, CMD_802_11_RADIO_CONTROL, &cmd);
868

869
out:
870
	lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
871 872 873
	return ret;
}

874
void lbs_set_mac_control(struct lbs_private *priv)
875
{
876
	struct cmd_ds_mac_control cmd;
877

878
	lbs_deb_enter(LBS_DEB_CMD);
879

880
	cmd.hdr.size = cpu_to_le16(sizeof(cmd));
881
	cmd.action = cpu_to_le16(priv->mac_control);
882 883
	cmd.reserved = 0;

884
	lbs_cmd_async(priv, CMD_MAC_CONTROL, &cmd.hdr, sizeof(cmd));
885

886
	lbs_deb_leave(LBS_DEB_CMD);
887 888 889 890 891
}

/**
 *  @brief This function prepare the command before send to firmware.
 *
892
 *  @param priv		A pointer to struct lbs_private structure
893 894 895 896 897 898 899
 *  @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
 */
900
int lbs_prepare_and_send_command(struct lbs_private *priv,
901 902 903 904 905 906 907 908 909
			  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;

910
	lbs_deb_enter(LBS_DEB_HOST);
911

912 913
	if (!priv) {
		lbs_deb_host("PREP_CMD: priv is NULL\n");
914 915 916 917
		ret = -1;
		goto done;
	}

918
	if (priv->surpriseremoved) {
919
		lbs_deb_host("PREP_CMD: card removed\n");
920 921 922 923
		ret = -1;
		goto done;
	}

924 925 926 927 928
	if (!lbs_is_cmd_allowed(priv)) {
		ret = -EBUSY;
		goto done;
	}

929
	cmdnode = lbs_get_cmd_ctrl_node(priv);
930 931

	if (cmdnode == NULL) {
932
		lbs_deb_host("PREP_CMD: cmdnode is NULL\n");
933 934

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

940 941
	cmdnode->callback = NULL;
	cmdnode->callback_arg = (unsigned long)pdata_buf;
942

943
	cmdptr = (struct cmd_ds_command *)cmdnode->cmdbuf;
944

945
	lbs_deb_host("PREP_CMD: command 0x%04x\n", cmd_no);
946 947

	/* Set sequence number, command and INT option */
948 949
	priv->seqnum++;
	cmdptr->seqnum = cpu_to_le16(priv->seqnum);
950

951
	cmdptr->command = cpu_to_le16(cmd_no);
952 953 954
	cmdptr->result = 0;

	switch (cmd_no) {
955
	case CMD_802_11_PS_MODE:
956
		ret = lbs_cmd_802_11_ps_mode(cmdptr, cmd_action);
957 958
		break;

959 960 961
	case CMD_MAC_REG_ACCESS:
	case CMD_BBP_REG_ACCESS:
	case CMD_RF_REG_ACCESS:
962
		ret = lbs_cmd_reg_access(cmdptr, cmd_action, pdata_buf);
963 964
		break;

965
	case CMD_802_11_MONITOR_MODE:
966
		ret = lbs_cmd_802_11_monitor_mode(cmdptr,
967 968 969
				          cmd_action, pdata_buf);
		break;

970
	case CMD_802_11_RSSI:
971
		ret = lbs_cmd_802_11_rssi(priv, cmdptr);
972 973
		break;

974 975
	case CMD_802_11_SET_AFC:
	case CMD_802_11_GET_AFC:
976 977

		cmdptr->command = cpu_to_le16(cmd_no);
978
		cmdptr->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_afc) +
979
					   sizeof(struct cmd_header));
980 981 982 983 984 985 986

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

		ret = 0;
		goto done;

987 988
	case CMD_802_11_TPC_CFG:
		cmdptr->command = cpu_to_le16(CMD_802_11_TPC_CFG);
989 990
		cmdptr->size =
		    cpu_to_le16(sizeof(struct cmd_ds_802_11_tpc_cfg) +
991
				     sizeof(struct cmd_header));
992 993 994 995 996 997

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

		ret = 0;
		break;
998

H
Holger Schurig 已提交
999 1000
#ifdef CONFIG_LIBERTAS_MESH

1001
	case CMD_BT_ACCESS:
1002
		ret = lbs_cmd_bt_access(cmdptr, cmd_action, pdata_buf);
1003 1004
		break;

1005
	case CMD_FWT_ACCESS:
1006
		ret = lbs_cmd_fwt_access(cmdptr, cmd_action, pdata_buf);
1007 1008
		break;

H
Holger Schurig 已提交
1009 1010
#endif

1011 1012 1013
	case CMD_802_11_BEACON_CTRL:
		ret = lbs_cmd_bcn_ctrl(priv, cmdptr, cmd_action);
		break;
1014 1015
	case CMD_802_11_DEEP_SLEEP:
		cmdptr->command = cpu_to_le16(CMD_802_11_DEEP_SLEEP);
1016
		cmdptr->size = cpu_to_le16(sizeof(struct cmd_header));
1017
		break;
1018
	default:
1019
		lbs_pr_err("PREP_CMD: unknown command 0x%04x\n", cmd_no);
1020 1021 1022 1023 1024 1025
		ret = -1;
		break;
	}

	/* return error, since the command preparation failed */
	if (ret != 0) {
1026
		lbs_deb_host("PREP_CMD: command preparation failed\n");
1027
		lbs_cleanup_and_insert_cmd(priv, cmdnode);
1028 1029 1030 1031 1032 1033
		ret = -1;
		goto done;
	}

	cmdnode->cmdwaitqwoken = 0;

1034
	lbs_queue_cmd(priv, cmdnode);
1035
	wake_up_interruptible(&priv->waitq);
1036

1037
	if (wait_option & CMD_OPTION_WAITFORRSP) {
1038
		lbs_deb_host("PREP_CMD: wait for response\n");
1039 1040 1041 1042 1043
		might_sleep();
		wait_event_interruptible(cmdnode->cmdwait_q,
					 cmdnode->cmdwaitqwoken);
	}

1044 1045
	spin_lock_irqsave(&priv->driver_lock, flags);
	if (priv->cur_cmd_retcode) {
1046
		lbs_deb_host("PREP_CMD: command failed with return code %d\n",
1047 1048
		       priv->cur_cmd_retcode);
		priv->cur_cmd_retcode = 0;
1049 1050
		ret = -1;
	}
1051
	spin_unlock_irqrestore(&priv->driver_lock, flags);
1052 1053

done:
1054
	lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
1055 1056 1057 1058 1059 1060 1061
	return ret;
}

/**
 *  @brief This function allocates the command buffer and link
 *  it to command free queue.
 *
1062
 *  @param priv		A pointer to struct lbs_private structure
1063 1064
 *  @return 		0 or -1
 */
1065
int lbs_allocate_cmd_buffer(struct lbs_private *priv)
1066 1067
{
	int ret = 0;
1068
	u32 bufsize;
1069
	u32 i;
1070
	struct cmd_ctrl_node *cmdarray;
1071

1072
	lbs_deb_enter(LBS_DEB_HOST);
1073

1074 1075 1076
	/* Allocate and initialize the command array */
	bufsize = sizeof(struct cmd_ctrl_node) * LBS_NUM_CMD_BUFFERS;
	if (!(cmdarray = kzalloc(bufsize, GFP_KERNEL))) {
1077
		lbs_deb_host("ALLOC_CMD_BUF: tempcmd_array is NULL\n");
1078 1079 1080
		ret = -1;
		goto done;
	}
1081
	priv->cmd_array = cmdarray;
1082

1083 1084 1085 1086
	/* 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) {
1087
			lbs_deb_host("ALLOC_CMD_BUF: ptempvirtualaddr is NULL\n");
1088 1089 1090 1091 1092
			ret = -1;
			goto done;
		}
	}

1093 1094 1095
	for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) {
		init_waitqueue_head(&cmdarray[i].cmdwait_q);
		lbs_cleanup_and_insert_cmd(priv, &cmdarray[i]);
1096 1097
	}
	ret = 0;
1098 1099

done:
1100
	lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
1101 1102 1103 1104 1105 1106
	return ret;
}

/**
 *  @brief This function frees the command buffer.
 *
1107
 *  @param priv		A pointer to struct lbs_private structure
1108 1109
 *  @return 		0 or -1
 */
1110
int lbs_free_cmd_buffer(struct lbs_private *priv)
1111
{
1112
	struct cmd_ctrl_node *cmdarray;
1113 1114
	unsigned int i;

1115
	lbs_deb_enter(LBS_DEB_HOST);
1116 1117

	/* need to check if cmd array is allocated or not */
1118
	if (priv->cmd_array == NULL) {
1119
		lbs_deb_host("FREE_CMD_BUF: cmd_array is NULL\n");
1120 1121 1122
		goto done;
	}

1123
	cmdarray = priv->cmd_array;
1124 1125

	/* Release shared memory buffers */
1126 1127 1128 1129
	for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) {
		if (cmdarray[i].cmdbuf) {
			kfree(cmdarray[i].cmdbuf);
			cmdarray[i].cmdbuf = NULL;
1130 1131 1132 1133
		}
	}

	/* Release cmd_ctrl_node */
1134 1135 1136
	if (priv->cmd_array) {
		kfree(priv->cmd_array);
		priv->cmd_array = NULL;
1137 1138 1139
	}

done:
1140
	lbs_deb_leave(LBS_DEB_HOST);
1141 1142 1143 1144 1145 1146 1147
	return 0;
}

/**
 *  @brief This function gets a free command node if available in
 *  command free queue.
 *
1148
 *  @param priv		A pointer to struct lbs_private structure
1149 1150
 *  @return cmd_ctrl_node A pointer to cmd_ctrl_node structure or NULL
 */
1151
static struct cmd_ctrl_node *lbs_get_cmd_ctrl_node(struct lbs_private *priv)
1152 1153 1154 1155
{
	struct cmd_ctrl_node *tempnode;
	unsigned long flags;

1156 1157
	lbs_deb_enter(LBS_DEB_HOST);

1158
	if (!priv)
1159 1160
		return NULL;

1161
	spin_lock_irqsave(&priv->driver_lock, flags);
1162

1163 1164
	if (!list_empty(&priv->cmdfreeq)) {
		tempnode = list_first_entry(&priv->cmdfreeq,
1165 1166
					    struct cmd_ctrl_node, list);
		list_del(&tempnode->list);
1167
	} else {
1168
		lbs_deb_host("GET_CMD_NODE: cmd_ctrl_node is not available\n");
1169 1170 1171
		tempnode = NULL;
	}

1172
	spin_unlock_irqrestore(&priv->driver_lock, flags);
1173

1174
	lbs_deb_leave(LBS_DEB_HOST);
1175 1176 1177 1178 1179
	return tempnode;
}

/**
 *  @brief This function executes next command in command
1180
 *  pending queue. It will put firmware back to PS mode
1181 1182
 *  if applicable.
 *
1183
 *  @param priv     A pointer to struct lbs_private structure
1184 1185
 *  @return 	   0 or -1
 */
1186
int lbs_execute_next_command(struct lbs_private *priv)
1187 1188
{
	struct cmd_ctrl_node *cmdnode = NULL;
1189
	struct cmd_header *cmd;
1190 1191 1192
	unsigned long flags;
	int ret = 0;

1193 1194 1195
	/* Debug group is LBS_DEB_THREAD and not LBS_DEB_HOST, because the
	 * only caller to us is lbs_thread() and we get even when a
	 * data packet is received */
1196
	lbs_deb_enter(LBS_DEB_THREAD);
1197

1198
	spin_lock_irqsave(&priv->driver_lock, flags);
1199

1200
	if (priv->cur_cmd) {
1201
		lbs_pr_alert( "EXEC_NEXT_CMD: already processing command!\n");
1202
		spin_unlock_irqrestore(&priv->driver_lock, flags);
1203 1204 1205 1206
		ret = -1;
		goto done;
	}

1207 1208
	if (!list_empty(&priv->cmdpendingq)) {
		cmdnode = list_first_entry(&priv->cmdpendingq,
1209
					   struct cmd_ctrl_node, list);
1210 1211
	}

1212
	spin_unlock_irqrestore(&priv->driver_lock, flags);
1213 1214

	if (cmdnode) {
1215
		cmd = cmdnode->cmdbuf;
1216

1217
		if (is_command_allowed_in_ps(le16_to_cpu(cmd->command))) {
1218 1219
			if ((priv->psstate == PS_STATE_SLEEP) ||
			    (priv->psstate == PS_STATE_PRE_SLEEP)) {
1220 1221
				lbs_deb_host(
				       "EXEC_NEXT_CMD: cannot send cmd 0x%04x in psstate %d\n",
1222
				       le16_to_cpu(cmd->command),
1223
				       priv->psstate);
1224 1225 1226
				ret = -1;
				goto done;
			}
1227
			lbs_deb_host("EXEC_NEXT_CMD: OK to send command "
1228 1229
				     "0x%04x in psstate %d\n",
				     le16_to_cpu(cmd->command), priv->psstate);
1230
		} else if (priv->psstate != PS_STATE_FULL_POWER) {
1231 1232 1233
			/*
			 * 1. Non-PS command:
			 * Queue it. set needtowakeup to TRUE if current state
1234
			 * is SLEEP, otherwise call lbs_ps_wakeup to send Exit_PS.
1235 1236 1237 1238 1239 1240 1241
			 * 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.
			 */
1242
			if (cmd->command != cpu_to_le16(CMD_802_11_PS_MODE)) {
1243 1244
				/*  Prepare to send Exit PS,
				 *  this non PS command will be sent later */
1245 1246
				if ((priv->psstate == PS_STATE_SLEEP)
				    || (priv->psstate == PS_STATE_PRE_SLEEP)
1247 1248 1249
				    ) {
					/* w/ new scheme, it will not reach here.
					   since it is blocked in main_thread. */
1250
					priv->needtowakeup = 1;
1251
				} else
1252
					lbs_ps_wakeup(priv, 0);
1253 1254 1255 1256 1257 1258 1259 1260

				ret = 0;
				goto done;
			} else {
				/*
				 * PS command. Ignore it if it is not Exit_PS.
				 * otherwise send it down immediately.
				 */
1261
				struct cmd_ds_802_11_ps_mode *psm = (void *)&cmd[1];
1262

1263 1264
				lbs_deb_host(
				       "EXEC_NEXT_CMD: PS cmd, action 0x%02x\n",
1265 1266
				       psm->action);
				if (psm->action !=
1267
				    cpu_to_le16(CMD_SUBCMD_EXIT_PS)) {
1268 1269
					lbs_deb_host(
					       "EXEC_NEXT_CMD: ignore ENTER_PS cmd\n");
1270
					list_del(&cmdnode->list);
1271 1272 1273
					spin_lock_irqsave(&priv->driver_lock, flags);
					lbs_complete_command(priv, cmdnode, 0);
					spin_unlock_irqrestore(&priv->driver_lock, flags);
1274 1275 1276 1277 1278

					ret = 0;
					goto done;
				}

1279 1280
				if ((priv->psstate == PS_STATE_SLEEP) ||
				    (priv->psstate == PS_STATE_PRE_SLEEP)) {
1281 1282
					lbs_deb_host(
					       "EXEC_NEXT_CMD: ignore EXIT_PS cmd in sleep\n");
1283
					list_del(&cmdnode->list);
1284 1285 1286
					spin_lock_irqsave(&priv->driver_lock, flags);
					lbs_complete_command(priv, cmdnode, 0);
					spin_unlock_irqrestore(&priv->driver_lock, flags);
1287
					priv->needtowakeup = 1;
1288 1289 1290 1291 1292

					ret = 0;
					goto done;
				}

1293 1294
				lbs_deb_host(
				       "EXEC_NEXT_CMD: sending EXIT_PS\n");
1295 1296
			}
		}
1297
		list_del(&cmdnode->list);
1298
		lbs_deb_host("EXEC_NEXT_CMD: sending command 0x%04x\n",
1299
			    le16_to_cpu(cmd->command));
1300
		lbs_submit_command(priv, cmdnode);
1301 1302 1303 1304 1305
	} else {
		/*
		 * check if in power save mode, if yes, put the device back
		 * to PS mode
		 */
1306 1307 1308
		if ((priv->psmode != LBS802_11POWERMODECAM) &&
		    (priv->psstate == PS_STATE_FULL_POWER) &&
		    ((priv->connect_status == LBS_CONNECTED) ||
1309
		    lbs_mesh_connected(priv))) {
1310 1311
			if (priv->secinfo.WPAenabled ||
			    priv->secinfo.WPA2enabled) {
1312
				/* check for valid WPA group keys */
1313 1314
				if (priv->wpa_mcast_key.len ||
				    priv->wpa_unicast_key.len) {
1315
					lbs_deb_host(
1316 1317
					       "EXEC_NEXT_CMD: WPA enabled and GTK_SET"
					       " go back to PS_SLEEP");
1318
					lbs_ps_sleep(priv, 0);
1319 1320
				}
			} else {
1321 1322 1323
				lbs_deb_host(
				       "EXEC_NEXT_CMD: cmdpendingq empty, "
				       "go back to PS_SLEEP");
1324
				lbs_ps_sleep(priv, 0);
1325 1326 1327 1328 1329 1330
			}
		}
	}

	ret = 0;
done:
1331
	lbs_deb_leave(LBS_DEB_THREAD);
1332 1333 1334
	return ret;
}

1335
static void lbs_send_confirmsleep(struct lbs_private *priv)
1336 1337
{
	unsigned long flags;
1338
	int ret;
1339

1340
	lbs_deb_enter(LBS_DEB_HOST);
1341 1342
	lbs_deb_hex(LBS_DEB_HOST, "sleep confirm", (u8 *) &confirm_sleep,
		sizeof(confirm_sleep));
1343

1344 1345
	ret = priv->hw_host_to_card(priv, MVMS_CMD, (u8 *) &confirm_sleep,
		sizeof(confirm_sleep));
1346
	if (ret) {
1347
		lbs_pr_alert("confirm_sleep failed\n");
1348
		goto out;
1349
	}
1350 1351 1352

	spin_lock_irqsave(&priv->driver_lock, flags);

1353 1354 1355
	/* We don't get a response on the sleep-confirmation */
	priv->dnld_sent = DNLD_RES_RECEIVED;

1356
	/* If nothing to do, go back to sleep (?) */
S
Stefani Seibold 已提交
1357
	if (!kfifo_len(&priv->event_fifo) && !priv->resp_len[priv->resp_idx])
1358 1359 1360 1361 1362
		priv->psstate = PS_STATE_SLEEP;

	spin_unlock_irqrestore(&priv->driver_lock, flags);

out:
1363
	lbs_deb_leave(LBS_DEB_HOST);
1364 1365
}

1366
void lbs_ps_sleep(struct lbs_private *priv, int wait_option)
1367
{
1368
	lbs_deb_enter(LBS_DEB_HOST);
1369 1370 1371 1372 1373 1374

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

1375
	lbs_prepare_and_send_command(priv, CMD_802_11_PS_MODE,
1376
			      CMD_SUBCMD_ENTER_PS, wait_option, 0, NULL);
1377

1378
	lbs_deb_leave(LBS_DEB_HOST);
1379 1380 1381
}

/**
1382
 *  @brief This function sends Exit_PS command to firmware.
1383
 *
1384
 *  @param priv    	A pointer to struct lbs_private structure
1385 1386 1387
 *  @param wait_option	wait response or not
 *  @return 	   	n/a
 */
1388
void lbs_ps_wakeup(struct lbs_private *priv, int wait_option)
1389
{
1390
	__le32 Localpsmode;
1391

1392
	lbs_deb_enter(LBS_DEB_HOST);
1393

1394
	Localpsmode = cpu_to_le32(LBS802_11POWERMODECAM);
1395

1396
	lbs_prepare_and_send_command(priv, CMD_802_11_PS_MODE,
1397
			      CMD_SUBCMD_EXIT_PS,
1398 1399
			      wait_option, 0, &Localpsmode);

1400
	lbs_deb_leave(LBS_DEB_HOST);
1401 1402 1403 1404 1405 1406
}

/**
 *  @brief This function checks condition and prepares to
 *  send sleep confirm command to firmware if ok.
 *
1407
 *  @param priv    	A pointer to struct lbs_private structure
1408 1409 1410
 *  @param psmode  	Power Saving mode
 *  @return 	   	n/a
 */
1411
void lbs_ps_confirm_sleep(struct lbs_private *priv)
1412 1413
{
	unsigned long flags =0;
1414
	int allowed = 1;
1415

1416
	lbs_deb_enter(LBS_DEB_HOST);
1417

1418
	spin_lock_irqsave(&priv->driver_lock, flags);
1419
	if (priv->dnld_sent) {
1420
		allowed = 0;
1421
		lbs_deb_host("dnld_sent was set\n");
1422 1423
	}

1424
	/* In-progress command? */
1425
	if (priv->cur_cmd) {
1426
		allowed = 0;
1427
		lbs_deb_host("cur_cmd was set\n");
1428
	}
1429 1430

	/* Pending events or command responses? */
S
Stefani Seibold 已提交
1431
	if (kfifo_len(&priv->event_fifo) || priv->resp_len[priv->resp_idx]) {
1432
		allowed = 0;
1433
		lbs_deb_host("pending events or command responses\n");
1434
	}
1435
	spin_unlock_irqrestore(&priv->driver_lock, flags);
1436 1437

	if (allowed) {
1438
		lbs_deb_host("sending lbs_ps_confirm_sleep\n");
1439
		lbs_send_confirmsleep(priv);
1440
	} else {
1441
		lbs_deb_host("sleep confirm has been delayed\n");
1442 1443
	}

1444
	lbs_deb_leave(LBS_DEB_HOST);
1445
}
1446 1447


1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469
/**
 * @brief Configures the transmission power control functionality.
 *
 * @param priv		A pointer to struct lbs_private structure
 * @param enable	Transmission power control enable
 * @param p0		Power level when link quality is good (dBm).
 * @param p1		Power level when link quality is fair (dBm).
 * @param p2		Power level when link quality is poor (dBm).
 * @param usesnr	Use Signal to Noise Ratio in TPC
 *
 * @return 0 on success
 */
int lbs_set_tpc_cfg(struct lbs_private *priv, int enable, int8_t p0, int8_t p1,
		int8_t p2, int usesnr)
{
	struct cmd_ds_802_11_tpc_cfg cmd;
	int ret;

	memset(&cmd, 0, sizeof(cmd));
	cmd.hdr.size = cpu_to_le16(sizeof(cmd));
	cmd.action = cpu_to_le16(CMD_ACT_SET);
	cmd.enable = !!enable;
1470
	cmd.usesnr = !!usesnr;
1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511
	cmd.P0 = p0;
	cmd.P1 = p1;
	cmd.P2 = p2;

	ret = lbs_cmd_with_response(priv, CMD_802_11_TPC_CFG, &cmd);

	return ret;
}

/**
 * @brief Configures the power adaptation settings.
 *
 * @param priv		A pointer to struct lbs_private structure
 * @param enable	Power adaptation enable
 * @param p0		Power level for 1, 2, 5.5 and 11 Mbps (dBm).
 * @param p1		Power level for 6, 9, 12, 18, 22, 24 and 36 Mbps (dBm).
 * @param p2		Power level for 48 and 54 Mbps (dBm).
 *
 * @return 0 on Success
 */

int lbs_set_power_adapt_cfg(struct lbs_private *priv, int enable, int8_t p0,
		int8_t p1, int8_t p2)
{
	struct cmd_ds_802_11_pa_cfg cmd;
	int ret;

	memset(&cmd, 0, sizeof(cmd));
	cmd.hdr.size = cpu_to_le16(sizeof(cmd));
	cmd.action = cpu_to_le16(CMD_ACT_SET);
	cmd.enable = !!enable;
	cmd.P0 = p0;
	cmd.P1 = p1;
	cmd.P2 = p2;

	ret = lbs_cmd_with_response(priv, CMD_802_11_PA_CFG , &cmd);

	return ret;
}


1512
struct cmd_ctrl_node *__lbs_cmd_async(struct lbs_private *priv,
1513 1514 1515
	uint16_t command, struct cmd_header *in_cmd, int in_cmd_size,
	int (*callback)(struct lbs_private *, unsigned long, struct cmd_header *),
	unsigned long callback_arg)
1516 1517 1518 1519 1520
{
	struct cmd_ctrl_node *cmdnode;

	lbs_deb_enter(LBS_DEB_HOST);

1521
	if (priv->surpriseremoved) {
1522
		lbs_deb_host("PREP_CMD: card removed\n");
1523
		cmdnode = ERR_PTR(-ENOENT);
1524 1525 1526
		goto done;
	}

1527 1528 1529 1530 1531
	if (!lbs_is_cmd_allowed(priv)) {
		cmdnode = ERR_PTR(-EBUSY);
		goto done;
	}

1532 1533 1534 1535 1536 1537
	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);
1538
		cmdnode = ERR_PTR(-ENOBUFS);
1539 1540 1541
		goto done;
	}

1542
	cmdnode->callback = callback;
1543
	cmdnode->callback_arg = callback_arg;
1544

1545
	/* Copy the incoming command to the buffer */
1546
	memcpy(cmdnode->cmdbuf, in_cmd, in_cmd_size);
1547

1548
	/* Set sequence number, clean result, move to buffer */
1549
	priv->seqnum++;
1550 1551 1552 1553
	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;
1554 1555 1556 1557

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

	cmdnode->cmdwaitqwoken = 0;
1558
	lbs_queue_cmd(priv, cmdnode);
1559 1560
	wake_up_interruptible(&priv->waitq);

1561 1562 1563 1564 1565
 done:
	lbs_deb_leave_args(LBS_DEB_HOST, "ret %p", cmdnode);
	return cmdnode;
}

1566 1567 1568 1569 1570 1571 1572 1573 1574
void lbs_cmd_async(struct lbs_private *priv, uint16_t command,
	struct cmd_header *in_cmd, int in_cmd_size)
{
	lbs_deb_enter(LBS_DEB_CMD);
	__lbs_cmd_async(priv, command, in_cmd, in_cmd_size,
		lbs_cmd_async_callback, 0);
	lbs_deb_leave(LBS_DEB_CMD);
}

1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592
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 *),
	      unsigned long callback_arg)
{
	struct cmd_ctrl_node *cmdnode;
	unsigned long flags;
	int ret = 0;

	lbs_deb_enter(LBS_DEB_HOST);

	cmdnode = __lbs_cmd_async(priv, command, in_cmd, in_cmd_size,
				  callback, callback_arg);
	if (IS_ERR(cmdnode)) {
		ret = PTR_ERR(cmdnode);
		goto done;
	}

1593 1594 1595
	might_sleep();
	wait_event_interruptible(cmdnode->cmdwait_q, cmdnode->cmdwaitqwoken);

1596
	spin_lock_irqsave(&priv->driver_lock, flags);
1597 1598 1599 1600
	ret = cmdnode->result;
	if (ret)
		lbs_pr_info("PREP_CMD: command 0x%04x failed: %d\n",
			    command, ret);
1601

1602
	__lbs_cleanup_and_insert_cmd(priv, cmdnode);
1603
	spin_unlock_irqrestore(&priv->driver_lock, flags);
1604 1605 1606 1607 1608

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