blob: 75fe315f66b4d62904be032446851459b2cc9c2c [file] [log] [blame]
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001/******************************************************************************
2 *
3 * Copyright(c) 2003 - 2011 Intel Corporation. All rights reserved.
4 *
5 * Portions of this file are derived from the ipw3945 project, as well
6 * as portions of the ieee80211 subsystem header files.
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of version 2 of the GNU General Public License as
10 * published by the Free Software Foundation.
11 *
12 * This program is distributed in the hope that it will be useful, but WITHOUT
13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
15 * more details.
16 *
17 * You should have received a copy of the GNU General Public License along with
18 * this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
20 *
21 * The full GNU General Public License is included in this distribution in the
22 * file called LICENSE.
23 *
24 * Contact Information:
25 * Intel Linux Wireless <ilw@linux.intel.com>
26 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
27 *
28 *****************************************************************************/
29
30#include <net/mac80211.h>
31#include <linux/etherdevice.h>
32#include <linux/sched.h>
33#include <linux/lockdep.h>
Paul Gortmakeree40fa02011-05-27 16:14:23 -040034#include <linux/export.h>
Wey-Yi Guybe663ab2011-02-21 11:27:26 -080035
36#include "iwl-dev.h"
37#include "iwl-core.h"
38#include "iwl-sta.h"
39
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +020040/* il->sta_lock must be held */
41static void il_sta_ucode_activate(struct il_priv *il, u8 sta_id)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -080042{
43
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +020044 if (!(il->stations[sta_id].used & IL_STA_DRIVER_ACTIVE))
Stanislaw Gruszka9406f792011-08-18 22:07:57 +020045 IL_ERR(
Wey-Yi Guybe663ab2011-02-21 11:27:26 -080046 "ACTIVATE a non DRIVER active station id %u addr %pM\n",
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +020047 sta_id, il->stations[sta_id].sta.sta.addr);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -080048
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +020049 if (il->stations[sta_id].used & IL_STA_UCODE_ACTIVE) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +010050 D_ASSOC(
Wey-Yi Guybe663ab2011-02-21 11:27:26 -080051 "STA id %u addr %pM already present"
52 " in uCode (according to driver)\n",
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +020053 sta_id, il->stations[sta_id].sta.sta.addr);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -080054 } else {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +020055 il->stations[sta_id].used |= IL_STA_UCODE_ACTIVE;
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +010056 D_ASSOC("Added STA id %u addr %pM to uCode\n",
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +020057 sta_id, il->stations[sta_id].sta.sta.addr);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -080058 }
59}
60
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +020061static int il_process_add_sta_resp(struct il_priv *il,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +020062 struct il_addsta_cmd *addsta,
Stanislaw Gruszkadcae1c62011-08-26 14:36:21 +020063 struct il_rx_pkt *pkt,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -080064 bool sync)
65{
66 u8 sta_id = addsta->sta.sta_id;
67 unsigned long flags;
68 int ret = -EIO;
69
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +020070 if (pkt->hdr.flags & IL_CMD_FAILED_MSK) {
Stanislaw Gruszka4d69c752011-08-30 15:26:35 +020071 IL_ERR("Bad return from C_ADD_STA (0x%08X)\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -080072 pkt->hdr.flags);
73 return ret;
74 }
75
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +010076 D_INFO("Processing response for adding station %u\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -080077 sta_id);
78
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +020079 spin_lock_irqsave(&il->sta_lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -080080
81 switch (pkt->u.add_sta.status) {
82 case ADD_STA_SUCCESS_MSK:
Stanislaw Gruszka4d69c752011-08-30 15:26:35 +020083 D_INFO("C_ADD_STA PASSED\n");
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +020084 il_sta_ucode_activate(il, sta_id);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -080085 ret = 0;
86 break;
Stanislaw Gruszka3b98c7f2011-08-26 16:29:35 +020087 case ADD_STA_NO_ROOM_IN_TBL:
Stanislaw Gruszka9406f792011-08-18 22:07:57 +020088 IL_ERR("Adding station %d failed, no room in table.\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -080089 sta_id);
90 break;
91 case ADD_STA_NO_BLOCK_ACK_RESOURCE:
Stanislaw Gruszka9406f792011-08-18 22:07:57 +020092 IL_ERR(
Wey-Yi Guybe663ab2011-02-21 11:27:26 -080093 "Adding station %d failed, no block ack resource.\n",
94 sta_id);
95 break;
96 case ADD_STA_MODIFY_NON_EXIST_STA:
Stanislaw Gruszka9406f792011-08-18 22:07:57 +020097 IL_ERR("Attempting to modify non-existing station %d\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -080098 sta_id);
99 break;
100 default:
Stanislaw Gruszka4d69c752011-08-30 15:26:35 +0200101 D_ASSOC("Received C_ADD_STA:(0x%08X)\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800102 pkt->u.add_sta.status);
103 break;
104 }
105
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100106 D_INFO("%s station id %u addr %pM\n",
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200107 il->stations[sta_id].sta.mode ==
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800108 STA_CONTROL_MODIFY_MSK ? "Modified" : "Added",
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200109 sta_id, il->stations[sta_id].sta.sta.addr);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800110
111 /*
112 * XXX: The MAC address in the command buffer is often changed from
113 * the original sent to the device. That is, the MAC address
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300114 * written to the command buffer often is not the same MAC address
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800115 * read from the command buffer when the command returns. This
116 * issue has not yet been resolved and this debugging is left to
117 * observe the problem.
118 */
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100119 D_INFO("%s station according to cmd buffer %pM\n",
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200120 il->stations[sta_id].sta.mode ==
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800121 STA_CONTROL_MODIFY_MSK ? "Modified" : "Added",
122 addsta->sta.addr);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200123 spin_unlock_irqrestore(&il->sta_lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800124
125 return ret;
126}
127
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200128static void il_add_sta_callback(struct il_priv *il,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200129 struct il_device_cmd *cmd,
Stanislaw Gruszkadcae1c62011-08-26 14:36:21 +0200130 struct il_rx_pkt *pkt)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800131{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200132 struct il_addsta_cmd *addsta =
133 (struct il_addsta_cmd *)cmd->cmd.payload;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800134
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200135 il_process_add_sta_resp(il, addsta, pkt, false);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800136
137}
138
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200139int il_send_add_sta(struct il_priv *il,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200140 struct il_addsta_cmd *sta, u8 flags)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800141{
Stanislaw Gruszkadcae1c62011-08-26 14:36:21 +0200142 struct il_rx_pkt *pkt = NULL;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800143 int ret = 0;
144 u8 data[sizeof(*sta)];
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200145 struct il_host_cmd cmd = {
Stanislaw Gruszka4d69c752011-08-30 15:26:35 +0200146 .id = C_ADD_STA,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800147 .flags = flags,
148 .data = data,
149 };
150 u8 sta_id __maybe_unused = sta->sta.sta_id;
151
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100152 D_INFO("Adding sta %u (%pM) %ssynchronously\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800153 sta_id, sta->sta.addr, flags & CMD_ASYNC ? "a" : "");
154
155 if (flags & CMD_ASYNC)
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200156 cmd.callback = il_add_sta_callback;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800157 else {
158 cmd.flags |= CMD_WANT_SKB;
159 might_sleep();
160 }
161
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200162 cmd.len = il->cfg->ops->utils->build_addsta_hcmd(sta, data);
163 ret = il_send_cmd(il, &cmd);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800164
165 if (ret || (flags & CMD_ASYNC))
166 return ret;
167
168 if (ret == 0) {
Stanislaw Gruszkadcae1c62011-08-26 14:36:21 +0200169 pkt = (struct il_rx_pkt *)cmd.reply_page;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200170 ret = il_process_add_sta_resp(il, sta, pkt, true);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800171 }
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200172 il_free_pages(il, cmd.reply_page);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800173
174 return ret;
175}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200176EXPORT_SYMBOL(il_send_add_sta);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800177
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +0100178static void il_set_ht_add_station(struct il_priv *il, u8 idx,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800179 struct ieee80211_sta *sta,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200180 struct il_rxon_context *ctx)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800181{
182 struct ieee80211_sta_ht_cap *sta_ht_inf = &sta->ht_cap;
183 __le32 sta_flags;
184 u8 mimo_ps_mode;
185
186 if (!sta || !sta_ht_inf->ht_supported)
187 goto done;
188
189 mimo_ps_mode = (sta_ht_inf->cap & IEEE80211_HT_CAP_SM_PS) >> 2;
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100190 D_ASSOC("spatial multiplexing power save mode: %s\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800191 (mimo_ps_mode == WLAN_HT_CAP_SM_PS_STATIC) ?
192 "static" :
193 (mimo_ps_mode == WLAN_HT_CAP_SM_PS_DYNAMIC) ?
194 "dynamic" : "disabled");
195
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +0100196 sta_flags = il->stations[idx].sta.station_flags;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800197
198 sta_flags &= ~(STA_FLG_RTS_MIMO_PROT_MSK | STA_FLG_MIMO_DIS_MSK);
199
200 switch (mimo_ps_mode) {
201 case WLAN_HT_CAP_SM_PS_STATIC:
202 sta_flags |= STA_FLG_MIMO_DIS_MSK;
203 break;
204 case WLAN_HT_CAP_SM_PS_DYNAMIC:
205 sta_flags |= STA_FLG_RTS_MIMO_PROT_MSK;
206 break;
207 case WLAN_HT_CAP_SM_PS_DISABLED:
208 break;
209 default:
Stanislaw Gruszka9406f792011-08-18 22:07:57 +0200210 IL_WARN("Invalid MIMO PS mode %d\n", mimo_ps_mode);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800211 break;
212 }
213
214 sta_flags |= cpu_to_le32(
215 (u32)sta_ht_inf->ampdu_factor << STA_FLG_MAX_AGG_SIZE_POS);
216
217 sta_flags |= cpu_to_le32(
218 (u32)sta_ht_inf->ampdu_density << STA_FLG_AGG_MPDU_DENSITY_POS);
219
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200220 if (il_is_ht40_tx_allowed(il, ctx, &sta->ht_cap))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800221 sta_flags |= STA_FLG_HT40_EN_MSK;
222 else
223 sta_flags &= ~STA_FLG_HT40_EN_MSK;
224
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +0100225 il->stations[idx].sta.station_flags = sta_flags;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800226 done:
227 return;
228}
229
230/**
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200231 * il_prep_station - Prepare station information for addition
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800232 *
233 * should be called with sta_lock held
234 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200235u8 il_prep_station(struct il_priv *il, struct il_rxon_context *ctx,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800236 const u8 *addr, bool is_ap, struct ieee80211_sta *sta)
237{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200238 struct il_station_entry *station;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800239 int i;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200240 u8 sta_id = IL_INVALID_STATION;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800241 u16 rate;
242
243 if (is_ap)
244 sta_id = ctx->ap_sta_id;
245 else if (is_broadcast_ether_addr(addr))
246 sta_id = ctx->bcast_sta_id;
247 else
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200248 for (i = IL_STA_ID; i < il->hw_params.max_stations; i++) {
249 if (!compare_ether_addr(il->stations[i].sta.sta.addr,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800250 addr)) {
251 sta_id = i;
252 break;
253 }
254
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200255 if (!il->stations[i].used &&
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200256 sta_id == IL_INVALID_STATION)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800257 sta_id = i;
258 }
259
260 /*
261 * These two conditions have the same outcome, but keep them
262 * separate
263 */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200264 if (unlikely(sta_id == IL_INVALID_STATION))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800265 return sta_id;
266
267 /*
268 * uCode is not able to deal with multiple requests to add a
269 * station. Keep track if one is in progress so that we do not send
270 * another.
271 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200272 if (il->stations[sta_id].used & IL_STA_UCODE_INPROGRESS) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100273 D_INFO(
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800274 "STA %d already in process of being added.\n",
275 sta_id);
276 return sta_id;
277 }
278
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200279 if ((il->stations[sta_id].used & IL_STA_DRIVER_ACTIVE) &&
280 (il->stations[sta_id].used & IL_STA_UCODE_ACTIVE) &&
281 !compare_ether_addr(il->stations[sta_id].sta.sta.addr, addr)) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100282 D_ASSOC(
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800283 "STA %d (%pM) already added, not adding again.\n",
284 sta_id, addr);
285 return sta_id;
286 }
287
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200288 station = &il->stations[sta_id];
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200289 station->used = IL_STA_DRIVER_ACTIVE;
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100290 D_ASSOC("Add STA to driver ID %d: %pM\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800291 sta_id, addr);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200292 il->num_stations++;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800293
Stanislaw Gruszka4d69c752011-08-30 15:26:35 +0200294 /* Set up the C_ADD_STA command to send to device */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200295 memset(&station->sta, 0, sizeof(struct il_addsta_cmd));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800296 memcpy(station->sta.sta.addr, addr, ETH_ALEN);
297 station->sta.mode = 0;
298 station->sta.sta.sta_id = sta_id;
299 station->sta.station_flags = ctx->station_flags;
300 station->ctxid = ctx->ctxid;
301
302 if (sta) {
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200303 struct il_station_priv_common *sta_priv;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800304
305 sta_priv = (void *)sta->drv_priv;
306 sta_priv->ctx = ctx;
307 }
308
309 /*
310 * OK to call unconditionally, since local stations (IBSS BSSID
311 * STA and broadcast STA) pass in a NULL sta, and mac80211
312 * doesn't allow HT IBSS.
313 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200314 il_set_ht_add_station(il, sta_id, sta, ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800315
316 /* 3945 only */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200317 rate = (il->band == IEEE80211_BAND_5GHZ) ?
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +0200318 RATE_6M_PLCP : RATE_1M_PLCP;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800319 /* Turn on both antennas for the station... */
320 station->sta.rate_n_flags = cpu_to_le16(rate | RATE_MCS_ANT_AB_MSK);
321
322 return sta_id;
323
324}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200325EXPORT_SYMBOL_GPL(il_prep_station);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800326
327#define STA_WAIT_TIMEOUT (HZ/2)
328
329/**
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200330 * il_add_station_common -
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800331 */
332int
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200333il_add_station_common(struct il_priv *il,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200334 struct il_rxon_context *ctx,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800335 const u8 *addr, bool is_ap,
336 struct ieee80211_sta *sta, u8 *sta_id_r)
337{
338 unsigned long flags_spin;
339 int ret = 0;
340 u8 sta_id;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200341 struct il_addsta_cmd sta_cmd;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800342
343 *sta_id_r = 0;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200344 spin_lock_irqsave(&il->sta_lock, flags_spin);
345 sta_id = il_prep_station(il, ctx, addr, is_ap, sta);
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200346 if (sta_id == IL_INVALID_STATION) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +0200347 IL_ERR("Unable to prepare station %pM for addition\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800348 addr);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200349 spin_unlock_irqrestore(&il->sta_lock, flags_spin);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800350 return -EINVAL;
351 }
352
353 /*
354 * uCode is not able to deal with multiple requests to add a
355 * station. Keep track if one is in progress so that we do not send
356 * another.
357 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200358 if (il->stations[sta_id].used & IL_STA_UCODE_INPROGRESS) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100359 D_INFO(
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800360 "STA %d already in process of being added.\n",
361 sta_id);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200362 spin_unlock_irqrestore(&il->sta_lock, flags_spin);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800363 return -EEXIST;
364 }
365
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200366 if ((il->stations[sta_id].used & IL_STA_DRIVER_ACTIVE) &&
367 (il->stations[sta_id].used & IL_STA_UCODE_ACTIVE)) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100368 D_ASSOC(
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800369 "STA %d (%pM) already added, not adding again.\n",
370 sta_id, addr);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200371 spin_unlock_irqrestore(&il->sta_lock, flags_spin);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800372 return -EEXIST;
373 }
374
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200375 il->stations[sta_id].used |= IL_STA_UCODE_INPROGRESS;
376 memcpy(&sta_cmd, &il->stations[sta_id].sta,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200377 sizeof(struct il_addsta_cmd));
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200378 spin_unlock_irqrestore(&il->sta_lock, flags_spin);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800379
380 /* Add station to device's station table */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200381 ret = il_send_add_sta(il, &sta_cmd, CMD_SYNC);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800382 if (ret) {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200383 spin_lock_irqsave(&il->sta_lock, flags_spin);
Stanislaw Gruszka9406f792011-08-18 22:07:57 +0200384 IL_ERR("Adding station %pM failed.\n",
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200385 il->stations[sta_id].sta.sta.addr);
386 il->stations[sta_id].used &= ~IL_STA_DRIVER_ACTIVE;
387 il->stations[sta_id].used &= ~IL_STA_UCODE_INPROGRESS;
388 spin_unlock_irqrestore(&il->sta_lock, flags_spin);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800389 }
390 *sta_id_r = sta_id;
391 return ret;
392}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200393EXPORT_SYMBOL(il_add_station_common);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800394
395/**
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200396 * il_sta_ucode_deactivate - deactivate ucode status for a station
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800397 *
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200398 * il->sta_lock must be held
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800399 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200400static void il_sta_ucode_deactivate(struct il_priv *il, u8 sta_id)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800401{
402 /* Ucode must be active and driver must be non active */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200403 if ((il->stations[sta_id].used &
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200404 (IL_STA_UCODE_ACTIVE | IL_STA_DRIVER_ACTIVE)) !=
405 IL_STA_UCODE_ACTIVE)
Stanislaw Gruszka9406f792011-08-18 22:07:57 +0200406 IL_ERR("removed non active STA %u\n", sta_id);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800407
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200408 il->stations[sta_id].used &= ~IL_STA_UCODE_ACTIVE;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800409
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200410 memset(&il->stations[sta_id], 0, sizeof(struct il_station_entry));
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100411 D_ASSOC("Removed STA %u\n", sta_id);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800412}
413
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200414static int il_send_remove_station(struct il_priv *il,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800415 const u8 *addr, int sta_id,
416 bool temporary)
417{
Stanislaw Gruszkadcae1c62011-08-26 14:36:21 +0200418 struct il_rx_pkt *pkt;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800419 int ret;
420
421 unsigned long flags_spin;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200422 struct il_rem_sta_cmd rm_sta_cmd;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800423
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200424 struct il_host_cmd cmd = {
Stanislaw Gruszka4d69c752011-08-30 15:26:35 +0200425 .id = C_REM_STA,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200426 .len = sizeof(struct il_rem_sta_cmd),
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800427 .flags = CMD_SYNC,
428 .data = &rm_sta_cmd,
429 };
430
431 memset(&rm_sta_cmd, 0, sizeof(rm_sta_cmd));
432 rm_sta_cmd.num_sta = 1;
433 memcpy(&rm_sta_cmd.addr, addr, ETH_ALEN);
434
435 cmd.flags |= CMD_WANT_SKB;
436
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200437 ret = il_send_cmd(il, &cmd);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800438
439 if (ret)
440 return ret;
441
Stanislaw Gruszkadcae1c62011-08-26 14:36:21 +0200442 pkt = (struct il_rx_pkt *)cmd.reply_page;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200443 if (pkt->hdr.flags & IL_CMD_FAILED_MSK) {
Stanislaw Gruszka4d69c752011-08-30 15:26:35 +0200444 IL_ERR("Bad return from C_REM_STA (0x%08X)\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800445 pkt->hdr.flags);
446 ret = -EIO;
447 }
448
449 if (!ret) {
450 switch (pkt->u.rem_sta.status) {
451 case REM_STA_SUCCESS_MSK:
452 if (!temporary) {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200453 spin_lock_irqsave(&il->sta_lock, flags_spin);
454 il_sta_ucode_deactivate(il, sta_id);
455 spin_unlock_irqrestore(&il->sta_lock,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800456 flags_spin);
457 }
Stanislaw Gruszka4d69c752011-08-30 15:26:35 +0200458 D_ASSOC("C_REM_STA PASSED\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800459 break;
460 default:
461 ret = -EIO;
Stanislaw Gruszka4d69c752011-08-30 15:26:35 +0200462 IL_ERR("C_REM_STA failed\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800463 break;
464 }
465 }
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200466 il_free_pages(il, cmd.reply_page);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800467
468 return ret;
469}
470
471/**
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200472 * il_remove_station - Remove driver's knowledge of station.
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800473 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200474int il_remove_station(struct il_priv *il, const u8 sta_id,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800475 const u8 *addr)
476{
477 unsigned long flags;
478
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200479 if (!il_is_ready(il)) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100480 D_INFO(
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800481 "Unable to remove station %pM, device not ready.\n",
482 addr);
483 /*
484 * It is typical for stations to be removed when we are
485 * going down. Return success since device will be down
486 * soon anyway
487 */
488 return 0;
489 }
490
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100491 D_ASSOC("Removing STA from driver:%d %pM\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800492 sta_id, addr);
493
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200494 if (WARN_ON(sta_id == IL_INVALID_STATION))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800495 return -EINVAL;
496
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200497 spin_lock_irqsave(&il->sta_lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800498
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200499 if (!(il->stations[sta_id].used & IL_STA_DRIVER_ACTIVE)) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100500 D_INFO("Removing %pM but non DRIVER active\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800501 addr);
502 goto out_err;
503 }
504
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200505 if (!(il->stations[sta_id].used & IL_STA_UCODE_ACTIVE)) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100506 D_INFO("Removing %pM but non UCODE active\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800507 addr);
508 goto out_err;
509 }
510
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200511 if (il->stations[sta_id].used & IL_STA_LOCAL) {
512 kfree(il->stations[sta_id].lq);
513 il->stations[sta_id].lq = NULL;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800514 }
515
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200516 il->stations[sta_id].used &= ~IL_STA_DRIVER_ACTIVE;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800517
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200518 il->num_stations--;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800519
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200520 BUG_ON(il->num_stations < 0);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800521
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200522 spin_unlock_irqrestore(&il->sta_lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800523
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200524 return il_send_remove_station(il, addr, sta_id, false);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800525out_err:
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200526 spin_unlock_irqrestore(&il->sta_lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800527 return -EINVAL;
528}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200529EXPORT_SYMBOL_GPL(il_remove_station);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800530
531/**
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200532 * il_clear_ucode_stations - clear ucode station table bits
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800533 *
534 * This function clears all the bits in the driver indicating
535 * which stations are active in the ucode. Call when something
536 * other than explicit station management would cause this in
537 * the ucode, e.g. unassociated RXON.
538 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200539void il_clear_ucode_stations(struct il_priv *il,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200540 struct il_rxon_context *ctx)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800541{
542 int i;
543 unsigned long flags_spin;
544 bool cleared = false;
545
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100546 D_INFO("Clearing ucode stations in driver\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800547
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200548 spin_lock_irqsave(&il->sta_lock, flags_spin);
549 for (i = 0; i < il->hw_params.max_stations; i++) {
550 if (ctx && ctx->ctxid != il->stations[i].ctxid)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800551 continue;
552
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200553 if (il->stations[i].used & IL_STA_UCODE_ACTIVE) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100554 D_INFO(
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800555 "Clearing ucode active for station %d\n", i);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200556 il->stations[i].used &= ~IL_STA_UCODE_ACTIVE;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800557 cleared = true;
558 }
559 }
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200560 spin_unlock_irqrestore(&il->sta_lock, flags_spin);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800561
562 if (!cleared)
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100563 D_INFO(
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800564 "No active stations found to be cleared\n");
565}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200566EXPORT_SYMBOL(il_clear_ucode_stations);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800567
568/**
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200569 * il_restore_stations() - Restore driver known stations to device
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800570 *
571 * All stations considered active by driver, but not present in ucode, is
572 * restored.
573 *
574 * Function sleeps.
575 */
576void
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200577il_restore_stations(struct il_priv *il, struct il_rxon_context *ctx)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800578{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200579 struct il_addsta_cmd sta_cmd;
580 struct il_link_quality_cmd lq;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800581 unsigned long flags_spin;
582 int i;
583 bool found = false;
584 int ret;
585 bool send_lq;
586
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200587 if (!il_is_ready(il)) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100588 D_INFO(
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800589 "Not ready yet, not restoring any stations.\n");
590 return;
591 }
592
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100593 D_ASSOC("Restoring all known stations ... start.\n");
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200594 spin_lock_irqsave(&il->sta_lock, flags_spin);
595 for (i = 0; i < il->hw_params.max_stations; i++) {
596 if (ctx->ctxid != il->stations[i].ctxid)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800597 continue;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200598 if ((il->stations[i].used & IL_STA_DRIVER_ACTIVE) &&
Stanislaw Gruszka232913b2011-08-26 10:45:16 +0200599 !(il->stations[i].used & IL_STA_UCODE_ACTIVE)) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100600 D_ASSOC("Restoring sta %pM\n",
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200601 il->stations[i].sta.sta.addr);
602 il->stations[i].sta.mode = 0;
603 il->stations[i].used |= IL_STA_UCODE_INPROGRESS;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800604 found = true;
605 }
606 }
607
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200608 for (i = 0; i < il->hw_params.max_stations; i++) {
609 if ((il->stations[i].used & IL_STA_UCODE_INPROGRESS)) {
610 memcpy(&sta_cmd, &il->stations[i].sta,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200611 sizeof(struct il_addsta_cmd));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800612 send_lq = false;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200613 if (il->stations[i].lq) {
614 memcpy(&lq, il->stations[i].lq,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200615 sizeof(struct il_link_quality_cmd));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800616 send_lq = true;
617 }
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200618 spin_unlock_irqrestore(&il->sta_lock, flags_spin);
619 ret = il_send_add_sta(il, &sta_cmd, CMD_SYNC);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800620 if (ret) {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200621 spin_lock_irqsave(&il->sta_lock, flags_spin);
Stanislaw Gruszka9406f792011-08-18 22:07:57 +0200622 IL_ERR("Adding station %pM failed.\n",
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200623 il->stations[i].sta.sta.addr);
624 il->stations[i].used &=
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200625 ~IL_STA_DRIVER_ACTIVE;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200626 il->stations[i].used &=
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200627 ~IL_STA_UCODE_INPROGRESS;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200628 spin_unlock_irqrestore(&il->sta_lock,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800629 flags_spin);
630 }
631 /*
632 * Rate scaling has already been initialized, send
633 * current LQ command
634 */
635 if (send_lq)
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200636 il_send_lq_cmd(il, ctx, &lq,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800637 CMD_SYNC, true);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200638 spin_lock_irqsave(&il->sta_lock, flags_spin);
639 il->stations[i].used &= ~IL_STA_UCODE_INPROGRESS;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800640 }
641 }
642
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200643 spin_unlock_irqrestore(&il->sta_lock, flags_spin);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800644 if (!found)
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100645 D_INFO("Restoring all known stations"
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800646 " .... no stations to be restored.\n");
647 else
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100648 D_INFO("Restoring all known stations"
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800649 " .... complete.\n");
650}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200651EXPORT_SYMBOL(il_restore_stations);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800652
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +0100653int il_get_free_ucode_key_idx(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800654{
655 int i;
656
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200657 for (i = 0; i < il->sta_key_max_num; i++)
658 if (!test_and_set_bit(i, &il->ucode_key_table))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800659 return i;
660
661 return WEP_INVALID_OFFSET;
662}
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +0100663EXPORT_SYMBOL(il_get_free_ucode_key_idx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800664
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200665void il_dealloc_bcast_stations(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800666{
667 unsigned long flags;
668 int i;
669
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200670 spin_lock_irqsave(&il->sta_lock, flags);
671 for (i = 0; i < il->hw_params.max_stations; i++) {
672 if (!(il->stations[i].used & IL_STA_BCAST))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800673 continue;
674
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200675 il->stations[i].used &= ~IL_STA_UCODE_ACTIVE;
676 il->num_stations--;
677 BUG_ON(il->num_stations < 0);
678 kfree(il->stations[i].lq);
679 il->stations[i].lq = NULL;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800680 }
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200681 spin_unlock_irqrestore(&il->sta_lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800682}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200683EXPORT_SYMBOL_GPL(il_dealloc_bcast_stations);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800684
Stanislaw Gruszkad3175162011-11-15 11:25:42 +0100685#ifdef CONFIG_IWLEGACY_DEBUG
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200686static void il_dump_lq_cmd(struct il_priv *il,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200687 struct il_link_quality_cmd *lq)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800688{
689 int i;
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100690 D_RATE("lq station id 0x%x\n", lq->sta_id);
691 D_RATE("lq ant 0x%X 0x%X\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800692 lq->general_params.single_stream_ant_msk,
693 lq->general_params.dual_stream_ant_msk);
694
695 for (i = 0; i < LINK_QUAL_MAX_RETRY_NUM; i++)
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +0100696 D_RATE("lq idx %d 0x%X\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800697 i, lq->rs_table[i].rate_n_flags);
698}
699#else
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200700static inline void il_dump_lq_cmd(struct il_priv *il,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200701 struct il_link_quality_cmd *lq)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800702{
703}
704#endif
705
706/**
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200707 * il_is_lq_table_valid() - Test one aspect of LQ cmd for validity
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800708 *
709 * It sometimes happens when a HT rate has been in use and we
710 * loose connectivity with AP then mac80211 will first tell us that the
711 * current channel is not HT anymore before removing the station. In such a
712 * scenario the RXON flags will be updated to indicate we are not
713 * communicating HT anymore, but the LQ command may still contain HT rates.
714 * Test for this to prevent driver from sending LQ command between the time
715 * RXON flags are updated and when LQ command is updated.
716 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200717static bool il_is_lq_table_valid(struct il_priv *il,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200718 struct il_rxon_context *ctx,
719 struct il_link_quality_cmd *lq)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800720{
721 int i;
722
723 if (ctx->ht.enabled)
724 return true;
725
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100726 D_INFO("Channel %u is not an HT channel\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800727 ctx->active.channel);
728 for (i = 0; i < LINK_QUAL_MAX_RETRY_NUM; i++) {
729 if (le32_to_cpu(lq->rs_table[i].rate_n_flags) &
730 RATE_MCS_HT_MSK) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100731 D_INFO(
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +0100732 "idx %d of LQ expects HT channel\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800733 i);
734 return false;
735 }
736 }
737 return true;
738}
739
740/**
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200741 * il_send_lq_cmd() - Send link quality command
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800742 * @init: This command is sent as part of station initialization right
743 * after station has been added.
744 *
745 * The link quality command is sent as the last step of station creation.
746 * This is the special case in which init is set and we call a callback in
747 * this case to clear the state indicating that station creation is in
748 * progress.
749 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200750int il_send_lq_cmd(struct il_priv *il, struct il_rxon_context *ctx,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200751 struct il_link_quality_cmd *lq, u8 flags, bool init)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800752{
753 int ret = 0;
754 unsigned long flags_spin;
755
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200756 struct il_host_cmd cmd = {
Stanislaw Gruszka4d69c752011-08-30 15:26:35 +0200757 .id = C_TX_LINK_QUALITY_CMD,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200758 .len = sizeof(struct il_link_quality_cmd),
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800759 .flags = flags,
760 .data = lq,
761 };
762
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200763 if (WARN_ON(lq->sta_id == IL_INVALID_STATION))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800764 return -EINVAL;
765
766
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200767 spin_lock_irqsave(&il->sta_lock, flags_spin);
768 if (!(il->stations[lq->sta_id].used & IL_STA_DRIVER_ACTIVE)) {
769 spin_unlock_irqrestore(&il->sta_lock, flags_spin);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800770 return -EINVAL;
771 }
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200772 spin_unlock_irqrestore(&il->sta_lock, flags_spin);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800773
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200774 il_dump_lq_cmd(il, lq);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800775 BUG_ON(init && (cmd.flags & CMD_ASYNC));
776
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200777 if (il_is_lq_table_valid(il, ctx, lq))
778 ret = il_send_cmd(il, &cmd);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800779 else
780 ret = -EINVAL;
781
782 if (cmd.flags & CMD_ASYNC)
783 return ret;
784
785 if (init) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100786 D_INFO("init LQ command complete,"
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800787 " clearing sta addition status for sta %d\n",
788 lq->sta_id);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200789 spin_lock_irqsave(&il->sta_lock, flags_spin);
790 il->stations[lq->sta_id].used &= ~IL_STA_UCODE_INPROGRESS;
791 spin_unlock_irqrestore(&il->sta_lock, flags_spin);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800792 }
793 return ret;
794}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200795EXPORT_SYMBOL(il_send_lq_cmd);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800796
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200797int il_mac_sta_remove(struct ieee80211_hw *hw,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800798 struct ieee80211_vif *vif,
799 struct ieee80211_sta *sta)
800{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200801 struct il_priv *il = hw->priv;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200802 struct il_station_priv_common *sta_common = (void *)sta->drv_priv;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800803 int ret;
804
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100805 D_INFO("received request to remove station %pM\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800806 sta->addr);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200807 mutex_lock(&il->mutex);
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100808 D_INFO("proceeding to remove station %pM\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800809 sta->addr);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200810 ret = il_remove_station(il, sta_common->sta_id, sta->addr);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800811 if (ret)
Stanislaw Gruszka9406f792011-08-18 22:07:57 +0200812 IL_ERR("Error removing station %pM\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800813 sta->addr);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200814 mutex_unlock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800815 return ret;
816}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200817EXPORT_SYMBOL(il_mac_sta_remove);