blob: 78cf1076c0320e337fd8323108ab3066cea52277 [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"
Tomas Winkler7a999bf2008-05-29 16:35:02 +080039
Reinette Chatre1fa97aa2010-01-22 14:22:48 -080040/* priv->sta_lock must be held */
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +080041static void iwl_sta_ucode_activate(struct iwl_priv *priv, u8 sta_id)
42{
Reinette Chatre1fa97aa2010-01-22 14:22:48 -080043
44 if (!(priv->stations[sta_id].used & IWL_STA_DRIVER_ACTIVE))
45 IWL_ERR(priv, "ACTIVATE a non DRIVER active station id %u addr %pM\n",
46 sta_id, priv->stations[sta_id].sta.sta.addr);
47
48 if (priv->stations[sta_id].used & IWL_STA_UCODE_ACTIVE) {
49 IWL_DEBUG_ASSOC(priv,
50 "STA id %u addr %pM already present in uCode (according to driver)\n",
51 sta_id, priv->stations[sta_id].sta.sta.addr);
52 } else {
53 priv->stations[sta_id].used |= IWL_STA_UCODE_ACTIVE;
54 IWL_DEBUG_ASSOC(priv, "Added STA id %u addr %pM to uCode\n",
55 sta_id, priv->stations[sta_id].sta.sta.addr);
56 }
57}
58
Johannes Berg09034cb2010-06-14 08:32:38 -070059static int iwl_process_add_sta_resp(struct iwl_priv *priv,
60 struct iwl_addsta_cmd *addsta,
61 struct iwl_rx_packet *pkt,
62 bool sync)
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 Grumbach24e5c402008-06-30 17:23:03 +080077 spin_lock_irqsave(&priv->sta_lock, flags);
78
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 Grumbach24e5c402008-06-30 17:23:03 +0800120 spin_unlock_irqrestore(&priv->sta_lock, flags);
Johannes Berg09034cb2010-06-14 08:32:38 -0700121
122 return ret;
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800123}
124
Johannes Berg5696aea2009-07-24 11:13:06 -0700125static void iwl_add_sta_callback(struct iwl_priv *priv,
126 struct iwl_device_cmd *cmd,
Zhu Yi2f301222009-10-09 17:19:45 +0800127 struct iwl_rx_packet *pkt)
Tomas Winkler42132bc2008-05-29 16:35:03 +0800128{
Tomas Winkler3257e5d2008-10-14 12:32:43 -0700129 struct iwl_addsta_cmd *addsta =
130 (struct iwl_addsta_cmd *)cmd->cmd.payload;
Tomas Winkler42132bc2008-05-29 16:35:03 +0800131
Reinette Chatre1fa97aa2010-01-22 14:22:48 -0800132 iwl_process_add_sta_resp(priv, addsta, pkt, false);
Tomas Winkler42132bc2008-05-29 16:35:03 +0800133
Tomas Winkler42132bc2008-05-29 16:35:03 +0800134}
135
Samuel Ortiz17f841c2009-01-23 13:45:20 -0800136int iwl_send_add_sta(struct iwl_priv *priv,
Tomas Winkler133636d2008-05-05 10:22:34 +0800137 struct iwl_addsta_cmd *sta, u8 flags)
138{
Zhu Yi2f301222009-10-09 17:19:45 +0800139 struct iwl_rx_packet *pkt = NULL;
Tomas Winkler133636d2008-05-05 10:22:34 +0800140 int ret = 0;
141 u8 data[sizeof(*sta)];
142 struct iwl_host_cmd cmd = {
143 .id = REPLY_ADD_STA,
Johannes Bergc2acea82009-07-24 11:13:05 -0700144 .flags = flags,
Johannes Berg3fa50732011-05-04 07:50:38 -0700145 .data = { data, },
Tomas Winkler133636d2008-05-05 10:22:34 +0800146 };
Reinette Chatref875f512010-04-05 10:43:10 -0700147 u8 sta_id __maybe_unused = sta->sta.sta_id;
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800148
149 IWL_DEBUG_INFO(priv, "Adding sta %u (%pM) %ssynchronously\n",
150 sta_id, sta->sta.addr, flags & CMD_ASYNC ? "a" : "");
Tomas Winkler133636d2008-05-05 10:22:34 +0800151
Tomas Winkler42132bc2008-05-29 16:35:03 +0800152 if (flags & CMD_ASYNC)
Johannes Bergc2acea82009-07-24 11:13:05 -0700153 cmd.callback = iwl_add_sta_callback;
Johannes Berg4620fef2010-06-16 03:30:27 -0700154 else {
Johannes Bergc2acea82009-07-24 11:13:05 -0700155 cmd.flags |= CMD_WANT_SKB;
Johannes Berg4620fef2010-06-16 03:30:27 -0700156 might_sleep();
157 }
Tomas Winkler133636d2008-05-05 10:22:34 +0800158
Johannes Berg3fa50732011-05-04 07:50:38 -0700159 cmd.len[0] = priv->cfg->ops->utils->build_addsta_hcmd(sta, data);
Emmanuel Grumbachbdfbf092011-07-08 08:46:16 -0700160 ret = trans_send_cmd(priv, &cmd);
Tomas Winkler133636d2008-05-05 10:22:34 +0800161
162 if (ret || (flags & CMD_ASYNC))
163 return ret;
164
Tomas Winkler133636d2008-05-05 10:22:34 +0800165 if (ret == 0) {
Reinette Chatre1fa97aa2010-01-22 14:22:48 -0800166 pkt = (struct iwl_rx_packet *)cmd.reply_page;
Johannes Berg09034cb2010-06-14 08:32:38 -0700167 ret = iwl_process_add_sta_resp(priv, sta, pkt, true);
Tomas Winkler133636d2008-05-05 10:22:34 +0800168 }
Zhu Yi64a76b52009-12-10 14:37:21 -0800169 iwl_free_pages(priv, cmd.reply_page);
Tomas Winkler133636d2008-05-05 10:22:34 +0800170
171 return ret;
172}
Tomas Winkler947b13a2008-04-16 16:34:48 -0700173
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800174static void iwl_set_ht_add_station(struct iwl_priv *priv, u8 index,
Johannes Berg7e6a5882010-08-23 10:46:46 +0200175 struct ieee80211_sta *sta,
176 struct iwl_rxon_context *ctx)
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800177{
Johannes Berg238d7812010-08-23 10:46:45 +0200178 struct ieee80211_sta_ht_cap *sta_ht_inf = &sta->ht_cap;
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800179 __le32 sta_flags;
180 u8 mimo_ps_mode;
181
Johannes Berg238d7812010-08-23 10:46:45 +0200182 if (!sta || !sta_ht_inf->ht_supported)
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800183 goto done;
184
Tomas Winkler00c5ae22008-09-03 11:26:42 +0800185 mimo_ps_mode = (sta_ht_inf->cap & IEEE80211_HT_CAP_SM_PS) >> 2;
Wey-Yi Guy3f3e0372009-10-30 14:36:17 -0700186 IWL_DEBUG_ASSOC(priv, "spatial multiplexing power save mode: %s\n",
187 (mimo_ps_mode == WLAN_HT_CAP_SM_PS_STATIC) ?
188 "static" :
189 (mimo_ps_mode == WLAN_HT_CAP_SM_PS_DYNAMIC) ?
190 "dynamic" : "disabled");
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800191
192 sta_flags = priv->stations[index].sta.station_flags;
193
194 sta_flags &= ~(STA_FLG_RTS_MIMO_PROT_MSK | STA_FLG_MIMO_DIS_MSK);
195
196 switch (mimo_ps_mode) {
Tomas Winkler00c5ae22008-09-03 11:26:42 +0800197 case WLAN_HT_CAP_SM_PS_STATIC:
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800198 sta_flags |= STA_FLG_MIMO_DIS_MSK;
199 break;
Tomas Winkler00c5ae22008-09-03 11:26:42 +0800200 case WLAN_HT_CAP_SM_PS_DYNAMIC:
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800201 sta_flags |= STA_FLG_RTS_MIMO_PROT_MSK;
202 break;
Tomas Winkler00c5ae22008-09-03 11:26:42 +0800203 case WLAN_HT_CAP_SM_PS_DISABLED:
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800204 break;
205 default:
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800206 IWL_WARN(priv, "Invalid MIMO PS mode %d\n", mimo_ps_mode);
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800207 break;
208 }
209
210 sta_flags |= cpu_to_le32(
211 (u32)sta_ht_inf->ampdu_factor << STA_FLG_MAX_AGG_SIZE_POS);
212
213 sta_flags |= cpu_to_le32(
214 (u32)sta_ht_inf->ampdu_density << STA_FLG_AGG_MPDU_DENSITY_POS);
215
Johannes Berg7e6a5882010-08-23 10:46:46 +0200216 if (iwl_is_ht40_tx_allowed(priv, ctx, &sta->ht_cap))
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700217 sta_flags |= STA_FLG_HT40_EN_MSK;
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800218 else
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700219 sta_flags &= ~STA_FLG_HT40_EN_MSK;
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800220
221 priv->stations[index].sta.station_flags = sta_flags;
222 done:
223 return;
224}
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800225
226/**
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800227 * iwl_prep_station - Prepare station information for addition
228 *
229 * should be called with sta_lock held
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800230 */
Johannes Berga30e3112010-09-22 18:02:01 +0200231u8 iwl_prep_station(struct iwl_priv *priv, struct iwl_rxon_context *ctx,
232 const u8 *addr, bool is_ap, struct ieee80211_sta *sta)
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800233{
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800234 struct iwl_station_entry *station;
Tomas Winklerc587de02009-06-03 11:44:07 -0700235 int i;
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800236 u8 sta_id = IWL_INVALID_STATION;
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800237
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800238 if (is_ap)
Johannes Berg2995baf2010-08-23 10:46:42 +0200239 sta_id = ctx->ap_sta_id;
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800240 else if (is_broadcast_ether_addr(addr))
Johannes Berga194e322010-08-27 08:53:46 -0700241 sta_id = ctx->bcast_sta_id;
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800242 else
243 for (i = IWL_STA_ID; i < priv->hw_params.max_stations; i++) {
244 if (!compare_ether_addr(priv->stations[i].sta.sta.addr,
245 addr)) {
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800246 sta_id = i;
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800247 break;
248 }
249
250 if (!priv->stations[i].used &&
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800251 sta_id == IWL_INVALID_STATION)
252 sta_id = i;
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800253 }
254
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800255 /*
256 * These two conditions have the same outcome, but keep them
257 * separate
258 */
259 if (unlikely(sta_id == IWL_INVALID_STATION))
260 return sta_id;
261
262 /*
263 * uCode is not able to deal with multiple requests to add a
264 * station. Keep track if one is in progress so that we do not send
265 * another.
266 */
267 if (priv->stations[sta_id].used & IWL_STA_UCODE_INPROGRESS) {
268 IWL_DEBUG_INFO(priv, "STA %d already in process of being added.\n",
269 sta_id);
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800270 return sta_id;
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800271 }
272
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800273 if ((priv->stations[sta_id].used & IWL_STA_DRIVER_ACTIVE) &&
274 (priv->stations[sta_id].used & IWL_STA_UCODE_ACTIVE) &&
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800275 !compare_ether_addr(priv->stations[sta_id].sta.sta.addr, addr)) {
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800276 IWL_DEBUG_ASSOC(priv, "STA %d (%pM) already added, not adding again.\n",
277 sta_id, addr);
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800278 return sta_id;
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800279 }
280
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800281 station = &priv->stations[sta_id];
282 station->used = IWL_STA_DRIVER_ACTIVE;
Tomas Winklere1623442009-01-27 14:27:56 -0800283 IWL_DEBUG_ASSOC(priv, "Add STA to driver ID %d: %pM\n",
Johannes Berge1749612008-10-27 15:59:26 -0700284 sta_id, addr);
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800285 priv->num_stations++;
286
287 /* Set up the REPLY_ADD_STA command to send to device */
288 memset(&station->sta, 0, sizeof(struct iwl_addsta_cmd));
289 memcpy(station->sta.sta.addr, addr, ETH_ALEN);
290 station->sta.mode = 0;
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800291 station->sta.sta.sta_id = sta_id;
Johannes Berg770e13b2010-08-23 10:46:44 +0200292 station->sta.station_flags = ctx->station_flags;
Johannes Bergdcef7322010-08-27 08:55:52 -0700293 station->ctxid = ctx->ctxid;
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800294
Johannes Berg238d7812010-08-23 10:46:45 +0200295 if (sta) {
296 struct iwl_station_priv_common *sta_priv;
297
298 sta_priv = (void *)sta->drv_priv;
299 sta_priv->ctx = ctx;
300 }
301
Johannes Berg63d41762010-04-30 11:30:50 -0700302 /*
303 * OK to call unconditionally, since local stations (IBSS BSSID
Johannes Berg238d7812010-08-23 10:46:45 +0200304 * STA and broadcast STA) pass in a NULL sta, and mac80211
Johannes Berg63d41762010-04-30 11:30:50 -0700305 * doesn't allow HT IBSS.
306 */
Johannes Berg7e6a5882010-08-23 10:46:46 +0200307 iwl_set_ht_add_station(priv, sta_id, sta, ctx);
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800308
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800309 return sta_id;
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800310
311}
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800312
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800313#define STA_WAIT_TIMEOUT (HZ/2)
314
315/**
316 * iwl_add_station_common -
317 */
Johannes Berga194e322010-08-27 08:53:46 -0700318int iwl_add_station_common(struct iwl_priv *priv, struct iwl_rxon_context *ctx,
319 const u8 *addr, bool is_ap,
Johannes Berg238d7812010-08-23 10:46:45 +0200320 struct ieee80211_sta *sta, u8 *sta_id_r)
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800321{
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800322 unsigned long flags_spin;
323 int ret = 0;
324 u8 sta_id;
Reinette Chatre9c5ac092010-05-05 02:26:06 -0700325 struct iwl_addsta_cmd sta_cmd;
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800326
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800327 *sta_id_r = 0;
328 spin_lock_irqsave(&priv->sta_lock, flags_spin);
Johannes Berg238d7812010-08-23 10:46:45 +0200329 sta_id = iwl_prep_station(priv, ctx, addr, is_ap, sta);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800330 if (sta_id == IWL_INVALID_STATION) {
331 IWL_ERR(priv, "Unable to prepare station %pM for addition\n",
332 addr);
333 spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
334 return -EINVAL;
335 }
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800336
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800337 /*
338 * uCode is not able to deal with multiple requests to add a
339 * station. Keep track if one is in progress so that we do not send
340 * another.
341 */
342 if (priv->stations[sta_id].used & IWL_STA_UCODE_INPROGRESS) {
343 IWL_DEBUG_INFO(priv, "STA %d already in process of being added.\n",
344 sta_id);
345 spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
346 return -EEXIST;
347 }
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800348
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800349 if ((priv->stations[sta_id].used & IWL_STA_DRIVER_ACTIVE) &&
350 (priv->stations[sta_id].used & IWL_STA_UCODE_ACTIVE)) {
351 IWL_DEBUG_ASSOC(priv, "STA %d (%pM) already added, not adding again.\n",
352 sta_id, addr);
353 spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
354 return -EEXIST;
355 }
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800356
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800357 priv->stations[sta_id].used |= IWL_STA_UCODE_INPROGRESS;
Reinette Chatre9c5ac092010-05-05 02:26:06 -0700358 memcpy(&sta_cmd, &priv->stations[sta_id].sta, sizeof(struct iwl_addsta_cmd));
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800359 spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
360
361 /* Add station to device's station table */
Reinette Chatre9c5ac092010-05-05 02:26:06 -0700362 ret = iwl_send_add_sta(priv, &sta_cmd, CMD_SYNC);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800363 if (ret) {
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800364 spin_lock_irqsave(&priv->sta_lock, flags_spin);
Reinette Chatre9c5ac092010-05-05 02:26:06 -0700365 IWL_ERR(priv, "Adding station %pM failed.\n",
366 priv->stations[sta_id].sta.sta.addr);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800367 priv->stations[sta_id].used &= ~IWL_STA_DRIVER_ACTIVE;
368 priv->stations[sta_id].used &= ~IWL_STA_UCODE_INPROGRESS;
369 spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
370 }
371 *sta_id_r = sta_id;
372 return ret;
373}
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800374
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800375/**
376 * iwl_sta_ucode_deactivate - deactivate ucode status for a station
377 *
378 * priv->sta_lock must be held
379 */
380static void iwl_sta_ucode_deactivate(struct iwl_priv *priv, u8 sta_id)
381{
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800382 /* Ucode must be active and driver must be non active */
Reinette Chatred2e210a2010-04-23 10:33:33 -0700383 if ((priv->stations[sta_id].used &
384 (IWL_STA_UCODE_ACTIVE | IWL_STA_DRIVER_ACTIVE)) != IWL_STA_UCODE_ACTIVE)
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800385 IWL_ERR(priv, "removed non active STA %u\n", sta_id);
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800386
387 priv->stations[sta_id].used &= ~IWL_STA_UCODE_ACTIVE;
388
389 memset(&priv->stations[sta_id], 0, sizeof(struct iwl_station_entry));
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800390 IWL_DEBUG_ASSOC(priv, "Removed STA %u\n", sta_id);
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800391}
392
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800393static int iwl_send_remove_station(struct iwl_priv *priv,
Johannes Berg2b5f7a62010-11-10 18:25:48 -0800394 const u8 *addr, int sta_id,
395 bool temporary)
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800396{
Zhu Yi2f301222009-10-09 17:19:45 +0800397 struct iwl_rx_packet *pkt;
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800398 int ret;
399
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800400 unsigned long flags_spin;
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800401 struct iwl_rem_sta_cmd rm_sta_cmd;
402
403 struct iwl_host_cmd cmd = {
404 .id = REPLY_REMOVE_STA,
Johannes Berg3fa50732011-05-04 07:50:38 -0700405 .len = { sizeof(struct iwl_rem_sta_cmd), },
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800406 .flags = CMD_SYNC,
Johannes Berg3fa50732011-05-04 07:50:38 -0700407 .data = { &rm_sta_cmd, },
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800408 };
409
410 memset(&rm_sta_cmd, 0, sizeof(rm_sta_cmd));
411 rm_sta_cmd.num_sta = 1;
Reinette Chatre9c5ac092010-05-05 02:26:06 -0700412 memcpy(&rm_sta_cmd.addr, addr, ETH_ALEN);
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800413
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800414 cmd.flags |= CMD_WANT_SKB;
415
Emmanuel Grumbachbdfbf092011-07-08 08:46:16 -0700416 ret = trans_send_cmd(priv, &cmd);
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800417
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800418 if (ret)
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800419 return ret;
420
Zhu Yi2f301222009-10-09 17:19:45 +0800421 pkt = (struct iwl_rx_packet *)cmd.reply_page;
422 if (pkt->hdr.flags & IWL_CMD_FAILED_MSK) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800423 IWL_ERR(priv, "Bad return from REPLY_REMOVE_STA (0x%08X)\n",
Zhu Yi2f301222009-10-09 17:19:45 +0800424 pkt->hdr.flags);
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800425 ret = -EIO;
426 }
427
428 if (!ret) {
Zhu Yi2f301222009-10-09 17:19:45 +0800429 switch (pkt->u.rem_sta.status) {
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800430 case REM_STA_SUCCESS_MSK:
Johannes Berg2b5f7a62010-11-10 18:25:48 -0800431 if (!temporary) {
432 spin_lock_irqsave(&priv->sta_lock, flags_spin);
433 iwl_sta_ucode_deactivate(priv, sta_id);
434 spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
435 }
Tomas Winklere1623442009-01-27 14:27:56 -0800436 IWL_DEBUG_ASSOC(priv, "REPLY_REMOVE_STA PASSED\n");
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800437 break;
438 default:
439 ret = -EIO;
Winkler, Tomas15b16872008-12-19 10:37:33 +0800440 IWL_ERR(priv, "REPLY_REMOVE_STA failed\n");
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800441 break;
442 }
443 }
Zhu Yi64a76b52009-12-10 14:37:21 -0800444 iwl_free_pages(priv, cmd.reply_page);
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800445
446 return ret;
447}
Emmanuel Grumbachbe1f3ab62008-06-12 09:47:18 +0800448
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800449/**
450 * iwl_remove_station - Remove driver's knowledge of station.
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800451 */
Johannes Bergfd1af152010-04-30 11:30:43 -0700452int iwl_remove_station(struct iwl_priv *priv, const u8 sta_id,
453 const u8 *addr)
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800454{
Johannes Bergfd1af152010-04-30 11:30:43 -0700455 unsigned long flags;
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800456
457 if (!iwl_is_ready(priv)) {
458 IWL_DEBUG_INFO(priv,
Frans Pop91dd6c22010-03-24 14:19:58 -0700459 "Unable to remove station %pM, device not ready.\n",
Johannes Bergc0222df2010-04-28 08:44:51 -0700460 addr);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800461 /*
462 * It is typical for stations to be removed when we are
463 * going down. Return success since device will be down
464 * soon anyway
465 */
466 return 0;
467 }
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800468
Tomas Winklere1623442009-01-27 14:27:56 -0800469 IWL_DEBUG_ASSOC(priv, "Removing STA from driver:%d %pM\n",
Johannes Bergfd1af152010-04-30 11:30:43 -0700470 sta_id, addr);
471
472 if (WARN_ON(sta_id == IWL_INVALID_STATION))
473 return -EINVAL;
474
475 spin_lock_irqsave(&priv->sta_lock, flags);
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800476
477 if (!(priv->stations[sta_id].used & IWL_STA_DRIVER_ACTIVE)) {
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800478 IWL_DEBUG_INFO(priv, "Removing %pM but non DRIVER active\n",
Johannes Bergc0222df2010-04-28 08:44:51 -0700479 addr);
Johannes Bergfd1af152010-04-30 11:30:43 -0700480 goto out_err;
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800481 }
482
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800483 if (!(priv->stations[sta_id].used & IWL_STA_UCODE_ACTIVE)) {
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800484 IWL_DEBUG_INFO(priv, "Removing %pM but non UCODE active\n",
Johannes Bergc0222df2010-04-28 08:44:51 -0700485 addr);
Johannes Bergfd1af152010-04-30 11:30:43 -0700486 goto out_err;
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800487 }
488
Johannes Berg1fa61b22010-04-28 08:44:52 -0700489 if (priv->stations[sta_id].used & IWL_STA_LOCAL) {
490 kfree(priv->stations[sta_id].lq);
491 priv->stations[sta_id].lq = NULL;
492 }
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800493
494 priv->stations[sta_id].used &= ~IWL_STA_DRIVER_ACTIVE;
495
496 priv->num_stations--;
497
Johannes Berg3e41ace2011-04-18 09:12:37 -0700498 if (WARN_ON(priv->num_stations < 0))
499 priv->num_stations = 0;
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800500
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800501 spin_unlock_irqrestore(&priv->sta_lock, flags);
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800502
Johannes Berg2b5f7a62010-11-10 18:25:48 -0800503 return iwl_send_remove_station(priv, addr, sta_id, false);
Johannes Bergfd1af152010-04-30 11:30:43 -0700504out_err:
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800505 spin_unlock_irqrestore(&priv->sta_lock, flags);
Johannes Bergfd1af152010-04-30 11:30:43 -0700506 return -EINVAL;
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800507}
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800508
Winkler, Tomas83dde8c2008-11-19 15:32:23 -0800509/**
Johannes Berg2c810cc2010-04-29 00:53:29 -0700510 * iwl_clear_ucode_stations - clear ucode station table bits
511 *
512 * This function clears all the bits in the driver indicating
513 * which stations are active in the ucode. Call when something
514 * other than explicit station management would cause this in
515 * the ucode, e.g. unassociated RXON.
Winkler, Tomas83dde8c2008-11-19 15:32:23 -0800516 */
Johannes Bergdcef7322010-08-27 08:55:52 -0700517void iwl_clear_ucode_stations(struct iwl_priv *priv,
518 struct iwl_rxon_context *ctx)
Winkler, Tomas83dde8c2008-11-19 15:32:23 -0800519{
Mohamed Abbas48676eb2009-03-11 11:17:59 -0700520 int i;
Reinette Chatre7e246192010-02-18 22:58:32 -0800521 unsigned long flags_spin;
522 bool cleared = false;
Winkler, Tomas83dde8c2008-11-19 15:32:23 -0800523
Johannes Berg2c810cc2010-04-29 00:53:29 -0700524 IWL_DEBUG_INFO(priv, "Clearing ucode stations in driver\n");
Mohamed Abbas48676eb2009-03-11 11:17:59 -0700525
Reinette Chatre7e246192010-02-18 22:58:32 -0800526 spin_lock_irqsave(&priv->sta_lock, flags_spin);
Johannes Berg2c810cc2010-04-29 00:53:29 -0700527 for (i = 0; i < priv->hw_params.max_stations; i++) {
Johannes Bergdcef7322010-08-27 08:55:52 -0700528 if (ctx && ctx->ctxid != priv->stations[i].ctxid)
529 continue;
530
Johannes Berg2c810cc2010-04-29 00:53:29 -0700531 if (priv->stations[i].used & IWL_STA_UCODE_ACTIVE) {
532 IWL_DEBUG_INFO(priv, "Clearing ucode active for station %d\n", i);
533 priv->stations[i].used &= ~IWL_STA_UCODE_ACTIVE;
534 cleared = true;
Reinette Chatre7e246192010-02-18 22:58:32 -0800535 }
536 }
537 spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
538
539 if (!cleared)
540 IWL_DEBUG_INFO(priv, "No active stations found to be cleared\n");
Winkler, Tomas83dde8c2008-11-19 15:32:23 -0800541}
Reinette Chatre7e246192010-02-18 22:58:32 -0800542
543/**
544 * iwl_restore_stations() - Restore driver known stations to device
545 *
546 * All stations considered active by driver, but not present in ucode, is
547 * restored.
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800548 *
549 * Function sleeps.
Reinette Chatre7e246192010-02-18 22:58:32 -0800550 */
Johannes Bergdcef7322010-08-27 08:55:52 -0700551void iwl_restore_stations(struct iwl_priv *priv, struct iwl_rxon_context *ctx)
Reinette Chatre7e246192010-02-18 22:58:32 -0800552{
Reinette Chatre9c5ac092010-05-05 02:26:06 -0700553 struct iwl_addsta_cmd sta_cmd;
554 struct iwl_link_quality_cmd lq;
Reinette Chatre7e246192010-02-18 22:58:32 -0800555 unsigned long flags_spin;
556 int i;
557 bool found = false;
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800558 int ret;
Reinette Chatre9c5ac092010-05-05 02:26:06 -0700559 bool send_lq;
Reinette Chatre7e246192010-02-18 22:58:32 -0800560
561 if (!iwl_is_ready(priv)) {
562 IWL_DEBUG_INFO(priv, "Not ready yet, not restoring any stations.\n");
563 return;
564 }
565
566 IWL_DEBUG_ASSOC(priv, "Restoring all known stations ... start.\n");
567 spin_lock_irqsave(&priv->sta_lock, flags_spin);
568 for (i = 0; i < priv->hw_params.max_stations; i++) {
Johannes Bergdcef7322010-08-27 08:55:52 -0700569 if (ctx->ctxid != priv->stations[i].ctxid)
570 continue;
Reinette Chatre7e246192010-02-18 22:58:32 -0800571 if ((priv->stations[i].used & IWL_STA_DRIVER_ACTIVE) &&
572 !(priv->stations[i].used & IWL_STA_UCODE_ACTIVE)) {
573 IWL_DEBUG_ASSOC(priv, "Restoring sta %pM\n",
574 priv->stations[i].sta.sta.addr);
575 priv->stations[i].sta.mode = 0;
576 priv->stations[i].used |= IWL_STA_UCODE_INPROGRESS;
577 found = true;
578 }
579 }
580
581 for (i = 0; i < priv->hw_params.max_stations; i++) {
582 if ((priv->stations[i].used & IWL_STA_UCODE_INPROGRESS)) {
Reinette Chatre9c5ac092010-05-05 02:26:06 -0700583 memcpy(&sta_cmd, &priv->stations[i].sta,
584 sizeof(struct iwl_addsta_cmd));
585 send_lq = false;
586 if (priv->stations[i].lq) {
587 memcpy(&lq, priv->stations[i].lq,
588 sizeof(struct iwl_link_quality_cmd));
589 send_lq = true;
590 }
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800591 spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
Reinette Chatre9c5ac092010-05-05 02:26:06 -0700592 ret = iwl_send_add_sta(priv, &sta_cmd, CMD_SYNC);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800593 if (ret) {
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800594 spin_lock_irqsave(&priv->sta_lock, flags_spin);
Reinette Chatre9c5ac092010-05-05 02:26:06 -0700595 IWL_ERR(priv, "Adding station %pM failed.\n",
596 priv->stations[i].sta.sta.addr);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800597 priv->stations[i].used &= ~IWL_STA_DRIVER_ACTIVE;
598 priv->stations[i].used &= ~IWL_STA_UCODE_INPROGRESS;
599 spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
600 }
601 /*
602 * Rate scaling has already been initialized, send
603 * current LQ command
604 */
Reinette Chatre9c5ac092010-05-05 02:26:06 -0700605 if (send_lq)
Johannes Berg7e6a5882010-08-23 10:46:46 +0200606 iwl_send_lq_cmd(priv, ctx, &lq, CMD_SYNC, true);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800607 spin_lock_irqsave(&priv->sta_lock, flags_spin);
Reinette Chatre7e246192010-02-18 22:58:32 -0800608 priv->stations[i].used &= ~IWL_STA_UCODE_INPROGRESS;
609 }
610 }
611
612 spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
613 if (!found)
614 IWL_DEBUG_INFO(priv, "Restoring all known stations .... no stations to be restored.\n");
615 else
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800616 IWL_DEBUG_INFO(priv, "Restoring all known stations .... complete.\n");
Reinette Chatre7e246192010-02-18 22:58:32 -0800617}
Winkler, Tomas83dde8c2008-11-19 15:32:23 -0800618
Johannes Berg2b5f7a62010-11-10 18:25:48 -0800619void iwl_reprogram_ap_sta(struct iwl_priv *priv, struct iwl_rxon_context *ctx)
620{
621 unsigned long flags;
622 int sta_id = ctx->ap_sta_id;
623 int ret;
624 struct iwl_addsta_cmd sta_cmd;
625 struct iwl_link_quality_cmd lq;
626 bool active;
627
628 spin_lock_irqsave(&priv->sta_lock, flags);
629 if (!(priv->stations[sta_id].used & IWL_STA_DRIVER_ACTIVE)) {
630 spin_unlock_irqrestore(&priv->sta_lock, flags);
631 return;
632 }
633
634 memcpy(&sta_cmd, &priv->stations[sta_id].sta, sizeof(sta_cmd));
635 sta_cmd.mode = 0;
636 memcpy(&lq, priv->stations[sta_id].lq, sizeof(lq));
637
638 active = priv->stations[sta_id].used & IWL_STA_UCODE_ACTIVE;
Wey-Yi Guy40b97c22010-11-17 14:17:53 -0800639 priv->stations[sta_id].used &= ~IWL_STA_DRIVER_ACTIVE;
Johannes Berg2b5f7a62010-11-10 18:25:48 -0800640 spin_unlock_irqrestore(&priv->sta_lock, flags);
641
642 if (active) {
643 ret = iwl_send_remove_station(
644 priv, priv->stations[sta_id].sta.sta.addr,
645 sta_id, true);
646 if (ret)
647 IWL_ERR(priv, "failed to remove STA %pM (%d)\n",
648 priv->stations[sta_id].sta.sta.addr, ret);
649 }
Wey-Yi Guy40b97c22010-11-17 14:17:53 -0800650 spin_lock_irqsave(&priv->sta_lock, flags);
651 priv->stations[sta_id].used |= IWL_STA_DRIVER_ACTIVE;
652 spin_unlock_irqrestore(&priv->sta_lock, flags);
653
Johannes Berg2b5f7a62010-11-10 18:25:48 -0800654 ret = iwl_send_add_sta(priv, &sta_cmd, CMD_SYNC);
655 if (ret)
656 IWL_ERR(priv, "failed to re-add STA %pM (%d)\n",
657 priv->stations[sta_id].sta.sta.addr, ret);
658 iwl_send_lq_cmd(priv, ctx, &lq, CMD_SYNC, true);
659}
Johannes Berg2b5f7a62010-11-10 18:25:48 -0800660
Abhijeet Kolekar6e21f152009-02-27 16:21:21 -0800661int iwl_get_free_ucode_key_index(struct iwl_priv *priv)
Emmanuel Grumbach80fb47a2008-04-14 21:16:08 -0700662{
663 int i;
664
Johannes Bergc10afb62010-08-23 10:46:43 +0200665 for (i = 0; i < priv->sta_key_max_num; i++)
Emmanuel Grumbach77bab602008-04-15 16:01:44 -0700666 if (!test_and_set_bit(i, &priv->ucode_key_table))
Emmanuel Grumbach80fb47a2008-04-14 21:16:08 -0700667 return i;
668
Tomas Winkler40a9a822008-11-25 23:29:03 +0200669 return WEP_INVALID_OFFSET;
Emmanuel Grumbach80fb47a2008-04-14 21:16:08 -0700670}
Emmanuel Grumbach6974e362008-04-14 21:16:06 -0700671
Johannes Berga30e3112010-09-22 18:02:01 +0200672void iwl_dealloc_bcast_stations(struct iwl_priv *priv)
Emmanuel Grumbach6974e362008-04-14 21:16:06 -0700673{
Tomas Winkler9f586712008-11-12 13:14:05 -0800674 unsigned long flags;
Tomas Winkler9f586712008-11-12 13:14:05 -0800675 int i;
Tomas Winkler9f586712008-11-12 13:14:05 -0800676
Tomas Winkler9f586712008-11-12 13:14:05 -0800677 spin_lock_irqsave(&priv->sta_lock, flags);
Johannes Berga30e3112010-09-22 18:02:01 +0200678 for (i = 0; i < priv->hw_params.max_stations; i++) {
679 if (!(priv->stations[i].used & IWL_STA_BCAST))
680 continue;
Tomas Winkler9f586712008-11-12 13:14:05 -0800681
Johannes Berga30e3112010-09-22 18:02:01 +0200682 priv->stations[i].used &= ~IWL_STA_UCODE_ACTIVE;
683 priv->num_stations--;
Johannes Berg3e41ace2011-04-18 09:12:37 -0700684 if (WARN_ON(priv->num_stations < 0))
685 priv->num_stations = 0;
Johannes Berga30e3112010-09-22 18:02:01 +0200686 kfree(priv->stations[i].lq);
687 priv->stations[i].lq = NULL;
688 }
Tomas Winkler9f586712008-11-12 13:14:05 -0800689 spin_unlock_irqrestore(&priv->sta_lock, flags);
Tomas Winkler9f586712008-11-12 13:14:05 -0800690}
Emmanuel Grumbach74805132008-04-14 21:16:09 -0700691
Tomas Winkler66c73db2008-04-15 16:01:40 -0700692#ifdef CONFIG_IWLWIFI_DEBUG
693static void iwl_dump_lq_cmd(struct iwl_priv *priv,
694 struct iwl_link_quality_cmd *lq)
695{
696 int i;
Tomas Winklere1623442009-01-27 14:27:56 -0800697 IWL_DEBUG_RATE(priv, "lq station id 0x%x\n", lq->sta_id);
698 IWL_DEBUG_RATE(priv, "lq ant 0x%X 0x%X\n",
Tomas Winkler66c73db2008-04-15 16:01:40 -0700699 lq->general_params.single_stream_ant_msk,
700 lq->general_params.dual_stream_ant_msk);
701
702 for (i = 0; i < LINK_QUAL_MAX_RETRY_NUM; i++)
Tomas Winklere1623442009-01-27 14:27:56 -0800703 IWL_DEBUG_RATE(priv, "lq index %d 0x%X\n",
Tomas Winkler66c73db2008-04-15 16:01:40 -0700704 i, lq->rs_table[i].rate_n_flags);
705}
706#else
707static inline void iwl_dump_lq_cmd(struct iwl_priv *priv,
708 struct iwl_link_quality_cmd *lq)
709{
710}
711#endif
712
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800713/**
Reinette Chatre3bce6062010-04-13 16:11:19 -0700714 * is_lq_table_valid() - Test one aspect of LQ cmd for validity
715 *
716 * It sometimes happens when a HT rate has been in use and we
717 * loose connectivity with AP then mac80211 will first tell us that the
718 * current channel is not HT anymore before removing the station. In such a
719 * scenario the RXON flags will be updated to indicate we are not
720 * communicating HT anymore, but the LQ command may still contain HT rates.
721 * Test for this to prevent driver from sending LQ command between the time
722 * RXON flags are updated and when LQ command is updated.
723 */
724static bool is_lq_table_valid(struct iwl_priv *priv,
Johannes Berg7e6a5882010-08-23 10:46:46 +0200725 struct iwl_rxon_context *ctx,
Reinette Chatre3bce6062010-04-13 16:11:19 -0700726 struct iwl_link_quality_cmd *lq)
727{
728 int i;
Reinette Chatre3bce6062010-04-13 16:11:19 -0700729
Johannes Berg7e6a5882010-08-23 10:46:46 +0200730 if (ctx->ht.enabled)
Reinette Chatre3bce6062010-04-13 16:11:19 -0700731 return true;
732
733 IWL_DEBUG_INFO(priv, "Channel %u is not an HT channel\n",
Johannes Berg246ed352010-08-23 10:46:32 +0200734 ctx->active.channel);
Reinette Chatre3bce6062010-04-13 16:11:19 -0700735 for (i = 0; i < LINK_QUAL_MAX_RETRY_NUM; i++) {
736 if (le32_to_cpu(lq->rs_table[i].rate_n_flags) & RATE_MCS_HT_MSK) {
737 IWL_DEBUG_INFO(priv,
738 "index %d of LQ expects HT channel\n",
739 i);
740 return false;
741 }
742 }
743 return true;
744}
745
746/**
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800747 * iwl_send_lq_cmd() - Send link quality command
748 * @init: This command is sent as part of station initialization right
749 * after station has been added.
750 *
751 * The link quality command is sent as the last step of station creation.
752 * This is the special case in which init is set and we call a callback in
753 * this case to clear the state indicating that station creation is in
754 * progress.
755 */
Johannes Berg7e6a5882010-08-23 10:46:46 +0200756int iwl_send_lq_cmd(struct iwl_priv *priv, struct iwl_rxon_context *ctx,
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800757 struct iwl_link_quality_cmd *lq, u8 flags, bool init)
Tomas Winkler66c73db2008-04-15 16:01:40 -0700758{
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800759 int ret = 0;
760 unsigned long flags_spin;
761
Tomas Winkler66c73db2008-04-15 16:01:40 -0700762 struct iwl_host_cmd cmd = {
763 .id = REPLY_TX_LINK_QUALITY_CMD,
Johannes Berg3fa50732011-05-04 07:50:38 -0700764 .len = { sizeof(struct iwl_link_quality_cmd), },
Johannes Bergc2acea82009-07-24 11:13:05 -0700765 .flags = flags,
Johannes Berg3fa50732011-05-04 07:50:38 -0700766 .data = { lq, },
Tomas Winkler66c73db2008-04-15 16:01:40 -0700767 };
768
Johannes Berg76c3c692010-03-30 02:46:29 -0700769 if (WARN_ON(lq->sta_id == IWL_INVALID_STATION))
Tomas Winkler66c73db2008-04-15 16:01:40 -0700770 return -EINVAL;
771
Wey-Yi Guy40b97c22010-11-17 14:17:53 -0800772
773 spin_lock_irqsave(&priv->sta_lock, flags_spin);
774 if (!(priv->stations[lq->sta_id].used & IWL_STA_DRIVER_ACTIVE)) {
775 spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
776 return -EINVAL;
777 }
778 spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
779
Tomas Winkler3ac7f142008-07-21 02:40:14 +0300780 iwl_dump_lq_cmd(priv, lq);
Johannes Berg3e41ace2011-04-18 09:12:37 -0700781 if (WARN_ON(init && (cmd.flags & CMD_ASYNC)))
782 return -EINVAL;
Tomas Winkler66c73db2008-04-15 16:01:40 -0700783
Johannes Berg7e6a5882010-08-23 10:46:46 +0200784 if (is_lq_table_valid(priv, ctx, lq))
Emmanuel Grumbachbdfbf092011-07-08 08:46:16 -0700785 ret = trans_send_cmd(priv, &cmd);
Reinette Chatre3bce6062010-04-13 16:11:19 -0700786 else
787 ret = -EINVAL;
Reinette Chatred2e210a2010-04-23 10:33:33 -0700788
789 if (cmd.flags & CMD_ASYNC)
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800790 return ret;
Tomas Winkler66c73db2008-04-15 16:01:40 -0700791
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800792 if (init) {
Frans Pop91dd6c22010-03-24 14:19:58 -0700793 IWL_DEBUG_INFO(priv, "init LQ command complete, clearing sta addition status for sta %d\n",
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800794 lq->sta_id);
795 spin_lock_irqsave(&priv->sta_lock, flags_spin);
796 priv->stations[lq->sta_id].used &= ~IWL_STA_UCODE_INPROGRESS;
797 spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
798 }
Reinette Chatred2e210a2010-04-23 10:33:33 -0700799 return ret;
Tomas Winkler66c73db2008-04-15 16:01:40 -0700800}
Tomas Winkler66c73db2008-04-15 16:01:40 -0700801
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800802int iwl_mac_sta_remove(struct ieee80211_hw *hw,
Johannes Bergfd1af152010-04-30 11:30:43 -0700803 struct ieee80211_vif *vif,
804 struct ieee80211_sta *sta)
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800805{
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800806 struct iwl_priv *priv = hw->priv;
Johannes Bergfd1af152010-04-30 11:30:43 -0700807 struct iwl_station_priv_common *sta_common = (void *)sta->drv_priv;
808 int ret;
809
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800810 IWL_DEBUG_INFO(priv, "received request to remove station %pM\n",
811 sta->addr);
Reinette Chatreda5ae1c2010-05-28 09:28:39 -0700812 mutex_lock(&priv->mutex);
813 IWL_DEBUG_INFO(priv, "proceeding to remove station %pM\n",
814 sta->addr);
Johannes Bergfd1af152010-04-30 11:30:43 -0700815 ret = iwl_remove_station(priv, sta_common->sta_id, sta->addr);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800816 if (ret)
817 IWL_ERR(priv, "Error removing station %pM\n",
818 sta->addr);
Reinette Chatreda5ae1c2010-05-28 09:28:39 -0700819 mutex_unlock(&priv->mutex);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -0800820 return ret;
821}