blob: 580a4d702ff3c019ef7c84880ae080f272eae3eb [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,
Emmanuel Grumbach247c61d2011-09-20 15:37:23 -070062 struct iwl_rx_packet *pkt)
Reinette Chatre1fa97aa2010-01-22 14:22:48 -080063{
64 u8 sta_id = addsta->sta.sta_id;
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +080065 unsigned long flags;
Johannes Berg09034cb2010-06-14 08:32:38 -070066 int ret = -EIO;
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +080067
Reinette Chatre1fa97aa2010-01-22 14:22:48 -080068 if (pkt->hdr.flags & IWL_CMD_FAILED_MSK) {
69 IWL_ERR(priv, "Bad return from REPLY_ADD_STA (0x%08X)\n",
70 pkt->hdr.flags);
Johannes Berg09034cb2010-06-14 08:32:38 -070071 return ret;
Reinette Chatre1fa97aa2010-01-22 14:22:48 -080072 }
73
74 IWL_DEBUG_INFO(priv, "Processing response for adding station %u\n",
75 sta_id);
76
Emmanuel Grumbachf39c95e2011-08-25 23:10:47 -070077 spin_lock_irqsave(&priv->shrd->sta_lock, flags);
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +080078
Reinette Chatre1fa97aa2010-01-22 14:22:48 -080079 switch (pkt->u.add_sta.status) {
80 case ADD_STA_SUCCESS_MSK:
81 IWL_DEBUG_INFO(priv, "REPLY_ADD_STA PASSED\n");
82 iwl_sta_ucode_activate(priv, sta_id);
Johannes Berg09034cb2010-06-14 08:32:38 -070083 ret = 0;
Reinette Chatre1fa97aa2010-01-22 14:22:48 -080084 break;
85 case ADD_STA_NO_ROOM_IN_TABLE:
86 IWL_ERR(priv, "Adding station %d failed, no room in table.\n",
Winkler, Tomas15b16872008-12-19 10:37:33 +080087 sta_id);
Reinette Chatre1fa97aa2010-01-22 14:22:48 -080088 break;
89 case ADD_STA_NO_BLOCK_ACK_RESOURCE:
90 IWL_ERR(priv, "Adding station %d failed, no block ack resource.\n",
91 sta_id);
92 break;
93 case ADD_STA_MODIFY_NON_EXIST_STA:
Frans Pop91dd6c22010-03-24 14:19:58 -070094 IWL_ERR(priv, "Attempting to modify non-existing station %d\n",
Reinette Chatre1fa97aa2010-01-22 14:22:48 -080095 sta_id);
96 break;
97 default:
98 IWL_DEBUG_ASSOC(priv, "Received REPLY_ADD_STA:(0x%08X)\n",
99 pkt->u.add_sta.status);
100 break;
101 }
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800102
Reinette Chatre1fa97aa2010-01-22 14:22:48 -0800103 IWL_DEBUG_INFO(priv, "%s station id %u addr %pM\n",
104 priv->stations[sta_id].sta.mode ==
105 STA_CONTROL_MODIFY_MSK ? "Modified" : "Added",
106 sta_id, priv->stations[sta_id].sta.sta.addr);
107
108 /*
109 * XXX: The MAC address in the command buffer is often changed from
110 * the original sent to the device. That is, the MAC address
Uwe Kleine-Königb5950762010-11-01 15:38:34 -0400111 * written to the command buffer often is not the same MAC address
Reinette Chatre1fa97aa2010-01-22 14:22:48 -0800112 * read from the command buffer when the command returns. This
113 * issue has not yet been resolved and this debugging is left to
114 * observe the problem.
115 */
116 IWL_DEBUG_INFO(priv, "%s station according to cmd buffer %pM\n",
117 priv->stations[sta_id].sta.mode ==
118 STA_CONTROL_MODIFY_MSK ? "Modified" : "Added",
119 addsta->sta.addr);
Emmanuel Grumbachf39c95e2011-08-25 23:10:47 -0700120 spin_unlock_irqrestore(&priv->shrd->sta_lock, flags);
Johannes Berg09034cb2010-06-14 08:32:38 -0700121
122 return ret;
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800123}
124
Emmanuel Grumbach247c61d2011-09-20 15:37:23 -0700125int iwl_add_sta_callback(struct iwl_priv *priv, struct iwl_rx_mem_buffer *rxb,
126 struct iwl_device_cmd *cmd)
Tomas Winkler42132bc2008-05-29 16:35:03 +0800127{
Emmanuel Grumbach247c61d2011-09-20 15:37:23 -0700128 struct iwl_rx_packet *pkt = rxb_addr(rxb);
Tomas Winkler3257e5d2008-10-14 12:32:43 -0700129 struct iwl_addsta_cmd *addsta =
Emmanuel Grumbach132f98c2011-09-20 15:37:24 -0700130 (struct iwl_addsta_cmd *) cmd->payload;
Tomas Winkler42132bc2008-05-29 16:35:03 +0800131
Emmanuel Grumbach247c61d2011-09-20 15:37:23 -0700132 return iwl_process_add_sta_resp(priv, addsta, pkt);
Tomas Winkler42132bc2008-05-29 16:35:03 +0800133}
134
Don Fry5c3d29f2011-07-08 08:46:29 -0700135static u16 iwlagn_build_addsta_hcmd(const struct iwl_addsta_cmd *cmd, u8 *data)
136{
137 u16 size = (u16)sizeof(struct iwl_addsta_cmd);
138 struct iwl_addsta_cmd *addsta = (struct iwl_addsta_cmd *)data;
139 memcpy(addsta, cmd, size);
140 /* resrved in 5000 */
141 addsta->rate_n_flags = cpu_to_le16(0);
142 return size;
143}
144
Samuel Ortiz17f841c2009-01-23 13:45:20 -0800145int iwl_send_add_sta(struct iwl_priv *priv,
Tomas Winkler133636d2008-05-05 10:22:34 +0800146 struct iwl_addsta_cmd *sta, u8 flags)
147{
Tomas Winkler133636d2008-05-05 10:22:34 +0800148 int ret = 0;
149 u8 data[sizeof(*sta)];
150 struct iwl_host_cmd cmd = {
151 .id = REPLY_ADD_STA,
Johannes Bergc2acea82009-07-24 11:13:05 -0700152 .flags = flags,
Johannes Berg3fa50732011-05-04 07:50:38 -0700153 .data = { data, },
Tomas Winkler133636d2008-05-05 10:22:34 +0800154 };
Reinette Chatref875f512010-04-05 10:43:10 -0700155 u8 sta_id __maybe_unused = sta->sta.sta_id;
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800156
157 IWL_DEBUG_INFO(priv, "Adding sta %u (%pM) %ssynchronously\n",
158 sta_id, sta->sta.addr, flags & CMD_ASYNC ? "a" : "");
Tomas Winkler133636d2008-05-05 10:22:34 +0800159
Emmanuel Grumbach247c61d2011-09-20 15:37:23 -0700160 if (!(flags & CMD_ASYNC)) {
Johannes Bergc2acea82009-07-24 11:13:05 -0700161 cmd.flags |= CMD_WANT_SKB;
Johannes Berg4620fef2010-06-16 03:30:27 -0700162 might_sleep();
163 }
Tomas Winkler133636d2008-05-05 10:22:34 +0800164
Don Fry5c3d29f2011-07-08 08:46:29 -0700165 cmd.len[0] = iwlagn_build_addsta_hcmd(sta, data);
Emmanuel Grumbache6bb4c92011-08-25 23:10:48 -0700166 ret = iwl_trans_send_cmd(trans(priv), &cmd);
Tomas Winkler133636d2008-05-05 10:22:34 +0800167
168 if (ret || (flags & CMD_ASYNC))
169 return ret;
Emmanuel Grumbach247c61d2011-09-20 15:37:23 -0700170 /*else the command was successfully sent in SYNC mode, need to free
171 * the reply page */
Tomas Winkler133636d2008-05-05 10:22:34 +0800172
Emmanuel Grumbach790428b2011-08-25 23:11:05 -0700173 iwl_free_pages(priv->shrd, cmd.reply_page);
Tomas Winkler133636d2008-05-05 10:22:34 +0800174
Emmanuel Grumbach247c61d2011-09-20 15:37:23 -0700175 if (cmd.handler_status)
176 IWL_ERR(priv, "%s - error in the CMD response %d", __func__,
177 cmd.handler_status);
178
179 return cmd.handler_status;
Tomas Winkler133636d2008-05-05 10:22:34 +0800180}
Tomas Winkler947b13a2008-04-16 16:34:48 -0700181
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800182static void iwl_set_ht_add_station(struct iwl_priv *priv, u8 index,
Johannes Berg7e6a5882010-08-23 10:46:46 +0200183 struct ieee80211_sta *sta,
184 struct iwl_rxon_context *ctx)
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800185{
Johannes Berg238d7812010-08-23 10:46:45 +0200186 struct ieee80211_sta_ht_cap *sta_ht_inf = &sta->ht_cap;
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800187 __le32 sta_flags;
188 u8 mimo_ps_mode;
189
Johannes Berg238d7812010-08-23 10:46:45 +0200190 if (!sta || !sta_ht_inf->ht_supported)
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800191 goto done;
192
Tomas Winkler00c5ae22008-09-03 11:26:42 +0800193 mimo_ps_mode = (sta_ht_inf->cap & IEEE80211_HT_CAP_SM_PS) >> 2;
Wey-Yi Guy3f3e0372009-10-30 14:36:17 -0700194 IWL_DEBUG_ASSOC(priv, "spatial multiplexing power save mode: %s\n",
195 (mimo_ps_mode == WLAN_HT_CAP_SM_PS_STATIC) ?
196 "static" :
197 (mimo_ps_mode == WLAN_HT_CAP_SM_PS_DYNAMIC) ?
198 "dynamic" : "disabled");
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800199
200 sta_flags = priv->stations[index].sta.station_flags;
201
202 sta_flags &= ~(STA_FLG_RTS_MIMO_PROT_MSK | STA_FLG_MIMO_DIS_MSK);
203
204 switch (mimo_ps_mode) {
Tomas Winkler00c5ae22008-09-03 11:26:42 +0800205 case WLAN_HT_CAP_SM_PS_STATIC:
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800206 sta_flags |= STA_FLG_MIMO_DIS_MSK;
207 break;
Tomas Winkler00c5ae22008-09-03 11:26:42 +0800208 case WLAN_HT_CAP_SM_PS_DYNAMIC:
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800209 sta_flags |= STA_FLG_RTS_MIMO_PROT_MSK;
210 break;
Tomas Winkler00c5ae22008-09-03 11:26:42 +0800211 case WLAN_HT_CAP_SM_PS_DISABLED:
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800212 break;
213 default:
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800214 IWL_WARN(priv, "Invalid MIMO PS mode %d\n", mimo_ps_mode);
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800215 break;
216 }
217
218 sta_flags |= cpu_to_le32(
219 (u32)sta_ht_inf->ampdu_factor << STA_FLG_MAX_AGG_SIZE_POS);
220
221 sta_flags |= cpu_to_le32(
222 (u32)sta_ht_inf->ampdu_density << STA_FLG_AGG_MPDU_DENSITY_POS);
223
Johannes Berg7e6a5882010-08-23 10:46:46 +0200224 if (iwl_is_ht40_tx_allowed(priv, ctx, &sta->ht_cap))
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700225 sta_flags |= STA_FLG_HT40_EN_MSK;
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800226 else
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700227 sta_flags &= ~STA_FLG_HT40_EN_MSK;
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800228
229 priv->stations[index].sta.station_flags = sta_flags;
230 done:
231 return;
232}
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800233
234/**
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800235 * iwl_prep_station - Prepare station information for addition
236 *
237 * should be called with sta_lock held
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800238 */
Johannes Berga30e3112010-09-22 18:02:01 +0200239u8 iwl_prep_station(struct iwl_priv *priv, struct iwl_rxon_context *ctx,
240 const u8 *addr, bool is_ap, struct ieee80211_sta *sta)
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800241{
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800242 struct iwl_station_entry *station;
Tomas Winklerc587de02009-06-03 11:44:07 -0700243 int i;
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800244 u8 sta_id = IWL_INVALID_STATION;
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800245
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800246 if (is_ap)
Johannes Berg2995baf2010-08-23 10:46:42 +0200247 sta_id = ctx->ap_sta_id;
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800248 else if (is_broadcast_ether_addr(addr))
Johannes Berga194e322010-08-27 08:53:46 -0700249 sta_id = ctx->bcast_sta_id;
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800250 else
Emmanuel Grumbachd6189122011-08-25 23:10:39 -0700251 for (i = IWL_STA_ID;
252 i < hw_params(priv).max_stations; i++) {
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800253 if (!compare_ether_addr(priv->stations[i].sta.sta.addr,
254 addr)) {
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800255 sta_id = i;
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800256 break;
257 }
258
259 if (!priv->stations[i].used &&
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800260 sta_id == IWL_INVALID_STATION)
261 sta_id = i;
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800262 }
263
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800264 /*
265 * These two conditions have the same outcome, but keep them
266 * separate
267 */
268 if (unlikely(sta_id == IWL_INVALID_STATION))
269 return sta_id;
270
271 /*
272 * uCode is not able to deal with multiple requests to add a
273 * station. Keep track if one is in progress so that we do not send
274 * another.
275 */
276 if (priv->stations[sta_id].used & IWL_STA_UCODE_INPROGRESS) {
277 IWL_DEBUG_INFO(priv, "STA %d already in process of being added.\n",
278 sta_id);
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800279 return sta_id;
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800280 }
281
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800282 if ((priv->stations[sta_id].used & IWL_STA_DRIVER_ACTIVE) &&
283 (priv->stations[sta_id].used & IWL_STA_UCODE_ACTIVE) &&
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800284 !compare_ether_addr(priv->stations[sta_id].sta.sta.addr, addr)) {
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800285 IWL_DEBUG_ASSOC(priv, "STA %d (%pM) already added, not adding again.\n",
286 sta_id, addr);
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800287 return sta_id;
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800288 }
289
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800290 station = &priv->stations[sta_id];
291 station->used = IWL_STA_DRIVER_ACTIVE;
Tomas Winklere1623442009-01-27 14:27:56 -0800292 IWL_DEBUG_ASSOC(priv, "Add STA to driver ID %d: %pM\n",
Johannes Berge1749612008-10-27 15:59:26 -0700293 sta_id, addr);
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800294 priv->num_stations++;
295
296 /* Set up the REPLY_ADD_STA command to send to device */
297 memset(&station->sta, 0, sizeof(struct iwl_addsta_cmd));
298 memcpy(station->sta.sta.addr, addr, ETH_ALEN);
299 station->sta.mode = 0;
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800300 station->sta.sta.sta_id = sta_id;
Johannes Berg770e13b2010-08-23 10:46:44 +0200301 station->sta.station_flags = ctx->station_flags;
Johannes Bergdcef7322010-08-27 08:55:52 -0700302 station->ctxid = ctx->ctxid;
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800303
Johannes Berg238d7812010-08-23 10:46:45 +0200304 if (sta) {
Johannes Bergc6892902011-09-20 15:37:21 -0700305 struct iwl_station_priv *sta_priv;
Johannes Berg238d7812010-08-23 10:46:45 +0200306
307 sta_priv = (void *)sta->drv_priv;
308 sta_priv->ctx = ctx;
309 }
310
Johannes Berg63d41762010-04-30 11:30:50 -0700311 /*
312 * OK to call unconditionally, since local stations (IBSS BSSID
Johannes Berg238d7812010-08-23 10:46:45 +0200313 * STA and broadcast STA) pass in a NULL sta, and mac80211
Johannes Berg63d41762010-04-30 11:30:50 -0700314 * doesn't allow HT IBSS.
315 */
Johannes Berg7e6a5882010-08-23 10:46:46 +0200316 iwl_set_ht_add_station(priv, sta_id, sta, ctx);
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800317
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800318 return sta_id;
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800319
320}
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800321
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800322#define STA_WAIT_TIMEOUT (HZ/2)
323
324/**
325 * iwl_add_station_common -
326 */
Johannes Berga194e322010-08-27 08:53:46 -0700327int iwl_add_station_common(struct iwl_priv *priv, struct iwl_rxon_context *ctx,
328 const u8 *addr, bool is_ap,
Johannes Berg238d7812010-08-23 10:46:45 +0200329 struct ieee80211_sta *sta, u8 *sta_id_r)
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800330{
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800331 unsigned long flags_spin;
332 int ret = 0;
333 u8 sta_id;
Reinette Chatre9c5ac092010-05-05 02:26:06 -0700334 struct iwl_addsta_cmd sta_cmd;
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800335
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800336 *sta_id_r = 0;
Emmanuel Grumbachf39c95e2011-08-25 23:10:47 -0700337 spin_lock_irqsave(&priv->shrd->sta_lock, flags_spin);
Johannes Berg238d7812010-08-23 10:46:45 +0200338 sta_id = iwl_prep_station(priv, ctx, addr, is_ap, sta);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800339 if (sta_id == IWL_INVALID_STATION) {
340 IWL_ERR(priv, "Unable to prepare station %pM for addition\n",
341 addr);
Emmanuel Grumbachf39c95e2011-08-25 23:10:47 -0700342 spin_unlock_irqrestore(&priv->shrd->sta_lock, flags_spin);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800343 return -EINVAL;
344 }
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800345
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800346 /*
347 * uCode is not able to deal with multiple requests to add a
348 * station. Keep track if one is in progress so that we do not send
349 * another.
350 */
351 if (priv->stations[sta_id].used & IWL_STA_UCODE_INPROGRESS) {
352 IWL_DEBUG_INFO(priv, "STA %d already in process of being added.\n",
353 sta_id);
Emmanuel Grumbachf39c95e2011-08-25 23:10:47 -0700354 spin_unlock_irqrestore(&priv->shrd->sta_lock, flags_spin);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800355 return -EEXIST;
356 }
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800357
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800358 if ((priv->stations[sta_id].used & IWL_STA_DRIVER_ACTIVE) &&
359 (priv->stations[sta_id].used & IWL_STA_UCODE_ACTIVE)) {
360 IWL_DEBUG_ASSOC(priv, "STA %d (%pM) already added, not adding again.\n",
361 sta_id, addr);
Emmanuel Grumbachf39c95e2011-08-25 23:10:47 -0700362 spin_unlock_irqrestore(&priv->shrd->sta_lock, flags_spin);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800363 return -EEXIST;
364 }
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800365
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800366 priv->stations[sta_id].used |= IWL_STA_UCODE_INPROGRESS;
Reinette Chatre9c5ac092010-05-05 02:26:06 -0700367 memcpy(&sta_cmd, &priv->stations[sta_id].sta, sizeof(struct iwl_addsta_cmd));
Emmanuel Grumbachf39c95e2011-08-25 23:10:47 -0700368 spin_unlock_irqrestore(&priv->shrd->sta_lock, flags_spin);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800369
370 /* Add station to device's station table */
Reinette Chatre9c5ac092010-05-05 02:26:06 -0700371 ret = iwl_send_add_sta(priv, &sta_cmd, CMD_SYNC);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800372 if (ret) {
Emmanuel Grumbachf39c95e2011-08-25 23:10:47 -0700373 spin_lock_irqsave(&priv->shrd->sta_lock, flags_spin);
Reinette Chatre9c5ac092010-05-05 02:26:06 -0700374 IWL_ERR(priv, "Adding station %pM failed.\n",
375 priv->stations[sta_id].sta.sta.addr);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800376 priv->stations[sta_id].used &= ~IWL_STA_DRIVER_ACTIVE;
377 priv->stations[sta_id].used &= ~IWL_STA_UCODE_INPROGRESS;
Emmanuel Grumbachf39c95e2011-08-25 23:10:47 -0700378 spin_unlock_irqrestore(&priv->shrd->sta_lock, flags_spin);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800379 }
380 *sta_id_r = sta_id;
381 return ret;
382}
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800383
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800384/**
385 * iwl_sta_ucode_deactivate - deactivate ucode status for a station
386 *
Emmanuel Grumbachf39c95e2011-08-25 23:10:47 -0700387 * priv->shrd->sta_lock must be held
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800388 */
389static void iwl_sta_ucode_deactivate(struct iwl_priv *priv, u8 sta_id)
390{
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800391 /* Ucode must be active and driver must be non active */
Reinette Chatred2e210a2010-04-23 10:33:33 -0700392 if ((priv->stations[sta_id].used &
393 (IWL_STA_UCODE_ACTIVE | IWL_STA_DRIVER_ACTIVE)) != IWL_STA_UCODE_ACTIVE)
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800394 IWL_ERR(priv, "removed non active STA %u\n", sta_id);
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800395
396 priv->stations[sta_id].used &= ~IWL_STA_UCODE_ACTIVE;
397
398 memset(&priv->stations[sta_id], 0, sizeof(struct iwl_station_entry));
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800399 IWL_DEBUG_ASSOC(priv, "Removed STA %u\n", sta_id);
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800400}
401
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800402static int iwl_send_remove_station(struct iwl_priv *priv,
Johannes Berg2b5f7a62010-11-10 18:25:48 -0800403 const u8 *addr, int sta_id,
404 bool temporary)
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800405{
Zhu Yi2f301222009-10-09 17:19:45 +0800406 struct iwl_rx_packet *pkt;
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800407 int ret;
408
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800409 unsigned long flags_spin;
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800410 struct iwl_rem_sta_cmd rm_sta_cmd;
411
412 struct iwl_host_cmd cmd = {
413 .id = REPLY_REMOVE_STA,
Johannes Berg3fa50732011-05-04 07:50:38 -0700414 .len = { sizeof(struct iwl_rem_sta_cmd), },
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800415 .flags = CMD_SYNC,
Johannes Berg3fa50732011-05-04 07:50:38 -0700416 .data = { &rm_sta_cmd, },
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800417 };
418
419 memset(&rm_sta_cmd, 0, sizeof(rm_sta_cmd));
420 rm_sta_cmd.num_sta = 1;
Reinette Chatre9c5ac092010-05-05 02:26:06 -0700421 memcpy(&rm_sta_cmd.addr, addr, ETH_ALEN);
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800422
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800423 cmd.flags |= CMD_WANT_SKB;
424
Emmanuel Grumbache6bb4c92011-08-25 23:10:48 -0700425 ret = iwl_trans_send_cmd(trans(priv), &cmd);
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800426
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800427 if (ret)
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800428 return ret;
429
Zhu Yi2f301222009-10-09 17:19:45 +0800430 pkt = (struct iwl_rx_packet *)cmd.reply_page;
431 if (pkt->hdr.flags & IWL_CMD_FAILED_MSK) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800432 IWL_ERR(priv, "Bad return from REPLY_REMOVE_STA (0x%08X)\n",
Zhu Yi2f301222009-10-09 17:19:45 +0800433 pkt->hdr.flags);
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800434 ret = -EIO;
435 }
436
437 if (!ret) {
Zhu Yi2f301222009-10-09 17:19:45 +0800438 switch (pkt->u.rem_sta.status) {
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800439 case REM_STA_SUCCESS_MSK:
Johannes Berg2b5f7a62010-11-10 18:25:48 -0800440 if (!temporary) {
Emmanuel Grumbachf39c95e2011-08-25 23:10:47 -0700441 spin_lock_irqsave(&priv->shrd->sta_lock,
442 flags_spin);
Johannes Berg2b5f7a62010-11-10 18:25:48 -0800443 iwl_sta_ucode_deactivate(priv, sta_id);
Emmanuel Grumbachf39c95e2011-08-25 23:10:47 -0700444 spin_unlock_irqrestore(&priv->shrd->sta_lock,
445 flags_spin);
Johannes Berg2b5f7a62010-11-10 18:25:48 -0800446 }
Tomas Winklere1623442009-01-27 14:27:56 -0800447 IWL_DEBUG_ASSOC(priv, "REPLY_REMOVE_STA PASSED\n");
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800448 break;
449 default:
450 ret = -EIO;
Winkler, Tomas15b16872008-12-19 10:37:33 +0800451 IWL_ERR(priv, "REPLY_REMOVE_STA failed\n");
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800452 break;
453 }
454 }
Emmanuel Grumbach790428b2011-08-25 23:11:05 -0700455 iwl_free_pages(priv->shrd, cmd.reply_page);
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800456
457 return ret;
458}
Emmanuel Grumbachbe1f3ab62008-06-12 09:47:18 +0800459
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800460/**
461 * iwl_remove_station - Remove driver's knowledge of station.
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800462 */
Johannes Bergfd1af152010-04-30 11:30:43 -0700463int iwl_remove_station(struct iwl_priv *priv, const u8 sta_id,
464 const u8 *addr)
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800465{
Johannes Bergfd1af152010-04-30 11:30:43 -0700466 unsigned long flags;
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800467
Emmanuel Grumbach845a9c02011-08-25 23:11:04 -0700468 if (!iwl_is_ready(priv->shrd)) {
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800469 IWL_DEBUG_INFO(priv,
Frans Pop91dd6c22010-03-24 14:19:58 -0700470 "Unable to remove station %pM, device not ready.\n",
Johannes Bergc0222df2010-04-28 08:44:51 -0700471 addr);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800472 /*
473 * It is typical for stations to be removed when we are
474 * going down. Return success since device will be down
475 * soon anyway
476 */
477 return 0;
478 }
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800479
Tomas Winklere1623442009-01-27 14:27:56 -0800480 IWL_DEBUG_ASSOC(priv, "Removing STA from driver:%d %pM\n",
Johannes Bergfd1af152010-04-30 11:30:43 -0700481 sta_id, addr);
482
483 if (WARN_ON(sta_id == IWL_INVALID_STATION))
484 return -EINVAL;
485
Emmanuel Grumbachf39c95e2011-08-25 23:10:47 -0700486 spin_lock_irqsave(&priv->shrd->sta_lock, flags);
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800487
488 if (!(priv->stations[sta_id].used & IWL_STA_DRIVER_ACTIVE)) {
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800489 IWL_DEBUG_INFO(priv, "Removing %pM but non DRIVER active\n",
Johannes Bergc0222df2010-04-28 08:44:51 -0700490 addr);
Johannes Bergfd1af152010-04-30 11:30:43 -0700491 goto out_err;
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800492 }
493
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800494 if (!(priv->stations[sta_id].used & IWL_STA_UCODE_ACTIVE)) {
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800495 IWL_DEBUG_INFO(priv, "Removing %pM but non UCODE active\n",
Johannes Bergc0222df2010-04-28 08:44:51 -0700496 addr);
Johannes Bergfd1af152010-04-30 11:30:43 -0700497 goto out_err;
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800498 }
499
Johannes Berg1fa61b22010-04-28 08:44:52 -0700500 if (priv->stations[sta_id].used & IWL_STA_LOCAL) {
501 kfree(priv->stations[sta_id].lq);
502 priv->stations[sta_id].lq = NULL;
503 }
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800504
505 priv->stations[sta_id].used &= ~IWL_STA_DRIVER_ACTIVE;
506
507 priv->num_stations--;
508
Johannes Berg3e41ace2011-04-18 09:12:37 -0700509 if (WARN_ON(priv->num_stations < 0))
510 priv->num_stations = 0;
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800511
Emmanuel Grumbachf39c95e2011-08-25 23:10:47 -0700512 spin_unlock_irqrestore(&priv->shrd->sta_lock, flags);
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800513
Johannes Berg2b5f7a62010-11-10 18:25:48 -0800514 return iwl_send_remove_station(priv, addr, sta_id, false);
Johannes Bergfd1af152010-04-30 11:30:43 -0700515out_err:
Emmanuel Grumbachf39c95e2011-08-25 23:10:47 -0700516 spin_unlock_irqrestore(&priv->shrd->sta_lock, flags);
Johannes Bergfd1af152010-04-30 11:30:43 -0700517 return -EINVAL;
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800518}
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800519
Winkler, Tomas83dde8c2008-11-19 15:32:23 -0800520/**
Johannes Berg2c810cc2010-04-29 00:53:29 -0700521 * iwl_clear_ucode_stations - clear ucode station table bits
522 *
523 * This function clears all the bits in the driver indicating
524 * which stations are active in the ucode. Call when something
525 * other than explicit station management would cause this in
526 * the ucode, e.g. unassociated RXON.
Winkler, Tomas83dde8c2008-11-19 15:32:23 -0800527 */
Johannes Bergdcef7322010-08-27 08:55:52 -0700528void iwl_clear_ucode_stations(struct iwl_priv *priv,
529 struct iwl_rxon_context *ctx)
Winkler, Tomas83dde8c2008-11-19 15:32:23 -0800530{
Mohamed Abbas48676eb2009-03-11 11:17:59 -0700531 int i;
Reinette Chatre7e246192010-02-18 22:58:32 -0800532 unsigned long flags_spin;
533 bool cleared = false;
Winkler, Tomas83dde8c2008-11-19 15:32:23 -0800534
Johannes Berg2c810cc2010-04-29 00:53:29 -0700535 IWL_DEBUG_INFO(priv, "Clearing ucode stations in driver\n");
Mohamed Abbas48676eb2009-03-11 11:17:59 -0700536
Emmanuel Grumbachf39c95e2011-08-25 23:10:47 -0700537 spin_lock_irqsave(&priv->shrd->sta_lock, flags_spin);
Emmanuel Grumbachd6189122011-08-25 23:10:39 -0700538 for (i = 0; i < hw_params(priv).max_stations; i++) {
Johannes Bergdcef7322010-08-27 08:55:52 -0700539 if (ctx && ctx->ctxid != priv->stations[i].ctxid)
540 continue;
541
Johannes Berg2c810cc2010-04-29 00:53:29 -0700542 if (priv->stations[i].used & IWL_STA_UCODE_ACTIVE) {
543 IWL_DEBUG_INFO(priv, "Clearing ucode active for station %d\n", i);
544 priv->stations[i].used &= ~IWL_STA_UCODE_ACTIVE;
545 cleared = true;
Reinette Chatre7e246192010-02-18 22:58:32 -0800546 }
547 }
Emmanuel Grumbachf39c95e2011-08-25 23:10:47 -0700548 spin_unlock_irqrestore(&priv->shrd->sta_lock, flags_spin);
Reinette Chatre7e246192010-02-18 22:58:32 -0800549
550 if (!cleared)
551 IWL_DEBUG_INFO(priv, "No active stations found to be cleared\n");
Winkler, Tomas83dde8c2008-11-19 15:32:23 -0800552}
Reinette Chatre7e246192010-02-18 22:58:32 -0800553
554/**
555 * iwl_restore_stations() - Restore driver known stations to device
556 *
557 * All stations considered active by driver, but not present in ucode, is
558 * restored.
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800559 *
560 * Function sleeps.
Reinette Chatre7e246192010-02-18 22:58:32 -0800561 */
Johannes Bergdcef7322010-08-27 08:55:52 -0700562void iwl_restore_stations(struct iwl_priv *priv, struct iwl_rxon_context *ctx)
Reinette Chatre7e246192010-02-18 22:58:32 -0800563{
Reinette Chatre9c5ac092010-05-05 02:26:06 -0700564 struct iwl_addsta_cmd sta_cmd;
565 struct iwl_link_quality_cmd lq;
Reinette Chatre7e246192010-02-18 22:58:32 -0800566 unsigned long flags_spin;
567 int i;
568 bool found = false;
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800569 int ret;
Reinette Chatre9c5ac092010-05-05 02:26:06 -0700570 bool send_lq;
Reinette Chatre7e246192010-02-18 22:58:32 -0800571
Emmanuel Grumbach845a9c02011-08-25 23:11:04 -0700572 if (!iwl_is_ready(priv->shrd)) {
Reinette Chatre7e246192010-02-18 22:58:32 -0800573 IWL_DEBUG_INFO(priv, "Not ready yet, not restoring any stations.\n");
574 return;
575 }
576
577 IWL_DEBUG_ASSOC(priv, "Restoring all known stations ... start.\n");
Emmanuel Grumbachf39c95e2011-08-25 23:10:47 -0700578 spin_lock_irqsave(&priv->shrd->sta_lock, flags_spin);
Emmanuel Grumbachd6189122011-08-25 23:10:39 -0700579 for (i = 0; i < hw_params(priv).max_stations; i++) {
Johannes Bergdcef7322010-08-27 08:55:52 -0700580 if (ctx->ctxid != priv->stations[i].ctxid)
581 continue;
Reinette Chatre7e246192010-02-18 22:58:32 -0800582 if ((priv->stations[i].used & IWL_STA_DRIVER_ACTIVE) &&
583 !(priv->stations[i].used & IWL_STA_UCODE_ACTIVE)) {
584 IWL_DEBUG_ASSOC(priv, "Restoring sta %pM\n",
585 priv->stations[i].sta.sta.addr);
586 priv->stations[i].sta.mode = 0;
587 priv->stations[i].used |= IWL_STA_UCODE_INPROGRESS;
588 found = true;
589 }
590 }
591
Emmanuel Grumbachd6189122011-08-25 23:10:39 -0700592 for (i = 0; i < hw_params(priv).max_stations; i++) {
Reinette Chatre7e246192010-02-18 22:58:32 -0800593 if ((priv->stations[i].used & IWL_STA_UCODE_INPROGRESS)) {
Reinette Chatre9c5ac092010-05-05 02:26:06 -0700594 memcpy(&sta_cmd, &priv->stations[i].sta,
595 sizeof(struct iwl_addsta_cmd));
596 send_lq = false;
597 if (priv->stations[i].lq) {
598 memcpy(&lq, priv->stations[i].lq,
599 sizeof(struct iwl_link_quality_cmd));
600 send_lq = true;
601 }
Emmanuel Grumbachf39c95e2011-08-25 23:10:47 -0700602 spin_unlock_irqrestore(&priv->shrd->sta_lock,
603 flags_spin);
Reinette Chatre9c5ac092010-05-05 02:26:06 -0700604 ret = iwl_send_add_sta(priv, &sta_cmd, CMD_SYNC);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800605 if (ret) {
Emmanuel Grumbachf39c95e2011-08-25 23:10:47 -0700606 spin_lock_irqsave(&priv->shrd->sta_lock,
607 flags_spin);
Reinette Chatre9c5ac092010-05-05 02:26:06 -0700608 IWL_ERR(priv, "Adding station %pM failed.\n",
609 priv->stations[i].sta.sta.addr);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800610 priv->stations[i].used &= ~IWL_STA_DRIVER_ACTIVE;
611 priv->stations[i].used &= ~IWL_STA_UCODE_INPROGRESS;
Emmanuel Grumbachf39c95e2011-08-25 23:10:47 -0700612 spin_unlock_irqrestore(&priv->shrd->sta_lock,
613 flags_spin);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800614 }
615 /*
616 * Rate scaling has already been initialized, send
617 * current LQ command
618 */
Reinette Chatre9c5ac092010-05-05 02:26:06 -0700619 if (send_lq)
Johannes Berg7e6a5882010-08-23 10:46:46 +0200620 iwl_send_lq_cmd(priv, ctx, &lq, CMD_SYNC, true);
Emmanuel Grumbachf39c95e2011-08-25 23:10:47 -0700621 spin_lock_irqsave(&priv->shrd->sta_lock, flags_spin);
Reinette Chatre7e246192010-02-18 22:58:32 -0800622 priv->stations[i].used &= ~IWL_STA_UCODE_INPROGRESS;
623 }
624 }
625
Emmanuel Grumbachf39c95e2011-08-25 23:10:47 -0700626 spin_unlock_irqrestore(&priv->shrd->sta_lock, flags_spin);
Reinette Chatre7e246192010-02-18 22:58:32 -0800627 if (!found)
628 IWL_DEBUG_INFO(priv, "Restoring all known stations .... no stations to be restored.\n");
629 else
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800630 IWL_DEBUG_INFO(priv, "Restoring all known stations .... complete.\n");
Reinette Chatre7e246192010-02-18 22:58:32 -0800631}
Winkler, Tomas83dde8c2008-11-19 15:32:23 -0800632
Johannes Berg2b5f7a62010-11-10 18:25:48 -0800633void iwl_reprogram_ap_sta(struct iwl_priv *priv, struct iwl_rxon_context *ctx)
634{
635 unsigned long flags;
636 int sta_id = ctx->ap_sta_id;
637 int ret;
638 struct iwl_addsta_cmd sta_cmd;
639 struct iwl_link_quality_cmd lq;
640 bool active;
641
Emmanuel Grumbachf39c95e2011-08-25 23:10:47 -0700642 spin_lock_irqsave(&priv->shrd->sta_lock, flags);
Johannes Berg2b5f7a62010-11-10 18:25:48 -0800643 if (!(priv->stations[sta_id].used & IWL_STA_DRIVER_ACTIVE)) {
Emmanuel Grumbachf39c95e2011-08-25 23:10:47 -0700644 spin_unlock_irqrestore(&priv->shrd->sta_lock, flags);
Johannes Berg2b5f7a62010-11-10 18:25:48 -0800645 return;
646 }
647
648 memcpy(&sta_cmd, &priv->stations[sta_id].sta, sizeof(sta_cmd));
649 sta_cmd.mode = 0;
650 memcpy(&lq, priv->stations[sta_id].lq, sizeof(lq));
651
652 active = priv->stations[sta_id].used & IWL_STA_UCODE_ACTIVE;
Wey-Yi Guy40b97c22010-11-17 14:17:53 -0800653 priv->stations[sta_id].used &= ~IWL_STA_DRIVER_ACTIVE;
Emmanuel Grumbachf39c95e2011-08-25 23:10:47 -0700654 spin_unlock_irqrestore(&priv->shrd->sta_lock, flags);
Johannes Berg2b5f7a62010-11-10 18:25:48 -0800655
656 if (active) {
657 ret = iwl_send_remove_station(
658 priv, priv->stations[sta_id].sta.sta.addr,
659 sta_id, true);
660 if (ret)
661 IWL_ERR(priv, "failed to remove STA %pM (%d)\n",
662 priv->stations[sta_id].sta.sta.addr, ret);
663 }
Emmanuel Grumbachf39c95e2011-08-25 23:10:47 -0700664 spin_lock_irqsave(&priv->shrd->sta_lock, flags);
Wey-Yi Guy40b97c22010-11-17 14:17:53 -0800665 priv->stations[sta_id].used |= IWL_STA_DRIVER_ACTIVE;
Emmanuel Grumbachf39c95e2011-08-25 23:10:47 -0700666 spin_unlock_irqrestore(&priv->shrd->sta_lock, flags);
Wey-Yi Guy40b97c22010-11-17 14:17:53 -0800667
Johannes Berg2b5f7a62010-11-10 18:25:48 -0800668 ret = iwl_send_add_sta(priv, &sta_cmd, CMD_SYNC);
669 if (ret)
670 IWL_ERR(priv, "failed to re-add STA %pM (%d)\n",
671 priv->stations[sta_id].sta.sta.addr, ret);
672 iwl_send_lq_cmd(priv, ctx, &lq, CMD_SYNC, true);
673}
Johannes Berg2b5f7a62010-11-10 18:25:48 -0800674
Johannes Berg5a3d9882011-07-15 13:03:12 -0700675int iwl_get_free_ucode_key_offset(struct iwl_priv *priv)
Emmanuel Grumbach80fb47a2008-04-14 21:16:08 -0700676{
677 int i;
678
Johannes Bergc10afb62010-08-23 10:46:43 +0200679 for (i = 0; i < priv->sta_key_max_num; i++)
Emmanuel Grumbach77bab602008-04-15 16:01:44 -0700680 if (!test_and_set_bit(i, &priv->ucode_key_table))
Emmanuel Grumbach80fb47a2008-04-14 21:16:08 -0700681 return i;
682
Tomas Winkler40a9a822008-11-25 23:29:03 +0200683 return WEP_INVALID_OFFSET;
Emmanuel Grumbach80fb47a2008-04-14 21:16:08 -0700684}
Emmanuel Grumbach6974e362008-04-14 21:16:06 -0700685
Johannes Berga30e3112010-09-22 18:02:01 +0200686void iwl_dealloc_bcast_stations(struct iwl_priv *priv)
Emmanuel Grumbach6974e362008-04-14 21:16:06 -0700687{
Tomas Winkler9f586712008-11-12 13:14:05 -0800688 unsigned long flags;
Tomas Winkler9f586712008-11-12 13:14:05 -0800689 int i;
Tomas Winkler9f586712008-11-12 13:14:05 -0800690
Emmanuel Grumbachf39c95e2011-08-25 23:10:47 -0700691 spin_lock_irqsave(&priv->shrd->sta_lock, flags);
Emmanuel Grumbachd6189122011-08-25 23:10:39 -0700692 for (i = 0; i < hw_params(priv).max_stations; i++) {
Johannes Berga30e3112010-09-22 18:02:01 +0200693 if (!(priv->stations[i].used & IWL_STA_BCAST))
694 continue;
Tomas Winkler9f586712008-11-12 13:14:05 -0800695
Johannes Berga30e3112010-09-22 18:02:01 +0200696 priv->stations[i].used &= ~IWL_STA_UCODE_ACTIVE;
697 priv->num_stations--;
Johannes Berg3e41ace2011-04-18 09:12:37 -0700698 if (WARN_ON(priv->num_stations < 0))
699 priv->num_stations = 0;
Johannes Berga30e3112010-09-22 18:02:01 +0200700 kfree(priv->stations[i].lq);
701 priv->stations[i].lq = NULL;
702 }
Emmanuel Grumbachf39c95e2011-08-25 23:10:47 -0700703 spin_unlock_irqrestore(&priv->shrd->sta_lock, flags);
Tomas Winkler9f586712008-11-12 13:14:05 -0800704}
Emmanuel Grumbach74805132008-04-14 21:16:09 -0700705
Tomas Winkler66c73db2008-04-15 16:01:40 -0700706#ifdef CONFIG_IWLWIFI_DEBUG
707static void iwl_dump_lq_cmd(struct iwl_priv *priv,
708 struct iwl_link_quality_cmd *lq)
709{
710 int i;
Tomas Winklere1623442009-01-27 14:27:56 -0800711 IWL_DEBUG_RATE(priv, "lq station id 0x%x\n", lq->sta_id);
712 IWL_DEBUG_RATE(priv, "lq ant 0x%X 0x%X\n",
Tomas Winkler66c73db2008-04-15 16:01:40 -0700713 lq->general_params.single_stream_ant_msk,
714 lq->general_params.dual_stream_ant_msk);
715
716 for (i = 0; i < LINK_QUAL_MAX_RETRY_NUM; i++)
Tomas Winklere1623442009-01-27 14:27:56 -0800717 IWL_DEBUG_RATE(priv, "lq index %d 0x%X\n",
Tomas Winkler66c73db2008-04-15 16:01:40 -0700718 i, lq->rs_table[i].rate_n_flags);
719}
720#else
721static inline void iwl_dump_lq_cmd(struct iwl_priv *priv,
722 struct iwl_link_quality_cmd *lq)
723{
724}
725#endif
726
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800727/**
Reinette Chatre3bce6062010-04-13 16:11:19 -0700728 * is_lq_table_valid() - Test one aspect of LQ cmd for validity
729 *
730 * It sometimes happens when a HT rate has been in use and we
731 * loose connectivity with AP then mac80211 will first tell us that the
732 * current channel is not HT anymore before removing the station. In such a
733 * scenario the RXON flags will be updated to indicate we are not
734 * communicating HT anymore, but the LQ command may still contain HT rates.
735 * Test for this to prevent driver from sending LQ command between the time
736 * RXON flags are updated and when LQ command is updated.
737 */
738static bool is_lq_table_valid(struct iwl_priv *priv,
Johannes Berg7e6a5882010-08-23 10:46:46 +0200739 struct iwl_rxon_context *ctx,
Reinette Chatre3bce6062010-04-13 16:11:19 -0700740 struct iwl_link_quality_cmd *lq)
741{
742 int i;
Reinette Chatre3bce6062010-04-13 16:11:19 -0700743
Johannes Berg7e6a5882010-08-23 10:46:46 +0200744 if (ctx->ht.enabled)
Reinette Chatre3bce6062010-04-13 16:11:19 -0700745 return true;
746
747 IWL_DEBUG_INFO(priv, "Channel %u is not an HT channel\n",
Johannes Berg246ed352010-08-23 10:46:32 +0200748 ctx->active.channel);
Reinette Chatre3bce6062010-04-13 16:11:19 -0700749 for (i = 0; i < LINK_QUAL_MAX_RETRY_NUM; i++) {
750 if (le32_to_cpu(lq->rs_table[i].rate_n_flags) & RATE_MCS_HT_MSK) {
751 IWL_DEBUG_INFO(priv,
752 "index %d of LQ expects HT channel\n",
753 i);
754 return false;
755 }
756 }
757 return true;
758}
759
760/**
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800761 * iwl_send_lq_cmd() - Send link quality command
762 * @init: This command is sent as part of station initialization right
763 * after station has been added.
764 *
765 * The link quality command is sent as the last step of station creation.
766 * This is the special case in which init is set and we call a callback in
767 * this case to clear the state indicating that station creation is in
768 * progress.
769 */
Johannes Berg7e6a5882010-08-23 10:46:46 +0200770int iwl_send_lq_cmd(struct iwl_priv *priv, struct iwl_rxon_context *ctx,
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800771 struct iwl_link_quality_cmd *lq, u8 flags, bool init)
Tomas Winkler66c73db2008-04-15 16:01:40 -0700772{
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800773 int ret = 0;
774 unsigned long flags_spin;
775
Tomas Winkler66c73db2008-04-15 16:01:40 -0700776 struct iwl_host_cmd cmd = {
777 .id = REPLY_TX_LINK_QUALITY_CMD,
Johannes Berg3fa50732011-05-04 07:50:38 -0700778 .len = { sizeof(struct iwl_link_quality_cmd), },
Johannes Bergc2acea82009-07-24 11:13:05 -0700779 .flags = flags,
Johannes Berg3fa50732011-05-04 07:50:38 -0700780 .data = { lq, },
Tomas Winkler66c73db2008-04-15 16:01:40 -0700781 };
782
Johannes Berg76c3c692010-03-30 02:46:29 -0700783 if (WARN_ON(lq->sta_id == IWL_INVALID_STATION))
Tomas Winkler66c73db2008-04-15 16:01:40 -0700784 return -EINVAL;
785
Wey-Yi Guy40b97c22010-11-17 14:17:53 -0800786
Emmanuel Grumbachf39c95e2011-08-25 23:10:47 -0700787 spin_lock_irqsave(&priv->shrd->sta_lock, flags_spin);
Wey-Yi Guy40b97c22010-11-17 14:17:53 -0800788 if (!(priv->stations[lq->sta_id].used & IWL_STA_DRIVER_ACTIVE)) {
Emmanuel Grumbachf39c95e2011-08-25 23:10:47 -0700789 spin_unlock_irqrestore(&priv->shrd->sta_lock, flags_spin);
Wey-Yi Guy40b97c22010-11-17 14:17:53 -0800790 return -EINVAL;
791 }
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
Tomas Winkler3ac7f142008-07-21 02:40:14 +0300794 iwl_dump_lq_cmd(priv, lq);
Johannes Berg3e41ace2011-04-18 09:12:37 -0700795 if (WARN_ON(init && (cmd.flags & CMD_ASYNC)))
796 return -EINVAL;
Tomas Winkler66c73db2008-04-15 16:01:40 -0700797
Johannes Berg7e6a5882010-08-23 10:46:46 +0200798 if (is_lq_table_valid(priv, ctx, lq))
Emmanuel Grumbache6bb4c92011-08-25 23:10:48 -0700799 ret = iwl_trans_send_cmd(trans(priv), &cmd);
Reinette Chatre3bce6062010-04-13 16:11:19 -0700800 else
801 ret = -EINVAL;
Reinette Chatred2e210a2010-04-23 10:33:33 -0700802
803 if (cmd.flags & CMD_ASYNC)
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800804 return ret;
Tomas Winkler66c73db2008-04-15 16:01:40 -0700805
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800806 if (init) {
Frans Pop91dd6c22010-03-24 14:19:58 -0700807 IWL_DEBUG_INFO(priv, "init LQ command complete, clearing sta addition status for sta %d\n",
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800808 lq->sta_id);
Emmanuel Grumbachf39c95e2011-08-25 23:10:47 -0700809 spin_lock_irqsave(&priv->shrd->sta_lock, flags_spin);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800810 priv->stations[lq->sta_id].used &= ~IWL_STA_UCODE_INPROGRESS;
Emmanuel Grumbachf39c95e2011-08-25 23:10:47 -0700811 spin_unlock_irqrestore(&priv->shrd->sta_lock, flags_spin);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800812 }
Reinette Chatred2e210a2010-04-23 10:33:33 -0700813 return ret;
Tomas Winkler66c73db2008-04-15 16:01:40 -0700814}
Tomas Winkler66c73db2008-04-15 16:01:40 -0700815
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800816int iwl_mac_sta_remove(struct ieee80211_hw *hw,
Johannes Bergfd1af152010-04-30 11:30:43 -0700817 struct ieee80211_vif *vif,
818 struct ieee80211_sta *sta)
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800819{
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800820 struct iwl_priv *priv = hw->priv;
Johannes Bergc6892902011-09-20 15:37:21 -0700821 struct iwl_station_priv *sta_priv = (void *)sta->drv_priv;
Johannes Bergfd1af152010-04-30 11:30:43 -0700822 int ret;
823
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800824 IWL_DEBUG_INFO(priv, "received request to remove station %pM\n",
825 sta->addr);
Emmanuel Grumbach6ac2f832011-08-25 23:10:44 -0700826 mutex_lock(&priv->shrd->mutex);
Reinette Chatreda5ae1c2010-05-28 09:28:39 -0700827 IWL_DEBUG_INFO(priv, "proceeding to remove station %pM\n",
828 sta->addr);
Johannes Bergc6892902011-09-20 15:37:21 -0700829 ret = iwl_remove_station(priv, sta_priv->sta_id, sta->addr);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800830 if (ret)
831 IWL_ERR(priv, "Error removing station %pM\n",
832 sta->addr);
Emmanuel Grumbach6ac2f832011-08-25 23:10:44 -0700833 mutex_unlock(&priv->shrd->mutex);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800834 return ret;
835}