iwl-sta.c 21.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
/******************************************************************************
 *
 * Copyright(c) 2003 - 2011 Intel Corporation. All rights reserved.
 *
 * Portions of this file are derived from the ipw3945 project, as well
 * as portions of the ieee80211 subsystem header files.
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of version 2 of the GNU General Public License as
 * published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
 * more details.
 *
 * You should have received a copy of the GNU General Public License along with
 * this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
 *
 * The full GNU General Public License is included in this distribution in the
 * file called LICENSE.
 *
 * Contact Information:
 *  Intel Linux Wireless <ilw@linux.intel.com>
 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
 *
 *****************************************************************************/

#include <net/mac80211.h>
#include <linux/etherdevice.h>
#include <linux/sched.h>
#include <linux/lockdep.h>

#include "iwl-dev.h"
#include "iwl-core.h"
#include "iwl-sta.h"

S
Stanislaw Gruszka 已提交
39 40
/* il->sta_lock must be held */
static void il_sta_ucode_activate(struct il_priv *il, u8 sta_id)
41 42
{

S
Stanislaw Gruszka 已提交
43
	if (!(il->stations[sta_id].used & IL_STA_DRIVER_ACTIVE))
44
		IL_ERR(
45
			"ACTIVATE a non DRIVER active station id %u addr %pM\n",
S
Stanislaw Gruszka 已提交
46
			sta_id, il->stations[sta_id].sta.sta.addr);
47

S
Stanislaw Gruszka 已提交
48
	if (il->stations[sta_id].used & IL_STA_UCODE_ACTIVE) {
49
		D_ASSOC(
50 51
			"STA id %u addr %pM already present"
			" in uCode (according to driver)\n",
S
Stanislaw Gruszka 已提交
52
			sta_id, il->stations[sta_id].sta.sta.addr);
53
	} else {
S
Stanislaw Gruszka 已提交
54
		il->stations[sta_id].used |= IL_STA_UCODE_ACTIVE;
55
		D_ASSOC("Added STA id %u addr %pM to uCode\n",
S
Stanislaw Gruszka 已提交
56
				sta_id, il->stations[sta_id].sta.sta.addr);
57 58 59
	}
}

S
Stanislaw Gruszka 已提交
60
static int il_process_add_sta_resp(struct il_priv *il,
S
Stanislaw Gruszka 已提交
61
				    struct il_addsta_cmd *addsta,
62
				    struct il_rx_pkt *pkt,
63 64 65 66 67 68
				    bool sync)
{
	u8 sta_id = addsta->sta.sta_id;
	unsigned long flags;
	int ret = -EIO;

S
Stanislaw Gruszka 已提交
69
	if (pkt->hdr.flags & IL_CMD_FAILED_MSK) {
70
		IL_ERR("Bad return from REPLY_ADD_STA (0x%08X)\n",
71 72 73 74
			pkt->hdr.flags);
		return ret;
	}

75
	D_INFO("Processing response for adding station %u\n",
76 77
		       sta_id);

S
Stanislaw Gruszka 已提交
78
	spin_lock_irqsave(&il->sta_lock, flags);
79 80 81

	switch (pkt->u.add_sta.status) {
	case ADD_STA_SUCCESS_MSK:
82
		D_INFO("REPLY_ADD_STA PASSED\n");
S
Stanislaw Gruszka 已提交
83
		il_sta_ucode_activate(il, sta_id);
84 85 86
		ret = 0;
		break;
	case ADD_STA_NO_ROOM_IN_TABLE:
87
		IL_ERR("Adding station %d failed, no room in table.\n",
88 89 90
			sta_id);
		break;
	case ADD_STA_NO_BLOCK_ACK_RESOURCE:
91
		IL_ERR(
92 93 94 95
			"Adding station %d failed, no block ack resource.\n",
			sta_id);
		break;
	case ADD_STA_MODIFY_NON_EXIST_STA:
96
		IL_ERR("Attempting to modify non-existing station %d\n",
97 98 99
			sta_id);
		break;
	default:
100
		D_ASSOC("Received REPLY_ADD_STA:(0x%08X)\n",
101 102 103 104
				pkt->u.add_sta.status);
		break;
	}

105
	D_INFO("%s station id %u addr %pM\n",
S
Stanislaw Gruszka 已提交
106
		       il->stations[sta_id].sta.mode ==
107
		       STA_CONTROL_MODIFY_MSK ?  "Modified" : "Added",
S
Stanislaw Gruszka 已提交
108
		       sta_id, il->stations[sta_id].sta.sta.addr);
109 110 111 112

	/*
	 * XXX: The MAC address in the command buffer is often changed from
	 * the original sent to the device. That is, the MAC address
L
Lucas De Marchi 已提交
113
	 * written to the command buffer often is not the same MAC address
114 115 116 117
	 * read from the command buffer when the command returns. This
	 * issue has not yet been resolved and this debugging is left to
	 * observe the problem.
	 */
118
	D_INFO("%s station according to cmd buffer %pM\n",
S
Stanislaw Gruszka 已提交
119
		       il->stations[sta_id].sta.mode ==
120 121
		       STA_CONTROL_MODIFY_MSK ? "Modified" : "Added",
		       addsta->sta.addr);
S
Stanislaw Gruszka 已提交
122
	spin_unlock_irqrestore(&il->sta_lock, flags);
123 124 125 126

	return ret;
}

S
Stanislaw Gruszka 已提交
127
static void il_add_sta_callback(struct il_priv *il,
S
Stanislaw Gruszka 已提交
128
				 struct il_device_cmd *cmd,
129
				 struct il_rx_pkt *pkt)
130
{
S
Stanislaw Gruszka 已提交
131 132
	struct il_addsta_cmd *addsta =
		(struct il_addsta_cmd *)cmd->cmd.payload;
133

S
Stanislaw Gruszka 已提交
134
	il_process_add_sta_resp(il, addsta, pkt, false);
135 136 137

}

S
Stanislaw Gruszka 已提交
138
int il_send_add_sta(struct il_priv *il,
S
Stanislaw Gruszka 已提交
139
		     struct il_addsta_cmd *sta, u8 flags)
140
{
141
	struct il_rx_pkt *pkt = NULL;
142 143
	int ret = 0;
	u8 data[sizeof(*sta)];
S
Stanislaw Gruszka 已提交
144
	struct il_host_cmd cmd = {
145 146 147 148 149 150
		.id = REPLY_ADD_STA,
		.flags = flags,
		.data = data,
	};
	u8 sta_id __maybe_unused = sta->sta.sta_id;

151
	D_INFO("Adding sta %u (%pM) %ssynchronously\n",
152 153 154
		       sta_id, sta->sta.addr, flags & CMD_ASYNC ?  "a" : "");

	if (flags & CMD_ASYNC)
S
Stanislaw Gruszka 已提交
155
		cmd.callback = il_add_sta_callback;
156 157 158 159 160
	else {
		cmd.flags |= CMD_WANT_SKB;
		might_sleep();
	}

S
Stanislaw Gruszka 已提交
161 162
	cmd.len = il->cfg->ops->utils->build_addsta_hcmd(sta, data);
	ret = il_send_cmd(il, &cmd);
163 164 165 166 167

	if (ret || (flags & CMD_ASYNC))
		return ret;

	if (ret == 0) {
168
		pkt = (struct il_rx_pkt *)cmd.reply_page;
S
Stanislaw Gruszka 已提交
169
		ret = il_process_add_sta_resp(il, sta, pkt, true);
170
	}
S
Stanislaw Gruszka 已提交
171
	il_free_pages(il, cmd.reply_page);
172 173 174

	return ret;
}
S
Stanislaw Gruszka 已提交
175
EXPORT_SYMBOL(il_send_add_sta);
176

S
Stanislaw Gruszka 已提交
177
static void il_set_ht_add_station(struct il_priv *il, u8 index,
178
				   struct ieee80211_sta *sta,
S
Stanislaw Gruszka 已提交
179
				   struct il_rxon_context *ctx)
180 181 182 183 184 185 186 187 188
{
	struct ieee80211_sta_ht_cap *sta_ht_inf = &sta->ht_cap;
	__le32 sta_flags;
	u8 mimo_ps_mode;

	if (!sta || !sta_ht_inf->ht_supported)
		goto done;

	mimo_ps_mode = (sta_ht_inf->cap & IEEE80211_HT_CAP_SM_PS) >> 2;
189
	D_ASSOC("spatial multiplexing power save mode: %s\n",
190 191 192 193 194
			(mimo_ps_mode == WLAN_HT_CAP_SM_PS_STATIC) ?
			"static" :
			(mimo_ps_mode == WLAN_HT_CAP_SM_PS_DYNAMIC) ?
			"dynamic" : "disabled");

S
Stanislaw Gruszka 已提交
195
	sta_flags = il->stations[index].sta.station_flags;
196 197 198 199 200 201 202 203 204 205 206 207 208

	sta_flags &= ~(STA_FLG_RTS_MIMO_PROT_MSK | STA_FLG_MIMO_DIS_MSK);

	switch (mimo_ps_mode) {
	case WLAN_HT_CAP_SM_PS_STATIC:
		sta_flags |= STA_FLG_MIMO_DIS_MSK;
		break;
	case WLAN_HT_CAP_SM_PS_DYNAMIC:
		sta_flags |= STA_FLG_RTS_MIMO_PROT_MSK;
		break;
	case WLAN_HT_CAP_SM_PS_DISABLED:
		break;
	default:
209
		IL_WARN("Invalid MIMO PS mode %d\n", mimo_ps_mode);
210 211 212 213 214 215 216 217 218
		break;
	}

	sta_flags |= cpu_to_le32(
	      (u32)sta_ht_inf->ampdu_factor << STA_FLG_MAX_AGG_SIZE_POS);

	sta_flags |= cpu_to_le32(
	      (u32)sta_ht_inf->ampdu_density << STA_FLG_AGG_MPDU_DENSITY_POS);

S
Stanislaw Gruszka 已提交
219
	if (il_is_ht40_tx_allowed(il, ctx, &sta->ht_cap))
220 221 222 223
		sta_flags |= STA_FLG_HT40_EN_MSK;
	else
		sta_flags &= ~STA_FLG_HT40_EN_MSK;

S
Stanislaw Gruszka 已提交
224
	il->stations[index].sta.station_flags = sta_flags;
225 226 227 228 229
 done:
	return;
}

/**
S
Stanislaw Gruszka 已提交
230
 * il_prep_station - Prepare station information for addition
231 232 233
 *
 * should be called with sta_lock held
 */
S
Stanislaw Gruszka 已提交
234
u8 il_prep_station(struct il_priv *il, struct il_rxon_context *ctx,
235 236
		    const u8 *addr, bool is_ap, struct ieee80211_sta *sta)
{
S
Stanislaw Gruszka 已提交
237
	struct il_station_entry *station;
238
	int i;
S
Stanislaw Gruszka 已提交
239
	u8 sta_id = IL_INVALID_STATION;
240 241 242 243 244 245 246
	u16 rate;

	if (is_ap)
		sta_id = ctx->ap_sta_id;
	else if (is_broadcast_ether_addr(addr))
		sta_id = ctx->bcast_sta_id;
	else
S
Stanislaw Gruszka 已提交
247 248
		for (i = IL_STA_ID; i < il->hw_params.max_stations; i++) {
			if (!compare_ether_addr(il->stations[i].sta.sta.addr,
249 250 251 252 253
						addr)) {
				sta_id = i;
				break;
			}

S
Stanislaw Gruszka 已提交
254
			if (!il->stations[i].used &&
S
Stanislaw Gruszka 已提交
255
			    sta_id == IL_INVALID_STATION)
256 257 258 259 260 261 262
				sta_id = i;
		}

	/*
	 * These two conditions have the same outcome, but keep them
	 * separate
	 */
S
Stanislaw Gruszka 已提交
263
	if (unlikely(sta_id == IL_INVALID_STATION))
264 265 266 267 268 269 270
		return sta_id;

	/*
	 * uCode is not able to deal with multiple requests to add a
	 * station. Keep track if one is in progress so that we do not send
	 * another.
	 */
S
Stanislaw Gruszka 已提交
271
	if (il->stations[sta_id].used & IL_STA_UCODE_INPROGRESS) {
272
		D_INFO(
273 274 275 276 277
				"STA %d already in process of being added.\n",
				sta_id);
		return sta_id;
	}

S
Stanislaw Gruszka 已提交
278 279 280
	if ((il->stations[sta_id].used & IL_STA_DRIVER_ACTIVE) &&
	    (il->stations[sta_id].used & IL_STA_UCODE_ACTIVE) &&
	    !compare_ether_addr(il->stations[sta_id].sta.sta.addr, addr)) {
281
		D_ASSOC(
282 283 284 285 286
				"STA %d (%pM) already added, not adding again.\n",
				sta_id, addr);
		return sta_id;
	}

S
Stanislaw Gruszka 已提交
287
	station = &il->stations[sta_id];
S
Stanislaw Gruszka 已提交
288
	station->used = IL_STA_DRIVER_ACTIVE;
289
	D_ASSOC("Add STA to driver ID %d: %pM\n",
290
			sta_id, addr);
S
Stanislaw Gruszka 已提交
291
	il->num_stations++;
292 293

	/* Set up the REPLY_ADD_STA command to send to device */
S
Stanislaw Gruszka 已提交
294
	memset(&station->sta, 0, sizeof(struct il_addsta_cmd));
295 296 297 298 299 300 301
	memcpy(station->sta.sta.addr, addr, ETH_ALEN);
	station->sta.mode = 0;
	station->sta.sta.sta_id = sta_id;
	station->sta.station_flags = ctx->station_flags;
	station->ctxid = ctx->ctxid;

	if (sta) {
S
Stanislaw Gruszka 已提交
302
		struct il_station_priv_common *sta_priv;
303 304 305 306 307 308 309 310 311 312

		sta_priv = (void *)sta->drv_priv;
		sta_priv->ctx = ctx;
	}

	/*
	 * OK to call unconditionally, since local stations (IBSS BSSID
	 * STA and broadcast STA) pass in a NULL sta, and mac80211
	 * doesn't allow HT IBSS.
	 */
S
Stanislaw Gruszka 已提交
313
	il_set_ht_add_station(il, sta_id, sta, ctx);
314 315

	/* 3945 only */
S
Stanislaw Gruszka 已提交
316
	rate = (il->band == IEEE80211_BAND_5GHZ) ?
S
Stanislaw Gruszka 已提交
317
		IL_RATE_6M_PLCP : IL_RATE_1M_PLCP;
318 319 320 321 322 323
	/* Turn on both antennas for the station... */
	station->sta.rate_n_flags = cpu_to_le16(rate | RATE_MCS_ANT_AB_MSK);

	return sta_id;

}
S
Stanislaw Gruszka 已提交
324
EXPORT_SYMBOL_GPL(il_prep_station);
325 326 327 328

#define STA_WAIT_TIMEOUT (HZ/2)

/**
S
Stanislaw Gruszka 已提交
329
 * il_add_station_common -
330 331
 */
int
S
Stanislaw Gruszka 已提交
332
il_add_station_common(struct il_priv *il,
S
Stanislaw Gruszka 已提交
333
			struct il_rxon_context *ctx,
334 335 336 337 338 339
			   const u8 *addr, bool is_ap,
			   struct ieee80211_sta *sta, u8 *sta_id_r)
{
	unsigned long flags_spin;
	int ret = 0;
	u8 sta_id;
S
Stanislaw Gruszka 已提交
340
	struct il_addsta_cmd sta_cmd;
341 342

	*sta_id_r = 0;
S
Stanislaw Gruszka 已提交
343 344
	spin_lock_irqsave(&il->sta_lock, flags_spin);
	sta_id = il_prep_station(il, ctx, addr, is_ap, sta);
S
Stanislaw Gruszka 已提交
345
	if (sta_id == IL_INVALID_STATION) {
346
		IL_ERR("Unable to prepare station %pM for addition\n",
347
			addr);
S
Stanislaw Gruszka 已提交
348
		spin_unlock_irqrestore(&il->sta_lock, flags_spin);
349 350 351 352 353 354 355 356
		return -EINVAL;
	}

	/*
	 * uCode is not able to deal with multiple requests to add a
	 * station. Keep track if one is in progress so that we do not send
	 * another.
	 */
S
Stanislaw Gruszka 已提交
357
	if (il->stations[sta_id].used & IL_STA_UCODE_INPROGRESS) {
358
		D_INFO(
359 360
			"STA %d already in process of being added.\n",
		       sta_id);
S
Stanislaw Gruszka 已提交
361
		spin_unlock_irqrestore(&il->sta_lock, flags_spin);
362 363 364
		return -EEXIST;
	}

S
Stanislaw Gruszka 已提交
365 366
	if ((il->stations[sta_id].used & IL_STA_DRIVER_ACTIVE) &&
	    (il->stations[sta_id].used & IL_STA_UCODE_ACTIVE)) {
367
		D_ASSOC(
368 369
			"STA %d (%pM) already added, not adding again.\n",
			sta_id, addr);
S
Stanislaw Gruszka 已提交
370
		spin_unlock_irqrestore(&il->sta_lock, flags_spin);
371 372 373
		return -EEXIST;
	}

S
Stanislaw Gruszka 已提交
374 375
	il->stations[sta_id].used |= IL_STA_UCODE_INPROGRESS;
	memcpy(&sta_cmd, &il->stations[sta_id].sta,
S
Stanislaw Gruszka 已提交
376
				sizeof(struct il_addsta_cmd));
S
Stanislaw Gruszka 已提交
377
	spin_unlock_irqrestore(&il->sta_lock, flags_spin);
378 379

	/* Add station to device's station table */
S
Stanislaw Gruszka 已提交
380
	ret = il_send_add_sta(il, &sta_cmd, CMD_SYNC);
381
	if (ret) {
S
Stanislaw Gruszka 已提交
382
		spin_lock_irqsave(&il->sta_lock, flags_spin);
383
		IL_ERR("Adding station %pM failed.\n",
S
Stanislaw Gruszka 已提交
384 385 386 387
			il->stations[sta_id].sta.sta.addr);
		il->stations[sta_id].used &= ~IL_STA_DRIVER_ACTIVE;
		il->stations[sta_id].used &= ~IL_STA_UCODE_INPROGRESS;
		spin_unlock_irqrestore(&il->sta_lock, flags_spin);
388 389 390 391
	}
	*sta_id_r = sta_id;
	return ret;
}
S
Stanislaw Gruszka 已提交
392
EXPORT_SYMBOL(il_add_station_common);
393 394

/**
S
Stanislaw Gruszka 已提交
395
 * il_sta_ucode_deactivate - deactivate ucode status for a station
396
 *
S
Stanislaw Gruszka 已提交
397
 * il->sta_lock must be held
398
 */
S
Stanislaw Gruszka 已提交
399
static void il_sta_ucode_deactivate(struct il_priv *il, u8 sta_id)
400 401
{
	/* Ucode must be active and driver must be non active */
S
Stanislaw Gruszka 已提交
402
	if ((il->stations[sta_id].used &
S
Stanislaw Gruszka 已提交
403 404
	     (IL_STA_UCODE_ACTIVE | IL_STA_DRIVER_ACTIVE)) !=
						IL_STA_UCODE_ACTIVE)
405
		IL_ERR("removed non active STA %u\n", sta_id);
406

S
Stanislaw Gruszka 已提交
407
	il->stations[sta_id].used &= ~IL_STA_UCODE_ACTIVE;
408

S
Stanislaw Gruszka 已提交
409
	memset(&il->stations[sta_id], 0, sizeof(struct il_station_entry));
410
	D_ASSOC("Removed STA %u\n", sta_id);
411 412
}

S
Stanislaw Gruszka 已提交
413
static int il_send_remove_station(struct il_priv *il,
414 415 416
				   const u8 *addr, int sta_id,
				   bool temporary)
{
417
	struct il_rx_pkt *pkt;
418 419 420
	int ret;

	unsigned long flags_spin;
S
Stanislaw Gruszka 已提交
421
	struct il_rem_sta_cmd rm_sta_cmd;
422

S
Stanislaw Gruszka 已提交
423
	struct il_host_cmd cmd = {
424
		.id = REPLY_REMOVE_STA,
S
Stanislaw Gruszka 已提交
425
		.len = sizeof(struct il_rem_sta_cmd),
426 427 428 429 430 431 432 433 434 435
		.flags = CMD_SYNC,
		.data = &rm_sta_cmd,
	};

	memset(&rm_sta_cmd, 0, sizeof(rm_sta_cmd));
	rm_sta_cmd.num_sta = 1;
	memcpy(&rm_sta_cmd.addr, addr, ETH_ALEN);

	cmd.flags |= CMD_WANT_SKB;

S
Stanislaw Gruszka 已提交
436
	ret = il_send_cmd(il, &cmd);
437 438 439 440

	if (ret)
		return ret;

441
	pkt = (struct il_rx_pkt *)cmd.reply_page;
S
Stanislaw Gruszka 已提交
442
	if (pkt->hdr.flags & IL_CMD_FAILED_MSK) {
443
		IL_ERR("Bad return from REPLY_REMOVE_STA (0x%08X)\n",
444 445 446 447 448 449 450 451
			  pkt->hdr.flags);
		ret = -EIO;
	}

	if (!ret) {
		switch (pkt->u.rem_sta.status) {
		case REM_STA_SUCCESS_MSK:
			if (!temporary) {
S
Stanislaw Gruszka 已提交
452 453 454
				spin_lock_irqsave(&il->sta_lock, flags_spin);
				il_sta_ucode_deactivate(il, sta_id);
				spin_unlock_irqrestore(&il->sta_lock,
455 456
								flags_spin);
			}
457
			D_ASSOC("REPLY_REMOVE_STA PASSED\n");
458 459 460
			break;
		default:
			ret = -EIO;
461
			IL_ERR("REPLY_REMOVE_STA failed\n");
462 463 464
			break;
		}
	}
S
Stanislaw Gruszka 已提交
465
	il_free_pages(il, cmd.reply_page);
466 467 468 469 470

	return ret;
}

/**
S
Stanislaw Gruszka 已提交
471
 * il_remove_station - Remove driver's knowledge of station.
472
 */
S
Stanislaw Gruszka 已提交
473
int il_remove_station(struct il_priv *il, const u8 sta_id,
474 475 476 477
		       const u8 *addr)
{
	unsigned long flags;

S
Stanislaw Gruszka 已提交
478
	if (!il_is_ready(il)) {
479
		D_INFO(
480 481 482 483 484 485 486 487 488 489
			"Unable to remove station %pM, device not ready.\n",
			addr);
		/*
		 * It is typical for stations to be removed when we are
		 * going down. Return success since device will be down
		 * soon anyway
		 */
		return 0;
	}

490
	D_ASSOC("Removing STA from driver:%d  %pM\n",
491 492
			sta_id, addr);

S
Stanislaw Gruszka 已提交
493
	if (WARN_ON(sta_id == IL_INVALID_STATION))
494 495
		return -EINVAL;

S
Stanislaw Gruszka 已提交
496
	spin_lock_irqsave(&il->sta_lock, flags);
497

S
Stanislaw Gruszka 已提交
498
	if (!(il->stations[sta_id].used & IL_STA_DRIVER_ACTIVE)) {
499
		D_INFO("Removing %pM but non DRIVER active\n",
500 501 502 503
				addr);
		goto out_err;
	}

S
Stanislaw Gruszka 已提交
504
	if (!(il->stations[sta_id].used & IL_STA_UCODE_ACTIVE)) {
505
		D_INFO("Removing %pM but non UCODE active\n",
506 507 508 509
				addr);
		goto out_err;
	}

S
Stanislaw Gruszka 已提交
510 511 512
	if (il->stations[sta_id].used & IL_STA_LOCAL) {
		kfree(il->stations[sta_id].lq);
		il->stations[sta_id].lq = NULL;
513 514
	}

S
Stanislaw Gruszka 已提交
515
	il->stations[sta_id].used &= ~IL_STA_DRIVER_ACTIVE;
516

S
Stanislaw Gruszka 已提交
517
	il->num_stations--;
518

S
Stanislaw Gruszka 已提交
519
	BUG_ON(il->num_stations < 0);
520

S
Stanislaw Gruszka 已提交
521
	spin_unlock_irqrestore(&il->sta_lock, flags);
522

S
Stanislaw Gruszka 已提交
523
	return il_send_remove_station(il, addr, sta_id, false);
524
out_err:
S
Stanislaw Gruszka 已提交
525
	spin_unlock_irqrestore(&il->sta_lock, flags);
526 527
	return -EINVAL;
}
S
Stanislaw Gruszka 已提交
528
EXPORT_SYMBOL_GPL(il_remove_station);
529 530

/**
S
Stanislaw Gruszka 已提交
531
 * il_clear_ucode_stations - clear ucode station table bits
532 533 534 535 536 537
 *
 * This function clears all the bits in the driver indicating
 * which stations are active in the ucode. Call when something
 * other than explicit station management would cause this in
 * the ucode, e.g. unassociated RXON.
 */
S
Stanislaw Gruszka 已提交
538
void il_clear_ucode_stations(struct il_priv *il,
S
Stanislaw Gruszka 已提交
539
			      struct il_rxon_context *ctx)
540 541 542 543 544
{
	int i;
	unsigned long flags_spin;
	bool cleared = false;

545
	D_INFO("Clearing ucode stations in driver\n");
546

S
Stanislaw Gruszka 已提交
547 548 549
	spin_lock_irqsave(&il->sta_lock, flags_spin);
	for (i = 0; i < il->hw_params.max_stations; i++) {
		if (ctx && ctx->ctxid != il->stations[i].ctxid)
550 551
			continue;

S
Stanislaw Gruszka 已提交
552
		if (il->stations[i].used & IL_STA_UCODE_ACTIVE) {
553
			D_INFO(
554
				"Clearing ucode active for station %d\n", i);
S
Stanislaw Gruszka 已提交
555
			il->stations[i].used &= ~IL_STA_UCODE_ACTIVE;
556 557 558
			cleared = true;
		}
	}
S
Stanislaw Gruszka 已提交
559
	spin_unlock_irqrestore(&il->sta_lock, flags_spin);
560 561

	if (!cleared)
562
		D_INFO(
563 564
			"No active stations found to be cleared\n");
}
S
Stanislaw Gruszka 已提交
565
EXPORT_SYMBOL(il_clear_ucode_stations);
566 567

/**
S
Stanislaw Gruszka 已提交
568
 * il_restore_stations() - Restore driver known stations to device
569 570 571 572 573 574 575
 *
 * All stations considered active by driver, but not present in ucode, is
 * restored.
 *
 * Function sleeps.
 */
void
S
Stanislaw Gruszka 已提交
576
il_restore_stations(struct il_priv *il, struct il_rxon_context *ctx)
577
{
S
Stanislaw Gruszka 已提交
578 579
	struct il_addsta_cmd sta_cmd;
	struct il_link_quality_cmd lq;
580 581 582 583 584 585
	unsigned long flags_spin;
	int i;
	bool found = false;
	int ret;
	bool send_lq;

S
Stanislaw Gruszka 已提交
586
	if (!il_is_ready(il)) {
587
		D_INFO(
588 589 590 591
			"Not ready yet, not restoring any stations.\n");
		return;
	}

592
	D_ASSOC("Restoring all known stations ... start.\n");
S
Stanislaw Gruszka 已提交
593 594 595
	spin_lock_irqsave(&il->sta_lock, flags_spin);
	for (i = 0; i < il->hw_params.max_stations; i++) {
		if (ctx->ctxid != il->stations[i].ctxid)
596
			continue;
S
Stanislaw Gruszka 已提交
597
		if ((il->stations[i].used & IL_STA_DRIVER_ACTIVE) &&
598
		    !(il->stations[i].used & IL_STA_UCODE_ACTIVE)) {
599
			D_ASSOC("Restoring sta %pM\n",
S
Stanislaw Gruszka 已提交
600 601 602
					il->stations[i].sta.sta.addr);
			il->stations[i].sta.mode = 0;
			il->stations[i].used |= IL_STA_UCODE_INPROGRESS;
603 604 605 606
			found = true;
		}
	}

S
Stanislaw Gruszka 已提交
607 608 609
	for (i = 0; i < il->hw_params.max_stations; i++) {
		if ((il->stations[i].used & IL_STA_UCODE_INPROGRESS)) {
			memcpy(&sta_cmd, &il->stations[i].sta,
S
Stanislaw Gruszka 已提交
610
			       sizeof(struct il_addsta_cmd));
611
			send_lq = false;
S
Stanislaw Gruszka 已提交
612 613
			if (il->stations[i].lq) {
				memcpy(&lq, il->stations[i].lq,
S
Stanislaw Gruszka 已提交
614
				       sizeof(struct il_link_quality_cmd));
615 616
				send_lq = true;
			}
S
Stanislaw Gruszka 已提交
617 618
			spin_unlock_irqrestore(&il->sta_lock, flags_spin);
			ret = il_send_add_sta(il, &sta_cmd, CMD_SYNC);
619
			if (ret) {
S
Stanislaw Gruszka 已提交
620
				spin_lock_irqsave(&il->sta_lock, flags_spin);
621
				IL_ERR("Adding station %pM failed.\n",
S
Stanislaw Gruszka 已提交
622 623
					il->stations[i].sta.sta.addr);
				il->stations[i].used &=
S
Stanislaw Gruszka 已提交
624
						~IL_STA_DRIVER_ACTIVE;
S
Stanislaw Gruszka 已提交
625
				il->stations[i].used &=
S
Stanislaw Gruszka 已提交
626
						~IL_STA_UCODE_INPROGRESS;
S
Stanislaw Gruszka 已提交
627
				spin_unlock_irqrestore(&il->sta_lock,
628 629 630 631 632 633 634
								flags_spin);
			}
			/*
			 * Rate scaling has already been initialized, send
			 * current LQ command
			 */
			if (send_lq)
S
Stanislaw Gruszka 已提交
635
				il_send_lq_cmd(il, ctx, &lq,
636
								CMD_SYNC, true);
S
Stanislaw Gruszka 已提交
637 638
			spin_lock_irqsave(&il->sta_lock, flags_spin);
			il->stations[i].used &= ~IL_STA_UCODE_INPROGRESS;
639 640 641
		}
	}

S
Stanislaw Gruszka 已提交
642
	spin_unlock_irqrestore(&il->sta_lock, flags_spin);
643
	if (!found)
644
		D_INFO("Restoring all known stations"
645 646
				" .... no stations to be restored.\n");
	else
647
		D_INFO("Restoring all known stations"
648 649
				" .... complete.\n");
}
S
Stanislaw Gruszka 已提交
650
EXPORT_SYMBOL(il_restore_stations);
651

S
Stanislaw Gruszka 已提交
652
int il_get_free_ucode_key_index(struct il_priv *il)
653 654 655
{
	int i;

S
Stanislaw Gruszka 已提交
656 657
	for (i = 0; i < il->sta_key_max_num; i++)
		if (!test_and_set_bit(i, &il->ucode_key_table))
658 659 660 661
			return i;

	return WEP_INVALID_OFFSET;
}
S
Stanislaw Gruszka 已提交
662
EXPORT_SYMBOL(il_get_free_ucode_key_index);
663

S
Stanislaw Gruszka 已提交
664
void il_dealloc_bcast_stations(struct il_priv *il)
665 666 667 668
{
	unsigned long flags;
	int i;

S
Stanislaw Gruszka 已提交
669 670 671
	spin_lock_irqsave(&il->sta_lock, flags);
	for (i = 0; i < il->hw_params.max_stations; i++) {
		if (!(il->stations[i].used & IL_STA_BCAST))
672 673
			continue;

S
Stanislaw Gruszka 已提交
674 675 676 677 678
		il->stations[i].used &= ~IL_STA_UCODE_ACTIVE;
		il->num_stations--;
		BUG_ON(il->num_stations < 0);
		kfree(il->stations[i].lq);
		il->stations[i].lq = NULL;
679
	}
S
Stanislaw Gruszka 已提交
680
	spin_unlock_irqrestore(&il->sta_lock, flags);
681
}
S
Stanislaw Gruszka 已提交
682
EXPORT_SYMBOL_GPL(il_dealloc_bcast_stations);
683

684
#ifdef CONFIG_IWLEGACY_DEBUG
S
Stanislaw Gruszka 已提交
685
static void il_dump_lq_cmd(struct il_priv *il,
S
Stanislaw Gruszka 已提交
686
			   struct il_link_quality_cmd *lq)
687 688
{
	int i;
689 690
	D_RATE("lq station id 0x%x\n", lq->sta_id);
	D_RATE("lq ant 0x%X 0x%X\n",
691 692 693 694
		       lq->general_params.single_stream_ant_msk,
		       lq->general_params.dual_stream_ant_msk);

	for (i = 0; i < LINK_QUAL_MAX_RETRY_NUM; i++)
695
		D_RATE("lq index %d 0x%X\n",
696 697 698
			       i, lq->rs_table[i].rate_n_flags);
}
#else
S
Stanislaw Gruszka 已提交
699
static inline void il_dump_lq_cmd(struct il_priv *il,
S
Stanislaw Gruszka 已提交
700
				   struct il_link_quality_cmd *lq)
701 702 703 704 705
{
}
#endif

/**
S
Stanislaw Gruszka 已提交
706
 * il_is_lq_table_valid() - Test one aspect of LQ cmd for validity
707 708 709 710 711 712 713 714 715
 *
 * It sometimes happens when a HT rate has been in use and we
 * loose connectivity with AP then mac80211 will first tell us that the
 * current channel is not HT anymore before removing the station. In such a
 * scenario the RXON flags will be updated to indicate we are not
 * communicating HT anymore, but the LQ command may still contain HT rates.
 * Test for this to prevent driver from sending LQ command between the time
 * RXON flags are updated and when LQ command is updated.
 */
S
Stanislaw Gruszka 已提交
716
static bool il_is_lq_table_valid(struct il_priv *il,
S
Stanislaw Gruszka 已提交
717 718
			      struct il_rxon_context *ctx,
			      struct il_link_quality_cmd *lq)
719 720 721 722 723 724
{
	int i;

	if (ctx->ht.enabled)
		return true;

725
	D_INFO("Channel %u is not an HT channel\n",
726 727 728 729
		       ctx->active.channel);
	for (i = 0; i < LINK_QUAL_MAX_RETRY_NUM; i++) {
		if (le32_to_cpu(lq->rs_table[i].rate_n_flags) &
						RATE_MCS_HT_MSK) {
730
			D_INFO(
731 732 733 734 735 736 737 738 739
				       "index %d of LQ expects HT channel\n",
				       i);
			return false;
		}
	}
	return true;
}

/**
S
Stanislaw Gruszka 已提交
740
 * il_send_lq_cmd() - Send link quality command
741 742 743 744 745 746 747 748
 * @init: This command is sent as part of station initialization right
 *        after station has been added.
 *
 * The link quality command is sent as the last step of station creation.
 * This is the special case in which init is set and we call a callback in
 * this case to clear the state indicating that station creation is in
 * progress.
 */
S
Stanislaw Gruszka 已提交
749
int il_send_lq_cmd(struct il_priv *il, struct il_rxon_context *ctx,
S
Stanislaw Gruszka 已提交
750
		    struct il_link_quality_cmd *lq, u8 flags, bool init)
751 752 753 754
{
	int ret = 0;
	unsigned long flags_spin;

S
Stanislaw Gruszka 已提交
755
	struct il_host_cmd cmd = {
756
		.id = REPLY_TX_LINK_QUALITY_CMD,
S
Stanislaw Gruszka 已提交
757
		.len = sizeof(struct il_link_quality_cmd),
758 759 760 761
		.flags = flags,
		.data = lq,
	};

S
Stanislaw Gruszka 已提交
762
	if (WARN_ON(lq->sta_id == IL_INVALID_STATION))
763 764 765
		return -EINVAL;


S
Stanislaw Gruszka 已提交
766 767 768
	spin_lock_irqsave(&il->sta_lock, flags_spin);
	if (!(il->stations[lq->sta_id].used & IL_STA_DRIVER_ACTIVE)) {
		spin_unlock_irqrestore(&il->sta_lock, flags_spin);
769 770
		return -EINVAL;
	}
S
Stanislaw Gruszka 已提交
771
	spin_unlock_irqrestore(&il->sta_lock, flags_spin);
772

S
Stanislaw Gruszka 已提交
773
	il_dump_lq_cmd(il, lq);
774 775
	BUG_ON(init && (cmd.flags & CMD_ASYNC));

S
Stanislaw Gruszka 已提交
776 777
	if (il_is_lq_table_valid(il, ctx, lq))
		ret = il_send_cmd(il, &cmd);
778 779 780 781 782 783 784
	else
		ret = -EINVAL;

	if (cmd.flags & CMD_ASYNC)
		return ret;

	if (init) {
785
		D_INFO("init LQ command complete,"
786 787
				" clearing sta addition status for sta %d\n",
			       lq->sta_id);
S
Stanislaw Gruszka 已提交
788 789 790
		spin_lock_irqsave(&il->sta_lock, flags_spin);
		il->stations[lq->sta_id].used &= ~IL_STA_UCODE_INPROGRESS;
		spin_unlock_irqrestore(&il->sta_lock, flags_spin);
791 792 793
	}
	return ret;
}
S
Stanislaw Gruszka 已提交
794
EXPORT_SYMBOL(il_send_lq_cmd);
795

S
Stanislaw Gruszka 已提交
796
int il_mac_sta_remove(struct ieee80211_hw *hw,
797 798 799
		       struct ieee80211_vif *vif,
		       struct ieee80211_sta *sta)
{
S
Stanislaw Gruszka 已提交
800
	struct il_priv *il = hw->priv;
S
Stanislaw Gruszka 已提交
801
	struct il_station_priv_common *sta_common = (void *)sta->drv_priv;
802 803
	int ret;

804
	D_INFO("received request to remove station %pM\n",
805
			sta->addr);
S
Stanislaw Gruszka 已提交
806
	mutex_lock(&il->mutex);
807
	D_INFO("proceeding to remove station %pM\n",
808
			sta->addr);
S
Stanislaw Gruszka 已提交
809
	ret = il_remove_station(il, sta_common->sta_id, sta->addr);
810
	if (ret)
811
		IL_ERR("Error removing station %pM\n",
812
			sta->addr);
S
Stanislaw Gruszka 已提交
813
	mutex_unlock(&il->mutex);
814 815
	return ret;
}
S
Stanislaw Gruszka 已提交
816
EXPORT_SYMBOL(il_mac_sta_remove);