cmdresp.c 12.8 KB
Newer Older
1 2 3 4
/**
  * This file contains the handling of command
  * responses as well as events generated by firmware.
  */
5
#include <linux/slab.h>
6
#include <linux/delay.h>
A
Alan Cox 已提交
7
#include <linux/sched.h>
8 9
#include <linux/if_arp.h>
#include <linux/netdevice.h>
10
#include <asm/unaligned.h>
11 12 13 14
#include <net/iw_handler.h>

#include "host.h"
#include "decl.h"
H
Holger Schurig 已提交
15
#include "cmd.h"
16 17
#include "defs.h"
#include "dev.h"
18
#include "assoc.h"
19 20 21 22 23 24 25
#include "wext.h"

/**
 *  @brief This function handles disconnect event. it
 *  reports disconnect to upper layer, clean tx/rx packets,
 *  reset link state etc.
 *
26
 *  @param priv    A pointer to struct lbs_private structure
27 28
 *  @return 	   n/a
 */
29
void lbs_mac_event_disconnected(struct lbs_private *priv)
30
{
31
	if (priv->connect_status != LBS_CONNECTED)
32 33
		return;

34
	lbs_deb_enter(LBS_DEB_ASSOC);
35 36 37 38 39 40

	/*
	 * Cisco AP sends EAP failure and de-auth in less than 0.5 ms.
	 * It causes problem in the Supplicant
	 */
	msleep_interruptible(1000);
41
	lbs_send_disconnect_notification(priv);
42 43

	/* report disconnect to upper layer */
44 45
	netif_stop_queue(priv->dev);
	netif_carrier_off(priv->dev);
46

47 48 49 50 51
	/* Free Tx and Rx packets */
	kfree_skb(priv->currenttxskb);
	priv->currenttxskb = NULL;
	priv->tx_pending_len = 0;

52
	/* reset SNR/NF/RSSI values */
53 54 55 56 57 58 59 60
	memset(priv->SNR, 0x00, sizeof(priv->SNR));
	memset(priv->NF, 0x00, sizeof(priv->NF));
	memset(priv->RSSI, 0x00, sizeof(priv->RSSI));
	memset(priv->rawSNR, 0x00, sizeof(priv->rawSNR));
	memset(priv->rawNF, 0x00, sizeof(priv->rawNF));
	priv->nextSNRNF = 0;
	priv->numSNRNF = 0;
	priv->connect_status = LBS_DISCONNECTED;
61

62 63 64
	/* Clear out associated SSID and BSSID since connection is
	 * no longer valid.
	 */
65
	memset(&priv->curbssparams.bssid, 0, ETH_ALEN);
66
	memset(&priv->curbssparams.ssid, 0, IEEE80211_MAX_SSID_LEN);
67
	priv->curbssparams.ssid_len = 0;
68

69
	if (priv->psstate != PS_STATE_FULL_POWER) {
70
		/* make firmware to exit PS mode */
71
		lbs_deb_cmd("disconnected, so exit PS mode\n");
72
		lbs_ps_wakeup(priv, 0);
73
	}
74
	lbs_deb_leave(LBS_DEB_ASSOC);
75 76
}

77
static int lbs_ret_reg_access(struct lbs_private *priv,
78 79
			       u16 type, struct cmd_ds_command *resp)
{
80
	int ret = 0;
81

82
	lbs_deb_enter(LBS_DEB_CMD);
83 84

	switch (type) {
85
	case CMD_RET(CMD_MAC_REG_ACCESS):
86
		{
87
			struct cmd_ds_mac_reg_access *reg = &resp->params.macreg;
88

89 90
			priv->offsetvalue.offset = (u32)le16_to_cpu(reg->offset);
			priv->offsetvalue.value = le32_to_cpu(reg->value);
91 92 93
			break;
		}

94
	case CMD_RET(CMD_BBP_REG_ACCESS):
95
		{
96
			struct cmd_ds_bbp_reg_access *reg = &resp->params.bbpreg;
97

98 99
			priv->offsetvalue.offset = (u32)le16_to_cpu(reg->offset);
			priv->offsetvalue.value = reg->value;
100 101 102
			break;
		}

103
	case CMD_RET(CMD_RF_REG_ACCESS):
104
		{
105
			struct cmd_ds_rf_reg_access *reg = &resp->params.rfreg;
106

107 108
			priv->offsetvalue.offset = (u32)le16_to_cpu(reg->offset);
			priv->offsetvalue.value = reg->value;
109 110 111 112
			break;
		}

	default:
113
		ret = -1;
114 115
	}

116
	lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
117
	return ret;
118 119
}

120
static inline int handle_cmd_response(struct lbs_private *priv,
121
				      struct cmd_header *cmd_response)
122
{
123
	struct cmd_ds_command *resp = (struct cmd_ds_command *) cmd_response;
124 125
	int ret = 0;
	unsigned long flags;
126
	uint16_t respcmd = le16_to_cpu(resp->command);
127

128 129
	lbs_deb_enter(LBS_DEB_HOST);

130
	switch (respcmd) {
131 132 133
	case CMD_RET(CMD_MAC_REG_ACCESS):
	case CMD_RET(CMD_BBP_REG_ACCESS):
	case CMD_RET(CMD_RF_REG_ACCESS):
134
		ret = lbs_ret_reg_access(priv, respcmd, resp);
135 136
		break;

137 138
	case CMD_RET(CMD_802_11_SET_AFC):
	case CMD_RET(CMD_802_11_GET_AFC):
139
		spin_lock_irqsave(&priv->driver_lock, flags);
140
		memmove((void *)priv->cur_cmd->callback_arg, &resp->params.afc,
141
			sizeof(struct cmd_ds_802_11_afc));
142
		spin_unlock_irqrestore(&priv->driver_lock, flags);
143 144 145

		break;

146
	case CMD_RET(CMD_802_11_BEACON_STOP):
147 148
		break;

149
	case CMD_RET(CMD_802_11_RSSI):
150
		ret = lbs_ret_802_11_rssi(priv, resp);
151 152
		break;

153
	case CMD_RET(CMD_802_11_TPC_CFG):
154
		spin_lock_irqsave(&priv->driver_lock, flags);
155
		memmove((void *)priv->cur_cmd->callback_arg, &resp->params.tpccfg,
156
			sizeof(struct cmd_ds_802_11_tpc_cfg));
157
		spin_unlock_irqrestore(&priv->driver_lock, flags);
158
		break;
159

160
	case CMD_RET(CMD_BT_ACCESS):
161
		spin_lock_irqsave(&priv->driver_lock, flags);
162 163
		if (priv->cur_cmd->callback_arg)
			memcpy((void *)priv->cur_cmd->callback_arg,
164
			       &resp->params.bt.addr1, 2 * ETH_ALEN);
165
		spin_unlock_irqrestore(&priv->driver_lock, flags);
166
		break;
167
	case CMD_RET(CMD_FWT_ACCESS):
168
		spin_lock_irqsave(&priv->driver_lock, flags);
169 170
		if (priv->cur_cmd->callback_arg)
			memcpy((void *)priv->cur_cmd->callback_arg, &resp->params.fwt,
171
			       sizeof(resp->params.fwt));
172
		spin_unlock_irqrestore(&priv->driver_lock, flags);
173
		break;
174 175 176 177
	case CMD_RET(CMD_802_11_BEACON_CTRL):
		ret = lbs_ret_802_11_bcn_ctrl(priv, resp);
		break;

178
	default:
179 180
		lbs_pr_err("CMD_RESP: unknown cmd response 0x%04x\n",
			   le16_to_cpu(resp->command));
181 182
		break;
	}
183
	lbs_deb_leave(LBS_DEB_HOST);
184 185 186
	return ret;
}

187
int lbs_process_command_response(struct lbs_private *priv, u8 *data, u32 len)
188
{
189
	uint16_t respcmd, curcmd;
190
	struct cmd_header *resp;
191
	int ret = 0;
192 193
	unsigned long flags;
	uint16_t result;
194

195
	lbs_deb_enter(LBS_DEB_HOST);
196

197 198
	mutex_lock(&priv->lock);
	spin_lock_irqsave(&priv->driver_lock, flags);
199

200
	if (!priv->cur_cmd) {
201
		lbs_deb_host("CMD_RESP: cur_cmd is NULL\n");
202
		ret = -1;
203
		spin_unlock_irqrestore(&priv->driver_lock, flags);
204 205
		goto done;
	}
206

207
	resp = (void *)data;
208
	curcmd = le16_to_cpu(priv->cur_cmd->cmdbuf->command);
209 210 211
	respcmd = le16_to_cpu(resp->command);
	result = le16_to_cpu(resp->result);

H
Holger Schurig 已提交
212
	lbs_deb_cmd("CMD_RESP: response 0x%04x, seq %d, size %d\n",
213 214
		     respcmd, le16_to_cpu(resp->seqnum), len);
	lbs_deb_hex(LBS_DEB_CMD, "CMD_RESP", (void *) resp, len);
215

216
	if (resp->seqnum != priv->cur_cmd->cmdbuf->seqnum) {
217
		lbs_pr_info("Received CMD_RESP with invalid sequence %d (expected %d)\n",
218
			    le16_to_cpu(resp->seqnum), le16_to_cpu(priv->cur_cmd->cmdbuf->seqnum));
219
		spin_unlock_irqrestore(&priv->driver_lock, flags);
220 221 222
		ret = -1;
		goto done;
	}
223
	if (respcmd != CMD_RET(curcmd) &&
224
	    respcmd != CMD_RET_802_11_ASSOCIATE && curcmd != CMD_802_11_ASSOCIATE) {
225 226 227 228 229 230
		lbs_pr_info("Invalid CMD_RESP %x to command %x!\n", respcmd, curcmd);
		spin_unlock_irqrestore(&priv->driver_lock, flags);
		ret = -1;
		goto done;
	}

231 232 233 234 235 236 237 238 239 240
	if (resp->result == cpu_to_le16(0x0004)) {
		/* 0x0004 means -EAGAIN. Drop the response, let it time out
		   and be resubmitted */
		lbs_pr_info("Firmware returns DEFER to command %x. Will let it time out...\n",
			    le16_to_cpu(resp->command));
		spin_unlock_irqrestore(&priv->driver_lock, flags);
		ret = -1;
		goto done;
	}

241 242
	/* Now we got response from FW, cancel the command timer */
	del_timer(&priv->command_timer);
243
	priv->cmd_timed_out = 0;
244 245

	/* Store the response code to cur_cmd_retcode. */
246
	priv->cur_cmd_retcode = result;
247

248
	if (respcmd == CMD_RET(CMD_802_11_PS_MODE)) {
249
		struct cmd_ds_802_11_ps_mode *psmode = (void *) &resp[1];
250
		u16 action = le16_to_cpu(psmode->action);
251

252 253
		lbs_deb_host(
		       "CMD_RESP: PS_MODE cmd reply result 0x%x, action 0x%x\n",
254
		       result, action);
255 256

		if (result) {
257
			lbs_deb_host("CMD_RESP: PS command failed with 0x%x\n",
258 259 260 261
				    result);
			/*
			 * We should not re-try enter-ps command in
			 * ad-hoc mode. It takes place in
262
			 * lbs_execute_next_command().
263
			 */
264
			if (priv->mode == IW_MODE_ADHOC &&
265
			    action == CMD_SUBCMD_ENTER_PS)
266
				priv->psmode = LBS802_11POWERMODECAM;
267
		} else if (action == CMD_SUBCMD_ENTER_PS) {
268 269
			priv->needtowakeup = 0;
			priv->psstate = PS_STATE_AWAKE;
270

271
			lbs_deb_host("CMD_RESP: ENTER_PS command response\n");
272
			if (priv->connect_status != LBS_CONNECTED) {
273 274 275 276
				/*
				 * When Deauth Event received before Enter_PS command
				 * response, We need to wake up the firmware.
				 */
277
				lbs_deb_host(
278
				       "disconnected, invoking lbs_ps_wakeup\n");
279

280 281
				spin_unlock_irqrestore(&priv->driver_lock, flags);
				mutex_unlock(&priv->lock);
282
				lbs_ps_wakeup(priv, 0);
283 284
				mutex_lock(&priv->lock);
				spin_lock_irqsave(&priv->driver_lock, flags);
285
			}
286
		} else if (action == CMD_SUBCMD_EXIT_PS) {
287 288
			priv->needtowakeup = 0;
			priv->psstate = PS_STATE_FULL_POWER;
289
			lbs_deb_host("CMD_RESP: EXIT_PS command response\n");
290
		} else {
291
			lbs_deb_host("CMD_RESP: PS action 0x%X\n", action);
292 293
		}

294
		lbs_complete_command(priv, priv->cur_cmd, result);
295
		spin_unlock_irqrestore(&priv->driver_lock, flags);
296 297 298 299 300 301 302

		ret = 0;
		goto done;
	}

	/* If the command is not successful, cleanup and return failure */
	if ((result != 0 || !(respcmd & 0x8000))) {
303 304
		lbs_deb_host("CMD_RESP: error 0x%04x in command reply 0x%04x\n",
		       result, respcmd);
305 306 307 308
		/*
		 * Handling errors here
		 */
		switch (respcmd) {
309 310
		case CMD_RET(CMD_GET_HW_SPEC):
		case CMD_RET(CMD_802_11_RESET):
311
			lbs_deb_host("CMD_RESP: reset failed\n");
312 313 314
			break;

		}
315
		lbs_complete_command(priv, priv->cur_cmd, result);
316
		spin_unlock_irqrestore(&priv->driver_lock, flags);
317 318 319 320 321

		ret = -1;
		goto done;
	}

322
	spin_unlock_irqrestore(&priv->driver_lock, flags);
323

324 325
	if (priv->cur_cmd && priv->cur_cmd->callback) {
		ret = priv->cur_cmd->callback(priv, priv->cur_cmd->callback_arg,
326
				resp);
327
	} else
328
		ret = handle_cmd_response(priv, resp);
329

330
	spin_lock_irqsave(&priv->driver_lock, flags);
331

332
	if (priv->cur_cmd) {
333
		/* Clean up and Put current command back to cmdfreeq */
334
		lbs_complete_command(priv, priv->cur_cmd, result);
335
	}
336
	spin_unlock_irqrestore(&priv->driver_lock, flags);
337 338

done:
339
	mutex_unlock(&priv->lock);
340
	lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
341 342 343
	return ret;
}

344 345
static int lbs_send_confirmwake(struct lbs_private *priv)
{
346
	struct cmd_header cmd;
347 348 349 350
	int ret = 0;

	lbs_deb_enter(LBS_DEB_HOST);

351 352 353 354
	cmd.command = cpu_to_le16(CMD_802_11_WAKEUP_CONFIRM);
	cmd.size = cpu_to_le16(sizeof(cmd));
	cmd.seqnum = cpu_to_le16(++priv->seqnum);
	cmd.result = 0;
355

356 357
	lbs_deb_hex(LBS_DEB_HOST, "wake confirm", (u8 *) &cmd,
		sizeof(cmd));
358

359
	ret = priv->hw_host_to_card(priv, MVMS_CMD, (u8 *) &cmd, sizeof(cmd));
360 361 362 363 364 365 366
	if (ret)
		lbs_pr_alert("SEND_WAKEC_CMD: Host to Card failed for Confirm Wake\n");

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

367
int lbs_process_event(struct lbs_private *priv, u32 event)
368 369 370
{
	int ret = 0;

371 372
	lbs_deb_enter(LBS_DEB_CMD);

373
	switch (event) {
374
	case MACREG_INT_CODE_LINK_SENSED:
375
		lbs_deb_cmd("EVENT: link sensed\n");
376 377 378
		break;

	case MACREG_INT_CODE_DEAUTHENTICATED:
379
		lbs_deb_cmd("EVENT: deauthenticated\n");
380
		lbs_mac_event_disconnected(priv);
381 382 383
		break;

	case MACREG_INT_CODE_DISASSOCIATED:
384
		lbs_deb_cmd("EVENT: disassociated\n");
385
		lbs_mac_event_disconnected(priv);
386 387
		break;

388
	case MACREG_INT_CODE_LINK_LOST_NO_SCAN:
389
		lbs_deb_cmd("EVENT: link lost\n");
390
		lbs_mac_event_disconnected(priv);
391 392 393
		break;

	case MACREG_INT_CODE_PS_SLEEP:
394
		lbs_deb_cmd("EVENT: ps sleep\n");
395 396

		/* handle unexpected PS SLEEP event */
397
		if (priv->psstate == PS_STATE_FULL_POWER) {
398
			lbs_deb_cmd(
399
			       "EVENT: in FULL POWER mode, ignoreing PS_SLEEP\n");
400 401
			break;
		}
402
		priv->psstate = PS_STATE_PRE_SLEEP;
403

404
		lbs_ps_confirm_sleep(priv);
405 406 407

		break;

408
	case MACREG_INT_CODE_HOST_AWAKE:
409
		lbs_deb_cmd("EVENT: host awake\n");
410 411 412
		if (priv->reset_deep_sleep_wakeup)
			priv->reset_deep_sleep_wakeup(priv);
		priv->is_deep_sleep = 0;
413 414 415
		lbs_send_confirmwake(priv);
		break;

416 417 418 419 420 421 422 423 424
	case MACREG_INT_CODE_DEEP_SLEEP_AWAKE:
		if (priv->reset_deep_sleep_wakeup)
			priv->reset_deep_sleep_wakeup(priv);
		lbs_deb_cmd("EVENT: ds awake\n");
		priv->is_deep_sleep = 0;
		priv->wakeup_dev_required = 0;
		wake_up_interruptible(&priv->ds_awake_q);
		break;

425
	case MACREG_INT_CODE_PS_AWAKE:
426
		lbs_deb_cmd("EVENT: ps awake\n");
427
		/* handle unexpected PS AWAKE event */
428
		if (priv->psstate == PS_STATE_FULL_POWER) {
429
			lbs_deb_cmd(
430 431 432 433
			       "EVENT: In FULL POWER mode - ignore PS AWAKE\n");
			break;
		}

434
		priv->psstate = PS_STATE_AWAKE;
435

436
		if (priv->needtowakeup) {
437 438 439
			/*
			 * wait for the command processing to finish
			 * before resuming sending
440
			 * priv->needtowakeup will be set to FALSE
441
			 * in lbs_ps_wakeup()
442
			 */
443
			lbs_deb_cmd("waking up ...\n");
444
			lbs_ps_wakeup(priv, 0);
445 446 447 448
		}
		break;

	case MACREG_INT_CODE_MIC_ERR_UNICAST:
449
		lbs_deb_cmd("EVENT: UNICAST MIC ERROR\n");
450
		lbs_send_mic_failureevent(priv, event);
451 452 453
		break;

	case MACREG_INT_CODE_MIC_ERR_MULTICAST:
454
		lbs_deb_cmd("EVENT: MULTICAST MIC ERROR\n");
455
		lbs_send_mic_failureevent(priv, event);
456
		break;
457

458
	case MACREG_INT_CODE_MIB_CHANGED:
459 460
		lbs_deb_cmd("EVENT: MIB CHANGED\n");
		break;
461
	case MACREG_INT_CODE_INIT_DONE:
462
		lbs_deb_cmd("EVENT: INIT DONE\n");
463 464
		break;
	case MACREG_INT_CODE_ADHOC_BCN_LOST:
465
		lbs_deb_cmd("EVENT: ADHOC beacon lost\n");
466 467
		break;
	case MACREG_INT_CODE_RSSI_LOW:
468
		lbs_pr_alert("EVENT: rssi low\n");
469 470
		break;
	case MACREG_INT_CODE_SNR_LOW:
471
		lbs_pr_alert("EVENT: snr low\n");
472 473
		break;
	case MACREG_INT_CODE_MAX_FAIL:
474
		lbs_pr_alert("EVENT: max fail\n");
475 476
		break;
	case MACREG_INT_CODE_RSSI_HIGH:
477
		lbs_pr_alert("EVENT: rssi high\n");
478 479
		break;
	case MACREG_INT_CODE_SNR_HIGH:
480
		lbs_pr_alert("EVENT: snr high\n");
481 482
		break;

483
	case MACREG_INT_CODE_MESH_AUTO_STARTED:
484 485
		/* Ignore spurious autostart events */
		lbs_pr_info("EVENT: MESH_AUTO_STARTED (ignoring)\n");
486 487
		break;

488
	default:
489
		lbs_pr_alert("EVENT: unknown event id %d\n", event);
490 491 492
		break;
	}

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