cmd.c 45.8 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
#include <linux/if_arp.h>
10

11
#include "decl.h"
K
Kiran Divekar 已提交
12
#include "cfg.h"
13
#include "cmd.h"
14

D
Dan Williams 已提交
15 16
#define CAL_NF(nf)		((s32)(-(s32)(nf)))
#define CAL_RSSI(snr, nf)	((s32)((s32)(snr) + CAL_NF(nf)))
17

18
static struct cmd_ctrl_node *lbs_get_cmd_ctrl_node(struct lbs_private *priv);
19

20 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
/**
 *  @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;
}


60
/**
61
 *  @brief Checks whether a command is allowed in Power Save mode
62 63
 *
 *  @param command the command ID
64
 *  @return 	   1 if allowed, 0 if not allowed
65
 */
66
static u8 is_command_allowed_in_ps(u16 cmd)
67
{
68 69 70
	switch (cmd) {
	case CMD_802_11_RSSI:
		return 1;
71 72
	case CMD_802_11_HOST_SLEEP_CFG:
		return 1;
73 74
	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
	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);

out:
179
	lbs_deb_leave(LBS_DEB_CMD);
180
	return ret;
181 182
}

183 184 185 186
static int lbs_ret_host_sleep_cfg(struct lbs_private *priv, unsigned long dummy,
			struct cmd_header *resp)
{
	lbs_deb_enter(LBS_DEB_CMD);
187
	if (priv->is_host_sleep_activated) {
188 189 190 191 192 193 194 195 196 197 198 199
		priv->is_host_sleep_configured = 0;
		if (priv->psstate == PS_STATE_FULL_POWER) {
			priv->is_host_sleep_activated = 0;
			wake_up_interruptible(&priv->host_sleep_q);
		}
	} else {
		priv->is_host_sleep_configured = 1;
	}
	lbs_deb_leave(LBS_DEB_CMD);
	return 0;
}

200 201
int lbs_host_sleep_cfg(struct lbs_private *priv, uint32_t criteria,
		struct wol_config *p_wol_config)
202 203 204 205
{
	struct cmd_ds_host_sleep cmd_config;
	int ret;

206
	cmd_config.hdr.size = cpu_to_le16(sizeof(cmd_config));
207
	cmd_config.criteria = cpu_to_le32(criteria);
208 209
	cmd_config.gpio = priv->wol_gpio;
	cmd_config.gap = priv->wol_gap;
210

211 212 213 214 215 216
	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;

217 218 219
	ret = __lbs_cmd(priv, CMD_802_11_HOST_SLEEP_CFG, &cmd_config.hdr,
			le16_to_cpu(cmd_config.hdr.size),
			lbs_ret_host_sleep_cfg, 0);
220
	if (!ret) {
221
		if (p_wol_config)
222 223 224
			memcpy((uint8_t *) p_wol_config,
					(uint8_t *)&cmd_config.wol_conf,
					sizeof(struct wol_config));
225
	} else {
226 227
		lbs_pr_info("HOST_SLEEP_CFG failed %d\n", ret);
	}
228

229 230 231 232
	return ret;
}
EXPORT_SYMBOL_GPL(lbs_host_sleep_cfg);

233
static int lbs_cmd_802_11_ps_mode(struct cmd_ds_command *cmd,
234 235 236 237
				   u16 cmd_action)
{
	struct cmd_ds_802_11_ps_mode *psm = &cmd->params.psmode;

238
	lbs_deb_enter(LBS_DEB_CMD);
239

240
	cmd->command = cpu_to_le16(CMD_802_11_PS_MODE);
241
	cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_ps_mode) +
242
				sizeof(struct cmd_header));
243 244
	psm->action = cpu_to_le16(cmd_action);
	psm->multipledtim = 0;
245
	switch (cmd_action) {
246
	case CMD_SUBCMD_ENTER_PS:
247
		lbs_deb_cmd("PS command:" "SubCode- Enter PS\n");
248

249
		psm->locallisteninterval = 0;
250
		psm->nullpktinterval = 0;
251
		psm->multipledtim =
252
		    cpu_to_le16(MRVDRV_DEFAULT_MULTIPLE_DTIM);
253 254
		break;

255
	case CMD_SUBCMD_EXIT_PS:
256
		lbs_deb_cmd("PS command:" "SubCode- Exit PS\n");
257 258
		break;

259
	case CMD_SUBCMD_SLEEP_CONFIRMED:
260
		lbs_deb_cmd("PS command: SubCode- sleep confirm\n");
261 262 263 264 265 266
		break;

	default:
		break;
	}

267
	lbs_deb_leave(LBS_DEB_CMD);
268 269 270
	return 0;
}

271 272
int lbs_cmd_802_11_sleep_params(struct lbs_private *priv, uint16_t cmd_action,
				struct sleep_params *sp)
273
{
274 275
	struct cmd_ds_802_11_sleep_params cmd;
	int ret;
276

277
	lbs_deb_enter(LBS_DEB_CMD);
278

279
	if (cmd_action == CMD_ACT_GET) {
280 281 282 283 284 285 286 287
		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);
288
	}
289 290
	cmd.hdr.size = cpu_to_le16(sizeof(cmd));
	cmd.action = cpu_to_le16(cmd_action);
291

292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309
	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);
310 311 312
	return 0;
}

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 356 357 358 359 360 361 362 363 364 365 366
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;
}

367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425
static int lbs_ret_host_sleep_activate(struct lbs_private *priv,
		unsigned long dummy,
		struct cmd_header *cmd)
{
	lbs_deb_enter(LBS_DEB_FW);
	priv->is_host_sleep_activated = 1;
	wake_up_interruptible(&priv->host_sleep_q);
	lbs_deb_leave(LBS_DEB_FW);
	return 0;
}

int lbs_set_host_sleep(struct lbs_private *priv, int host_sleep)
{
	struct cmd_header cmd;
	int ret = 0;
	uint32_t criteria = EHS_REMOVE_WAKEUP;

	lbs_deb_enter(LBS_DEB_CMD);

	if (host_sleep) {
		if (priv->is_host_sleep_activated != 1) {
			memset(&cmd, 0, sizeof(cmd));
			ret = lbs_host_sleep_cfg(priv, priv->wol_criteria,
					(struct wol_config *)NULL);
			if (ret) {
				lbs_pr_info("Host sleep configuration failed: "
						"%d\n", ret);
				return ret;
			}
			if (priv->psstate == PS_STATE_FULL_POWER) {
				ret = __lbs_cmd(priv,
						CMD_802_11_HOST_SLEEP_ACTIVATE,
						&cmd,
						sizeof(cmd),
						lbs_ret_host_sleep_activate, 0);
				if (ret)
					lbs_pr_info("HOST_SLEEP_ACTIVATE "
							"failed: %d\n", ret);
			}

			if (!wait_event_interruptible_timeout(
						priv->host_sleep_q,
						priv->is_host_sleep_activated,
						(10 * HZ))) {
				lbs_pr_err("host_sleep_q: timer expired\n");
				ret = -1;
			}
		} else {
			lbs_pr_err("host sleep: already enabled\n");
		}
	} else {
		if (priv->is_host_sleep_activated)
			ret = lbs_host_sleep_cfg(priv, criteria,
					(struct wol_config *)NULL);
	}

	return ret;
}

426 427 428 429 430 431 432 433 434 435
/**
 *  @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)
436
{
437 438
	struct cmd_ds_802_11_snmp_mib cmd;
	int ret;
439

440
	lbs_deb_enter(LBS_DEB_CMD);
441

442 443 444 445
	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);
446

447 448 449
	switch (oid) {
	case SNMP_MIB_OID_BSS_TYPE:
		cmd.bufsize = cpu_to_le16(sizeof(u8));
450
		cmd.value[0] = val;
451 452 453 454 455 456 457 458
		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);
459
		break;
460 461 462 463
	default:
		lbs_deb_cmd("SNMP_CMD: (set) unhandled OID 0x%x\n", oid);
		ret = -EINVAL;
		goto out;
464 465
	}

466 467
	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);
468

469
	ret = lbs_cmd_with_response(priv, CMD_802_11_SNMP_MIB, &cmd);
470

471 472 473 474
out:
	lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
	return ret;
}
475

476 477 478 479 480 481 482 483 484 485 486 487 488
/**
 *  @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;
489

490
	lbs_deb_enter(LBS_DEB_CMD);
491

492 493 494 495
	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);
496

497 498 499
	ret = lbs_cmd_with_response(priv, CMD_802_11_SNMP_MIB, &cmd);
	if (ret)
		goto out;
500

501 502
	switch (le16_to_cpu(cmd.bufsize)) {
	case sizeof(u8):
503
		*out_val = cmd.value[0];
504 505 506
		break;
	case sizeof(u16):
		*out_val = le16_to_cpu(*((__le16 *)(&cmd.value)));
507 508
		break;
	default:
509 510
		lbs_deb_cmd("SNMP_CMD: (get) unhandled OID 0x%x size %d\n",
		            oid, le16_to_cpu(cmd.bufsize));
511 512 513
		break;
	}

514 515 516
out:
	lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
	return ret;
517 518
}

519 520 521 522 523 524 525 526 527 528 529 530
/**
 *  @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)
531
{
532 533
	struct cmd_ds_802_11_rf_tx_power cmd;
	int ret;
534

535
	lbs_deb_enter(LBS_DEB_CMD);
536

537 538 539 540 541 542 543 544
	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)
545
			*minlevel = cmd.minlevel;
546
		if (maxlevel)
547
			*maxlevel = cmd.maxlevel;
548
	}
549

550 551 552
	lbs_deb_leave(LBS_DEB_CMD);
	return ret;
}
553

554 555 556 557 558 559 560 561 562 563 564 565
/**
 *  @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;
566

567
	lbs_deb_enter(LBS_DEB_CMD);
568

569 570 571 572
	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);
573

574 575 576
	lbs_deb_cmd("SET_RF_TX_POWER: %d dBm\n", dbm);

	ret = lbs_cmd_with_response(priv, CMD_802_11_RF_TX_POWER, &cmd);
577 578

	lbs_deb_leave(LBS_DEB_CMD);
579
	return ret;
580 581
}

582 583 584 585 586 587 588 589 590
/**
 *  @brief Enable or disable monitor mode (only implemented on OLPC usb8388 FW)
 *
 *  @param priv        A pointer to struct lbs_private structure
 *  @param enable      1 to enable monitor mode, 0 to disable
 *
 *  @return            0 on success, error on failure
 */
int lbs_set_monitor_mode(struct lbs_private *priv, int enable)
591
{
592 593
	struct cmd_ds_802_11_monitor_mode cmd;
	int ret;
594

595 596 597 598 599
	memset(&cmd, 0, sizeof(cmd));
	cmd.hdr.size = cpu_to_le16(sizeof(cmd));
	cmd.action = cpu_to_le16(CMD_ACT_SET);
	if (enable)
		cmd.mode = cpu_to_le16(0x1);
600

601 602 603 604 605 606
	lbs_deb_cmd("SET_MONITOR_MODE: %d\n", enable);

	ret = lbs_cmd_with_response(priv, CMD_802_11_MONITOR_MODE, &cmd);
	if (ret == 0) {
		priv->dev->type = enable ? ARPHRD_IEEE80211_RADIOTAP :
						ARPHRD_ETHER;
607 608
	}

609 610
	lbs_deb_leave(LBS_DEB_CMD);
	return ret;
611 612
}

613 614 615 616 617 618 619
/**
 *  @brief Get the radio channel
 *
 *  @param priv    	A pointer to struct lbs_private structure
 *
 *  @return 	   	The channel on success, error on failure
 */
620
static int lbs_get_channel(struct lbs_private *priv)
621
{
622 623
	struct cmd_ds_802_11_rf_channel cmd;
	int ret = 0;
624

625
	lbs_deb_enter(LBS_DEB_CMD);
626

627
	memset(&cmd, 0, sizeof(cmd));
628 629
	cmd.hdr.size = cpu_to_le16(sizeof(cmd));
	cmd.action = cpu_to_le16(CMD_OPT_802_11_RF_CHANNEL_GET);
630

631
	ret = lbs_cmd_with_response(priv, CMD_802_11_RF_CHANNEL, &cmd);
632 633
	if (ret)
		goto out;
634

635 636
	ret = le16_to_cpu(cmd.channel);
	lbs_deb_cmd("current radio channel is %d\n", ret);
637 638 639 640 641 642

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

643 644 645 646 647 648 649 650 651
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) {
652
		priv->channel = ret;
653 654 655 656 657 658
		ret = 0;
	}
	lbs_deb_leave_args(LBS_DEB_ASSOC, "ret %d", ret);
	return ret;
}

659 660 661 662 663 664 665 666 667 668 669
/**
 *  @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;
670
#ifdef DEBUG
671
	u8 old_channel = priv->channel;
672
#endif
673 674 675 676
	int ret = 0;

	lbs_deb_enter(LBS_DEB_CMD);

677
	memset(&cmd, 0, sizeof(cmd));
678 679 680 681
	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);

682
	ret = lbs_cmd_with_response(priv, CMD_802_11_RF_CHANNEL, &cmd);
683 684 685
	if (ret)
		goto out;

686
	priv->channel = (uint8_t) le16_to_cpu(cmd.channel);
687
	lbs_deb_cmd("channel switch from %d to %d\n", old_channel,
688
		priv->channel);
689 690 691 692

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

D
Dan Williams 已提交
695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727
/**
 *  @brief Get current RSSI and noise floor
 *
 *  @param priv		A pointer to struct lbs_private structure
 *  @param rssi		On successful return, signal level in mBm
 *
 *  @return 	   	The channel on success, error on failure
 */
int lbs_get_rssi(struct lbs_private *priv, s8 *rssi, s8 *nf)
{
	struct cmd_ds_802_11_rssi cmd;
	int ret = 0;

	lbs_deb_enter(LBS_DEB_CMD);

	BUG_ON(rssi == NULL);
	BUG_ON(nf == NULL);

	memset(&cmd, 0, sizeof(cmd));
	cmd.hdr.size = cpu_to_le16(sizeof(cmd));
	/* Average SNR over last 8 beacons */
	cmd.n_or_snr = cpu_to_le16(8);

	ret = lbs_cmd_with_response(priv, CMD_802_11_RSSI, &cmd);
	if (ret == 0) {
		*nf = CAL_NF(le16_to_cpu(cmd.nf));
		*rssi = CAL_RSSI(le16_to_cpu(cmd.n_or_snr), le16_to_cpu(cmd.nf));
	}

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

728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 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 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850
/**
 *  @brief Send regulatory and 802.11d domain information to the firmware
 *
 *  @param priv		pointer to struct lbs_private
 *  @param request	cfg80211 regulatory request structure
 *  @param bands	the device's supported bands and channels
 *
 *  @return		0 on success, error code on failure
*/
int lbs_set_11d_domain_info(struct lbs_private *priv,
			    struct regulatory_request *request,
			    struct ieee80211_supported_band **bands)
{
	struct cmd_ds_802_11d_domain_info cmd;
	struct mrvl_ie_domain_param_set *domain = &cmd.domain;
	struct ieee80211_country_ie_triplet *t;
	enum ieee80211_band band;
	struct ieee80211_channel *ch;
	u8 num_triplet = 0;
	u8 num_parsed_chan = 0;
	u8 first_channel = 0, next_chan = 0, max_pwr = 0;
	u8 i, flag = 0;
	size_t triplet_size;
	int ret;

	lbs_deb_enter(LBS_DEB_11D);

	memset(&cmd, 0, sizeof(cmd));
	cmd.action = cpu_to_le16(CMD_ACT_SET);

	lbs_deb_11d("Setting country code '%c%c'\n",
		    request->alpha2[0], request->alpha2[1]);

	domain->header.type = cpu_to_le16(TLV_TYPE_DOMAIN);

	/* Set country code */
	domain->country_code[0] = request->alpha2[0];
	domain->country_code[1] = request->alpha2[1];
	domain->country_code[2] = ' ';

	/* Now set up the channel triplets; firmware is somewhat picky here
	 * and doesn't validate channel numbers and spans; hence it would
	 * interpret a triplet of (36, 4, 20) as channels 36, 37, 38, 39.  Since
	 * the last 3 aren't valid channels, the driver is responsible for
	 * splitting that up into 4 triplet pairs of (36, 1, 20) + (40, 1, 20)
	 * etc.
	 */
	for (band = 0;
	     (band < IEEE80211_NUM_BANDS) && (num_triplet < MAX_11D_TRIPLETS);
	     band++) {

		if (!bands[band])
			continue;

		for (i = 0;
		     (i < bands[band]->n_channels) && (num_triplet < MAX_11D_TRIPLETS);
		     i++) {
			ch = &bands[band]->channels[i];
			if (ch->flags & IEEE80211_CHAN_DISABLED)
				continue;

			if (!flag) {
				flag = 1;
				next_chan = first_channel = (u32) ch->hw_value;
				max_pwr = ch->max_power;
				num_parsed_chan = 1;
				continue;
			}

			if ((ch->hw_value == next_chan + 1) &&
					(ch->max_power == max_pwr)) {
				/* Consolidate adjacent channels */
				next_chan++;
				num_parsed_chan++;
			} else {
				/* Add this triplet */
				lbs_deb_11d("11D triplet (%d, %d, %d)\n",
					first_channel, num_parsed_chan,
					max_pwr);
				t = &domain->triplet[num_triplet];
				t->chans.first_channel = first_channel;
				t->chans.num_channels = num_parsed_chan;
				t->chans.max_power = max_pwr;
				num_triplet++;
				flag = 0;
			}
		}

		if (flag) {
			/* Add last triplet */
			lbs_deb_11d("11D triplet (%d, %d, %d)\n", first_channel,
				num_parsed_chan, max_pwr);
			t = &domain->triplet[num_triplet];
			t->chans.first_channel = first_channel;
			t->chans.num_channels = num_parsed_chan;
			t->chans.max_power = max_pwr;
			num_triplet++;
		}
	}

	lbs_deb_11d("# triplets %d\n", num_triplet);

	/* Set command header sizes */
	triplet_size = num_triplet * sizeof(struct ieee80211_country_ie_triplet);
	domain->header.len = cpu_to_le16(sizeof(domain->country_code) +
					triplet_size);

	lbs_deb_hex(LBS_DEB_11D, "802.11D domain param set",
			(u8 *) &cmd.domain.country_code,
			le16_to_cpu(domain->header.len));

	cmd.hdr.size = cpu_to_le16(sizeof(cmd.hdr) +
				   sizeof(cmd.action) +
				   sizeof(cmd.domain.header) +
				   sizeof(cmd.domain.country_code) +
				   triplet_size);

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

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

851
static int lbs_cmd_reg_access(struct cmd_ds_command *cmdptr,
852 853
			       u8 cmd_action, void *pdata_buf)
{
854
	struct lbs_offset_value *offval;
855

856
	lbs_deb_enter(LBS_DEB_CMD);
857

858
	offval = (struct lbs_offset_value *)pdata_buf;
859

H
Holger Schurig 已提交
860
	switch (le16_to_cpu(cmdptr->command)) {
861
	case CMD_MAC_REG_ACCESS:
862 863 864 865
		{
			struct cmd_ds_mac_reg_access *macreg;

			cmdptr->size =
866
			    cpu_to_le16(sizeof (struct cmd_ds_mac_reg_access)
867
					+ sizeof(struct cmd_header));
868 869 870 871 872 873 874 875 876 877 878
			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;
		}

879
	case CMD_BBP_REG_ACCESS:
880 881 882 883 884 885
		{
			struct cmd_ds_bbp_reg_access *bbpreg;

			cmdptr->size =
			    cpu_to_le16(sizeof
					     (struct cmd_ds_bbp_reg_access)
886
					     + sizeof(struct cmd_header));
887 888 889 890 891 892 893 894 895 896 897
			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;
		}

898
	case CMD_RF_REG_ACCESS:
899 900 901 902 903 904
		{
			struct cmd_ds_rf_reg_access *rfreg;

			cmdptr->size =
			    cpu_to_le16(sizeof
					     (struct cmd_ds_rf_reg_access) +
905
					     sizeof(struct cmd_header));
906 907 908 909 910 911 912 913 914 915 916 917 918 919 920
			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;
	}

921
	lbs_deb_leave(LBS_DEB_CMD);
922 923 924
	return 0;
}

925 926
static void lbs_queue_cmd(struct lbs_private *priv,
			  struct cmd_ctrl_node *cmdnode)
927 928
{
	unsigned long flags;
929
	int addtail = 1;
930

931
	lbs_deb_enter(LBS_DEB_HOST);
932

933 934
	if (!cmdnode) {
		lbs_deb_host("QUEUE_CMD: cmdnode is NULL\n");
935 936
		goto done;
	}
937 938 939 940
	if (!cmdnode->cmdbuf->size) {
		lbs_deb_host("DNLD_CMD: cmd size is zero\n");
		goto done;
	}
941
	cmdnode->result = 0;
942 943

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

947
		if (psm->action == cpu_to_le16(CMD_SUBCMD_EXIT_PS)) {
948
			if (priv->psstate != PS_STATE_FULL_POWER)
949 950 951 952
				addtail = 0;
		}
	}

953 954 955 956
	if (le16_to_cpu(cmdnode->cmdbuf->command) ==
			CMD_802_11_WAKEUP_CONFIRM)
		addtail = 0;

957
	spin_lock_irqsave(&priv->driver_lock, flags);
958

959
	if (addtail)
960
		list_add_tail(&cmdnode->list, &priv->cmdpendingq);
961
	else
962
		list_add(&cmdnode->list, &priv->cmdpendingq);
963

964
	spin_unlock_irqrestore(&priv->driver_lock, flags);
965

966
	lbs_deb_host("QUEUE_CMD: inserted command 0x%04x into cmdpendingq\n",
967
		     le16_to_cpu(cmdnode->cmdbuf->command));
968 969

done:
970
	lbs_deb_leave(LBS_DEB_HOST);
971 972
}

973 974
static void lbs_submit_command(struct lbs_private *priv,
			       struct cmd_ctrl_node *cmdnode)
975 976
{
	unsigned long flags;
977
	struct cmd_header *cmd;
978 979
	uint16_t cmdsize;
	uint16_t command;
980
	int timeo = 3 * HZ;
981
	int ret;
982

983
	lbs_deb_enter(LBS_DEB_HOST);
984

985
	cmd = cmdnode->cmdbuf;
986

987 988 989 990
	spin_lock_irqsave(&priv->driver_lock, flags);
	priv->cur_cmd = cmdnode;
	priv->cur_cmd_retcode = 0;
	spin_unlock_irqrestore(&priv->driver_lock, flags);
991

992 993
	cmdsize = le16_to_cpu(cmd->size);
	command = le16_to_cpu(cmd->command);
994

995
	/* These commands take longer */
996
	if (command == CMD_802_11_SCAN || command == CMD_802_11_ASSOCIATE)
997
		timeo = 5 * HZ;
998

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

1003
	ret = priv->hw_host_to_card(priv, MVMS_CMD, (u8 *) cmd, cmdsize);
1004

1005 1006
	if (ret) {
		lbs_pr_info("DNLD_CMD: hw_host_to_card failed: %d\n", ret);
1007 1008
		/* Let the timer kick in and retry, and potentially reset
		   the whole thing if the condition persists */
1009
		timeo = HZ/4;
1010
	}
1011

1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022
	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);
	}
1023

1024
	lbs_deb_leave(LBS_DEB_HOST);
1025 1026 1027 1028
}

/**
 *  This function inserts command node to cmdfreeq
1029
 *  after cleans it. Requires priv->driver_lock held.
1030
 */
1031
static void __lbs_cleanup_and_insert_cmd(struct lbs_private *priv,
1032
					 struct cmd_ctrl_node *cmdnode)
1033
{
1034 1035 1036 1037 1038 1039 1040
	lbs_deb_enter(LBS_DEB_HOST);

	if (!cmdnode)
		goto out;

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

1042
	memset(cmdnode->cmdbuf, 0, LBS_CMD_BUFFER_SIZE);
1043

1044 1045 1046
	list_add_tail(&cmdnode->list, &priv->cmdfreeq);
 out:
	lbs_deb_leave(LBS_DEB_HOST);
1047 1048
}

1049 1050
static void lbs_cleanup_and_insert_cmd(struct lbs_private *priv,
	struct cmd_ctrl_node *ptempcmd)
1051 1052 1053
{
	unsigned long flags;

1054
	spin_lock_irqsave(&priv->driver_lock, flags);
1055
	__lbs_cleanup_and_insert_cmd(priv, ptempcmd);
1056
	spin_unlock_irqrestore(&priv->driver_lock, flags);
1057 1058
}

1059 1060 1061 1062 1063
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;
1064

1065
	cmd->result = result;
1066 1067 1068
	cmd->cmdwaitqwoken = 1;
	wake_up_interruptible(&cmd->cmdwait_q);

1069
	if (!cmd->callback || cmd->callback == lbs_cmd_async_callback)
1070
		__lbs_cleanup_and_insert_cmd(priv, cmd);
1071 1072 1073
	priv->cur_cmd = NULL;
}

1074
int lbs_set_radio(struct lbs_private *priv, u8 preamble, u8 radio_on)
1075
{
1076
	struct cmd_ds_802_11_radio_control cmd;
1077
	int ret = -EINVAL;
1078

1079
	lbs_deb_enter(LBS_DEB_CMD);
1080

1081 1082 1083
	cmd.hdr.size = cpu_to_le16(sizeof(cmd));
	cmd.action = cpu_to_le16(CMD_ACT_SET);

1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095
	/* 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;
		}
	}
1096

1097 1098 1099 1100 1101
	if (radio_on)
		cmd.control |= cpu_to_le16(0x1);
	else {
		cmd.control &= cpu_to_le16(~0x1);
		priv->txpower_cur = 0;
1102
	}
1103

1104 1105
	lbs_deb_cmd("RADIO_CONTROL: radio %s, preamble %d\n",
		    radio_on ? "ON" : "OFF", preamble);
1106

1107
	priv->radio_on = radio_on;
1108 1109

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

1111
out:
1112
	lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
1113 1114 1115
	return ret;
}

1116
void lbs_set_mac_control(struct lbs_private *priv)
1117
{
1118
	struct cmd_ds_mac_control cmd;
1119

1120
	lbs_deb_enter(LBS_DEB_CMD);
1121

1122
	cmd.hdr.size = cpu_to_le16(sizeof(cmd));
1123
	cmd.action = cpu_to_le16(priv->mac_control);
1124 1125
	cmd.reserved = 0;

1126
	lbs_cmd_async(priv, CMD_MAC_CONTROL, &cmd.hdr, sizeof(cmd));
1127

1128
	lbs_deb_leave(LBS_DEB_CMD);
1129 1130 1131 1132 1133
}

/**
 *  @brief This function prepare the command before send to firmware.
 *
1134
 *  @param priv		A pointer to struct lbs_private structure
1135 1136 1137 1138 1139 1140 1141
 *  @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
 */
1142
int lbs_prepare_and_send_command(struct lbs_private *priv,
1143 1144 1145 1146 1147 1148 1149 1150 1151
			  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;

1152
	lbs_deb_enter(LBS_DEB_HOST);
1153

1154 1155
	if (!priv) {
		lbs_deb_host("PREP_CMD: priv is NULL\n");
1156 1157 1158 1159
		ret = -1;
		goto done;
	}

1160
	if (priv->surpriseremoved) {
1161
		lbs_deb_host("PREP_CMD: card removed\n");
1162 1163 1164 1165
		ret = -1;
		goto done;
	}

1166 1167 1168 1169 1170
	if (!lbs_is_cmd_allowed(priv)) {
		ret = -EBUSY;
		goto done;
	}

1171
	cmdnode = lbs_get_cmd_ctrl_node(priv);
1172 1173

	if (cmdnode == NULL) {
1174
		lbs_deb_host("PREP_CMD: cmdnode is NULL\n");
1175 1176

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

1182 1183
	cmdnode->callback = NULL;
	cmdnode->callback_arg = (unsigned long)pdata_buf;
1184

1185
	cmdptr = (struct cmd_ds_command *)cmdnode->cmdbuf;
1186

1187
	lbs_deb_host("PREP_CMD: command 0x%04x\n", cmd_no);
1188 1189

	/* Set sequence number, command and INT option */
1190 1191
	priv->seqnum++;
	cmdptr->seqnum = cpu_to_le16(priv->seqnum);
1192

1193
	cmdptr->command = cpu_to_le16(cmd_no);
1194 1195 1196
	cmdptr->result = 0;

	switch (cmd_no) {
1197
	case CMD_802_11_PS_MODE:
1198
		ret = lbs_cmd_802_11_ps_mode(cmdptr, cmd_action);
1199 1200
		break;

1201 1202 1203
	case CMD_MAC_REG_ACCESS:
	case CMD_BBP_REG_ACCESS:
	case CMD_RF_REG_ACCESS:
1204
		ret = lbs_cmd_reg_access(cmdptr, cmd_action, pdata_buf);
1205 1206
		break;

1207 1208
	case CMD_802_11_SET_AFC:
	case CMD_802_11_GET_AFC:
1209 1210

		cmdptr->command = cpu_to_le16(cmd_no);
1211
		cmdptr->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_afc) +
1212
					   sizeof(struct cmd_header));
1213 1214 1215 1216 1217 1218 1219

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

		ret = 0;
		goto done;

1220 1221
	case CMD_802_11_TPC_CFG:
		cmdptr->command = cpu_to_le16(CMD_802_11_TPC_CFG);
1222 1223
		cmdptr->size =
		    cpu_to_le16(sizeof(struct cmd_ds_802_11_tpc_cfg) +
1224
				     sizeof(struct cmd_header));
1225 1226 1227 1228 1229 1230

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

		ret = 0;
		break;
1231

H
Holger Schurig 已提交
1232 1233
#ifdef CONFIG_LIBERTAS_MESH

1234
	case CMD_BT_ACCESS:
1235
		ret = lbs_cmd_bt_access(cmdptr, cmd_action, pdata_buf);
1236 1237
		break;

1238
	case CMD_FWT_ACCESS:
1239
		ret = lbs_cmd_fwt_access(cmdptr, cmd_action, pdata_buf);
1240 1241
		break;

H
Holger Schurig 已提交
1242 1243
#endif

1244 1245 1246
	case CMD_802_11_BEACON_CTRL:
		ret = lbs_cmd_bcn_ctrl(priv, cmdptr, cmd_action);
		break;
1247 1248
	case CMD_802_11_DEEP_SLEEP:
		cmdptr->command = cpu_to_le16(CMD_802_11_DEEP_SLEEP);
1249
		cmdptr->size = cpu_to_le16(sizeof(struct cmd_header));
1250
		break;
1251
	default:
1252
		lbs_pr_err("PREP_CMD: unknown command 0x%04x\n", cmd_no);
1253 1254 1255 1256 1257 1258
		ret = -1;
		break;
	}

	/* return error, since the command preparation failed */
	if (ret != 0) {
1259
		lbs_deb_host("PREP_CMD: command preparation failed\n");
1260
		lbs_cleanup_and_insert_cmd(priv, cmdnode);
1261 1262 1263 1264 1265 1266
		ret = -1;
		goto done;
	}

	cmdnode->cmdwaitqwoken = 0;

1267
	lbs_queue_cmd(priv, cmdnode);
1268
	wake_up_interruptible(&priv->waitq);
1269

1270
	if (wait_option & CMD_OPTION_WAITFORRSP) {
1271
		lbs_deb_host("PREP_CMD: wait for response\n");
1272 1273 1274 1275 1276
		might_sleep();
		wait_event_interruptible(cmdnode->cmdwait_q,
					 cmdnode->cmdwaitqwoken);
	}

1277 1278
	spin_lock_irqsave(&priv->driver_lock, flags);
	if (priv->cur_cmd_retcode) {
1279
		lbs_deb_host("PREP_CMD: command failed with return code %d\n",
1280 1281
		       priv->cur_cmd_retcode);
		priv->cur_cmd_retcode = 0;
1282 1283
		ret = -1;
	}
1284
	spin_unlock_irqrestore(&priv->driver_lock, flags);
1285 1286

done:
1287
	lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
1288 1289 1290 1291 1292 1293 1294
	return ret;
}

/**
 *  @brief This function allocates the command buffer and link
 *  it to command free queue.
 *
1295
 *  @param priv		A pointer to struct lbs_private structure
1296 1297
 *  @return 		0 or -1
 */
1298
int lbs_allocate_cmd_buffer(struct lbs_private *priv)
1299 1300
{
	int ret = 0;
1301
	u32 bufsize;
1302
	u32 i;
1303
	struct cmd_ctrl_node *cmdarray;
1304

1305
	lbs_deb_enter(LBS_DEB_HOST);
1306

1307 1308 1309
	/* Allocate and initialize the command array */
	bufsize = sizeof(struct cmd_ctrl_node) * LBS_NUM_CMD_BUFFERS;
	if (!(cmdarray = kzalloc(bufsize, GFP_KERNEL))) {
1310
		lbs_deb_host("ALLOC_CMD_BUF: tempcmd_array is NULL\n");
1311 1312 1313
		ret = -1;
		goto done;
	}
1314
	priv->cmd_array = cmdarray;
1315

1316 1317 1318 1319
	/* 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) {
1320
			lbs_deb_host("ALLOC_CMD_BUF: ptempvirtualaddr is NULL\n");
1321 1322 1323 1324 1325
			ret = -1;
			goto done;
		}
	}

1326 1327 1328
	for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) {
		init_waitqueue_head(&cmdarray[i].cmdwait_q);
		lbs_cleanup_and_insert_cmd(priv, &cmdarray[i]);
1329 1330
	}
	ret = 0;
1331 1332

done:
1333
	lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
1334 1335 1336 1337 1338 1339
	return ret;
}

/**
 *  @brief This function frees the command buffer.
 *
1340
 *  @param priv		A pointer to struct lbs_private structure
1341 1342
 *  @return 		0 or -1
 */
1343
int lbs_free_cmd_buffer(struct lbs_private *priv)
1344
{
1345
	struct cmd_ctrl_node *cmdarray;
1346 1347
	unsigned int i;

1348
	lbs_deb_enter(LBS_DEB_HOST);
1349 1350

	/* need to check if cmd array is allocated or not */
1351
	if (priv->cmd_array == NULL) {
1352
		lbs_deb_host("FREE_CMD_BUF: cmd_array is NULL\n");
1353 1354 1355
		goto done;
	}

1356
	cmdarray = priv->cmd_array;
1357 1358

	/* Release shared memory buffers */
1359 1360 1361 1362
	for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) {
		if (cmdarray[i].cmdbuf) {
			kfree(cmdarray[i].cmdbuf);
			cmdarray[i].cmdbuf = NULL;
1363 1364 1365 1366
		}
	}

	/* Release cmd_ctrl_node */
1367 1368 1369
	if (priv->cmd_array) {
		kfree(priv->cmd_array);
		priv->cmd_array = NULL;
1370 1371 1372
	}

done:
1373
	lbs_deb_leave(LBS_DEB_HOST);
1374 1375 1376 1377 1378 1379 1380
	return 0;
}

/**
 *  @brief This function gets a free command node if available in
 *  command free queue.
 *
1381
 *  @param priv		A pointer to struct lbs_private structure
1382 1383
 *  @return cmd_ctrl_node A pointer to cmd_ctrl_node structure or NULL
 */
1384
static struct cmd_ctrl_node *lbs_get_cmd_ctrl_node(struct lbs_private *priv)
1385 1386 1387 1388
{
	struct cmd_ctrl_node *tempnode;
	unsigned long flags;

1389 1390
	lbs_deb_enter(LBS_DEB_HOST);

1391
	if (!priv)
1392 1393
		return NULL;

1394
	spin_lock_irqsave(&priv->driver_lock, flags);
1395

1396 1397
	if (!list_empty(&priv->cmdfreeq)) {
		tempnode = list_first_entry(&priv->cmdfreeq,
1398 1399
					    struct cmd_ctrl_node, list);
		list_del(&tempnode->list);
1400
	} else {
1401
		lbs_deb_host("GET_CMD_NODE: cmd_ctrl_node is not available\n");
1402 1403 1404
		tempnode = NULL;
	}

1405
	spin_unlock_irqrestore(&priv->driver_lock, flags);
1406

1407
	lbs_deb_leave(LBS_DEB_HOST);
1408 1409 1410 1411 1412
	return tempnode;
}

/**
 *  @brief This function executes next command in command
1413
 *  pending queue. It will put firmware back to PS mode
1414 1415
 *  if applicable.
 *
1416
 *  @param priv     A pointer to struct lbs_private structure
1417 1418
 *  @return 	   0 or -1
 */
1419
int lbs_execute_next_command(struct lbs_private *priv)
1420 1421
{
	struct cmd_ctrl_node *cmdnode = NULL;
1422
	struct cmd_header *cmd;
1423 1424 1425
	unsigned long flags;
	int ret = 0;

1426 1427 1428
	/* 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 */
1429
	lbs_deb_enter(LBS_DEB_THREAD);
1430

1431
	spin_lock_irqsave(&priv->driver_lock, flags);
1432

1433
	if (priv->cur_cmd) {
1434
		lbs_pr_alert( "EXEC_NEXT_CMD: already processing command!\n");
1435
		spin_unlock_irqrestore(&priv->driver_lock, flags);
1436 1437 1438 1439
		ret = -1;
		goto done;
	}

1440 1441
	if (!list_empty(&priv->cmdpendingq)) {
		cmdnode = list_first_entry(&priv->cmdpendingq,
1442
					   struct cmd_ctrl_node, list);
1443 1444
	}

1445
	spin_unlock_irqrestore(&priv->driver_lock, flags);
1446 1447

	if (cmdnode) {
1448
		cmd = cmdnode->cmdbuf;
1449

1450
		if (is_command_allowed_in_ps(le16_to_cpu(cmd->command))) {
1451 1452
			if ((priv->psstate == PS_STATE_SLEEP) ||
			    (priv->psstate == PS_STATE_PRE_SLEEP)) {
1453 1454
				lbs_deb_host(
				       "EXEC_NEXT_CMD: cannot send cmd 0x%04x in psstate %d\n",
1455
				       le16_to_cpu(cmd->command),
1456
				       priv->psstate);
1457 1458 1459
				ret = -1;
				goto done;
			}
1460
			lbs_deb_host("EXEC_NEXT_CMD: OK to send command "
1461 1462
				     "0x%04x in psstate %d\n",
				     le16_to_cpu(cmd->command), priv->psstate);
1463
		} else if (priv->psstate != PS_STATE_FULL_POWER) {
1464 1465 1466
			/*
			 * 1. Non-PS command:
			 * Queue it. set needtowakeup to TRUE if current state
1467
			 * is SLEEP, otherwise call lbs_ps_wakeup to send Exit_PS.
1468 1469 1470 1471 1472 1473 1474
			 * 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.
			 */
1475
			if (cmd->command != cpu_to_le16(CMD_802_11_PS_MODE)) {
1476 1477
				/*  Prepare to send Exit PS,
				 *  this non PS command will be sent later */
1478 1479
				if ((priv->psstate == PS_STATE_SLEEP)
				    || (priv->psstate == PS_STATE_PRE_SLEEP)
1480 1481 1482
				    ) {
					/* w/ new scheme, it will not reach here.
					   since it is blocked in main_thread. */
1483
					priv->needtowakeup = 1;
1484
				} else
1485
					lbs_ps_wakeup(priv, 0);
1486 1487 1488 1489 1490 1491 1492 1493

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

1496 1497
				lbs_deb_host(
				       "EXEC_NEXT_CMD: PS cmd, action 0x%02x\n",
1498 1499
				       psm->action);
				if (psm->action !=
1500
				    cpu_to_le16(CMD_SUBCMD_EXIT_PS)) {
1501 1502
					lbs_deb_host(
					       "EXEC_NEXT_CMD: ignore ENTER_PS cmd\n");
1503
					list_del(&cmdnode->list);
1504 1505 1506
					spin_lock_irqsave(&priv->driver_lock, flags);
					lbs_complete_command(priv, cmdnode, 0);
					spin_unlock_irqrestore(&priv->driver_lock, flags);
1507 1508 1509 1510 1511

					ret = 0;
					goto done;
				}

1512 1513
				if ((priv->psstate == PS_STATE_SLEEP) ||
				    (priv->psstate == PS_STATE_PRE_SLEEP)) {
1514 1515
					lbs_deb_host(
					       "EXEC_NEXT_CMD: ignore EXIT_PS cmd in sleep\n");
1516
					list_del(&cmdnode->list);
1517 1518 1519
					spin_lock_irqsave(&priv->driver_lock, flags);
					lbs_complete_command(priv, cmdnode, 0);
					spin_unlock_irqrestore(&priv->driver_lock, flags);
1520
					priv->needtowakeup = 1;
1521 1522 1523 1524 1525

					ret = 0;
					goto done;
				}

1526 1527
				lbs_deb_host(
				       "EXEC_NEXT_CMD: sending EXIT_PS\n");
1528 1529
			}
		}
1530
		list_del(&cmdnode->list);
1531
		lbs_deb_host("EXEC_NEXT_CMD: sending command 0x%04x\n",
1532
			    le16_to_cpu(cmd->command));
1533
		lbs_submit_command(priv, cmdnode);
1534 1535 1536 1537 1538
	} else {
		/*
		 * check if in power save mode, if yes, put the device back
		 * to PS mode
		 */
K
Kiran Divekar 已提交
1539 1540 1541 1542 1543 1544 1545 1546 1547
#ifdef TODO
		/*
		 * This was the old code for libertas+wext. Someone that
		 * understands this beast should re-code it in a sane way.
		 *
		 * I actually don't understand why this is related to WPA
		 * and to connection status, shouldn't powering should be
		 * independ of such things?
		 */
1548 1549 1550
		if ((priv->psmode != LBS802_11POWERMODECAM) &&
		    (priv->psstate == PS_STATE_FULL_POWER) &&
		    ((priv->connect_status == LBS_CONNECTED) ||
1551
		    lbs_mesh_connected(priv))) {
1552 1553
			if (priv->secinfo.WPAenabled ||
			    priv->secinfo.WPA2enabled) {
1554
				/* check for valid WPA group keys */
1555 1556
				if (priv->wpa_mcast_key.len ||
				    priv->wpa_unicast_key.len) {
1557
					lbs_deb_host(
1558 1559
					       "EXEC_NEXT_CMD: WPA enabled and GTK_SET"
					       " go back to PS_SLEEP");
1560
					lbs_ps_sleep(priv, 0);
1561 1562
				}
			} else {
1563 1564 1565
				lbs_deb_host(
				       "EXEC_NEXT_CMD: cmdpendingq empty, "
				       "go back to PS_SLEEP");
1566
				lbs_ps_sleep(priv, 0);
1567 1568
			}
		}
K
Kiran Divekar 已提交
1569
#endif
1570 1571 1572 1573
	}

	ret = 0;
done:
1574
	lbs_deb_leave(LBS_DEB_THREAD);
1575 1576 1577
	return ret;
}

1578
static void lbs_send_confirmsleep(struct lbs_private *priv)
1579 1580
{
	unsigned long flags;
1581
	int ret;
1582

1583
	lbs_deb_enter(LBS_DEB_HOST);
1584 1585
	lbs_deb_hex(LBS_DEB_HOST, "sleep confirm", (u8 *) &confirm_sleep,
		sizeof(confirm_sleep));
1586

1587 1588
	ret = priv->hw_host_to_card(priv, MVMS_CMD, (u8 *) &confirm_sleep,
		sizeof(confirm_sleep));
1589
	if (ret) {
1590
		lbs_pr_alert("confirm_sleep failed\n");
1591
		goto out;
1592
	}
1593 1594 1595

	spin_lock_irqsave(&priv->driver_lock, flags);

1596 1597 1598
	/* We don't get a response on the sleep-confirmation */
	priv->dnld_sent = DNLD_RES_RECEIVED;

1599 1600 1601 1602 1603
	if (priv->is_host_sleep_configured) {
		priv->is_host_sleep_activated = 1;
		wake_up_interruptible(&priv->host_sleep_q);
	}

1604
	/* If nothing to do, go back to sleep (?) */
S
Stefani Seibold 已提交
1605
	if (!kfifo_len(&priv->event_fifo) && !priv->resp_len[priv->resp_idx])
1606 1607 1608 1609 1610
		priv->psstate = PS_STATE_SLEEP;

	spin_unlock_irqrestore(&priv->driver_lock, flags);

out:
1611
	lbs_deb_leave(LBS_DEB_HOST);
1612 1613
}

1614
void lbs_ps_sleep(struct lbs_private *priv, int wait_option)
1615
{
1616
	lbs_deb_enter(LBS_DEB_HOST);
1617 1618 1619 1620 1621 1622

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

1623
	lbs_prepare_and_send_command(priv, CMD_802_11_PS_MODE,
1624
			      CMD_SUBCMD_ENTER_PS, wait_option, 0, NULL);
1625

1626
	lbs_deb_leave(LBS_DEB_HOST);
1627 1628 1629
}

/**
1630
 *  @brief This function sends Exit_PS command to firmware.
1631
 *
1632
 *  @param priv    	A pointer to struct lbs_private structure
1633 1634 1635
 *  @param wait_option	wait response or not
 *  @return 	   	n/a
 */
1636
void lbs_ps_wakeup(struct lbs_private *priv, int wait_option)
1637
{
1638
	__le32 Localpsmode;
1639

1640
	lbs_deb_enter(LBS_DEB_HOST);
1641

1642
	Localpsmode = cpu_to_le32(LBS802_11POWERMODECAM);
1643

1644
	lbs_prepare_and_send_command(priv, CMD_802_11_PS_MODE,
1645
			      CMD_SUBCMD_EXIT_PS,
1646 1647
			      wait_option, 0, &Localpsmode);

1648
	lbs_deb_leave(LBS_DEB_HOST);
1649 1650 1651 1652 1653 1654
}

/**
 *  @brief This function checks condition and prepares to
 *  send sleep confirm command to firmware if ok.
 *
1655
 *  @param priv    	A pointer to struct lbs_private structure
1656 1657 1658
 *  @param psmode  	Power Saving mode
 *  @return 	   	n/a
 */
1659
void lbs_ps_confirm_sleep(struct lbs_private *priv)
1660 1661
{
	unsigned long flags =0;
1662
	int allowed = 1;
1663

1664
	lbs_deb_enter(LBS_DEB_HOST);
1665

1666
	spin_lock_irqsave(&priv->driver_lock, flags);
1667
	if (priv->dnld_sent) {
1668
		allowed = 0;
1669
		lbs_deb_host("dnld_sent was set\n");
1670 1671
	}

1672
	/* In-progress command? */
1673
	if (priv->cur_cmd) {
1674
		allowed = 0;
1675
		lbs_deb_host("cur_cmd was set\n");
1676
	}
1677 1678

	/* Pending events or command responses? */
S
Stefani Seibold 已提交
1679
	if (kfifo_len(&priv->event_fifo) || priv->resp_len[priv->resp_idx]) {
1680
		allowed = 0;
1681
		lbs_deb_host("pending events or command responses\n");
1682
	}
1683
	spin_unlock_irqrestore(&priv->driver_lock, flags);
1684 1685

	if (allowed) {
1686
		lbs_deb_host("sending lbs_ps_confirm_sleep\n");
1687
		lbs_send_confirmsleep(priv);
1688
	} else {
1689
		lbs_deb_host("sleep confirm has been delayed\n");
1690 1691
	}

1692
	lbs_deb_leave(LBS_DEB_HOST);
1693
}
1694 1695


1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717
/**
 * @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;
1718
	cmd.usesnr = !!usesnr;
1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759
	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;
}


1760
struct cmd_ctrl_node *__lbs_cmd_async(struct lbs_private *priv,
1761 1762 1763
	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)
1764 1765 1766 1767 1768
{
	struct cmd_ctrl_node *cmdnode;

	lbs_deb_enter(LBS_DEB_HOST);

1769
	if (priv->surpriseremoved) {
1770
		lbs_deb_host("PREP_CMD: card removed\n");
1771
		cmdnode = ERR_PTR(-ENOENT);
1772 1773 1774
		goto done;
	}

1775 1776 1777 1778 1779
	if (!lbs_is_cmd_allowed(priv)) {
		cmdnode = ERR_PTR(-EBUSY);
		goto done;
	}

1780 1781 1782 1783 1784 1785
	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);
1786
		cmdnode = ERR_PTR(-ENOBUFS);
1787 1788 1789
		goto done;
	}

1790
	cmdnode->callback = callback;
1791
	cmdnode->callback_arg = callback_arg;
1792

1793
	/* Copy the incoming command to the buffer */
1794
	memcpy(cmdnode->cmdbuf, in_cmd, in_cmd_size);
1795

1796
	/* Set sequence number, clean result, move to buffer */
1797
	priv->seqnum++;
1798 1799 1800 1801
	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;
1802 1803 1804 1805

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

	cmdnode->cmdwaitqwoken = 0;
1806
	lbs_queue_cmd(priv, cmdnode);
1807 1808
	wake_up_interruptible(&priv->waitq);

1809 1810 1811 1812 1813
 done:
	lbs_deb_leave_args(LBS_DEB_HOST, "ret %p", cmdnode);
	return cmdnode;
}

1814 1815 1816 1817 1818 1819 1820 1821 1822
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);
}

1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840
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;
	}

1841 1842 1843
	might_sleep();
	wait_event_interruptible(cmdnode->cmdwait_q, cmdnode->cmdwaitqwoken);

1844
	spin_lock_irqsave(&priv->driver_lock, flags);
1845 1846 1847 1848
	ret = cmdnode->result;
	if (ret)
		lbs_pr_info("PREP_CMD: command 0x%04x failed: %d\n",
			    command, ret);
1849

1850
	__lbs_cleanup_and_insert_cmd(priv, cmdnode);
1851
	spin_unlock_irqrestore(&priv->driver_lock, flags);
1852 1853 1854 1855 1856

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