blob: 286ce4e180687f3040bddbe65a8f2210858cedc6 [file] [log] [blame]
Johannes Berga30e3112010-09-22 18:02:01 +02001/******************************************************************************
2 *
Wey-Yi Guyfb4961d2012-01-06 13:16:33 -08003 * Copyright(c) 2003 - 2012 Intel Corporation. All rights reserved.
Johannes Berga30e3112010-09-22 18:02:01 +02004 *
5 * Portions of this file are derived from the ipw3945 project, as well
6 * as portions of the ieee80211 subsystem header files.
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of version 2 of the GNU General Public License as
10 * published by the Free Software Foundation.
11 *
12 * This program is distributed in the hope that it will be useful, but WITHOUT
13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
15 * more details.
16 *
17 * You should have received a copy of the GNU General Public License along with
18 * this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
20 *
21 * The full GNU General Public License is included in this distribution in the
22 * file called LICENSE.
23 *
24 * Contact Information:
25 * Intel Linux Wireless <ilw@linux.intel.com>
26 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
27 *
28 *****************************************************************************/
Johannes Berge7a0d0c42012-03-06 13:31:07 -080029#include <linux/etherdevice.h>
Johannes Berga30e3112010-09-22 18:02:01 +020030#include <net/mac80211.h>
Emmanuel Grumbachbdfbf092011-07-08 08:46:16 -070031#include "iwl-trans.h"
Johannes Berg1023fdc2012-05-15 12:16:34 +020032#include "dev.h"
33#include "agn.h"
Johannes Berga30e3112010-09-22 18:02:01 +020034
Meenakshi Venkataramanf32cadf2012-03-14 15:59:15 -070035const u8 iwl_bcast_addr[ETH_ALEN] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF };
36
Wey-Yi Guy2da424b2012-01-06 13:16:28 -080037static int iwl_sta_ucode_activate(struct iwl_priv *priv, u8 sta_id)
Wey-Yi Guyc745f552011-10-10 07:27:12 -070038{
Johannes Bergfa23cb02012-03-05 11:24:25 -080039 lockdep_assert_held(&priv->sta_lock);
40
Wey-Yi Guy2da424b2012-01-06 13:16:28 -080041 if (sta_id >= IWLAGN_STATION_COUNT) {
42 IWL_ERR(priv, "invalid sta_id %u", sta_id);
43 return -EINVAL;
44 }
Wey-Yi Guyc745f552011-10-10 07:27:12 -070045 if (!(priv->stations[sta_id].used & IWL_STA_DRIVER_ACTIVE))
46 IWL_ERR(priv, "ACTIVATE a non DRIVER active station id %u "
47 "addr %pM\n",
48 sta_id, priv->stations[sta_id].sta.sta.addr);
49
50 if (priv->stations[sta_id].used & IWL_STA_UCODE_ACTIVE) {
51 IWL_DEBUG_ASSOC(priv,
52 "STA id %u addr %pM already present in uCode "
53 "(according to driver)\n",
54 sta_id, priv->stations[sta_id].sta.sta.addr);
55 } else {
56 priv->stations[sta_id].used |= IWL_STA_UCODE_ACTIVE;
57 IWL_DEBUG_ASSOC(priv, "Added STA id %u addr %pM to uCode\n",
58 sta_id, priv->stations[sta_id].sta.sta.addr);
59 }
Wey-Yi Guy2da424b2012-01-06 13:16:28 -080060 return 0;
Wey-Yi Guyc745f552011-10-10 07:27:12 -070061}
62
63static int iwl_process_add_sta_resp(struct iwl_priv *priv,
64 struct iwl_addsta_cmd *addsta,
65 struct iwl_rx_packet *pkt)
66{
Johannes Bergf8d7c1a2012-03-06 13:31:02 -080067 struct iwl_add_sta_resp *add_sta_resp = (void *)pkt->data;
Wey-Yi Guyc745f552011-10-10 07:27:12 -070068 u8 sta_id = addsta->sta.sta_id;
Wey-Yi Guyc745f552011-10-10 07:27:12 -070069 int ret = -EIO;
70
71 if (pkt->hdr.flags & IWL_CMD_FAILED_MSK) {
72 IWL_ERR(priv, "Bad return from REPLY_ADD_STA (0x%08X)\n",
73 pkt->hdr.flags);
74 return ret;
75 }
76
77 IWL_DEBUG_INFO(priv, "Processing response for adding station %u\n",
78 sta_id);
79
Johannes Bergfa23cb02012-03-05 11:24:25 -080080 spin_lock(&priv->sta_lock);
Wey-Yi Guyc745f552011-10-10 07:27:12 -070081
Johannes Bergf8d7c1a2012-03-06 13:31:02 -080082 switch (add_sta_resp->status) {
Wey-Yi Guyc745f552011-10-10 07:27:12 -070083 case ADD_STA_SUCCESS_MSK:
84 IWL_DEBUG_INFO(priv, "REPLY_ADD_STA PASSED\n");
Wey-Yi Guy2da424b2012-01-06 13:16:28 -080085 ret = iwl_sta_ucode_activate(priv, sta_id);
Wey-Yi Guyc745f552011-10-10 07:27:12 -070086 break;
87 case ADD_STA_NO_ROOM_IN_TABLE:
88 IWL_ERR(priv, "Adding station %d failed, no room in table.\n",
89 sta_id);
90 break;
91 case ADD_STA_NO_BLOCK_ACK_RESOURCE:
92 IWL_ERR(priv, "Adding station %d failed, no block ack "
93 "resource.\n", sta_id);
94 break;
95 case ADD_STA_MODIFY_NON_EXIST_STA:
96 IWL_ERR(priv, "Attempting to modify non-existing station %d\n",
97 sta_id);
98 break;
99 default:
100 IWL_DEBUG_ASSOC(priv, "Received REPLY_ADD_STA:(0x%08X)\n",
Johannes Bergf8d7c1a2012-03-06 13:31:02 -0800101 add_sta_resp->status);
Wey-Yi Guyc745f552011-10-10 07:27:12 -0700102 break;
103 }
104
105 IWL_DEBUG_INFO(priv, "%s station id %u addr %pM\n",
106 priv->stations[sta_id].sta.mode ==
107 STA_CONTROL_MODIFY_MSK ? "Modified" : "Added",
108 sta_id, priv->stations[sta_id].sta.sta.addr);
109
110 /*
111 * XXX: The MAC address in the command buffer is often changed from
112 * the original sent to the device. That is, the MAC address
113 * written to the command buffer often is not the same MAC address
114 * read from the command buffer when the command returns. This
115 * issue has not yet been resolved and this debugging is left to
116 * observe the problem.
117 */
118 IWL_DEBUG_INFO(priv, "%s station according to cmd buffer %pM\n",
119 priv->stations[sta_id].sta.mode ==
120 STA_CONTROL_MODIFY_MSK ? "Modified" : "Added",
121 addsta->sta.addr);
Johannes Bergfa23cb02012-03-05 11:24:25 -0800122 spin_unlock(&priv->sta_lock);
Wey-Yi Guyc745f552011-10-10 07:27:12 -0700123
124 return ret;
125}
126
Johannes Berg48a2d662012-03-05 11:24:39 -0800127int iwl_add_sta_callback(struct iwl_priv *priv, struct iwl_rx_cmd_buffer *rxb,
Wey-Yi Guyc745f552011-10-10 07:27:12 -0700128 struct iwl_device_cmd *cmd)
129{
130 struct iwl_rx_packet *pkt = rxb_addr(rxb);
131 struct iwl_addsta_cmd *addsta =
132 (struct iwl_addsta_cmd *) cmd->payload;
133
134 return iwl_process_add_sta_resp(priv, addsta, pkt);
135}
136
Wey-Yi Guyc745f552011-10-10 07:27:12 -0700137int iwl_send_add_sta(struct iwl_priv *priv,
138 struct iwl_addsta_cmd *sta, u8 flags)
139{
140 int ret = 0;
Wey-Yi Guyc745f552011-10-10 07:27:12 -0700141 struct iwl_host_cmd cmd = {
142 .id = REPLY_ADD_STA,
143 .flags = flags,
Johannes Berg69b172f2011-12-12 04:17:44 -0800144 .data = { sta, },
145 .len = { sizeof(*sta), },
Wey-Yi Guyc745f552011-10-10 07:27:12 -0700146 };
147 u8 sta_id __maybe_unused = sta->sta.sta_id;
148
149 IWL_DEBUG_INFO(priv, "Adding sta %u (%pM) %ssynchronously\n",
150 sta_id, sta->sta.addr, flags & CMD_ASYNC ? "a" : "");
151
152 if (!(flags & CMD_ASYNC)) {
153 cmd.flags |= CMD_WANT_SKB;
154 might_sleep();
155 }
156
Johannes Berge10a0532012-03-06 13:30:39 -0800157 ret = iwl_dvm_send_cmd(priv, &cmd);
Wey-Yi Guyc745f552011-10-10 07:27:12 -0700158
159 if (ret || (flags & CMD_ASYNC))
160 return ret;
161 /*else the command was successfully sent in SYNC mode, need to free
162 * the reply page */
163
Johannes Berg65b94a42012-03-05 11:24:38 -0800164 iwl_free_resp(&cmd);
Wey-Yi Guyc745f552011-10-10 07:27:12 -0700165
166 if (cmd.handler_status)
167 IWL_ERR(priv, "%s - error in the CMD response %d", __func__,
168 cmd.handler_status);
169
170 return cmd.handler_status;
171}
172
Meenakshi Venkataraman5edc565d62012-03-13 16:15:09 -0700173bool iwl_is_ht40_tx_allowed(struct iwl_priv *priv,
174 struct iwl_rxon_context *ctx,
175 struct ieee80211_sta_ht_cap *ht_cap)
176{
177 if (!ctx->ht.enabled || !ctx->ht.is_40mhz)
178 return false;
179
Meenakshi Venkataraman5edc565d62012-03-13 16:15:09 -0700180#ifdef CONFIG_IWLWIFI_DEBUGFS
181 if (priv->disable_ht40)
182 return false;
183#endif
184
Johannes Berg26a7ca92012-05-21 11:55:54 +0200185 /*
186 * Remainder of this function checks ht_cap, but if it's
187 * NULL then we can do HT40 (special case for RXON)
188 */
189 if (!ht_cap)
190 return true;
191
192 if (!ht_cap->ht_supported)
193 return false;
194
195 if (!(ht_cap->cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40))
196 return false;
197
Johannes Berg20041ea2012-05-21 12:56:31 +0200198 return true;
Meenakshi Venkataraman5edc565d62012-03-13 16:15:09 -0700199}
200
Johannes Bergab0bd5b2012-03-05 11:24:47 -0800201static void iwl_sta_calc_ht_flags(struct iwl_priv *priv,
202 struct ieee80211_sta *sta,
203 struct iwl_rxon_context *ctx,
204 __le32 *flags, __le32 *mask)
Wey-Yi Guyc745f552011-10-10 07:27:12 -0700205{
206 struct ieee80211_sta_ht_cap *sta_ht_inf = &sta->ht_cap;
Wey-Yi Guyc745f552011-10-10 07:27:12 -0700207 u8 mimo_ps_mode;
208
Johannes Bergab0bd5b2012-03-05 11:24:47 -0800209 *mask = STA_FLG_RTS_MIMO_PROT_MSK |
210 STA_FLG_MIMO_DIS_MSK |
211 STA_FLG_HT40_EN_MSK |
212 STA_FLG_MAX_AGG_SIZE_MSK |
213 STA_FLG_AGG_MPDU_DENSITY_MSK;
214 *flags = 0;
215
Wey-Yi Guyc745f552011-10-10 07:27:12 -0700216 if (!sta || !sta_ht_inf->ht_supported)
Johannes Bergab0bd5b2012-03-05 11:24:47 -0800217 return;
Wey-Yi Guyc745f552011-10-10 07:27:12 -0700218
219 mimo_ps_mode = (sta_ht_inf->cap & IEEE80211_HT_CAP_SM_PS) >> 2;
Johannes Bergab0bd5b2012-03-05 11:24:47 -0800220
221 IWL_DEBUG_INFO(priv, "STA %pM SM PS mode: %s\n",
Meenakshi Venkataramana35e2702012-05-16 22:40:50 +0200222 sta->addr,
Wey-Yi Guyc745f552011-10-10 07:27:12 -0700223 (mimo_ps_mode == WLAN_HT_CAP_SM_PS_STATIC) ?
224 "static" :
225 (mimo_ps_mode == WLAN_HT_CAP_SM_PS_DYNAMIC) ?
226 "dynamic" : "disabled");
227
Wey-Yi Guyc745f552011-10-10 07:27:12 -0700228 switch (mimo_ps_mode) {
229 case WLAN_HT_CAP_SM_PS_STATIC:
Johannes Bergab0bd5b2012-03-05 11:24:47 -0800230 *flags |= STA_FLG_MIMO_DIS_MSK;
Wey-Yi Guyc745f552011-10-10 07:27:12 -0700231 break;
232 case WLAN_HT_CAP_SM_PS_DYNAMIC:
Johannes Bergab0bd5b2012-03-05 11:24:47 -0800233 *flags |= STA_FLG_RTS_MIMO_PROT_MSK;
Wey-Yi Guyc745f552011-10-10 07:27:12 -0700234 break;
235 case WLAN_HT_CAP_SM_PS_DISABLED:
236 break;
237 default:
238 IWL_WARN(priv, "Invalid MIMO PS mode %d\n", mimo_ps_mode);
239 break;
240 }
241
Johannes Bergab0bd5b2012-03-05 11:24:47 -0800242 *flags |= cpu_to_le32(
243 (u32)sta_ht_inf->ampdu_factor << STA_FLG_MAX_AGG_SIZE_POS);
Wey-Yi Guyc745f552011-10-10 07:27:12 -0700244
Johannes Bergab0bd5b2012-03-05 11:24:47 -0800245 *flags |= cpu_to_le32(
246 (u32)sta_ht_inf->ampdu_density << STA_FLG_AGG_MPDU_DENSITY_POS);
Wey-Yi Guyc745f552011-10-10 07:27:12 -0700247
248 if (iwl_is_ht40_tx_allowed(priv, ctx, &sta->ht_cap))
Johannes Bergab0bd5b2012-03-05 11:24:47 -0800249 *flags |= STA_FLG_HT40_EN_MSK;
250}
Wey-Yi Guyc745f552011-10-10 07:27:12 -0700251
Johannes Bergab0bd5b2012-03-05 11:24:47 -0800252int iwl_sta_update_ht(struct iwl_priv *priv, struct iwl_rxon_context *ctx,
253 struct ieee80211_sta *sta)
254{
255 u8 sta_id = iwl_sta_id(sta);
256 __le32 flags, mask;
257 struct iwl_addsta_cmd cmd;
258
259 if (WARN_ON_ONCE(sta_id == IWL_INVALID_STATION))
260 return -EINVAL;
261
262 iwl_sta_calc_ht_flags(priv, sta, ctx, &flags, &mask);
263
264 spin_lock_bh(&priv->sta_lock);
265 priv->stations[sta_id].sta.station_flags &= ~mask;
266 priv->stations[sta_id].sta.station_flags |= flags;
267 spin_unlock_bh(&priv->sta_lock);
268
269 memset(&cmd, 0, sizeof(cmd));
270 cmd.mode = STA_CONTROL_MODIFY_MSK;
271 cmd.station_flags_msk = mask;
272 cmd.station_flags = flags;
273 cmd.sta.sta_id = sta_id;
274
275 return iwl_send_add_sta(priv, &cmd, CMD_SYNC);
276}
277
278static void iwl_set_ht_add_station(struct iwl_priv *priv, u8 index,
279 struct ieee80211_sta *sta,
280 struct iwl_rxon_context *ctx)
281{
282 __le32 flags, mask;
283
284 iwl_sta_calc_ht_flags(priv, sta, ctx, &flags, &mask);
285
286 lockdep_assert_held(&priv->sta_lock);
287 priv->stations[index].sta.station_flags &= ~mask;
288 priv->stations[index].sta.station_flags |= flags;
Wey-Yi Guyc745f552011-10-10 07:27:12 -0700289}
290
291/**
292 * iwl_prep_station - Prepare station information for addition
293 *
294 * should be called with sta_lock held
295 */
296u8 iwl_prep_station(struct iwl_priv *priv, struct iwl_rxon_context *ctx,
297 const u8 *addr, bool is_ap, struct ieee80211_sta *sta)
298{
299 struct iwl_station_entry *station;
300 int i;
301 u8 sta_id = IWL_INVALID_STATION;
302
303 if (is_ap)
304 sta_id = ctx->ap_sta_id;
305 else if (is_broadcast_ether_addr(addr))
306 sta_id = ctx->bcast_sta_id;
307 else
308 for (i = IWL_STA_ID; i < IWLAGN_STATION_COUNT; i++) {
Joe Perches2e42e472012-05-09 17:17:46 +0000309 if (ether_addr_equal(priv->stations[i].sta.sta.addr,
310 addr)) {
Wey-Yi Guyc745f552011-10-10 07:27:12 -0700311 sta_id = i;
312 break;
313 }
314
315 if (!priv->stations[i].used &&
316 sta_id == IWL_INVALID_STATION)
317 sta_id = i;
318 }
319
320 /*
321 * These two conditions have the same outcome, but keep them
322 * separate
323 */
324 if (unlikely(sta_id == IWL_INVALID_STATION))
325 return sta_id;
326
327 /*
328 * uCode is not able to deal with multiple requests to add a
329 * station. Keep track if one is in progress so that we do not send
330 * another.
331 */
332 if (priv->stations[sta_id].used & IWL_STA_UCODE_INPROGRESS) {
333 IWL_DEBUG_INFO(priv, "STA %d already in process of being "
334 "added.\n", sta_id);
335 return sta_id;
336 }
337
338 if ((priv->stations[sta_id].used & IWL_STA_DRIVER_ACTIVE) &&
339 (priv->stations[sta_id].used & IWL_STA_UCODE_ACTIVE) &&
Joe Perches2e42e472012-05-09 17:17:46 +0000340 ether_addr_equal(priv->stations[sta_id].sta.sta.addr, addr)) {
Wey-Yi Guyc745f552011-10-10 07:27:12 -0700341 IWL_DEBUG_ASSOC(priv, "STA %d (%pM) already added, not "
342 "adding again.\n", sta_id, addr);
343 return sta_id;
344 }
345
346 station = &priv->stations[sta_id];
347 station->used = IWL_STA_DRIVER_ACTIVE;
348 IWL_DEBUG_ASSOC(priv, "Add STA to driver ID %d: %pM\n",
349 sta_id, addr);
350 priv->num_stations++;
351
352 /* Set up the REPLY_ADD_STA command to send to device */
353 memset(&station->sta, 0, sizeof(struct iwl_addsta_cmd));
354 memcpy(station->sta.sta.addr, addr, ETH_ALEN);
355 station->sta.mode = 0;
356 station->sta.sta.sta_id = sta_id;
357 station->sta.station_flags = ctx->station_flags;
358 station->ctxid = ctx->ctxid;
359
360 if (sta) {
361 struct iwl_station_priv *sta_priv;
362
363 sta_priv = (void *)sta->drv_priv;
364 sta_priv->ctx = ctx;
365 }
366
367 /*
368 * OK to call unconditionally, since local stations (IBSS BSSID
369 * STA and broadcast STA) pass in a NULL sta, and mac80211
370 * doesn't allow HT IBSS.
371 */
372 iwl_set_ht_add_station(priv, sta_id, sta, ctx);
373
374 return sta_id;
375
376}
377
378#define STA_WAIT_TIMEOUT (HZ/2)
379
380/**
381 * iwl_add_station_common -
382 */
383int iwl_add_station_common(struct iwl_priv *priv, struct iwl_rxon_context *ctx,
384 const u8 *addr, bool is_ap,
385 struct ieee80211_sta *sta, u8 *sta_id_r)
386{
Wey-Yi Guyc745f552011-10-10 07:27:12 -0700387 int ret = 0;
388 u8 sta_id;
389 struct iwl_addsta_cmd sta_cmd;
390
391 *sta_id_r = 0;
Johannes Bergfa23cb02012-03-05 11:24:25 -0800392 spin_lock_bh(&priv->sta_lock);
Wey-Yi Guyc745f552011-10-10 07:27:12 -0700393 sta_id = iwl_prep_station(priv, ctx, addr, is_ap, sta);
394 if (sta_id == IWL_INVALID_STATION) {
395 IWL_ERR(priv, "Unable to prepare station %pM for addition\n",
396 addr);
Johannes Bergfa23cb02012-03-05 11:24:25 -0800397 spin_unlock_bh(&priv->sta_lock);
Wey-Yi Guyc745f552011-10-10 07:27:12 -0700398 return -EINVAL;
399 }
400
401 /*
402 * uCode is not able to deal with multiple requests to add a
403 * station. Keep track if one is in progress so that we do not send
404 * another.
405 */
406 if (priv->stations[sta_id].used & IWL_STA_UCODE_INPROGRESS) {
407 IWL_DEBUG_INFO(priv, "STA %d already in process of being "
408 "added.\n", sta_id);
Johannes Bergfa23cb02012-03-05 11:24:25 -0800409 spin_unlock_bh(&priv->sta_lock);
Wey-Yi Guyc745f552011-10-10 07:27:12 -0700410 return -EEXIST;
411 }
412
413 if ((priv->stations[sta_id].used & IWL_STA_DRIVER_ACTIVE) &&
414 (priv->stations[sta_id].used & IWL_STA_UCODE_ACTIVE)) {
415 IWL_DEBUG_ASSOC(priv, "STA %d (%pM) already added, not "
416 "adding again.\n", sta_id, addr);
Johannes Bergfa23cb02012-03-05 11:24:25 -0800417 spin_unlock_bh(&priv->sta_lock);
Wey-Yi Guyc745f552011-10-10 07:27:12 -0700418 return -EEXIST;
419 }
420
421 priv->stations[sta_id].used |= IWL_STA_UCODE_INPROGRESS;
422 memcpy(&sta_cmd, &priv->stations[sta_id].sta,
423 sizeof(struct iwl_addsta_cmd));
Johannes Bergfa23cb02012-03-05 11:24:25 -0800424 spin_unlock_bh(&priv->sta_lock);
Wey-Yi Guyc745f552011-10-10 07:27:12 -0700425
426 /* Add station to device's station table */
427 ret = iwl_send_add_sta(priv, &sta_cmd, CMD_SYNC);
428 if (ret) {
Johannes Bergfa23cb02012-03-05 11:24:25 -0800429 spin_lock_bh(&priv->sta_lock);
Wey-Yi Guyc745f552011-10-10 07:27:12 -0700430 IWL_ERR(priv, "Adding station %pM failed.\n",
431 priv->stations[sta_id].sta.sta.addr);
432 priv->stations[sta_id].used &= ~IWL_STA_DRIVER_ACTIVE;
433 priv->stations[sta_id].used &= ~IWL_STA_UCODE_INPROGRESS;
Johannes Bergfa23cb02012-03-05 11:24:25 -0800434 spin_unlock_bh(&priv->sta_lock);
Wey-Yi Guyc745f552011-10-10 07:27:12 -0700435 }
436 *sta_id_r = sta_id;
437 return ret;
438}
439
440/**
441 * iwl_sta_ucode_deactivate - deactivate ucode status for a station
Wey-Yi Guyc745f552011-10-10 07:27:12 -0700442 */
443static void iwl_sta_ucode_deactivate(struct iwl_priv *priv, u8 sta_id)
444{
Johannes Bergfa23cb02012-03-05 11:24:25 -0800445 lockdep_assert_held(&priv->sta_lock);
446
Wey-Yi Guyc745f552011-10-10 07:27:12 -0700447 /* Ucode must be active and driver must be non active */
448 if ((priv->stations[sta_id].used &
449 (IWL_STA_UCODE_ACTIVE | IWL_STA_DRIVER_ACTIVE)) !=
450 IWL_STA_UCODE_ACTIVE)
451 IWL_ERR(priv, "removed non active STA %u\n", sta_id);
452
453 priv->stations[sta_id].used &= ~IWL_STA_UCODE_ACTIVE;
454
455 memset(&priv->stations[sta_id], 0, sizeof(struct iwl_station_entry));
456 IWL_DEBUG_ASSOC(priv, "Removed STA %u\n", sta_id);
457}
458
459static int iwl_send_remove_station(struct iwl_priv *priv,
460 const u8 *addr, int sta_id,
461 bool temporary)
462{
463 struct iwl_rx_packet *pkt;
464 int ret;
Wey-Yi Guyc745f552011-10-10 07:27:12 -0700465 struct iwl_rem_sta_cmd rm_sta_cmd;
466
467 struct iwl_host_cmd cmd = {
468 .id = REPLY_REMOVE_STA,
469 .len = { sizeof(struct iwl_rem_sta_cmd), },
470 .flags = CMD_SYNC,
471 .data = { &rm_sta_cmd, },
472 };
473
474 memset(&rm_sta_cmd, 0, sizeof(rm_sta_cmd));
475 rm_sta_cmd.num_sta = 1;
476 memcpy(&rm_sta_cmd.addr, addr, ETH_ALEN);
477
478 cmd.flags |= CMD_WANT_SKB;
479
Johannes Berge10a0532012-03-06 13:30:39 -0800480 ret = iwl_dvm_send_cmd(priv, &cmd);
Wey-Yi Guyc745f552011-10-10 07:27:12 -0700481
482 if (ret)
483 return ret;
484
Johannes Berg65b94a42012-03-05 11:24:38 -0800485 pkt = cmd.resp_pkt;
Wey-Yi Guyc745f552011-10-10 07:27:12 -0700486 if (pkt->hdr.flags & IWL_CMD_FAILED_MSK) {
487 IWL_ERR(priv, "Bad return from REPLY_REMOVE_STA (0x%08X)\n",
488 pkt->hdr.flags);
489 ret = -EIO;
490 }
491
492 if (!ret) {
Johannes Bergf8d7c1a2012-03-06 13:31:02 -0800493 struct iwl_rem_sta_resp *rem_sta_resp = (void *)pkt->data;
494 switch (rem_sta_resp->status) {
Wey-Yi Guyc745f552011-10-10 07:27:12 -0700495 case REM_STA_SUCCESS_MSK:
496 if (!temporary) {
Johannes Bergfa23cb02012-03-05 11:24:25 -0800497 spin_lock_bh(&priv->sta_lock);
Wey-Yi Guyc745f552011-10-10 07:27:12 -0700498 iwl_sta_ucode_deactivate(priv, sta_id);
Johannes Bergfa23cb02012-03-05 11:24:25 -0800499 spin_unlock_bh(&priv->sta_lock);
Wey-Yi Guyc745f552011-10-10 07:27:12 -0700500 }
501 IWL_DEBUG_ASSOC(priv, "REPLY_REMOVE_STA PASSED\n");
502 break;
503 default:
504 ret = -EIO;
505 IWL_ERR(priv, "REPLY_REMOVE_STA failed\n");
506 break;
507 }
508 }
Johannes Berg65b94a42012-03-05 11:24:38 -0800509 iwl_free_resp(&cmd);
Wey-Yi Guyc745f552011-10-10 07:27:12 -0700510
511 return ret;
512}
513
514/**
515 * iwl_remove_station - Remove driver's knowledge of station.
516 */
517int iwl_remove_station(struct iwl_priv *priv, const u8 sta_id,
518 const u8 *addr)
519{
Emmanuel Grumbach855c2ee2011-11-23 11:37:27 +0200520 u8 tid;
Wey-Yi Guyc745f552011-10-10 07:27:12 -0700521
Don Fry83626402012-03-07 09:52:37 -0800522 if (!iwl_is_ready(priv)) {
Wey-Yi Guyc745f552011-10-10 07:27:12 -0700523 IWL_DEBUG_INFO(priv,
524 "Unable to remove station %pM, device not ready.\n",
525 addr);
526 /*
527 * It is typical for stations to be removed when we are
528 * going down. Return success since device will be down
529 * soon anyway
530 */
531 return 0;
532 }
533
534 IWL_DEBUG_ASSOC(priv, "Removing STA from driver:%d %pM\n",
535 sta_id, addr);
536
537 if (WARN_ON(sta_id == IWL_INVALID_STATION))
538 return -EINVAL;
539
Johannes Bergfa23cb02012-03-05 11:24:25 -0800540 spin_lock_bh(&priv->sta_lock);
Wey-Yi Guyc745f552011-10-10 07:27:12 -0700541
542 if (!(priv->stations[sta_id].used & IWL_STA_DRIVER_ACTIVE)) {
543 IWL_DEBUG_INFO(priv, "Removing %pM but non DRIVER active\n",
544 addr);
545 goto out_err;
546 }
547
548 if (!(priv->stations[sta_id].used & IWL_STA_UCODE_ACTIVE)) {
549 IWL_DEBUG_INFO(priv, "Removing %pM but non UCODE active\n",
550 addr);
551 goto out_err;
552 }
553
554 if (priv->stations[sta_id].used & IWL_STA_LOCAL) {
555 kfree(priv->stations[sta_id].lq);
556 priv->stations[sta_id].lq = NULL;
557 }
558
Emmanuel Grumbach855c2ee2011-11-23 11:37:27 +0200559 for (tid = 0; tid < IWL_MAX_TID_COUNT; tid++)
560 memset(&priv->tid_data[sta_id][tid], 0,
561 sizeof(priv->tid_data[sta_id][tid]));
562
Wey-Yi Guyc745f552011-10-10 07:27:12 -0700563 priv->stations[sta_id].used &= ~IWL_STA_DRIVER_ACTIVE;
564
565 priv->num_stations--;
566
567 if (WARN_ON(priv->num_stations < 0))
568 priv->num_stations = 0;
569
Johannes Bergfa23cb02012-03-05 11:24:25 -0800570 spin_unlock_bh(&priv->sta_lock);
Wey-Yi Guyc745f552011-10-10 07:27:12 -0700571
572 return iwl_send_remove_station(priv, addr, sta_id, false);
573out_err:
Johannes Bergfa23cb02012-03-05 11:24:25 -0800574 spin_unlock_bh(&priv->sta_lock);
Wey-Yi Guyc745f552011-10-10 07:27:12 -0700575 return -EINVAL;
576}
577
Johannes Berg97420512012-03-07 09:52:42 -0800578void iwl_deactivate_station(struct iwl_priv *priv, const u8 sta_id,
579 const u8 *addr)
580{
581 u8 tid;
582
583 if (!iwl_is_ready(priv)) {
584 IWL_DEBUG_INFO(priv,
585 "Unable to remove station %pM, device not ready.\n",
586 addr);
587 return;
588 }
589
590 IWL_DEBUG_ASSOC(priv, "Deactivating STA: %pM (%d)\n", addr, sta_id);
591
592 if (WARN_ON_ONCE(sta_id == IWL_INVALID_STATION))
593 return;
594
595 spin_lock_bh(&priv->sta_lock);
596
597 WARN_ON_ONCE(!(priv->stations[sta_id].used & IWL_STA_DRIVER_ACTIVE));
598
599 for (tid = 0; tid < IWL_MAX_TID_COUNT; tid++)
600 memset(&priv->tid_data[sta_id][tid], 0,
601 sizeof(priv->tid_data[sta_id][tid]));
602
603 priv->stations[sta_id].used &= ~IWL_STA_DRIVER_ACTIVE;
604
605 priv->num_stations--;
606
607 if (WARN_ON_ONCE(priv->num_stations < 0))
608 priv->num_stations = 0;
609
610 spin_unlock_bh(&priv->sta_lock);
611}
612
Johannes Berg4dcba6d2012-03-08 10:19:55 +0100613static void iwl_sta_fill_lq(struct iwl_priv *priv, struct iwl_rxon_context *ctx,
614 u8 sta_id, struct iwl_link_quality_cmd *link_cmd)
615{
616 int i, r;
617 u32 rate_flags = 0;
618 __le32 rate_n_flags;
619
620 lockdep_assert_held(&priv->mutex);
621
622 memset(link_cmd, 0, sizeof(*link_cmd));
623
624 /* Set up the rate scaling to start at selected rate, fall back
625 * all the way down to 1M in IEEE order, and then spin on 1M */
626 if (priv->band == IEEE80211_BAND_5GHZ)
627 r = IWL_RATE_6M_INDEX;
628 else if (ctx && ctx->vif && ctx->vif->p2p)
629 r = IWL_RATE_6M_INDEX;
630 else
631 r = IWL_RATE_1M_INDEX;
632
633 if (r >= IWL_FIRST_CCK_RATE && r <= IWL_LAST_CCK_RATE)
634 rate_flags |= RATE_MCS_CCK_MSK;
635
Johannes Berg26a7ca92012-05-21 11:55:54 +0200636 rate_flags |= first_antenna(priv->eeprom_data->valid_tx_ant) <<
Johannes Berg4dcba6d2012-03-08 10:19:55 +0100637 RATE_MCS_ANT_POS;
638 rate_n_flags = iwl_hw_set_rate_n_flags(iwl_rates[r].plcp, rate_flags);
639 for (i = 0; i < LINK_QUAL_MAX_RETRY_NUM; i++)
640 link_cmd->rs_table[i].rate_n_flags = rate_n_flags;
641
642 link_cmd->general_params.single_stream_ant_msk =
Johannes Berg26a7ca92012-05-21 11:55:54 +0200643 first_antenna(priv->eeprom_data->valid_tx_ant);
Johannes Berg4dcba6d2012-03-08 10:19:55 +0100644
645 link_cmd->general_params.dual_stream_ant_msk =
Johannes Berg26a7ca92012-05-21 11:55:54 +0200646 priv->eeprom_data->valid_tx_ant &
647 ~first_antenna(priv->eeprom_data->valid_tx_ant);
Johannes Berg4dcba6d2012-03-08 10:19:55 +0100648 if (!link_cmd->general_params.dual_stream_ant_msk) {
649 link_cmd->general_params.dual_stream_ant_msk = ANT_AB;
Johannes Berg26a7ca92012-05-21 11:55:54 +0200650 } else if (num_of_ant(priv->eeprom_data->valid_tx_ant) == 2) {
Johannes Berg4dcba6d2012-03-08 10:19:55 +0100651 link_cmd->general_params.dual_stream_ant_msk =
Johannes Berg26a7ca92012-05-21 11:55:54 +0200652 priv->eeprom_data->valid_tx_ant;
Johannes Berg4dcba6d2012-03-08 10:19:55 +0100653 }
654
655 link_cmd->agg_params.agg_dis_start_th =
656 LINK_QUAL_AGG_DISABLE_START_DEF;
657 link_cmd->agg_params.agg_time_limit =
658 cpu_to_le16(LINK_QUAL_AGG_TIME_LIMIT_DEF);
659
660 link_cmd->sta_id = sta_id;
661}
662
Wey-Yi Guyc745f552011-10-10 07:27:12 -0700663/**
664 * iwl_clear_ucode_stations - clear ucode station table bits
665 *
666 * This function clears all the bits in the driver indicating
667 * which stations are active in the ucode. Call when something
668 * other than explicit station management would cause this in
669 * the ucode, e.g. unassociated RXON.
670 */
671void iwl_clear_ucode_stations(struct iwl_priv *priv,
672 struct iwl_rxon_context *ctx)
673{
674 int i;
Wey-Yi Guyc745f552011-10-10 07:27:12 -0700675 bool cleared = false;
676
677 IWL_DEBUG_INFO(priv, "Clearing ucode stations in driver\n");
678
Johannes Bergfa23cb02012-03-05 11:24:25 -0800679 spin_lock_bh(&priv->sta_lock);
Wey-Yi Guyc745f552011-10-10 07:27:12 -0700680 for (i = 0; i < IWLAGN_STATION_COUNT; i++) {
681 if (ctx && ctx->ctxid != priv->stations[i].ctxid)
682 continue;
683
684 if (priv->stations[i].used & IWL_STA_UCODE_ACTIVE) {
685 IWL_DEBUG_INFO(priv,
686 "Clearing ucode active for station %d\n", i);
687 priv->stations[i].used &= ~IWL_STA_UCODE_ACTIVE;
688 cleared = true;
689 }
690 }
Johannes Bergfa23cb02012-03-05 11:24:25 -0800691 spin_unlock_bh(&priv->sta_lock);
Wey-Yi Guyc745f552011-10-10 07:27:12 -0700692
693 if (!cleared)
694 IWL_DEBUG_INFO(priv,
695 "No active stations found to be cleared\n");
696}
697
698/**
699 * iwl_restore_stations() - Restore driver known stations to device
700 *
701 * All stations considered active by driver, but not present in ucode, is
702 * restored.
703 *
704 * Function sleeps.
705 */
706void iwl_restore_stations(struct iwl_priv *priv, struct iwl_rxon_context *ctx)
707{
708 struct iwl_addsta_cmd sta_cmd;
709 struct iwl_link_quality_cmd lq;
Wey-Yi Guyc745f552011-10-10 07:27:12 -0700710 int i;
711 bool found = false;
712 int ret;
713 bool send_lq;
714
Don Fry83626402012-03-07 09:52:37 -0800715 if (!iwl_is_ready(priv)) {
Wey-Yi Guyc745f552011-10-10 07:27:12 -0700716 IWL_DEBUG_INFO(priv,
717 "Not ready yet, not restoring any stations.\n");
718 return;
719 }
720
721 IWL_DEBUG_ASSOC(priv, "Restoring all known stations ... start.\n");
Johannes Bergfa23cb02012-03-05 11:24:25 -0800722 spin_lock_bh(&priv->sta_lock);
Wey-Yi Guyc745f552011-10-10 07:27:12 -0700723 for (i = 0; i < IWLAGN_STATION_COUNT; i++) {
724 if (ctx->ctxid != priv->stations[i].ctxid)
725 continue;
726 if ((priv->stations[i].used & IWL_STA_DRIVER_ACTIVE) &&
727 !(priv->stations[i].used & IWL_STA_UCODE_ACTIVE)) {
728 IWL_DEBUG_ASSOC(priv, "Restoring sta %pM\n",
729 priv->stations[i].sta.sta.addr);
730 priv->stations[i].sta.mode = 0;
731 priv->stations[i].used |= IWL_STA_UCODE_INPROGRESS;
732 found = true;
733 }
734 }
735
736 for (i = 0; i < IWLAGN_STATION_COUNT; i++) {
737 if ((priv->stations[i].used & IWL_STA_UCODE_INPROGRESS)) {
738 memcpy(&sta_cmd, &priv->stations[i].sta,
739 sizeof(struct iwl_addsta_cmd));
740 send_lq = false;
741 if (priv->stations[i].lq) {
Johannes Berg15b86bf2012-03-05 11:24:36 -0800742 if (priv->wowlan)
Wey-Yi Guyc745f552011-10-10 07:27:12 -0700743 iwl_sta_fill_lq(priv, ctx, i, &lq);
744 else
745 memcpy(&lq, priv->stations[i].lq,
746 sizeof(struct iwl_link_quality_cmd));
747 send_lq = true;
748 }
Johannes Bergfa23cb02012-03-05 11:24:25 -0800749 spin_unlock_bh(&priv->sta_lock);
Wey-Yi Guyc745f552011-10-10 07:27:12 -0700750 ret = iwl_send_add_sta(priv, &sta_cmd, CMD_SYNC);
751 if (ret) {
Johannes Bergfa23cb02012-03-05 11:24:25 -0800752 spin_lock_bh(&priv->sta_lock);
Wey-Yi Guyc745f552011-10-10 07:27:12 -0700753 IWL_ERR(priv, "Adding station %pM failed.\n",
754 priv->stations[i].sta.sta.addr);
755 priv->stations[i].used &=
756 ~IWL_STA_DRIVER_ACTIVE;
757 priv->stations[i].used &=
758 ~IWL_STA_UCODE_INPROGRESS;
Meenakshi Venkataramanf4c37172012-05-16 22:49:48 +0200759 continue;
Wey-Yi Guyc745f552011-10-10 07:27:12 -0700760 }
761 /*
762 * Rate scaling has already been initialized, send
763 * current LQ command
764 */
765 if (send_lq)
766 iwl_send_lq_cmd(priv, ctx, &lq,
767 CMD_SYNC, true);
Johannes Bergfa23cb02012-03-05 11:24:25 -0800768 spin_lock_bh(&priv->sta_lock);
Wey-Yi Guyc745f552011-10-10 07:27:12 -0700769 priv->stations[i].used &= ~IWL_STA_UCODE_INPROGRESS;
770 }
771 }
772
Johannes Bergfa23cb02012-03-05 11:24:25 -0800773 spin_unlock_bh(&priv->sta_lock);
Wey-Yi Guyc745f552011-10-10 07:27:12 -0700774 if (!found)
775 IWL_DEBUG_INFO(priv, "Restoring all known stations .... "
776 "no stations to be restored.\n");
777 else
778 IWL_DEBUG_INFO(priv, "Restoring all known stations .... "
779 "complete.\n");
780}
781
Wey-Yi Guyc745f552011-10-10 07:27:12 -0700782int iwl_get_free_ucode_key_offset(struct iwl_priv *priv)
783{
784 int i;
785
786 for (i = 0; i < priv->sta_key_max_num; i++)
787 if (!test_and_set_bit(i, &priv->ucode_key_table))
788 return i;
789
790 return WEP_INVALID_OFFSET;
791}
792
793void iwl_dealloc_bcast_stations(struct iwl_priv *priv)
794{
Wey-Yi Guyc745f552011-10-10 07:27:12 -0700795 int i;
796
Johannes Bergfa23cb02012-03-05 11:24:25 -0800797 spin_lock_bh(&priv->sta_lock);
Wey-Yi Guyc745f552011-10-10 07:27:12 -0700798 for (i = 0; i < IWLAGN_STATION_COUNT; i++) {
799 if (!(priv->stations[i].used & IWL_STA_BCAST))
800 continue;
801
802 priv->stations[i].used &= ~IWL_STA_UCODE_ACTIVE;
803 priv->num_stations--;
804 if (WARN_ON(priv->num_stations < 0))
805 priv->num_stations = 0;
806 kfree(priv->stations[i].lq);
807 priv->stations[i].lq = NULL;
808 }
Johannes Bergfa23cb02012-03-05 11:24:25 -0800809 spin_unlock_bh(&priv->sta_lock);
Wey-Yi Guyc745f552011-10-10 07:27:12 -0700810}
811
812#ifdef CONFIG_IWLWIFI_DEBUG
813static void iwl_dump_lq_cmd(struct iwl_priv *priv,
814 struct iwl_link_quality_cmd *lq)
815{
816 int i;
817 IWL_DEBUG_RATE(priv, "lq station id 0x%x\n", lq->sta_id);
818 IWL_DEBUG_RATE(priv, "lq ant 0x%X 0x%X\n",
819 lq->general_params.single_stream_ant_msk,
820 lq->general_params.dual_stream_ant_msk);
821
822 for (i = 0; i < LINK_QUAL_MAX_RETRY_NUM; i++)
823 IWL_DEBUG_RATE(priv, "lq index %d 0x%X\n",
824 i, lq->rs_table[i].rate_n_flags);
825}
826#else
827static inline void iwl_dump_lq_cmd(struct iwl_priv *priv,
828 struct iwl_link_quality_cmd *lq)
829{
830}
831#endif
832
833/**
834 * is_lq_table_valid() - Test one aspect of LQ cmd for validity
835 *
836 * It sometimes happens when a HT rate has been in use and we
837 * loose connectivity with AP then mac80211 will first tell us that the
838 * current channel is not HT anymore before removing the station. In such a
839 * scenario the RXON flags will be updated to indicate we are not
840 * communicating HT anymore, but the LQ command may still contain HT rates.
841 * Test for this to prevent driver from sending LQ command between the time
842 * RXON flags are updated and when LQ command is updated.
843 */
844static bool is_lq_table_valid(struct iwl_priv *priv,
845 struct iwl_rxon_context *ctx,
846 struct iwl_link_quality_cmd *lq)
847{
848 int i;
849
850 if (ctx->ht.enabled)
851 return true;
852
853 IWL_DEBUG_INFO(priv, "Channel %u is not an HT channel\n",
854 ctx->active.channel);
855 for (i = 0; i < LINK_QUAL_MAX_RETRY_NUM; i++) {
856 if (le32_to_cpu(lq->rs_table[i].rate_n_flags) &
857 RATE_MCS_HT_MSK) {
858 IWL_DEBUG_INFO(priv,
859 "index %d of LQ expects HT channel\n",
860 i);
861 return false;
862 }
863 }
864 return true;
865}
866
867/**
868 * iwl_send_lq_cmd() - Send link quality command
869 * @init: This command is sent as part of station initialization right
870 * after station has been added.
871 *
872 * The link quality command is sent as the last step of station creation.
873 * This is the special case in which init is set and we call a callback in
874 * this case to clear the state indicating that station creation is in
875 * progress.
876 */
877int iwl_send_lq_cmd(struct iwl_priv *priv, struct iwl_rxon_context *ctx,
878 struct iwl_link_quality_cmd *lq, u8 flags, bool init)
879{
880 int ret = 0;
Wey-Yi Guyc745f552011-10-10 07:27:12 -0700881 struct iwl_host_cmd cmd = {
882 .id = REPLY_TX_LINK_QUALITY_CMD,
883 .len = { sizeof(struct iwl_link_quality_cmd), },
884 .flags = flags,
885 .data = { lq, },
886 };
887
888 if (WARN_ON(lq->sta_id == IWL_INVALID_STATION))
889 return -EINVAL;
890
891
Johannes Bergfa23cb02012-03-05 11:24:25 -0800892 spin_lock_bh(&priv->sta_lock);
Wey-Yi Guyc745f552011-10-10 07:27:12 -0700893 if (!(priv->stations[lq->sta_id].used & IWL_STA_DRIVER_ACTIVE)) {
Johannes Bergfa23cb02012-03-05 11:24:25 -0800894 spin_unlock_bh(&priv->sta_lock);
Wey-Yi Guyc745f552011-10-10 07:27:12 -0700895 return -EINVAL;
896 }
Johannes Bergfa23cb02012-03-05 11:24:25 -0800897 spin_unlock_bh(&priv->sta_lock);
Wey-Yi Guyc745f552011-10-10 07:27:12 -0700898
899 iwl_dump_lq_cmd(priv, lq);
900 if (WARN_ON(init && (cmd.flags & CMD_ASYNC)))
901 return -EINVAL;
902
903 if (is_lq_table_valid(priv, ctx, lq))
Johannes Berge10a0532012-03-06 13:30:39 -0800904 ret = iwl_dvm_send_cmd(priv, &cmd);
Wey-Yi Guyc745f552011-10-10 07:27:12 -0700905 else
906 ret = -EINVAL;
907
908 if (cmd.flags & CMD_ASYNC)
909 return ret;
910
911 if (init) {
912 IWL_DEBUG_INFO(priv, "init LQ command complete, "
913 "clearing sta addition status for sta %d\n",
914 lq->sta_id);
Johannes Bergfa23cb02012-03-05 11:24:25 -0800915 spin_lock_bh(&priv->sta_lock);
Wey-Yi Guyc745f552011-10-10 07:27:12 -0700916 priv->stations[lq->sta_id].used &= ~IWL_STA_UCODE_INPROGRESS;
Johannes Bergfa23cb02012-03-05 11:24:25 -0800917 spin_unlock_bh(&priv->sta_lock);
Wey-Yi Guyc745f552011-10-10 07:27:12 -0700918 }
919 return ret;
920}
921
Wey-Yi Guyc745f552011-10-10 07:27:12 -0700922
Johannes Bergc079166e2011-10-10 07:26:54 -0700923static struct iwl_link_quality_cmd *
Wey-Yi Guyc745f552011-10-10 07:27:12 -0700924iwl_sta_alloc_lq(struct iwl_priv *priv, struct iwl_rxon_context *ctx,
925 u8 sta_id)
Johannes Bergc079166e2011-10-10 07:26:54 -0700926{
927 struct iwl_link_quality_cmd *link_cmd;
928
929 link_cmd = kzalloc(sizeof(struct iwl_link_quality_cmd), GFP_KERNEL);
930 if (!link_cmd) {
931 IWL_ERR(priv, "Unable to allocate memory for LQ cmd.\n");
932 return NULL;
933 }
934
935 iwl_sta_fill_lq(priv, ctx, sta_id, link_cmd);
Johannes Berga30e3112010-09-22 18:02:01 +0200936
937 return link_cmd;
938}
939
940/*
941 * iwlagn_add_bssid_station - Add the special IBSS BSSID station
942 *
943 * Function sleeps.
944 */
Wey-Yi Guyc745f552011-10-10 07:27:12 -0700945int iwlagn_add_bssid_station(struct iwl_priv *priv,
946 struct iwl_rxon_context *ctx,
Johannes Berga30e3112010-09-22 18:02:01 +0200947 const u8 *addr, u8 *sta_id_r)
948{
949 int ret;
950 u8 sta_id;
951 struct iwl_link_quality_cmd *link_cmd;
Johannes Berga30e3112010-09-22 18:02:01 +0200952
953 if (sta_id_r)
954 *sta_id_r = IWL_INVALID_STATION;
955
956 ret = iwl_add_station_common(priv, ctx, addr, 0, NULL, &sta_id);
957 if (ret) {
958 IWL_ERR(priv, "Unable to add station %pM\n", addr);
959 return ret;
960 }
961
962 if (sta_id_r)
963 *sta_id_r = sta_id;
964
Johannes Bergfa23cb02012-03-05 11:24:25 -0800965 spin_lock_bh(&priv->sta_lock);
Johannes Berga30e3112010-09-22 18:02:01 +0200966 priv->stations[sta_id].used |= IWL_STA_LOCAL;
Johannes Bergfa23cb02012-03-05 11:24:25 -0800967 spin_unlock_bh(&priv->sta_lock);
Johannes Berga30e3112010-09-22 18:02:01 +0200968
969 /* Set up default rate scaling table in device's station table */
Johannes Bergf775aa06d2011-06-22 06:34:09 -0700970 link_cmd = iwl_sta_alloc_lq(priv, ctx, sta_id);
Johannes Berga30e3112010-09-22 18:02:01 +0200971 if (!link_cmd) {
Wey-Yi Guyc745f552011-10-10 07:27:12 -0700972 IWL_ERR(priv,
973 "Unable to initialize rate scaling for station %pM.\n",
Johannes Berga30e3112010-09-22 18:02:01 +0200974 addr);
975 return -ENOMEM;
976 }
977
978 ret = iwl_send_lq_cmd(priv, ctx, link_cmd, CMD_SYNC, true);
979 if (ret)
980 IWL_ERR(priv, "Link quality command failed (%d)\n", ret);
981
Johannes Bergfa23cb02012-03-05 11:24:25 -0800982 spin_lock_bh(&priv->sta_lock);
Johannes Berga30e3112010-09-22 18:02:01 +0200983 priv->stations[sta_id].lq = link_cmd;
Johannes Bergfa23cb02012-03-05 11:24:25 -0800984 spin_unlock_bh(&priv->sta_lock);
Johannes Berga30e3112010-09-22 18:02:01 +0200985
986 return 0;
987}
988
Johannes Berg5a3d9882011-07-15 13:03:12 -0700989/*
990 * static WEP keys
991 *
992 * For each context, the device has a table of 4 static WEP keys
993 * (one for each key index) that is updated with the following
994 * commands.
995 */
996
Johannes Berga30e3112010-09-22 18:02:01 +0200997static int iwl_send_static_wepkey_cmd(struct iwl_priv *priv,
998 struct iwl_rxon_context *ctx,
999 bool send_if_empty)
1000{
1001 int i, not_empty = 0;
1002 u8 buff[sizeof(struct iwl_wep_cmd) +
1003 sizeof(struct iwl_wep_key) * WEP_KEYS_MAX];
1004 struct iwl_wep_cmd *wep_cmd = (struct iwl_wep_cmd *)buff;
1005 size_t cmd_size = sizeof(struct iwl_wep_cmd);
1006 struct iwl_host_cmd cmd = {
1007 .id = ctx->wep_key_cmd,
Johannes Berg3fa50732011-05-04 07:50:38 -07001008 .data = { wep_cmd, },
Johannes Berga30e3112010-09-22 18:02:01 +02001009 .flags = CMD_SYNC,
1010 };
1011
1012 might_sleep();
1013
1014 memset(wep_cmd, 0, cmd_size +
1015 (sizeof(struct iwl_wep_key) * WEP_KEYS_MAX));
1016
1017 for (i = 0; i < WEP_KEYS_MAX ; i++) {
1018 wep_cmd->key[i].key_index = i;
1019 if (ctx->wep_keys[i].key_size) {
1020 wep_cmd->key[i].key_offset = i;
1021 not_empty = 1;
1022 } else {
1023 wep_cmd->key[i].key_offset = WEP_INVALID_OFFSET;
1024 }
1025
1026 wep_cmd->key[i].key_size = ctx->wep_keys[i].key_size;
1027 memcpy(&wep_cmd->key[i].key[3], ctx->wep_keys[i].key,
1028 ctx->wep_keys[i].key_size);
1029 }
1030
1031 wep_cmd->global_key_type = WEP_KEY_WEP_TYPE;
1032 wep_cmd->num_keys = WEP_KEYS_MAX;
1033
1034 cmd_size += sizeof(struct iwl_wep_key) * WEP_KEYS_MAX;
1035
Johannes Berg3fa50732011-05-04 07:50:38 -07001036 cmd.len[0] = cmd_size;
Johannes Berga30e3112010-09-22 18:02:01 +02001037
1038 if (not_empty || send_if_empty)
Johannes Berge10a0532012-03-06 13:30:39 -08001039 return iwl_dvm_send_cmd(priv, &cmd);
Johannes Berga30e3112010-09-22 18:02:01 +02001040 else
1041 return 0;
1042}
1043
1044int iwl_restore_default_wep_keys(struct iwl_priv *priv,
1045 struct iwl_rxon_context *ctx)
1046{
Johannes Bergb1eea292012-03-06 13:30:42 -08001047 lockdep_assert_held(&priv->mutex);
Johannes Berga30e3112010-09-22 18:02:01 +02001048
1049 return iwl_send_static_wepkey_cmd(priv, ctx, false);
1050}
1051
1052int iwl_remove_default_wep_key(struct iwl_priv *priv,
1053 struct iwl_rxon_context *ctx,
1054 struct ieee80211_key_conf *keyconf)
1055{
1056 int ret;
1057
Johannes Bergb1eea292012-03-06 13:30:42 -08001058 lockdep_assert_held(&priv->mutex);
Johannes Berga30e3112010-09-22 18:02:01 +02001059
1060 IWL_DEBUG_WEP(priv, "Removing default WEP key: idx=%d\n",
1061 keyconf->keyidx);
1062
1063 memset(&ctx->wep_keys[keyconf->keyidx], 0, sizeof(ctx->wep_keys[0]));
Don Fry83626402012-03-07 09:52:37 -08001064 if (iwl_is_rfkill(priv)) {
Wey-Yi Guyc745f552011-10-10 07:27:12 -07001065 IWL_DEBUG_WEP(priv,
1066 "Not sending REPLY_WEPKEY command due to RFKILL.\n");
Johannes Berga30e3112010-09-22 18:02:01 +02001067 /* but keys in device are clear anyway so return success */
1068 return 0;
1069 }
1070 ret = iwl_send_static_wepkey_cmd(priv, ctx, 1);
1071 IWL_DEBUG_WEP(priv, "Remove default WEP key: idx=%d ret=%d\n",
1072 keyconf->keyidx, ret);
1073
1074 return ret;
1075}
1076
1077int iwl_set_default_wep_key(struct iwl_priv *priv,
1078 struct iwl_rxon_context *ctx,
1079 struct ieee80211_key_conf *keyconf)
1080{
1081 int ret;
1082
Johannes Bergb1eea292012-03-06 13:30:42 -08001083 lockdep_assert_held(&priv->mutex);
Johannes Berga30e3112010-09-22 18:02:01 +02001084
1085 if (keyconf->keylen != WEP_KEY_LEN_128 &&
1086 keyconf->keylen != WEP_KEY_LEN_64) {
Wey-Yi Guyc745f552011-10-10 07:27:12 -07001087 IWL_DEBUG_WEP(priv,
1088 "Bad WEP key length %d\n", keyconf->keylen);
Johannes Berga30e3112010-09-22 18:02:01 +02001089 return -EINVAL;
1090 }
1091
Johannes Berg5a3d9882011-07-15 13:03:12 -07001092 keyconf->hw_key_idx = IWLAGN_HW_KEY_DEFAULT;
Johannes Berga30e3112010-09-22 18:02:01 +02001093
1094 ctx->wep_keys[keyconf->keyidx].key_size = keyconf->keylen;
1095 memcpy(&ctx->wep_keys[keyconf->keyidx].key, &keyconf->key,
1096 keyconf->keylen);
1097
1098 ret = iwl_send_static_wepkey_cmd(priv, ctx, false);
1099 IWL_DEBUG_WEP(priv, "Set default WEP key: len=%d idx=%d ret=%d\n",
1100 keyconf->keylen, keyconf->keyidx, ret);
1101
1102 return ret;
1103}
1104
Johannes Berg5a3d9882011-07-15 13:03:12 -07001105/*
1106 * dynamic (per-station) keys
1107 *
1108 * The dynamic keys are a little more complicated. The device has
1109 * a key cache of up to STA_KEY_MAX_NUM/STA_KEY_MAX_NUM_PAN keys.
1110 * These are linked to stations by a table that contains an index
1111 * into the key table for each station/key index/{mcast,unicast},
1112 * i.e. it's basically an array of pointers like this:
1113 * key_offset_t key_mapping[NUM_STATIONS][4][2];
1114 * (it really works differently, but you can think of it as such)
1115 *
1116 * The key uploading and linking happens in the same command, the
1117 * add station command with STA_MODIFY_KEY_MASK.
1118 */
1119
1120static u8 iwlagn_key_sta_id(struct iwl_priv *priv,
1121 struct ieee80211_vif *vif,
1122 struct ieee80211_sta *sta)
1123{
1124 struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv;
Johannes Berg5a3d9882011-07-15 13:03:12 -07001125
1126 if (sta)
Johannes Berg40e4e682012-03-05 11:24:22 -08001127 return iwl_sta_id(sta);
Johannes Berg5a3d9882011-07-15 13:03:12 -07001128
1129 /*
1130 * The device expects GTKs for station interfaces to be
1131 * installed as GTKs for the AP station. If we have no
1132 * station ID, then use the ap_sta_id in that case.
1133 */
Johannes Berg40e4e682012-03-05 11:24:22 -08001134 if (vif->type == NL80211_IFTYPE_STATION && vif_priv->ctx)
1135 return vif_priv->ctx->ap_sta_id;
Johannes Berg5a3d9882011-07-15 13:03:12 -07001136
Johannes Berg40e4e682012-03-05 11:24:22 -08001137 return IWL_INVALID_STATION;
Johannes Berg5a3d9882011-07-15 13:03:12 -07001138}
1139
Johannes Berge1b1c082011-07-17 01:44:11 -07001140static int iwlagn_send_sta_key(struct iwl_priv *priv,
1141 struct ieee80211_key_conf *keyconf,
1142 u8 sta_id, u32 tkip_iv32, u16 *tkip_p1k,
1143 u32 cmd_flags)
Johannes Berga30e3112010-09-22 18:02:01 +02001144{
Johannes Berg5a3d9882011-07-15 13:03:12 -07001145 __le16 key_flags;
Johannes Berga30e3112010-09-22 18:02:01 +02001146 struct iwl_addsta_cmd sta_cmd;
Johannes Berg5a3d9882011-07-15 13:03:12 -07001147 int i;
Johannes Berge1b1c082011-07-17 01:44:11 -07001148
Johannes Bergfa23cb02012-03-05 11:24:25 -08001149 spin_lock_bh(&priv->sta_lock);
Johannes Berg5a3d9882011-07-15 13:03:12 -07001150 memcpy(&sta_cmd, &priv->stations[sta_id].sta, sizeof(sta_cmd));
Johannes Bergfa23cb02012-03-05 11:24:25 -08001151 spin_unlock_bh(&priv->sta_lock);
Johannes Berga30e3112010-09-22 18:02:01 +02001152
Johannes Berg5a3d9882011-07-15 13:03:12 -07001153 key_flags = cpu_to_le16(keyconf->keyidx << STA_KEY_FLG_KEYID_POS);
1154 key_flags |= STA_KEY_FLG_MAP_KEY_MSK;
Johannes Berga30e3112010-09-22 18:02:01 +02001155
Johannes Berg5a3d9882011-07-15 13:03:12 -07001156 switch (keyconf->cipher) {
1157 case WLAN_CIPHER_SUITE_CCMP:
1158 key_flags |= STA_KEY_FLG_CCMP;
1159 memcpy(sta_cmd.key.key, keyconf->key, keyconf->keylen);
1160 break;
1161 case WLAN_CIPHER_SUITE_TKIP:
1162 key_flags |= STA_KEY_FLG_TKIP;
1163 sta_cmd.key.tkip_rx_tsc_byte2 = tkip_iv32;
1164 for (i = 0; i < 5; i++)
1165 sta_cmd.key.tkip_rx_ttak[i] = cpu_to_le16(tkip_p1k[i]);
1166 memcpy(sta_cmd.key.key, keyconf->key, keyconf->keylen);
1167 break;
1168 case WLAN_CIPHER_SUITE_WEP104:
Johannes Berga30e3112010-09-22 18:02:01 +02001169 key_flags |= STA_KEY_FLG_KEY_SIZE_MSK;
Johannes Berg5a3d9882011-07-15 13:03:12 -07001170 /* fall through */
1171 case WLAN_CIPHER_SUITE_WEP40:
1172 key_flags |= STA_KEY_FLG_WEP;
1173 memcpy(&sta_cmd.key.key[3], keyconf->key, keyconf->keylen);
1174 break;
1175 default:
1176 WARN_ON(1);
1177 return -EINVAL;
1178 }
Johannes Berga30e3112010-09-22 18:02:01 +02001179
Johannes Berg5a3d9882011-07-15 13:03:12 -07001180 if (!(keyconf->flags & IEEE80211_KEY_FLAG_PAIRWISE))
Johannes Berga30e3112010-09-22 18:02:01 +02001181 key_flags |= STA_KEY_MULTICAST_MSK;
1182
Johannes Berg5a3d9882011-07-15 13:03:12 -07001183 /* key pointer (offset) */
1184 sta_cmd.key.key_offset = keyconf->hw_key_idx;
Johannes Berga30e3112010-09-22 18:02:01 +02001185
Johannes Berg5a3d9882011-07-15 13:03:12 -07001186 sta_cmd.key.key_flags = key_flags;
1187 sta_cmd.mode = STA_CONTROL_MODIFY_MSK;
1188 sta_cmd.sta.modify_mask = STA_MODIFY_KEY_MASK;
Johannes Berga30e3112010-09-22 18:02:01 +02001189
Johannes Berg5a3d9882011-07-15 13:03:12 -07001190 return iwl_send_add_sta(priv, &sta_cmd, cmd_flags);
Johannes Berga30e3112010-09-22 18:02:01 +02001191}
1192
1193void iwl_update_tkip_key(struct iwl_priv *priv,
Johannes Berg5a3d9882011-07-15 13:03:12 -07001194 struct ieee80211_vif *vif,
Johannes Berga30e3112010-09-22 18:02:01 +02001195 struct ieee80211_key_conf *keyconf,
1196 struct ieee80211_sta *sta, u32 iv32, u16 *phase1key)
1197{
Johannes Berg5a3d9882011-07-15 13:03:12 -07001198 u8 sta_id = iwlagn_key_sta_id(priv, vif, sta);
1199
1200 if (sta_id == IWL_INVALID_STATION)
1201 return;
Johannes Berga30e3112010-09-22 18:02:01 +02001202
1203 if (iwl_scan_cancel(priv)) {
1204 /* cancel scan failed, just live w/ bad key and rely
1205 briefly on SW decryption */
1206 return;
1207 }
1208
Johannes Berge1b1c082011-07-17 01:44:11 -07001209 iwlagn_send_sta_key(priv, keyconf, sta_id,
1210 iv32, phase1key, CMD_ASYNC);
Johannes Berga30e3112010-09-22 18:02:01 +02001211}
1212
1213int iwl_remove_dynamic_key(struct iwl_priv *priv,
1214 struct iwl_rxon_context *ctx,
1215 struct ieee80211_key_conf *keyconf,
Johannes Berg5a3d9882011-07-15 13:03:12 -07001216 struct ieee80211_sta *sta)
Johannes Berga30e3112010-09-22 18:02:01 +02001217{
Johannes Berga30e3112010-09-22 18:02:01 +02001218 struct iwl_addsta_cmd sta_cmd;
Johannes Berg5a3d9882011-07-15 13:03:12 -07001219 u8 sta_id = iwlagn_key_sta_id(priv, ctx->vif, sta);
Johannes Berg5dcbf482012-02-17 09:47:14 -08001220 __le16 key_flags;
Johannes Berg5a3d9882011-07-15 13:03:12 -07001221
1222 /* if station isn't there, neither is the key */
1223 if (sta_id == IWL_INVALID_STATION)
1224 return -ENOENT;
1225
Johannes Bergfa23cb02012-03-05 11:24:25 -08001226 spin_lock_bh(&priv->sta_lock);
Johannes Berg5a3d9882011-07-15 13:03:12 -07001227 memcpy(&sta_cmd, &priv->stations[sta_id].sta, sizeof(sta_cmd));
1228 if (!(priv->stations[sta_id].used & IWL_STA_UCODE_ACTIVE))
1229 sta_id = IWL_INVALID_STATION;
Johannes Bergfa23cb02012-03-05 11:24:25 -08001230 spin_unlock_bh(&priv->sta_lock);
Johannes Berg5a3d9882011-07-15 13:03:12 -07001231
1232 if (sta_id == IWL_INVALID_STATION)
1233 return 0;
Johannes Berga30e3112010-09-22 18:02:01 +02001234
Johannes Bergb1eea292012-03-06 13:30:42 -08001235 lockdep_assert_held(&priv->mutex);
Johannes Berga30e3112010-09-22 18:02:01 +02001236
1237 ctx->key_mapping_keys--;
1238
Johannes Berga30e3112010-09-22 18:02:01 +02001239 IWL_DEBUG_WEP(priv, "Remove dynamic key: idx=%d sta=%d\n",
1240 keyconf->keyidx, sta_id);
1241
Johannes Berg5a3d9882011-07-15 13:03:12 -07001242 if (!test_and_clear_bit(keyconf->hw_key_idx, &priv->ucode_key_table))
1243 IWL_ERR(priv, "offset %d not used in uCode key table.\n",
1244 keyconf->hw_key_idx);
Johannes Berga30e3112010-09-22 18:02:01 +02001245
Johannes Berg5dcbf482012-02-17 09:47:14 -08001246 key_flags = cpu_to_le16(keyconf->keyidx << STA_KEY_FLG_KEYID_POS);
1247 key_flags |= STA_KEY_FLG_MAP_KEY_MSK | STA_KEY_FLG_NO_ENC |
1248 STA_KEY_FLG_INVALID;
1249
1250 if (!(keyconf->flags & IEEE80211_KEY_FLAG_PAIRWISE))
1251 key_flags |= STA_KEY_MULTICAST_MSK;
1252
1253 sta_cmd.key.key_flags = key_flags;
Johannes Berg5a3d9882011-07-15 13:03:12 -07001254 sta_cmd.key.key_offset = WEP_INVALID_OFFSET;
1255 sta_cmd.sta.modify_mask = STA_MODIFY_KEY_MASK;
1256 sta_cmd.mode = STA_CONTROL_MODIFY_MSK;
Johannes Berga30e3112010-09-22 18:02:01 +02001257
1258 return iwl_send_add_sta(priv, &sta_cmd, CMD_SYNC);
1259}
1260
Johannes Berg5a3d9882011-07-15 13:03:12 -07001261int iwl_set_dynamic_key(struct iwl_priv *priv,
1262 struct iwl_rxon_context *ctx,
1263 struct ieee80211_key_conf *keyconf,
1264 struct ieee80211_sta *sta)
Johannes Berga30e3112010-09-22 18:02:01 +02001265{
Johannes Berg5a3d9882011-07-15 13:03:12 -07001266 struct ieee80211_key_seq seq;
1267 u16 p1k[5];
Johannes Berga30e3112010-09-22 18:02:01 +02001268 int ret;
Johannes Berg5a3d9882011-07-15 13:03:12 -07001269 u8 sta_id = iwlagn_key_sta_id(priv, ctx->vif, sta);
1270 const u8 *addr;
1271
1272 if (sta_id == IWL_INVALID_STATION)
1273 return -EINVAL;
Johannes Berga30e3112010-09-22 18:02:01 +02001274
Johannes Bergb1eea292012-03-06 13:30:42 -08001275 lockdep_assert_held(&priv->mutex);
Johannes Berga30e3112010-09-22 18:02:01 +02001276
Johannes Berg5a3d9882011-07-15 13:03:12 -07001277 keyconf->hw_key_idx = iwl_get_free_ucode_key_offset(priv);
1278 if (keyconf->hw_key_idx == WEP_INVALID_OFFSET)
1279 return -ENOSPC;
1280
Johannes Berga30e3112010-09-22 18:02:01 +02001281 ctx->key_mapping_keys++;
Johannes Berga30e3112010-09-22 18:02:01 +02001282
1283 switch (keyconf->cipher) {
Johannes Berga30e3112010-09-22 18:02:01 +02001284 case WLAN_CIPHER_SUITE_TKIP:
Johannes Berg5a3d9882011-07-15 13:03:12 -07001285 if (sta)
1286 addr = sta->addr;
1287 else /* station mode case only */
1288 addr = ctx->active.bssid_addr;
1289
1290 /* pre-fill phase 1 key into device cache */
1291 ieee80211_get_key_rx_seq(keyconf, 0, &seq);
1292 ieee80211_get_tkip_rx_p1k(keyconf, addr, seq.tkip.iv32, p1k);
Johannes Berge1b1c082011-07-17 01:44:11 -07001293 ret = iwlagn_send_sta_key(priv, keyconf, sta_id,
1294 seq.tkip.iv32, p1k, CMD_SYNC);
Johannes Berga30e3112010-09-22 18:02:01 +02001295 break;
Johannes Berg5a3d9882011-07-15 13:03:12 -07001296 case WLAN_CIPHER_SUITE_CCMP:
Johannes Berga30e3112010-09-22 18:02:01 +02001297 case WLAN_CIPHER_SUITE_WEP40:
1298 case WLAN_CIPHER_SUITE_WEP104:
Johannes Berge1b1c082011-07-17 01:44:11 -07001299 ret = iwlagn_send_sta_key(priv, keyconf, sta_id,
1300 0, NULL, CMD_SYNC);
Johannes Berga30e3112010-09-22 18:02:01 +02001301 break;
1302 default:
Johannes Berg5a3d9882011-07-15 13:03:12 -07001303 IWL_ERR(priv, "Unknown cipher %x\n", keyconf->cipher);
Johannes Berga30e3112010-09-22 18:02:01 +02001304 ret = -EINVAL;
1305 }
1306
Johannes Berg5a3d9882011-07-15 13:03:12 -07001307 if (ret) {
1308 ctx->key_mapping_keys--;
1309 clear_bit(keyconf->hw_key_idx, &priv->ucode_key_table);
1310 }
1311
1312 IWL_DEBUG_WEP(priv, "Set dynamic key: cipher=%x len=%d idx=%d sta=%pM ret=%d\n",
Johannes Berga30e3112010-09-22 18:02:01 +02001313 keyconf->cipher, keyconf->keylen, keyconf->keyidx,
Johannes Berg5a3d9882011-07-15 13:03:12 -07001314 sta ? sta->addr : NULL, ret);
Johannes Berga30e3112010-09-22 18:02:01 +02001315
1316 return ret;
1317}
1318
1319/**
1320 * iwlagn_alloc_bcast_station - add broadcast station into driver's station table.
1321 *
1322 * This adds the broadcast station into the driver's station table
1323 * and marks it driver active, so that it will be restored to the
1324 * device at the next best time.
1325 */
1326int iwlagn_alloc_bcast_station(struct iwl_priv *priv,
1327 struct iwl_rxon_context *ctx)
1328{
1329 struct iwl_link_quality_cmd *link_cmd;
Johannes Berga30e3112010-09-22 18:02:01 +02001330 u8 sta_id;
1331
Johannes Bergfa23cb02012-03-05 11:24:25 -08001332 spin_lock_bh(&priv->sta_lock);
Johannes Berga30e3112010-09-22 18:02:01 +02001333 sta_id = iwl_prep_station(priv, ctx, iwl_bcast_addr, false, NULL);
1334 if (sta_id == IWL_INVALID_STATION) {
1335 IWL_ERR(priv, "Unable to prepare broadcast station\n");
Johannes Bergfa23cb02012-03-05 11:24:25 -08001336 spin_unlock_bh(&priv->sta_lock);
Johannes Berga30e3112010-09-22 18:02:01 +02001337
1338 return -EINVAL;
1339 }
1340
1341 priv->stations[sta_id].used |= IWL_STA_DRIVER_ACTIVE;
1342 priv->stations[sta_id].used |= IWL_STA_BCAST;
Johannes Bergfa23cb02012-03-05 11:24:25 -08001343 spin_unlock_bh(&priv->sta_lock);
Johannes Berga30e3112010-09-22 18:02:01 +02001344
Johannes Bergf775aa06d2011-06-22 06:34:09 -07001345 link_cmd = iwl_sta_alloc_lq(priv, ctx, sta_id);
Johannes Berga30e3112010-09-22 18:02:01 +02001346 if (!link_cmd) {
1347 IWL_ERR(priv,
1348 "Unable to initialize rate scaling for bcast station.\n");
1349 return -ENOMEM;
1350 }
1351
Johannes Bergfa23cb02012-03-05 11:24:25 -08001352 spin_lock_bh(&priv->sta_lock);
Johannes Berga30e3112010-09-22 18:02:01 +02001353 priv->stations[sta_id].lq = link_cmd;
Johannes Bergfa23cb02012-03-05 11:24:25 -08001354 spin_unlock_bh(&priv->sta_lock);
Johannes Berga30e3112010-09-22 18:02:01 +02001355
1356 return 0;
1357}
1358
1359/**
1360 * iwl_update_bcast_station - update broadcast station's LQ command
1361 *
1362 * Only used by iwlagn. Placed here to have all bcast station management
1363 * code together.
1364 */
Johannes Bergf775aa06d2011-06-22 06:34:09 -07001365int iwl_update_bcast_station(struct iwl_priv *priv,
1366 struct iwl_rxon_context *ctx)
Johannes Berga30e3112010-09-22 18:02:01 +02001367{
Johannes Berga30e3112010-09-22 18:02:01 +02001368 struct iwl_link_quality_cmd *link_cmd;
1369 u8 sta_id = ctx->bcast_sta_id;
1370
Johannes Bergf775aa06d2011-06-22 06:34:09 -07001371 link_cmd = iwl_sta_alloc_lq(priv, ctx, sta_id);
Johannes Berga30e3112010-09-22 18:02:01 +02001372 if (!link_cmd) {
1373 IWL_ERR(priv, "Unable to initialize rate scaling for bcast station.\n");
1374 return -ENOMEM;
1375 }
1376
Johannes Bergfa23cb02012-03-05 11:24:25 -08001377 spin_lock_bh(&priv->sta_lock);
Johannes Berga30e3112010-09-22 18:02:01 +02001378 if (priv->stations[sta_id].lq)
1379 kfree(priv->stations[sta_id].lq);
1380 else
1381 IWL_DEBUG_INFO(priv, "Bcast station rate scaling has not been initialized yet.\n");
1382 priv->stations[sta_id].lq = link_cmd;
Johannes Bergfa23cb02012-03-05 11:24:25 -08001383 spin_unlock_bh(&priv->sta_lock);
Johannes Berga30e3112010-09-22 18:02:01 +02001384
1385 return 0;
1386}
1387
1388int iwl_update_bcast_stations(struct iwl_priv *priv)
1389{
1390 struct iwl_rxon_context *ctx;
1391 int ret = 0;
1392
1393 for_each_context(priv, ctx) {
1394 ret = iwl_update_bcast_station(priv, ctx);
1395 if (ret)
1396 break;
1397 }
1398
1399 return ret;
1400}
1401
1402/**
1403 * iwl_sta_tx_modify_enable_tid - Enable Tx for this TID in station table
1404 */
1405int iwl_sta_tx_modify_enable_tid(struct iwl_priv *priv, int sta_id, int tid)
1406{
Johannes Berga30e3112010-09-22 18:02:01 +02001407 struct iwl_addsta_cmd sta_cmd;
1408
Johannes Bergb1eea292012-03-06 13:30:42 -08001409 lockdep_assert_held(&priv->mutex);
Johannes Berga30e3112010-09-22 18:02:01 +02001410
1411 /* Remove "disable" flag, to enable Tx for this TID */
Johannes Bergfa23cb02012-03-05 11:24:25 -08001412 spin_lock_bh(&priv->sta_lock);
Johannes Berga30e3112010-09-22 18:02:01 +02001413 priv->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_TID_DISABLE_TX;
1414 priv->stations[sta_id].sta.tid_disable_tx &= cpu_to_le16(~(1 << tid));
1415 priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
1416 memcpy(&sta_cmd, &priv->stations[sta_id].sta, sizeof(struct iwl_addsta_cmd));
Johannes Bergfa23cb02012-03-05 11:24:25 -08001417 spin_unlock_bh(&priv->sta_lock);
Johannes Berga30e3112010-09-22 18:02:01 +02001418
1419 return iwl_send_add_sta(priv, &sta_cmd, CMD_SYNC);
1420}
1421
1422int iwl_sta_rx_agg_start(struct iwl_priv *priv, struct ieee80211_sta *sta,
1423 int tid, u16 ssn)
1424{
Johannes Berga30e3112010-09-22 18:02:01 +02001425 int sta_id;
1426 struct iwl_addsta_cmd sta_cmd;
1427
Johannes Bergb1eea292012-03-06 13:30:42 -08001428 lockdep_assert_held(&priv->mutex);
Johannes Berga30e3112010-09-22 18:02:01 +02001429
1430 sta_id = iwl_sta_id(sta);
1431 if (sta_id == IWL_INVALID_STATION)
1432 return -ENXIO;
1433
Johannes Bergfa23cb02012-03-05 11:24:25 -08001434 spin_lock_bh(&priv->sta_lock);
Johannes Berga30e3112010-09-22 18:02:01 +02001435 priv->stations[sta_id].sta.station_flags_msk = 0;
1436 priv->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_ADDBA_TID_MSK;
1437 priv->stations[sta_id].sta.add_immediate_ba_tid = (u8)tid;
1438 priv->stations[sta_id].sta.add_immediate_ba_ssn = cpu_to_le16(ssn);
1439 priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
1440 memcpy(&sta_cmd, &priv->stations[sta_id].sta, sizeof(struct iwl_addsta_cmd));
Johannes Bergfa23cb02012-03-05 11:24:25 -08001441 spin_unlock_bh(&priv->sta_lock);
Johannes Berga30e3112010-09-22 18:02:01 +02001442
1443 return iwl_send_add_sta(priv, &sta_cmd, CMD_SYNC);
1444}
1445
1446int iwl_sta_rx_agg_stop(struct iwl_priv *priv, struct ieee80211_sta *sta,
1447 int tid)
1448{
Johannes Berga30e3112010-09-22 18:02:01 +02001449 int sta_id;
1450 struct iwl_addsta_cmd sta_cmd;
1451
Johannes Bergb1eea292012-03-06 13:30:42 -08001452 lockdep_assert_held(&priv->mutex);
Johannes Berga30e3112010-09-22 18:02:01 +02001453
1454 sta_id = iwl_sta_id(sta);
1455 if (sta_id == IWL_INVALID_STATION) {
1456 IWL_ERR(priv, "Invalid station for AGG tid %d\n", tid);
1457 return -ENXIO;
1458 }
1459
Johannes Bergfa23cb02012-03-05 11:24:25 -08001460 spin_lock_bh(&priv->sta_lock);
Johannes Berga30e3112010-09-22 18:02:01 +02001461 priv->stations[sta_id].sta.station_flags_msk = 0;
1462 priv->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_DELBA_TID_MSK;
1463 priv->stations[sta_id].sta.remove_immediate_ba_tid = (u8)tid;
1464 priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
1465 memcpy(&sta_cmd, &priv->stations[sta_id].sta, sizeof(struct iwl_addsta_cmd));
Johannes Bergfa23cb02012-03-05 11:24:25 -08001466 spin_unlock_bh(&priv->sta_lock);
Johannes Berga30e3112010-09-22 18:02:01 +02001467
1468 return iwl_send_add_sta(priv, &sta_cmd, CMD_SYNC);
1469}
1470
Johannes Berga30e3112010-09-22 18:02:01 +02001471
Johannes Berga30e3112010-09-22 18:02:01 +02001472
1473void iwl_sta_modify_sleep_tx_count(struct iwl_priv *priv, int sta_id, int cnt)
1474{
Johannes Berg9451ca12012-03-05 11:24:23 -08001475 struct iwl_addsta_cmd cmd = {
1476 .mode = STA_CONTROL_MODIFY_MSK,
1477 .station_flags = STA_FLG_PWR_SAVE_MSK,
1478 .station_flags_msk = STA_FLG_PWR_SAVE_MSK,
1479 .sta.sta_id = sta_id,
1480 .sta.modify_mask = STA_MODIFY_SLEEP_TX_COUNT_MSK,
1481 .sleep_tx_count = cpu_to_le16(cnt),
1482 };
Johannes Berga30e3112010-09-22 18:02:01 +02001483
Johannes Berg9451ca12012-03-05 11:24:23 -08001484 iwl_send_add_sta(priv, &cmd, CMD_ASYNC);
Johannes Berga30e3112010-09-22 18:02:01 +02001485}