blob: f35cfa2fe5c5b241dae7ff0e78671e32abf1af0e [file] [log] [blame]
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07001/******************************************************************************
2 *
Wey-Yi Guy901069c2011-04-05 09:42:00 -07003 * Copyright(c) 2003 - 2011 Intel Corporation. All rights reserved.
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07004 *
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:
Winkler, Tomas759ef892008-12-09 11:28:58 -080025 * Intel Linux Wireless <ilw@linux.intel.com>
Emmanuel Grumbach6974e362008-04-14 21:16:06 -070026 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
27 *
28 *****************************************************************************/
29
30#include <net/mac80211.h>
Tomas Winkler947b13a2008-04-16 16:34:48 -070031#include <linux/etherdevice.h>
Reinette Chatrefe6b23d2010-02-22 16:24:47 -080032#include <linux/sched.h>
Johannes Berg4620fef2010-06-16 03:30:27 -070033#include <linux/lockdep.h>
Emmanuel Grumbach6974e362008-04-14 21:16:06 -070034
Tomas Winkler3e0d4cb2008-04-24 11:55:38 -070035#include "iwl-dev.h"
Emmanuel Grumbach6974e362008-04-14 21:16:06 -070036#include "iwl-core.h"
37#include "iwl-sta.h"
Emmanuel Grumbachbdfbf092011-07-08 08:46:16 -070038#include "iwl-trans.h"
Don Fry5c3d29f2011-07-08 08:46:29 -070039#include "iwl-agn.h"
Tomas Winkler7a999bf2008-05-29 16:35:02 +080040
Emmanuel Grumbachf39c95e2011-08-25 23:10:47 -070041/* priv->shrd->sta_lock must be held */
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +080042static void iwl_sta_ucode_activate(struct iwl_priv *priv, u8 sta_id)
43{
Reinette Chatre1fa97aa2010-01-22 14:22:48 -080044
45 if (!(priv->stations[sta_id].used & IWL_STA_DRIVER_ACTIVE))
46 IWL_ERR(priv, "ACTIVATE a non DRIVER active station id %u addr %pM\n",
47 sta_id, priv->stations[sta_id].sta.sta.addr);
48
49 if (priv->stations[sta_id].used & IWL_STA_UCODE_ACTIVE) {
50 IWL_DEBUG_ASSOC(priv,
51 "STA id %u addr %pM already present in uCode (according to driver)\n",
52 sta_id, priv->stations[sta_id].sta.sta.addr);
53 } else {
54 priv->stations[sta_id].used |= IWL_STA_UCODE_ACTIVE;
55 IWL_DEBUG_ASSOC(priv, "Added STA id %u addr %pM to uCode\n",
56 sta_id, priv->stations[sta_id].sta.sta.addr);
57 }
58}
59
Johannes Berg09034cb2010-06-14 08:32:38 -070060static int iwl_process_add_sta_resp(struct iwl_priv *priv,
61 struct iwl_addsta_cmd *addsta,
62 struct iwl_rx_packet *pkt,
63 bool sync)
Reinette Chatre1fa97aa2010-01-22 14:22:48 -080064{
65 u8 sta_id = addsta->sta.sta_id;
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +080066 unsigned long flags;
Johannes Berg09034cb2010-06-14 08:32:38 -070067 int ret = -EIO;
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +080068
Reinette Chatre1fa97aa2010-01-22 14:22:48 -080069 if (pkt->hdr.flags & IWL_CMD_FAILED_MSK) {
70 IWL_ERR(priv, "Bad return from REPLY_ADD_STA (0x%08X)\n",
71 pkt->hdr.flags);
Johannes Berg09034cb2010-06-14 08:32:38 -070072 return ret;
Reinette Chatre1fa97aa2010-01-22 14:22:48 -080073 }
74
75 IWL_DEBUG_INFO(priv, "Processing response for adding station %u\n",
76 sta_id);
77
Emmanuel Grumbachf39c95e2011-08-25 23:10:47 -070078 spin_lock_irqsave(&priv->shrd->sta_lock, flags);
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +080079
Reinette Chatre1fa97aa2010-01-22 14:22:48 -080080 switch (pkt->u.add_sta.status) {
81 case ADD_STA_SUCCESS_MSK:
82 IWL_DEBUG_INFO(priv, "REPLY_ADD_STA PASSED\n");
83 iwl_sta_ucode_activate(priv, sta_id);
Johannes Berg09034cb2010-06-14 08:32:38 -070084 ret = 0;
Reinette Chatre1fa97aa2010-01-22 14:22:48 -080085 break;
86 case ADD_STA_NO_ROOM_IN_TABLE:
87 IWL_ERR(priv, "Adding station %d failed, no room in table.\n",
Winkler, Tomas15b16872008-12-19 10:37:33 +080088 sta_id);
Reinette Chatre1fa97aa2010-01-22 14:22:48 -080089 break;
90 case ADD_STA_NO_BLOCK_ACK_RESOURCE:
91 IWL_ERR(priv, "Adding station %d failed, no block ack resource.\n",
92 sta_id);
93 break;
94 case ADD_STA_MODIFY_NON_EXIST_STA:
Frans Pop91dd6c22010-03-24 14:19:58 -070095 IWL_ERR(priv, "Attempting to modify non-existing station %d\n",
Reinette Chatre1fa97aa2010-01-22 14:22:48 -080096 sta_id);
97 break;
98 default:
99 IWL_DEBUG_ASSOC(priv, "Received REPLY_ADD_STA:(0x%08X)\n",
100 pkt->u.add_sta.status);
101 break;
102 }
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800103
Reinette Chatre1fa97aa2010-01-22 14:22:48 -0800104 IWL_DEBUG_INFO(priv, "%s station id %u addr %pM\n",
105 priv->stations[sta_id].sta.mode ==
106 STA_CONTROL_MODIFY_MSK ? "Modified" : "Added",
107 sta_id, priv->stations[sta_id].sta.sta.addr);
108
109 /*
110 * XXX: The MAC address in the command buffer is often changed from
111 * the original sent to the device. That is, the MAC address
Uwe Kleine-Königb5950762010-11-01 15:38:34 -0400112 * written to the command buffer often is not the same MAC address
Reinette Chatre1fa97aa2010-01-22 14:22:48 -0800113 * read from the command buffer when the command returns. This
114 * issue has not yet been resolved and this debugging is left to
115 * observe the problem.
116 */
117 IWL_DEBUG_INFO(priv, "%s station according to cmd buffer %pM\n",
118 priv->stations[sta_id].sta.mode ==
119 STA_CONTROL_MODIFY_MSK ? "Modified" : "Added",
120 addsta->sta.addr);
Emmanuel Grumbachf39c95e2011-08-25 23:10:47 -0700121 spin_unlock_irqrestore(&priv->shrd->sta_lock, flags);
Johannes Berg09034cb2010-06-14 08:32:38 -0700122
123 return ret;
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800124}
125
Emmanuel Grumbach3e10cae2011-09-06 09:31:18 -0700126static void iwl_add_sta_callback(struct iwl_shared *shrd,
Johannes Berg5696aea2009-07-24 11:13:06 -0700127 struct iwl_device_cmd *cmd,
Zhu Yi2f301222009-10-09 17:19:45 +0800128 struct iwl_rx_packet *pkt)
Tomas Winkler42132bc2008-05-29 16:35:03 +0800129{
Tomas Winkler3257e5d2008-10-14 12:32:43 -0700130 struct iwl_addsta_cmd *addsta =
131 (struct iwl_addsta_cmd *)cmd->cmd.payload;
Tomas Winkler42132bc2008-05-29 16:35:03 +0800132
Emmanuel Grumbach3e10cae2011-09-06 09:31:18 -0700133 iwl_process_add_sta_resp(shrd->priv, addsta, pkt, false);
Tomas Winkler42132bc2008-05-29 16:35:03 +0800134
Tomas Winkler42132bc2008-05-29 16:35:03 +0800135}
136
Don Fry5c3d29f2011-07-08 08:46:29 -0700137static u16 iwlagn_build_addsta_hcmd(const struct iwl_addsta_cmd *cmd, u8 *data)
138{
139 u16 size = (u16)sizeof(struct iwl_addsta_cmd);
140 struct iwl_addsta_cmd *addsta = (struct iwl_addsta_cmd *)data;
141 memcpy(addsta, cmd, size);
142 /* resrved in 5000 */
143 addsta->rate_n_flags = cpu_to_le16(0);
144 return size;
145}
146
Samuel Ortiz17f841c2009-01-23 13:45:20 -0800147int iwl_send_add_sta(struct iwl_priv *priv,
Tomas Winkler133636d2008-05-05 10:22:34 +0800148 struct iwl_addsta_cmd *sta, u8 flags)
149{
Zhu Yi2f301222009-10-09 17:19:45 +0800150 struct iwl_rx_packet *pkt = NULL;
Tomas Winkler133636d2008-05-05 10:22:34 +0800151 int ret = 0;
152 u8 data[sizeof(*sta)];
153 struct iwl_host_cmd cmd = {
154 .id = REPLY_ADD_STA,
Johannes Bergc2acea82009-07-24 11:13:05 -0700155 .flags = flags,
Johannes Berg3fa50732011-05-04 07:50:38 -0700156 .data = { data, },
Tomas Winkler133636d2008-05-05 10:22:34 +0800157 };
Reinette Chatref875f512010-04-05 10:43:10 -0700158 u8 sta_id __maybe_unused = sta->sta.sta_id;
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800159
160 IWL_DEBUG_INFO(priv, "Adding sta %u (%pM) %ssynchronously\n",
161 sta_id, sta->sta.addr, flags & CMD_ASYNC ? "a" : "");
Tomas Winkler133636d2008-05-05 10:22:34 +0800162
Tomas Winkler42132bc2008-05-29 16:35:03 +0800163 if (flags & CMD_ASYNC)
Johannes Bergc2acea82009-07-24 11:13:05 -0700164 cmd.callback = iwl_add_sta_callback;
Johannes Berg4620fef2010-06-16 03:30:27 -0700165 else {
Johannes Bergc2acea82009-07-24 11:13:05 -0700166 cmd.flags |= CMD_WANT_SKB;
Johannes Berg4620fef2010-06-16 03:30:27 -0700167 might_sleep();
168 }
Tomas Winkler133636d2008-05-05 10:22:34 +0800169
Don Fry5c3d29f2011-07-08 08:46:29 -0700170 cmd.len[0] = iwlagn_build_addsta_hcmd(sta, data);
Emmanuel Grumbache6bb4c92011-08-25 23:10:48 -0700171 ret = iwl_trans_send_cmd(trans(priv), &cmd);
Tomas Winkler133636d2008-05-05 10:22:34 +0800172
173 if (ret || (flags & CMD_ASYNC))
174 return ret;
175
Tomas Winkler133636d2008-05-05 10:22:34 +0800176 if (ret == 0) {
Reinette Chatre1fa97aa2010-01-22 14:22:48 -0800177 pkt = (struct iwl_rx_packet *)cmd.reply_page;
Johannes Berg09034cb2010-06-14 08:32:38 -0700178 ret = iwl_process_add_sta_resp(priv, sta, pkt, true);
Tomas Winkler133636d2008-05-05 10:22:34 +0800179 }
Emmanuel Grumbach790428b2011-08-25 23:11:05 -0700180 iwl_free_pages(priv->shrd, cmd.reply_page);
Tomas Winkler133636d2008-05-05 10:22:34 +0800181
182 return ret;
183}
Tomas Winkler947b13a2008-04-16 16:34:48 -0700184
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800185static void iwl_set_ht_add_station(struct iwl_priv *priv, u8 index,
Johannes Berg7e6a5882010-08-23 10:46:46 +0200186 struct ieee80211_sta *sta,
187 struct iwl_rxon_context *ctx)
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800188{
Johannes Berg238d7812010-08-23 10:46:45 +0200189 struct ieee80211_sta_ht_cap *sta_ht_inf = &sta->ht_cap;
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800190 __le32 sta_flags;
191 u8 mimo_ps_mode;
192
Johannes Berg238d7812010-08-23 10:46:45 +0200193 if (!sta || !sta_ht_inf->ht_supported)
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800194 goto done;
195
Tomas Winkler00c5ae22008-09-03 11:26:42 +0800196 mimo_ps_mode = (sta_ht_inf->cap & IEEE80211_HT_CAP_SM_PS) >> 2;
Wey-Yi Guy3f3e0372009-10-30 14:36:17 -0700197 IWL_DEBUG_ASSOC(priv, "spatial multiplexing power save mode: %s\n",
198 (mimo_ps_mode == WLAN_HT_CAP_SM_PS_STATIC) ?
199 "static" :
200 (mimo_ps_mode == WLAN_HT_CAP_SM_PS_DYNAMIC) ?
201 "dynamic" : "disabled");
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800202
203 sta_flags = priv->stations[index].sta.station_flags;
204
205 sta_flags &= ~(STA_FLG_RTS_MIMO_PROT_MSK | STA_FLG_MIMO_DIS_MSK);
206
207 switch (mimo_ps_mode) {
Tomas Winkler00c5ae22008-09-03 11:26:42 +0800208 case WLAN_HT_CAP_SM_PS_STATIC:
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800209 sta_flags |= STA_FLG_MIMO_DIS_MSK;
210 break;
Tomas Winkler00c5ae22008-09-03 11:26:42 +0800211 case WLAN_HT_CAP_SM_PS_DYNAMIC:
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800212 sta_flags |= STA_FLG_RTS_MIMO_PROT_MSK;
213 break;
Tomas Winkler00c5ae22008-09-03 11:26:42 +0800214 case WLAN_HT_CAP_SM_PS_DISABLED:
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800215 break;
216 default:
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800217 IWL_WARN(priv, "Invalid MIMO PS mode %d\n", mimo_ps_mode);
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800218 break;
219 }
220
221 sta_flags |= cpu_to_le32(
222 (u32)sta_ht_inf->ampdu_factor << STA_FLG_MAX_AGG_SIZE_POS);
223
224 sta_flags |= cpu_to_le32(
225 (u32)sta_ht_inf->ampdu_density << STA_FLG_AGG_MPDU_DENSITY_POS);
226
Johannes Berg7e6a5882010-08-23 10:46:46 +0200227 if (iwl_is_ht40_tx_allowed(priv, ctx, &sta->ht_cap))
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700228 sta_flags |= STA_FLG_HT40_EN_MSK;
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800229 else
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700230 sta_flags &= ~STA_FLG_HT40_EN_MSK;
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800231
232 priv->stations[index].sta.station_flags = sta_flags;
233 done:
234 return;
235}
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800236
237/**
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800238 * iwl_prep_station - Prepare station information for addition
239 *
240 * should be called with sta_lock held
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800241 */
Johannes Berga30e3112010-09-22 18:02:01 +0200242u8 iwl_prep_station(struct iwl_priv *priv, struct iwl_rxon_context *ctx,
243 const u8 *addr, bool is_ap, struct ieee80211_sta *sta)
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800244{
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800245 struct iwl_station_entry *station;
Tomas Winklerc587de02009-06-03 11:44:07 -0700246 int i;
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800247 u8 sta_id = IWL_INVALID_STATION;
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800248
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800249 if (is_ap)
Johannes Berg2995baf2010-08-23 10:46:42 +0200250 sta_id = ctx->ap_sta_id;
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800251 else if (is_broadcast_ether_addr(addr))
Johannes Berga194e322010-08-27 08:53:46 -0700252 sta_id = ctx->bcast_sta_id;
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800253 else
Emmanuel Grumbachd6189122011-08-25 23:10:39 -0700254 for (i = IWL_STA_ID;
255 i < hw_params(priv).max_stations; i++) {
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800256 if (!compare_ether_addr(priv->stations[i].sta.sta.addr,
257 addr)) {
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800258 sta_id = i;
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800259 break;
260 }
261
262 if (!priv->stations[i].used &&
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800263 sta_id == IWL_INVALID_STATION)
264 sta_id = i;
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800265 }
266
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800267 /*
268 * These two conditions have the same outcome, but keep them
269 * separate
270 */
271 if (unlikely(sta_id == IWL_INVALID_STATION))
272 return sta_id;
273
274 /*
275 * uCode is not able to deal with multiple requests to add a
276 * station. Keep track if one is in progress so that we do not send
277 * another.
278 */
279 if (priv->stations[sta_id].used & IWL_STA_UCODE_INPROGRESS) {
280 IWL_DEBUG_INFO(priv, "STA %d already in process of being added.\n",
281 sta_id);
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800282 return sta_id;
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800283 }
284
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800285 if ((priv->stations[sta_id].used & IWL_STA_DRIVER_ACTIVE) &&
286 (priv->stations[sta_id].used & IWL_STA_UCODE_ACTIVE) &&
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800287 !compare_ether_addr(priv->stations[sta_id].sta.sta.addr, addr)) {
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800288 IWL_DEBUG_ASSOC(priv, "STA %d (%pM) already added, not adding again.\n",
289 sta_id, addr);
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800290 return sta_id;
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800291 }
292
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800293 station = &priv->stations[sta_id];
294 station->used = IWL_STA_DRIVER_ACTIVE;
Tomas Winklere1623442009-01-27 14:27:56 -0800295 IWL_DEBUG_ASSOC(priv, "Add STA to driver ID %d: %pM\n",
Johannes Berge1749612008-10-27 15:59:26 -0700296 sta_id, addr);
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800297 priv->num_stations++;
298
299 /* Set up the REPLY_ADD_STA command to send to device */
300 memset(&station->sta, 0, sizeof(struct iwl_addsta_cmd));
301 memcpy(station->sta.sta.addr, addr, ETH_ALEN);
302 station->sta.mode = 0;
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800303 station->sta.sta.sta_id = sta_id;
Johannes Berg770e13b2010-08-23 10:46:44 +0200304 station->sta.station_flags = ctx->station_flags;
Johannes Bergdcef7322010-08-27 08:55:52 -0700305 station->ctxid = ctx->ctxid;
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800306
Johannes Berg238d7812010-08-23 10:46:45 +0200307 if (sta) {
Johannes Bergc6892902011-09-20 15:37:21 -0700308 struct iwl_station_priv *sta_priv;
Johannes Berg238d7812010-08-23 10:46:45 +0200309
310 sta_priv = (void *)sta->drv_priv;
311 sta_priv->ctx = ctx;
312 }
313
Johannes Berg63d41762010-04-30 11:30:50 -0700314 /*
315 * OK to call unconditionally, since local stations (IBSS BSSID
Johannes Berg238d7812010-08-23 10:46:45 +0200316 * STA and broadcast STA) pass in a NULL sta, and mac80211
Johannes Berg63d41762010-04-30 11:30:50 -0700317 * doesn't allow HT IBSS.
318 */
Johannes Berg7e6a5882010-08-23 10:46:46 +0200319 iwl_set_ht_add_station(priv, sta_id, sta, ctx);
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800320
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800321 return sta_id;
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800322
323}
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800324
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800325#define STA_WAIT_TIMEOUT (HZ/2)
326
327/**
328 * iwl_add_station_common -
329 */
Johannes Berga194e322010-08-27 08:53:46 -0700330int iwl_add_station_common(struct iwl_priv *priv, struct iwl_rxon_context *ctx,
331 const u8 *addr, bool is_ap,
Johannes Berg238d7812010-08-23 10:46:45 +0200332 struct ieee80211_sta *sta, u8 *sta_id_r)
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800333{
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800334 unsigned long flags_spin;
335 int ret = 0;
336 u8 sta_id;
Reinette Chatre9c5ac092010-05-05 02:26:06 -0700337 struct iwl_addsta_cmd sta_cmd;
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800338
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800339 *sta_id_r = 0;
Emmanuel Grumbachf39c95e2011-08-25 23:10:47 -0700340 spin_lock_irqsave(&priv->shrd->sta_lock, flags_spin);
Johannes Berg238d7812010-08-23 10:46:45 +0200341 sta_id = iwl_prep_station(priv, ctx, addr, is_ap, sta);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800342 if (sta_id == IWL_INVALID_STATION) {
343 IWL_ERR(priv, "Unable to prepare station %pM for addition\n",
344 addr);
Emmanuel Grumbachf39c95e2011-08-25 23:10:47 -0700345 spin_unlock_irqrestore(&priv->shrd->sta_lock, flags_spin);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800346 return -EINVAL;
347 }
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800348
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800349 /*
350 * uCode is not able to deal with multiple requests to add a
351 * station. Keep track if one is in progress so that we do not send
352 * another.
353 */
354 if (priv->stations[sta_id].used & IWL_STA_UCODE_INPROGRESS) {
355 IWL_DEBUG_INFO(priv, "STA %d already in process of being added.\n",
356 sta_id);
Emmanuel Grumbachf39c95e2011-08-25 23:10:47 -0700357 spin_unlock_irqrestore(&priv->shrd->sta_lock, flags_spin);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800358 return -EEXIST;
359 }
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800360
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800361 if ((priv->stations[sta_id].used & IWL_STA_DRIVER_ACTIVE) &&
362 (priv->stations[sta_id].used & IWL_STA_UCODE_ACTIVE)) {
363 IWL_DEBUG_ASSOC(priv, "STA %d (%pM) already added, not adding again.\n",
364 sta_id, addr);
Emmanuel Grumbachf39c95e2011-08-25 23:10:47 -0700365 spin_unlock_irqrestore(&priv->shrd->sta_lock, flags_spin);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800366 return -EEXIST;
367 }
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800368
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800369 priv->stations[sta_id].used |= IWL_STA_UCODE_INPROGRESS;
Reinette Chatre9c5ac092010-05-05 02:26:06 -0700370 memcpy(&sta_cmd, &priv->stations[sta_id].sta, sizeof(struct iwl_addsta_cmd));
Emmanuel Grumbachf39c95e2011-08-25 23:10:47 -0700371 spin_unlock_irqrestore(&priv->shrd->sta_lock, flags_spin);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800372
373 /* Add station to device's station table */
Reinette Chatre9c5ac092010-05-05 02:26:06 -0700374 ret = iwl_send_add_sta(priv, &sta_cmd, CMD_SYNC);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800375 if (ret) {
Emmanuel Grumbachf39c95e2011-08-25 23:10:47 -0700376 spin_lock_irqsave(&priv->shrd->sta_lock, flags_spin);
Reinette Chatre9c5ac092010-05-05 02:26:06 -0700377 IWL_ERR(priv, "Adding station %pM failed.\n",
378 priv->stations[sta_id].sta.sta.addr);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800379 priv->stations[sta_id].used &= ~IWL_STA_DRIVER_ACTIVE;
380 priv->stations[sta_id].used &= ~IWL_STA_UCODE_INPROGRESS;
Emmanuel Grumbachf39c95e2011-08-25 23:10:47 -0700381 spin_unlock_irqrestore(&priv->shrd->sta_lock, flags_spin);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800382 }
383 *sta_id_r = sta_id;
384 return ret;
385}
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800386
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800387/**
388 * iwl_sta_ucode_deactivate - deactivate ucode status for a station
389 *
Emmanuel Grumbachf39c95e2011-08-25 23:10:47 -0700390 * priv->shrd->sta_lock must be held
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800391 */
392static void iwl_sta_ucode_deactivate(struct iwl_priv *priv, u8 sta_id)
393{
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800394 /* Ucode must be active and driver must be non active */
Reinette Chatred2e210a2010-04-23 10:33:33 -0700395 if ((priv->stations[sta_id].used &
396 (IWL_STA_UCODE_ACTIVE | IWL_STA_DRIVER_ACTIVE)) != IWL_STA_UCODE_ACTIVE)
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800397 IWL_ERR(priv, "removed non active STA %u\n", sta_id);
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800398
399 priv->stations[sta_id].used &= ~IWL_STA_UCODE_ACTIVE;
400
401 memset(&priv->stations[sta_id], 0, sizeof(struct iwl_station_entry));
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800402 IWL_DEBUG_ASSOC(priv, "Removed STA %u\n", sta_id);
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800403}
404
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800405static int iwl_send_remove_station(struct iwl_priv *priv,
Johannes Berg2b5f7a62010-11-10 18:25:48 -0800406 const u8 *addr, int sta_id,
407 bool temporary)
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800408{
Zhu Yi2f301222009-10-09 17:19:45 +0800409 struct iwl_rx_packet *pkt;
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800410 int ret;
411
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800412 unsigned long flags_spin;
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800413 struct iwl_rem_sta_cmd rm_sta_cmd;
414
415 struct iwl_host_cmd cmd = {
416 .id = REPLY_REMOVE_STA,
Johannes Berg3fa50732011-05-04 07:50:38 -0700417 .len = { sizeof(struct iwl_rem_sta_cmd), },
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800418 .flags = CMD_SYNC,
Johannes Berg3fa50732011-05-04 07:50:38 -0700419 .data = { &rm_sta_cmd, },
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800420 };
421
422 memset(&rm_sta_cmd, 0, sizeof(rm_sta_cmd));
423 rm_sta_cmd.num_sta = 1;
Reinette Chatre9c5ac092010-05-05 02:26:06 -0700424 memcpy(&rm_sta_cmd.addr, addr, ETH_ALEN);
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800425
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800426 cmd.flags |= CMD_WANT_SKB;
427
Emmanuel Grumbache6bb4c92011-08-25 23:10:48 -0700428 ret = iwl_trans_send_cmd(trans(priv), &cmd);
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800429
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800430 if (ret)
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800431 return ret;
432
Zhu Yi2f301222009-10-09 17:19:45 +0800433 pkt = (struct iwl_rx_packet *)cmd.reply_page;
434 if (pkt->hdr.flags & IWL_CMD_FAILED_MSK) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800435 IWL_ERR(priv, "Bad return from REPLY_REMOVE_STA (0x%08X)\n",
Zhu Yi2f301222009-10-09 17:19:45 +0800436 pkt->hdr.flags);
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800437 ret = -EIO;
438 }
439
440 if (!ret) {
Zhu Yi2f301222009-10-09 17:19:45 +0800441 switch (pkt->u.rem_sta.status) {
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800442 case REM_STA_SUCCESS_MSK:
Johannes Berg2b5f7a62010-11-10 18:25:48 -0800443 if (!temporary) {
Emmanuel Grumbachf39c95e2011-08-25 23:10:47 -0700444 spin_lock_irqsave(&priv->shrd->sta_lock,
445 flags_spin);
Johannes Berg2b5f7a62010-11-10 18:25:48 -0800446 iwl_sta_ucode_deactivate(priv, sta_id);
Emmanuel Grumbachf39c95e2011-08-25 23:10:47 -0700447 spin_unlock_irqrestore(&priv->shrd->sta_lock,
448 flags_spin);
Johannes Berg2b5f7a62010-11-10 18:25:48 -0800449 }
Tomas Winklere1623442009-01-27 14:27:56 -0800450 IWL_DEBUG_ASSOC(priv, "REPLY_REMOVE_STA PASSED\n");
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800451 break;
452 default:
453 ret = -EIO;
Winkler, Tomas15b16872008-12-19 10:37:33 +0800454 IWL_ERR(priv, "REPLY_REMOVE_STA failed\n");
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800455 break;
456 }
457 }
Emmanuel Grumbach790428b2011-08-25 23:11:05 -0700458 iwl_free_pages(priv->shrd, cmd.reply_page);
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800459
460 return ret;
461}
Emmanuel Grumbachbe1f3ab62008-06-12 09:47:18 +0800462
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800463/**
464 * iwl_remove_station - Remove driver's knowledge of station.
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800465 */
Johannes Bergfd1af152010-04-30 11:30:43 -0700466int iwl_remove_station(struct iwl_priv *priv, const u8 sta_id,
467 const u8 *addr)
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800468{
Johannes Bergfd1af152010-04-30 11:30:43 -0700469 unsigned long flags;
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800470
Emmanuel Grumbach845a9c02011-08-25 23:11:04 -0700471 if (!iwl_is_ready(priv->shrd)) {
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800472 IWL_DEBUG_INFO(priv,
Frans Pop91dd6c22010-03-24 14:19:58 -0700473 "Unable to remove station %pM, device not ready.\n",
Johannes Bergc0222df2010-04-28 08:44:51 -0700474 addr);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800475 /*
476 * It is typical for stations to be removed when we are
477 * going down. Return success since device will be down
478 * soon anyway
479 */
480 return 0;
481 }
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800482
Tomas Winklere1623442009-01-27 14:27:56 -0800483 IWL_DEBUG_ASSOC(priv, "Removing STA from driver:%d %pM\n",
Johannes Bergfd1af152010-04-30 11:30:43 -0700484 sta_id, addr);
485
486 if (WARN_ON(sta_id == IWL_INVALID_STATION))
487 return -EINVAL;
488
Emmanuel Grumbachf39c95e2011-08-25 23:10:47 -0700489 spin_lock_irqsave(&priv->shrd->sta_lock, flags);
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800490
491 if (!(priv->stations[sta_id].used & IWL_STA_DRIVER_ACTIVE)) {
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800492 IWL_DEBUG_INFO(priv, "Removing %pM but non DRIVER active\n",
Johannes Bergc0222df2010-04-28 08:44:51 -0700493 addr);
Johannes Bergfd1af152010-04-30 11:30:43 -0700494 goto out_err;
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800495 }
496
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800497 if (!(priv->stations[sta_id].used & IWL_STA_UCODE_ACTIVE)) {
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800498 IWL_DEBUG_INFO(priv, "Removing %pM but non UCODE active\n",
Johannes Bergc0222df2010-04-28 08:44:51 -0700499 addr);
Johannes Bergfd1af152010-04-30 11:30:43 -0700500 goto out_err;
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800501 }
502
Johannes Berg1fa61b22010-04-28 08:44:52 -0700503 if (priv->stations[sta_id].used & IWL_STA_LOCAL) {
504 kfree(priv->stations[sta_id].lq);
505 priv->stations[sta_id].lq = NULL;
506 }
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800507
508 priv->stations[sta_id].used &= ~IWL_STA_DRIVER_ACTIVE;
509
510 priv->num_stations--;
511
Johannes Berg3e41ace2011-04-18 09:12:37 -0700512 if (WARN_ON(priv->num_stations < 0))
513 priv->num_stations = 0;
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800514
Emmanuel Grumbachf39c95e2011-08-25 23:10:47 -0700515 spin_unlock_irqrestore(&priv->shrd->sta_lock, flags);
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800516
Johannes Berg2b5f7a62010-11-10 18:25:48 -0800517 return iwl_send_remove_station(priv, addr, sta_id, false);
Johannes Bergfd1af152010-04-30 11:30:43 -0700518out_err:
Emmanuel Grumbachf39c95e2011-08-25 23:10:47 -0700519 spin_unlock_irqrestore(&priv->shrd->sta_lock, flags);
Johannes Bergfd1af152010-04-30 11:30:43 -0700520 return -EINVAL;
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800521}
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800522
Winkler, Tomas83dde8c2008-11-19 15:32:23 -0800523/**
Johannes Berg2c810cc2010-04-29 00:53:29 -0700524 * iwl_clear_ucode_stations - clear ucode station table bits
525 *
526 * This function clears all the bits in the driver indicating
527 * which stations are active in the ucode. Call when something
528 * other than explicit station management would cause this in
529 * the ucode, e.g. unassociated RXON.
Winkler, Tomas83dde8c2008-11-19 15:32:23 -0800530 */
Johannes Bergdcef7322010-08-27 08:55:52 -0700531void iwl_clear_ucode_stations(struct iwl_priv *priv,
532 struct iwl_rxon_context *ctx)
Winkler, Tomas83dde8c2008-11-19 15:32:23 -0800533{
Mohamed Abbas48676eb2009-03-11 11:17:59 -0700534 int i;
Reinette Chatre7e246192010-02-18 22:58:32 -0800535 unsigned long flags_spin;
536 bool cleared = false;
Winkler, Tomas83dde8c2008-11-19 15:32:23 -0800537
Johannes Berg2c810cc2010-04-29 00:53:29 -0700538 IWL_DEBUG_INFO(priv, "Clearing ucode stations in driver\n");
Mohamed Abbas48676eb2009-03-11 11:17:59 -0700539
Emmanuel Grumbachf39c95e2011-08-25 23:10:47 -0700540 spin_lock_irqsave(&priv->shrd->sta_lock, flags_spin);
Emmanuel Grumbachd6189122011-08-25 23:10:39 -0700541 for (i = 0; i < hw_params(priv).max_stations; i++) {
Johannes Bergdcef7322010-08-27 08:55:52 -0700542 if (ctx && ctx->ctxid != priv->stations[i].ctxid)
543 continue;
544
Johannes Berg2c810cc2010-04-29 00:53:29 -0700545 if (priv->stations[i].used & IWL_STA_UCODE_ACTIVE) {
546 IWL_DEBUG_INFO(priv, "Clearing ucode active for station %d\n", i);
547 priv->stations[i].used &= ~IWL_STA_UCODE_ACTIVE;
548 cleared = true;
Reinette Chatre7e246192010-02-18 22:58:32 -0800549 }
550 }
Emmanuel Grumbachf39c95e2011-08-25 23:10:47 -0700551 spin_unlock_irqrestore(&priv->shrd->sta_lock, flags_spin);
Reinette Chatre7e246192010-02-18 22:58:32 -0800552
553 if (!cleared)
554 IWL_DEBUG_INFO(priv, "No active stations found to be cleared\n");
Winkler, Tomas83dde8c2008-11-19 15:32:23 -0800555}
Reinette Chatre7e246192010-02-18 22:58:32 -0800556
557/**
558 * iwl_restore_stations() - Restore driver known stations to device
559 *
560 * All stations considered active by driver, but not present in ucode, is
561 * restored.
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800562 *
563 * Function sleeps.
Reinette Chatre7e246192010-02-18 22:58:32 -0800564 */
Johannes Bergdcef7322010-08-27 08:55:52 -0700565void iwl_restore_stations(struct iwl_priv *priv, struct iwl_rxon_context *ctx)
Reinette Chatre7e246192010-02-18 22:58:32 -0800566{
Reinette Chatre9c5ac092010-05-05 02:26:06 -0700567 struct iwl_addsta_cmd sta_cmd;
568 struct iwl_link_quality_cmd lq;
Reinette Chatre7e246192010-02-18 22:58:32 -0800569 unsigned long flags_spin;
570 int i;
571 bool found = false;
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800572 int ret;
Reinette Chatre9c5ac092010-05-05 02:26:06 -0700573 bool send_lq;
Reinette Chatre7e246192010-02-18 22:58:32 -0800574
Emmanuel Grumbach845a9c02011-08-25 23:11:04 -0700575 if (!iwl_is_ready(priv->shrd)) {
Reinette Chatre7e246192010-02-18 22:58:32 -0800576 IWL_DEBUG_INFO(priv, "Not ready yet, not restoring any stations.\n");
577 return;
578 }
579
580 IWL_DEBUG_ASSOC(priv, "Restoring all known stations ... start.\n");
Emmanuel Grumbachf39c95e2011-08-25 23:10:47 -0700581 spin_lock_irqsave(&priv->shrd->sta_lock, flags_spin);
Emmanuel Grumbachd6189122011-08-25 23:10:39 -0700582 for (i = 0; i < hw_params(priv).max_stations; i++) {
Johannes Bergdcef7322010-08-27 08:55:52 -0700583 if (ctx->ctxid != priv->stations[i].ctxid)
584 continue;
Reinette Chatre7e246192010-02-18 22:58:32 -0800585 if ((priv->stations[i].used & IWL_STA_DRIVER_ACTIVE) &&
586 !(priv->stations[i].used & IWL_STA_UCODE_ACTIVE)) {
587 IWL_DEBUG_ASSOC(priv, "Restoring sta %pM\n",
588 priv->stations[i].sta.sta.addr);
589 priv->stations[i].sta.mode = 0;
590 priv->stations[i].used |= IWL_STA_UCODE_INPROGRESS;
591 found = true;
592 }
593 }
594
Emmanuel Grumbachd6189122011-08-25 23:10:39 -0700595 for (i = 0; i < hw_params(priv).max_stations; i++) {
Reinette Chatre7e246192010-02-18 22:58:32 -0800596 if ((priv->stations[i].used & IWL_STA_UCODE_INPROGRESS)) {
Reinette Chatre9c5ac092010-05-05 02:26:06 -0700597 memcpy(&sta_cmd, &priv->stations[i].sta,
598 sizeof(struct iwl_addsta_cmd));
599 send_lq = false;
600 if (priv->stations[i].lq) {
601 memcpy(&lq, priv->stations[i].lq,
602 sizeof(struct iwl_link_quality_cmd));
603 send_lq = true;
604 }
Emmanuel Grumbachf39c95e2011-08-25 23:10:47 -0700605 spin_unlock_irqrestore(&priv->shrd->sta_lock,
606 flags_spin);
Reinette Chatre9c5ac092010-05-05 02:26:06 -0700607 ret = iwl_send_add_sta(priv, &sta_cmd, CMD_SYNC);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800608 if (ret) {
Emmanuel Grumbachf39c95e2011-08-25 23:10:47 -0700609 spin_lock_irqsave(&priv->shrd->sta_lock,
610 flags_spin);
Reinette Chatre9c5ac092010-05-05 02:26:06 -0700611 IWL_ERR(priv, "Adding station %pM failed.\n",
612 priv->stations[i].sta.sta.addr);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800613 priv->stations[i].used &= ~IWL_STA_DRIVER_ACTIVE;
614 priv->stations[i].used &= ~IWL_STA_UCODE_INPROGRESS;
Emmanuel Grumbachf39c95e2011-08-25 23:10:47 -0700615 spin_unlock_irqrestore(&priv->shrd->sta_lock,
616 flags_spin);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800617 }
618 /*
619 * Rate scaling has already been initialized, send
620 * current LQ command
621 */
Reinette Chatre9c5ac092010-05-05 02:26:06 -0700622 if (send_lq)
Johannes Berg7e6a5882010-08-23 10:46:46 +0200623 iwl_send_lq_cmd(priv, ctx, &lq, CMD_SYNC, true);
Emmanuel Grumbachf39c95e2011-08-25 23:10:47 -0700624 spin_lock_irqsave(&priv->shrd->sta_lock, flags_spin);
Reinette Chatre7e246192010-02-18 22:58:32 -0800625 priv->stations[i].used &= ~IWL_STA_UCODE_INPROGRESS;
626 }
627 }
628
Emmanuel Grumbachf39c95e2011-08-25 23:10:47 -0700629 spin_unlock_irqrestore(&priv->shrd->sta_lock, flags_spin);
Reinette Chatre7e246192010-02-18 22:58:32 -0800630 if (!found)
631 IWL_DEBUG_INFO(priv, "Restoring all known stations .... no stations to be restored.\n");
632 else
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800633 IWL_DEBUG_INFO(priv, "Restoring all known stations .... complete.\n");
Reinette Chatre7e246192010-02-18 22:58:32 -0800634}
Winkler, Tomas83dde8c2008-11-19 15:32:23 -0800635
Johannes Berg2b5f7a62010-11-10 18:25:48 -0800636void iwl_reprogram_ap_sta(struct iwl_priv *priv, struct iwl_rxon_context *ctx)
637{
638 unsigned long flags;
639 int sta_id = ctx->ap_sta_id;
640 int ret;
641 struct iwl_addsta_cmd sta_cmd;
642 struct iwl_link_quality_cmd lq;
643 bool active;
644
Emmanuel Grumbachf39c95e2011-08-25 23:10:47 -0700645 spin_lock_irqsave(&priv->shrd->sta_lock, flags);
Johannes Berg2b5f7a62010-11-10 18:25:48 -0800646 if (!(priv->stations[sta_id].used & IWL_STA_DRIVER_ACTIVE)) {
Emmanuel Grumbachf39c95e2011-08-25 23:10:47 -0700647 spin_unlock_irqrestore(&priv->shrd->sta_lock, flags);
Johannes Berg2b5f7a62010-11-10 18:25:48 -0800648 return;
649 }
650
651 memcpy(&sta_cmd, &priv->stations[sta_id].sta, sizeof(sta_cmd));
652 sta_cmd.mode = 0;
653 memcpy(&lq, priv->stations[sta_id].lq, sizeof(lq));
654
655 active = priv->stations[sta_id].used & IWL_STA_UCODE_ACTIVE;
Wey-Yi Guy40b97c22010-11-17 14:17:53 -0800656 priv->stations[sta_id].used &= ~IWL_STA_DRIVER_ACTIVE;
Emmanuel Grumbachf39c95e2011-08-25 23:10:47 -0700657 spin_unlock_irqrestore(&priv->shrd->sta_lock, flags);
Johannes Berg2b5f7a62010-11-10 18:25:48 -0800658
659 if (active) {
660 ret = iwl_send_remove_station(
661 priv, priv->stations[sta_id].sta.sta.addr,
662 sta_id, true);
663 if (ret)
664 IWL_ERR(priv, "failed to remove STA %pM (%d)\n",
665 priv->stations[sta_id].sta.sta.addr, ret);
666 }
Emmanuel Grumbachf39c95e2011-08-25 23:10:47 -0700667 spin_lock_irqsave(&priv->shrd->sta_lock, flags);
Wey-Yi Guy40b97c22010-11-17 14:17:53 -0800668 priv->stations[sta_id].used |= IWL_STA_DRIVER_ACTIVE;
Emmanuel Grumbachf39c95e2011-08-25 23:10:47 -0700669 spin_unlock_irqrestore(&priv->shrd->sta_lock, flags);
Wey-Yi Guy40b97c22010-11-17 14:17:53 -0800670
Johannes Berg2b5f7a62010-11-10 18:25:48 -0800671 ret = iwl_send_add_sta(priv, &sta_cmd, CMD_SYNC);
672 if (ret)
673 IWL_ERR(priv, "failed to re-add STA %pM (%d)\n",
674 priv->stations[sta_id].sta.sta.addr, ret);
675 iwl_send_lq_cmd(priv, ctx, &lq, CMD_SYNC, true);
676}
Johannes Berg2b5f7a62010-11-10 18:25:48 -0800677
Johannes Berg5a3d9882011-07-15 13:03:12 -0700678int iwl_get_free_ucode_key_offset(struct iwl_priv *priv)
Emmanuel Grumbach80fb47a2008-04-14 21:16:08 -0700679{
680 int i;
681
Johannes Bergc10afb62010-08-23 10:46:43 +0200682 for (i = 0; i < priv->sta_key_max_num; i++)
Emmanuel Grumbach77bab602008-04-15 16:01:44 -0700683 if (!test_and_set_bit(i, &priv->ucode_key_table))
Emmanuel Grumbach80fb47a2008-04-14 21:16:08 -0700684 return i;
685
Tomas Winkler40a9a822008-11-25 23:29:03 +0200686 return WEP_INVALID_OFFSET;
Emmanuel Grumbach80fb47a2008-04-14 21:16:08 -0700687}
Emmanuel Grumbach6974e362008-04-14 21:16:06 -0700688
Johannes Berga30e3112010-09-22 18:02:01 +0200689void iwl_dealloc_bcast_stations(struct iwl_priv *priv)
Emmanuel Grumbach6974e362008-04-14 21:16:06 -0700690{
Tomas Winkler9f586712008-11-12 13:14:05 -0800691 unsigned long flags;
Tomas Winkler9f586712008-11-12 13:14:05 -0800692 int i;
Tomas Winkler9f586712008-11-12 13:14:05 -0800693
Emmanuel Grumbachf39c95e2011-08-25 23:10:47 -0700694 spin_lock_irqsave(&priv->shrd->sta_lock, flags);
Emmanuel Grumbachd6189122011-08-25 23:10:39 -0700695 for (i = 0; i < hw_params(priv).max_stations; i++) {
Johannes Berga30e3112010-09-22 18:02:01 +0200696 if (!(priv->stations[i].used & IWL_STA_BCAST))
697 continue;
Tomas Winkler9f586712008-11-12 13:14:05 -0800698
Johannes Berga30e3112010-09-22 18:02:01 +0200699 priv->stations[i].used &= ~IWL_STA_UCODE_ACTIVE;
700 priv->num_stations--;
Johannes Berg3e41ace2011-04-18 09:12:37 -0700701 if (WARN_ON(priv->num_stations < 0))
702 priv->num_stations = 0;
Johannes Berga30e3112010-09-22 18:02:01 +0200703 kfree(priv->stations[i].lq);
704 priv->stations[i].lq = NULL;
705 }
Emmanuel Grumbachf39c95e2011-08-25 23:10:47 -0700706 spin_unlock_irqrestore(&priv->shrd->sta_lock, flags);
Tomas Winkler9f586712008-11-12 13:14:05 -0800707}
Emmanuel Grumbach74805132008-04-14 21:16:09 -0700708
Tomas Winkler66c73db2008-04-15 16:01:40 -0700709#ifdef CONFIG_IWLWIFI_DEBUG
710static void iwl_dump_lq_cmd(struct iwl_priv *priv,
711 struct iwl_link_quality_cmd *lq)
712{
713 int i;
Tomas Winklere1623442009-01-27 14:27:56 -0800714 IWL_DEBUG_RATE(priv, "lq station id 0x%x\n", lq->sta_id);
715 IWL_DEBUG_RATE(priv, "lq ant 0x%X 0x%X\n",
Tomas Winkler66c73db2008-04-15 16:01:40 -0700716 lq->general_params.single_stream_ant_msk,
717 lq->general_params.dual_stream_ant_msk);
718
719 for (i = 0; i < LINK_QUAL_MAX_RETRY_NUM; i++)
Tomas Winklere1623442009-01-27 14:27:56 -0800720 IWL_DEBUG_RATE(priv, "lq index %d 0x%X\n",
Tomas Winkler66c73db2008-04-15 16:01:40 -0700721 i, lq->rs_table[i].rate_n_flags);
722}
723#else
724static inline void iwl_dump_lq_cmd(struct iwl_priv *priv,
725 struct iwl_link_quality_cmd *lq)
726{
727}
728#endif
729
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800730/**
Reinette Chatre3bce6062010-04-13 16:11:19 -0700731 * is_lq_table_valid() - Test one aspect of LQ cmd for validity
732 *
733 * It sometimes happens when a HT rate has been in use and we
734 * loose connectivity with AP then mac80211 will first tell us that the
735 * current channel is not HT anymore before removing the station. In such a
736 * scenario the RXON flags will be updated to indicate we are not
737 * communicating HT anymore, but the LQ command may still contain HT rates.
738 * Test for this to prevent driver from sending LQ command between the time
739 * RXON flags are updated and when LQ command is updated.
740 */
741static bool is_lq_table_valid(struct iwl_priv *priv,
Johannes Berg7e6a5882010-08-23 10:46:46 +0200742 struct iwl_rxon_context *ctx,
Reinette Chatre3bce6062010-04-13 16:11:19 -0700743 struct iwl_link_quality_cmd *lq)
744{
745 int i;
Reinette Chatre3bce6062010-04-13 16:11:19 -0700746
Johannes Berg7e6a5882010-08-23 10:46:46 +0200747 if (ctx->ht.enabled)
Reinette Chatre3bce6062010-04-13 16:11:19 -0700748 return true;
749
750 IWL_DEBUG_INFO(priv, "Channel %u is not an HT channel\n",
Johannes Berg246ed352010-08-23 10:46:32 +0200751 ctx->active.channel);
Reinette Chatre3bce6062010-04-13 16:11:19 -0700752 for (i = 0; i < LINK_QUAL_MAX_RETRY_NUM; i++) {
753 if (le32_to_cpu(lq->rs_table[i].rate_n_flags) & RATE_MCS_HT_MSK) {
754 IWL_DEBUG_INFO(priv,
755 "index %d of LQ expects HT channel\n",
756 i);
757 return false;
758 }
759 }
760 return true;
761}
762
763/**
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800764 * iwl_send_lq_cmd() - Send link quality command
765 * @init: This command is sent as part of station initialization right
766 * after station has been added.
767 *
768 * The link quality command is sent as the last step of station creation.
769 * This is the special case in which init is set and we call a callback in
770 * this case to clear the state indicating that station creation is in
771 * progress.
772 */
Johannes Berg7e6a5882010-08-23 10:46:46 +0200773int iwl_send_lq_cmd(struct iwl_priv *priv, struct iwl_rxon_context *ctx,
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800774 struct iwl_link_quality_cmd *lq, u8 flags, bool init)
Tomas Winkler66c73db2008-04-15 16:01:40 -0700775{
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800776 int ret = 0;
777 unsigned long flags_spin;
778
Tomas Winkler66c73db2008-04-15 16:01:40 -0700779 struct iwl_host_cmd cmd = {
780 .id = REPLY_TX_LINK_QUALITY_CMD,
Johannes Berg3fa50732011-05-04 07:50:38 -0700781 .len = { sizeof(struct iwl_link_quality_cmd), },
Johannes Bergc2acea82009-07-24 11:13:05 -0700782 .flags = flags,
Johannes Berg3fa50732011-05-04 07:50:38 -0700783 .data = { lq, },
Tomas Winkler66c73db2008-04-15 16:01:40 -0700784 };
785
Johannes Berg76c3c692010-03-30 02:46:29 -0700786 if (WARN_ON(lq->sta_id == IWL_INVALID_STATION))
Tomas Winkler66c73db2008-04-15 16:01:40 -0700787 return -EINVAL;
788
Wey-Yi Guy40b97c22010-11-17 14:17:53 -0800789
Emmanuel Grumbachf39c95e2011-08-25 23:10:47 -0700790 spin_lock_irqsave(&priv->shrd->sta_lock, flags_spin);
Wey-Yi Guy40b97c22010-11-17 14:17:53 -0800791 if (!(priv->stations[lq->sta_id].used & IWL_STA_DRIVER_ACTIVE)) {
Emmanuel Grumbachf39c95e2011-08-25 23:10:47 -0700792 spin_unlock_irqrestore(&priv->shrd->sta_lock, flags_spin);
Wey-Yi Guy40b97c22010-11-17 14:17:53 -0800793 return -EINVAL;
794 }
Emmanuel Grumbachf39c95e2011-08-25 23:10:47 -0700795 spin_unlock_irqrestore(&priv->shrd->sta_lock, flags_spin);
Wey-Yi Guy40b97c22010-11-17 14:17:53 -0800796
Tomas Winkler3ac7f142008-07-21 02:40:14 +0300797 iwl_dump_lq_cmd(priv, lq);
Johannes Berg3e41ace2011-04-18 09:12:37 -0700798 if (WARN_ON(init && (cmd.flags & CMD_ASYNC)))
799 return -EINVAL;
Tomas Winkler66c73db2008-04-15 16:01:40 -0700800
Johannes Berg7e6a5882010-08-23 10:46:46 +0200801 if (is_lq_table_valid(priv, ctx, lq))
Emmanuel Grumbache6bb4c92011-08-25 23:10:48 -0700802 ret = iwl_trans_send_cmd(trans(priv), &cmd);
Reinette Chatre3bce6062010-04-13 16:11:19 -0700803 else
804 ret = -EINVAL;
Reinette Chatred2e210a2010-04-23 10:33:33 -0700805
806 if (cmd.flags & CMD_ASYNC)
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800807 return ret;
Tomas Winkler66c73db2008-04-15 16:01:40 -0700808
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800809 if (init) {
Frans Pop91dd6c22010-03-24 14:19:58 -0700810 IWL_DEBUG_INFO(priv, "init LQ command complete, clearing sta addition status for sta %d\n",
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800811 lq->sta_id);
Emmanuel Grumbachf39c95e2011-08-25 23:10:47 -0700812 spin_lock_irqsave(&priv->shrd->sta_lock, flags_spin);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800813 priv->stations[lq->sta_id].used &= ~IWL_STA_UCODE_INPROGRESS;
Emmanuel Grumbachf39c95e2011-08-25 23:10:47 -0700814 spin_unlock_irqrestore(&priv->shrd->sta_lock, flags_spin);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800815 }
Reinette Chatred2e210a2010-04-23 10:33:33 -0700816 return ret;
Tomas Winkler66c73db2008-04-15 16:01:40 -0700817}
Tomas Winkler66c73db2008-04-15 16:01:40 -0700818
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800819int iwl_mac_sta_remove(struct ieee80211_hw *hw,
Johannes Bergfd1af152010-04-30 11:30:43 -0700820 struct ieee80211_vif *vif,
821 struct ieee80211_sta *sta)
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800822{
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800823 struct iwl_priv *priv = hw->priv;
Johannes Bergc6892902011-09-20 15:37:21 -0700824 struct iwl_station_priv *sta_priv = (void *)sta->drv_priv;
Johannes Bergfd1af152010-04-30 11:30:43 -0700825 int ret;
826
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800827 IWL_DEBUG_INFO(priv, "received request to remove station %pM\n",
828 sta->addr);
Emmanuel Grumbach6ac2f832011-08-25 23:10:44 -0700829 mutex_lock(&priv->shrd->mutex);
Reinette Chatreda5ae1c2010-05-28 09:28:39 -0700830 IWL_DEBUG_INFO(priv, "proceeding to remove station %pM\n",
831 sta->addr);
Johannes Bergc6892902011-09-20 15:37:21 -0700832 ret = iwl_remove_station(priv, sta_priv->sta_id, sta->addr);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800833 if (ret)
834 IWL_ERR(priv, "Error removing station %pM\n",
835 sta->addr);
Emmanuel Grumbach6ac2f832011-08-25 23:10:44 -0700836 mutex_unlock(&priv->shrd->mutex);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800837 return ret;
838}