blob: a28a8decc79cc4e891911c54619b0d923cb5db4b [file] [log] [blame]
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07001/******************************************************************************
2 *
3 * Copyright(c) 2003 - 2008 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 * James P. Ketrenos <ipw2100-admin@linux.intel.com>
26 * 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>
Emmanuel Grumbach6974e362008-04-14 21:16:06 -070032
Tomas Winkler3e0d4cb2008-04-24 11:55:38 -070033#include "iwl-dev.h"
Emmanuel Grumbach6974e362008-04-14 21:16:06 -070034#include "iwl-core.h"
35#include "iwl-sta.h"
Emmanuel Grumbach6974e362008-04-14 21:16:06 -070036#include "iwl-helpers.h"
Emmanuel Grumbach80fb47a2008-04-14 21:16:08 -070037
Tomas Winkler7a999bf2008-05-29 16:35:02 +080038
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +080039#define IWL_STA_DRIVER_ACTIVE BIT(0) /* driver entry is active */
40#define IWL_STA_UCODE_ACTIVE BIT(1) /* ucode entry is active */
Tomas Winkler7a999bf2008-05-29 16:35:02 +080041
Tomas Winkler947b13a2008-04-16 16:34:48 -070042u8 iwl_find_station(struct iwl_priv *priv, const u8 *addr)
43{
44 int i;
45 int start = 0;
46 int ret = IWL_INVALID_STATION;
47 unsigned long flags;
Tomas Winkler947b13a2008-04-16 16:34:48 -070048
Johannes Berg05c914f2008-09-11 00:01:58 +020049 if ((priv->iw_mode == NL80211_IFTYPE_ADHOC) ||
50 (priv->iw_mode == NL80211_IFTYPE_AP))
Tomas Winkler947b13a2008-04-16 16:34:48 -070051 start = IWL_STA_ID;
52
53 if (is_broadcast_ether_addr(addr))
54 return priv->hw_params.bcast_sta_id;
55
56 spin_lock_irqsave(&priv->sta_lock, flags);
57 for (i = start; i < priv->hw_params.max_stations; i++)
58 if (priv->stations[i].used &&
59 (!compare_ether_addr(priv->stations[i].sta.sta.addr,
60 addr))) {
61 ret = i;
62 goto out;
63 }
64
Johannes Berge1749612008-10-27 15:59:26 -070065 IWL_DEBUG_ASSOC_LIMIT("can not find STA %pM total %d\n",
66 addr, priv->num_stations);
Tomas Winkler947b13a2008-04-16 16:34:48 -070067
68 out:
69 spin_unlock_irqrestore(&priv->sta_lock, flags);
70 return ret;
71}
72EXPORT_SYMBOL(iwl_find_station);
73
Emmanuel Grumbachbe1f3ab62008-06-12 09:47:18 +080074int iwl_get_ra_sta_id(struct iwl_priv *priv, struct ieee80211_hdr *hdr)
75{
Johannes Berg05c914f2008-09-11 00:01:58 +020076 if (priv->iw_mode == NL80211_IFTYPE_STATION) {
Emmanuel Grumbachbe1f3ab62008-06-12 09:47:18 +080077 return IWL_AP_ID;
78 } else {
79 u8 *da = ieee80211_get_DA(hdr);
80 return iwl_find_station(priv, da);
81 }
82}
83EXPORT_SYMBOL(iwl_get_ra_sta_id);
84
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +080085static void iwl_sta_ucode_activate(struct iwl_priv *priv, u8 sta_id)
86{
87 unsigned long flags;
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +080088
89 spin_lock_irqsave(&priv->sta_lock, flags);
90
91 if (!(priv->stations[sta_id].used & IWL_STA_DRIVER_ACTIVE))
92 IWL_ERROR("ACTIVATE a non DRIVER active station %d\n", sta_id);
93
94 priv->stations[sta_id].used |= IWL_STA_UCODE_ACTIVE;
Johannes Berge1749612008-10-27 15:59:26 -070095 IWL_DEBUG_ASSOC("Added STA to Ucode: %pM\n",
96 priv->stations[sta_id].sta.sta.addr);
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +080097
98 spin_unlock_irqrestore(&priv->sta_lock, flags);
99}
100
Tomas Winkler42132bc2008-05-29 16:35:03 +0800101static int iwl_add_sta_callback(struct iwl_priv *priv,
102 struct iwl_cmd *cmd, struct sk_buff *skb)
103{
104 struct iwl_rx_packet *res = NULL;
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800105 u8 sta_id = cmd->cmd.addsta.sta.sta_id;
Tomas Winkler42132bc2008-05-29 16:35:03 +0800106
107 if (!skb) {
108 IWL_ERROR("Error: Response NULL in REPLY_ADD_STA.\n");
109 return 1;
110 }
111
112 res = (struct iwl_rx_packet *)skb->data;
113 if (res->hdr.flags & IWL_CMD_FAILED_MSK) {
114 IWL_ERROR("Bad return from REPLY_ADD_STA (0x%08X)\n",
115 res->hdr.flags);
116 return 1;
117 }
118
119 switch (res->u.add_sta.status) {
120 case ADD_STA_SUCCESS_MSK:
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800121 iwl_sta_ucode_activate(priv, sta_id);
122 /* fall through */
Tomas Winkler42132bc2008-05-29 16:35:03 +0800123 default:
124 IWL_DEBUG_HC("Received REPLY_ADD_STA:(0x%08X)\n",
125 res->u.add_sta.status);
126 break;
127 }
128
129 /* We didn't cache the SKB; let the caller free it */
130 return 1;
131}
132
Tomas Winkler133636d2008-05-05 10:22:34 +0800133int iwl_send_add_sta(struct iwl_priv *priv,
134 struct iwl_addsta_cmd *sta, u8 flags)
135{
136 struct iwl_rx_packet *res = NULL;
137 int ret = 0;
138 u8 data[sizeof(*sta)];
139 struct iwl_host_cmd cmd = {
140 .id = REPLY_ADD_STA,
141 .meta.flags = flags,
142 .data = data,
143 };
144
Tomas Winkler42132bc2008-05-29 16:35:03 +0800145 if (flags & CMD_ASYNC)
146 cmd.meta.u.callback = iwl_add_sta_callback;
147 else
Tomas Winkler133636d2008-05-05 10:22:34 +0800148 cmd.meta.flags |= CMD_WANT_SKB;
149
150 cmd.len = priv->cfg->ops->utils->build_addsta_hcmd(sta, data);
151 ret = iwl_send_cmd(priv, &cmd);
152
153 if (ret || (flags & CMD_ASYNC))
154 return ret;
155
156 res = (struct iwl_rx_packet *)cmd.meta.u.skb->data;
157 if (res->hdr.flags & IWL_CMD_FAILED_MSK) {
158 IWL_ERROR("Bad return from REPLY_ADD_STA (0x%08X)\n",
159 res->hdr.flags);
160 ret = -EIO;
161 }
162
163 if (ret == 0) {
164 switch (res->u.add_sta.status) {
165 case ADD_STA_SUCCESS_MSK:
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800166 iwl_sta_ucode_activate(priv, sta->sta.sta_id);
Tomas Winkler133636d2008-05-05 10:22:34 +0800167 IWL_DEBUG_INFO("REPLY_ADD_STA PASSED\n");
168 break;
169 default:
170 ret = -EIO;
171 IWL_WARNING("REPLY_ADD_STA failed\n");
172 break;
173 }
174 }
175
176 priv->alloc_rxb_skb--;
177 dev_kfree_skb_any(cmd.meta.u.skb);
178
179 return ret;
180}
181EXPORT_SYMBOL(iwl_send_add_sta);
Tomas Winkler947b13a2008-04-16 16:34:48 -0700182
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800183static void iwl_set_ht_add_station(struct iwl_priv *priv, u8 index,
184 struct ieee80211_ht_info *sta_ht_inf)
185{
186 __le32 sta_flags;
187 u8 mimo_ps_mode;
188
189 if (!sta_ht_inf || !sta_ht_inf->ht_supported)
190 goto done;
191
Tomas Winkler00c5ae22008-09-03 11:26:42 +0800192 mimo_ps_mode = (sta_ht_inf->cap & IEEE80211_HT_CAP_SM_PS) >> 2;
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800193
194 sta_flags = priv->stations[index].sta.station_flags;
195
196 sta_flags &= ~(STA_FLG_RTS_MIMO_PROT_MSK | STA_FLG_MIMO_DIS_MSK);
197
198 switch (mimo_ps_mode) {
Tomas Winkler00c5ae22008-09-03 11:26:42 +0800199 case WLAN_HT_CAP_SM_PS_STATIC:
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800200 sta_flags |= STA_FLG_MIMO_DIS_MSK;
201 break;
Tomas Winkler00c5ae22008-09-03 11:26:42 +0800202 case WLAN_HT_CAP_SM_PS_DYNAMIC:
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800203 sta_flags |= STA_FLG_RTS_MIMO_PROT_MSK;
204 break;
Tomas Winkler00c5ae22008-09-03 11:26:42 +0800205 case WLAN_HT_CAP_SM_PS_DISABLED:
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800206 break;
207 default:
Jiri Slaby6f147922008-08-11 23:49:41 +0200208 IWL_WARNING("Invalid MIMO PS mode %d\n", mimo_ps_mode);
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800209 break;
210 }
211
212 sta_flags |= cpu_to_le32(
213 (u32)sta_ht_inf->ampdu_factor << STA_FLG_MAX_AGG_SIZE_POS);
214
215 sta_flags |= cpu_to_le32(
216 (u32)sta_ht_inf->ampdu_density << STA_FLG_AGG_MPDU_DENSITY_POS);
217
218 if (iwl_is_fat_tx_allowed(priv, sta_ht_inf))
219 sta_flags |= STA_FLG_FAT_EN_MSK;
220 else
221 sta_flags &= ~STA_FLG_FAT_EN_MSK;
222
223 priv->stations[index].sta.station_flags = sta_flags;
224 done:
225 return;
226}
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800227
228/**
229 * iwl_add_station_flags - Add station to tables in driver and device
230 */
231u8 iwl_add_station_flags(struct iwl_priv *priv, const u8 *addr, int is_ap,
232 u8 flags, struct ieee80211_ht_info *ht_info)
233{
234 int i;
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800235 int sta_id = IWL_INVALID_STATION;
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800236 struct iwl_station_entry *station;
237 unsigned long flags_spin;
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800238
239 spin_lock_irqsave(&priv->sta_lock, flags_spin);
240 if (is_ap)
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800241 sta_id = IWL_AP_ID;
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800242 else if (is_broadcast_ether_addr(addr))
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800243 sta_id = priv->hw_params.bcast_sta_id;
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800244 else
245 for (i = IWL_STA_ID; i < priv->hw_params.max_stations; i++) {
246 if (!compare_ether_addr(priv->stations[i].sta.sta.addr,
247 addr)) {
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800248 sta_id = i;
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800249 break;
250 }
251
252 if (!priv->stations[i].used &&
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800253 sta_id == IWL_INVALID_STATION)
254 sta_id = i;
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800255 }
256
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800257 /* These two conditions have the same outcome, but keep them separate
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800258 since they have different meanings */
259 if (unlikely(sta_id == IWL_INVALID_STATION)) {
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800260 spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800261 return sta_id;
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800262 }
263
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800264 if (priv->stations[sta_id].used &&
265 !compare_ether_addr(priv->stations[sta_id].sta.sta.addr, addr)) {
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800266 spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800267 return sta_id;
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800268 }
269
270
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800271 station = &priv->stations[sta_id];
272 station->used = IWL_STA_DRIVER_ACTIVE;
Johannes Berge1749612008-10-27 15:59:26 -0700273 IWL_DEBUG_ASSOC("Add STA to driver ID %d: %pM\n",
274 sta_id, addr);
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800275 priv->num_stations++;
276
277 /* Set up the REPLY_ADD_STA command to send to device */
278 memset(&station->sta, 0, sizeof(struct iwl_addsta_cmd));
279 memcpy(station->sta.sta.addr, addr, ETH_ALEN);
280 station->sta.mode = 0;
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800281 station->sta.sta.sta_id = sta_id;
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800282 station->sta.station_flags = 0;
283
284 /* BCAST station and IBSS stations do not work in HT mode */
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800285 if (sta_id != priv->hw_params.bcast_sta_id &&
Johannes Berg05c914f2008-09-11 00:01:58 +0200286 priv->iw_mode != NL80211_IFTYPE_ADHOC)
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800287 iwl_set_ht_add_station(priv, sta_id, ht_info);
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800288
289 spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
290
291 /* Add station to device's station table */
292 iwl_send_add_sta(priv, &station->sta, flags);
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800293 return sta_id;
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800294
295}
296EXPORT_SYMBOL(iwl_add_station_flags);
297
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800298static void iwl_sta_ucode_deactivate(struct iwl_priv *priv, const char *addr)
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800299{
300 unsigned long flags;
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800301 u8 sta_id = iwl_find_station(priv, addr);
302
303 BUG_ON(sta_id == IWL_INVALID_STATION);
304
Johannes Berge1749612008-10-27 15:59:26 -0700305 IWL_DEBUG_ASSOC("Removed STA from Ucode: %pM\n", addr);
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800306
307 spin_lock_irqsave(&priv->sta_lock, flags);
308
309 /* Ucode must be active and driver must be non active */
310 if (priv->stations[sta_id].used != IWL_STA_UCODE_ACTIVE)
311 IWL_ERROR("removed non active STA %d\n", sta_id);
312
313 priv->stations[sta_id].used &= ~IWL_STA_UCODE_ACTIVE;
314
315 memset(&priv->stations[sta_id], 0, sizeof(struct iwl_station_entry));
316 spin_unlock_irqrestore(&priv->sta_lock, flags);
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800317}
318
319static int iwl_remove_sta_callback(struct iwl_priv *priv,
320 struct iwl_cmd *cmd, struct sk_buff *skb)
321{
322 struct iwl_rx_packet *res = NULL;
323 const char *addr = cmd->cmd.rm_sta.addr;
324
325 if (!skb) {
326 IWL_ERROR("Error: Response NULL in REPLY_REMOVE_STA.\n");
327 return 1;
328 }
329
330 res = (struct iwl_rx_packet *)skb->data;
331 if (res->hdr.flags & IWL_CMD_FAILED_MSK) {
332 IWL_ERROR("Bad return from REPLY_REMOVE_STA (0x%08X)\n",
333 res->hdr.flags);
334 return 1;
335 }
336
337 switch (res->u.rem_sta.status) {
338 case REM_STA_SUCCESS_MSK:
339 iwl_sta_ucode_deactivate(priv, addr);
340 break;
341 default:
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800342 IWL_ERROR("REPLY_REMOVE_STA failed\n");
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800343 break;
344 }
345
346 /* We didn't cache the SKB; let the caller free it */
347 return 1;
348}
349
350static int iwl_send_remove_station(struct iwl_priv *priv, const u8 *addr,
351 u8 flags)
352{
353 struct iwl_rx_packet *res = NULL;
354 int ret;
355
356 struct iwl_rem_sta_cmd rm_sta_cmd;
357
358 struct iwl_host_cmd cmd = {
359 .id = REPLY_REMOVE_STA,
360 .len = sizeof(struct iwl_rem_sta_cmd),
361 .meta.flags = flags,
362 .data = &rm_sta_cmd,
363 };
364
365 memset(&rm_sta_cmd, 0, sizeof(rm_sta_cmd));
366 rm_sta_cmd.num_sta = 1;
367 memcpy(&rm_sta_cmd.addr, addr , ETH_ALEN);
368
369 if (flags & CMD_ASYNC)
370 cmd.meta.u.callback = iwl_remove_sta_callback;
371 else
372 cmd.meta.flags |= CMD_WANT_SKB;
373 ret = iwl_send_cmd(priv, &cmd);
374
375 if (ret || (flags & CMD_ASYNC))
376 return ret;
377
378 res = (struct iwl_rx_packet *)cmd.meta.u.skb->data;
379 if (res->hdr.flags & IWL_CMD_FAILED_MSK) {
380 IWL_ERROR("Bad return from REPLY_REMOVE_STA (0x%08X)\n",
381 res->hdr.flags);
382 ret = -EIO;
383 }
384
385 if (!ret) {
386 switch (res->u.rem_sta.status) {
387 case REM_STA_SUCCESS_MSK:
388 iwl_sta_ucode_deactivate(priv, addr);
389 IWL_DEBUG_ASSOC("REPLY_REMOVE_STA PASSED\n");
390 break;
391 default:
392 ret = -EIO;
393 IWL_ERROR("REPLY_REMOVE_STA failed\n");
394 break;
395 }
396 }
397
398 priv->alloc_rxb_skb--;
399 dev_kfree_skb_any(cmd.meta.u.skb);
400
401 return ret;
402}
Emmanuel Grumbachbe1f3ab62008-06-12 09:47:18 +0800403
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800404/**
405 * iwl_remove_station - Remove driver's knowledge of station.
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800406 */
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800407int iwl_remove_station(struct iwl_priv *priv, const u8 *addr, int is_ap)
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800408{
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800409 int sta_id = IWL_INVALID_STATION;
410 int i, ret = -EINVAL;
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800411 unsigned long flags;
412
413 spin_lock_irqsave(&priv->sta_lock, flags);
414
415 if (is_ap)
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800416 sta_id = IWL_AP_ID;
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800417 else if (is_broadcast_ether_addr(addr))
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800418 sta_id = priv->hw_params.bcast_sta_id;
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800419 else
420 for (i = IWL_STA_ID; i < priv->hw_params.max_stations; i++)
421 if (priv->stations[i].used &&
422 !compare_ether_addr(priv->stations[i].sta.sta.addr,
423 addr)) {
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800424 sta_id = i;
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800425 break;
426 }
427
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800428 if (unlikely(sta_id == IWL_INVALID_STATION))
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800429 goto out;
430
Johannes Berge1749612008-10-27 15:59:26 -0700431 IWL_DEBUG_ASSOC("Removing STA from driver:%d %pM\n",
432 sta_id, addr);
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800433
434 if (!(priv->stations[sta_id].used & IWL_STA_DRIVER_ACTIVE)) {
Johannes Berge1749612008-10-27 15:59:26 -0700435 IWL_ERROR("Removing %pM but non DRIVER active\n",
436 addr);
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800437 goto out;
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800438 }
439
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800440 if (!(priv->stations[sta_id].used & IWL_STA_UCODE_ACTIVE)) {
Johannes Berge1749612008-10-27 15:59:26 -0700441 IWL_ERROR("Removing %pM but non UCODE active\n",
442 addr);
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800443 goto out;
444 }
445
446
447 priv->stations[sta_id].used &= ~IWL_STA_DRIVER_ACTIVE;
448
449 priv->num_stations--;
450
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800451 BUG_ON(priv->num_stations < 0);
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800452
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800453 spin_unlock_irqrestore(&priv->sta_lock, flags);
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800454
455 ret = iwl_send_remove_station(priv, addr, CMD_ASYNC);
456 return ret;
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800457out:
458 spin_unlock_irqrestore(&priv->sta_lock, flags);
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800459 return ret;
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800460}
461EXPORT_SYMBOL(iwl_remove_station);
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800462
Emmanuel Grumbachbe1f3ab62008-06-12 09:47:18 +0800463static int iwl_get_free_ucode_key_index(struct iwl_priv *priv)
Emmanuel Grumbach80fb47a2008-04-14 21:16:08 -0700464{
465 int i;
466
467 for (i = 0; i < STA_KEY_MAX_NUM; i++)
Emmanuel Grumbach77bab602008-04-15 16:01:44 -0700468 if (!test_and_set_bit(i, &priv->ucode_key_table))
Emmanuel Grumbach80fb47a2008-04-14 21:16:08 -0700469 return i;
470
471 return -1;
472}
Emmanuel Grumbach6974e362008-04-14 21:16:06 -0700473
474int iwl_send_static_wepkey_cmd(struct iwl_priv *priv, u8 send_if_empty)
475{
476 int i, not_empty = 0;
477 u8 buff[sizeof(struct iwl_wep_cmd) +
478 sizeof(struct iwl_wep_key) * WEP_KEYS_MAX];
479 struct iwl_wep_cmd *wep_cmd = (struct iwl_wep_cmd *)buff;
480 size_t cmd_size = sizeof(struct iwl_wep_cmd);
481 struct iwl_host_cmd cmd = {
482 .id = REPLY_WEPKEY,
483 .data = wep_cmd,
484 .meta.flags = CMD_ASYNC,
485 };
486
487 memset(wep_cmd, 0, cmd_size +
488 (sizeof(struct iwl_wep_key) * WEP_KEYS_MAX));
489
490 for (i = 0; i < WEP_KEYS_MAX ; i++) {
491 wep_cmd->key[i].key_index = i;
492 if (priv->wep_keys[i].key_size) {
493 wep_cmd->key[i].key_offset = i;
494 not_empty = 1;
495 } else {
496 wep_cmd->key[i].key_offset = WEP_INVALID_OFFSET;
497 }
498
499 wep_cmd->key[i].key_size = priv->wep_keys[i].key_size;
500 memcpy(&wep_cmd->key[i].key[3], priv->wep_keys[i].key,
501 priv->wep_keys[i].key_size);
502 }
503
504 wep_cmd->global_key_type = WEP_KEY_WEP_TYPE;
505 wep_cmd->num_keys = WEP_KEYS_MAX;
506
507 cmd_size += sizeof(struct iwl_wep_key) * WEP_KEYS_MAX;
508
509 cmd.len = cmd_size;
510
511 if (not_empty || send_if_empty)
512 return iwl_send_cmd(priv, &cmd);
513 else
514 return 0;
515}
Tomas Winkler27aaba02008-05-05 10:22:44 +0800516EXPORT_SYMBOL(iwl_send_static_wepkey_cmd);
Emmanuel Grumbach6974e362008-04-14 21:16:06 -0700517
518int iwl_remove_default_wep_key(struct iwl_priv *priv,
Emmanuel Grumbach80fb47a2008-04-14 21:16:08 -0700519 struct ieee80211_key_conf *keyconf)
Emmanuel Grumbach6974e362008-04-14 21:16:06 -0700520{
521 int ret;
522 unsigned long flags;
523
524 spin_lock_irqsave(&priv->sta_lock, flags);
Emmanuel Grumbach80fb47a2008-04-14 21:16:08 -0700525
526 if (!test_and_clear_bit(keyconf->keyidx, &priv->ucode_key_table))
527 IWL_ERROR("index %d not used in uCode key table.\n",
528 keyconf->keyidx);
529
Emmanuel Grumbach6974e362008-04-14 21:16:06 -0700530 priv->default_wep_key--;
Emmanuel Grumbach80fb47a2008-04-14 21:16:08 -0700531 memset(&priv->wep_keys[keyconf->keyidx], 0, sizeof(priv->wep_keys[0]));
Emmanuel Grumbach6974e362008-04-14 21:16:06 -0700532 ret = iwl_send_static_wepkey_cmd(priv, 1);
Emmanuel Grumbach4564ce82008-06-12 09:47:09 +0800533 IWL_DEBUG_WEP("Remove default WEP key: idx=%d ret=%d\n",
534 keyconf->keyidx, ret);
Emmanuel Grumbach6974e362008-04-14 21:16:06 -0700535 spin_unlock_irqrestore(&priv->sta_lock, flags);
536
537 return ret;
538}
Tomas Winkler27aaba02008-05-05 10:22:44 +0800539EXPORT_SYMBOL(iwl_remove_default_wep_key);
Emmanuel Grumbach6974e362008-04-14 21:16:06 -0700540
541int iwl_set_default_wep_key(struct iwl_priv *priv,
542 struct ieee80211_key_conf *keyconf)
543{
544 int ret;
545 unsigned long flags;
546
Emmanuel Grumbach4564ce82008-06-12 09:47:09 +0800547 if (keyconf->keylen != WEP_KEY_LEN_128 &&
548 keyconf->keylen != WEP_KEY_LEN_64) {
549 IWL_DEBUG_WEP("Bad WEP key length %d\n", keyconf->keylen);
550 return -EINVAL;
551 }
552
Emmanuel Grumbach6974e362008-04-14 21:16:06 -0700553 keyconf->flags &= ~IEEE80211_KEY_FLAG_GENERATE_IV;
Emmanuel Grumbachccc038a2008-05-15 13:54:09 +0800554 keyconf->hw_key_idx = HW_KEY_DEFAULT;
Emmanuel Grumbach6974e362008-04-14 21:16:06 -0700555 priv->stations[IWL_AP_ID].keyinfo.alg = ALG_WEP;
556
557 spin_lock_irqsave(&priv->sta_lock, flags);
558 priv->default_wep_key++;
559
Emmanuel Grumbach80fb47a2008-04-14 21:16:08 -0700560 if (test_and_set_bit(keyconf->keyidx, &priv->ucode_key_table))
561 IWL_ERROR("index %d already used in uCode key table.\n",
562 keyconf->keyidx);
563
Emmanuel Grumbach6974e362008-04-14 21:16:06 -0700564 priv->wep_keys[keyconf->keyidx].key_size = keyconf->keylen;
565 memcpy(&priv->wep_keys[keyconf->keyidx].key, &keyconf->key,
566 keyconf->keylen);
567
568 ret = iwl_send_static_wepkey_cmd(priv, 0);
Emmanuel Grumbach4564ce82008-06-12 09:47:09 +0800569 IWL_DEBUG_WEP("Set default WEP key: len=%d idx=%d ret=%d\n",
570 keyconf->keylen, keyconf->keyidx, ret);
Emmanuel Grumbach6974e362008-04-14 21:16:06 -0700571 spin_unlock_irqrestore(&priv->sta_lock, flags);
572
573 return ret;
574}
Tomas Winkler27aaba02008-05-05 10:22:44 +0800575EXPORT_SYMBOL(iwl_set_default_wep_key);
Emmanuel Grumbach6974e362008-04-14 21:16:06 -0700576
Emmanuel Grumbach74805132008-04-14 21:16:09 -0700577static int iwl_set_wep_dynamic_key_info(struct iwl_priv *priv,
Emmanuel Grumbach0211ddd2008-04-14 21:16:07 -0700578 struct ieee80211_key_conf *keyconf,
579 u8 sta_id)
580{
581 unsigned long flags;
582 __le16 key_flags = 0;
583 int ret;
584
585 keyconf->flags &= ~IEEE80211_KEY_FLAG_GENERATE_IV;
Emmanuel Grumbach0211ddd2008-04-14 21:16:07 -0700586
587 key_flags |= (STA_KEY_FLG_WEP | STA_KEY_FLG_MAP_KEY_MSK);
588 key_flags |= cpu_to_le16(keyconf->keyidx << STA_KEY_FLG_KEYID_POS);
589 key_flags &= ~STA_KEY_FLG_INVALID;
590
591 if (keyconf->keylen == WEP_KEY_LEN_128)
592 key_flags |= STA_KEY_FLG_KEY_SIZE_MSK;
593
Tomas Winkler5425e492008-04-15 16:01:38 -0700594 if (sta_id == priv->hw_params.bcast_sta_id)
Emmanuel Grumbach0211ddd2008-04-14 21:16:07 -0700595 key_flags |= STA_KEY_MULTICAST_MSK;
596
597 spin_lock_irqsave(&priv->sta_lock, flags);
598
599 priv->stations[sta_id].keyinfo.alg = keyconf->alg;
600 priv->stations[sta_id].keyinfo.keylen = keyconf->keylen;
601 priv->stations[sta_id].keyinfo.keyidx = keyconf->keyidx;
602
603 memcpy(priv->stations[sta_id].keyinfo.key,
604 keyconf->key, keyconf->keylen);
605
606 memcpy(&priv->stations[sta_id].sta.key.key[3],
607 keyconf->key, keyconf->keylen);
608
Emmanuel Grumbach3ec47732008-04-17 16:03:36 -0700609 if ((priv->stations[sta_id].sta.key.key_flags & STA_KEY_FLG_ENCRYPT_MSK)
610 == STA_KEY_FLG_NO_ENC)
611 priv->stations[sta_id].sta.key.key_offset =
Emmanuel Grumbach80fb47a2008-04-14 21:16:08 -0700612 iwl_get_free_ucode_key_index(priv);
Emmanuel Grumbach3ec47732008-04-17 16:03:36 -0700613 /* else, we are overriding an existing key => no need to allocated room
614 * in uCode. */
Emmanuel Grumbach0211ddd2008-04-14 21:16:07 -0700615
Emmanuel Grumbach3ec47732008-04-17 16:03:36 -0700616 priv->stations[sta_id].sta.key.key_flags = key_flags;
Emmanuel Grumbach0211ddd2008-04-14 21:16:07 -0700617 priv->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
618 priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
619
Tomas Winkler133636d2008-05-05 10:22:34 +0800620 ret = iwl_send_add_sta(priv, &priv->stations[sta_id].sta, CMD_ASYNC);
Emmanuel Grumbach0211ddd2008-04-14 21:16:07 -0700621
622 spin_unlock_irqrestore(&priv->sta_lock, flags);
623
624 return ret;
625}
Emmanuel Grumbach74805132008-04-14 21:16:09 -0700626
627static int iwl_set_ccmp_dynamic_key_info(struct iwl_priv *priv,
628 struct ieee80211_key_conf *keyconf,
629 u8 sta_id)
630{
631 unsigned long flags;
632 __le16 key_flags = 0;
633
634 key_flags |= (STA_KEY_FLG_CCMP | STA_KEY_FLG_MAP_KEY_MSK);
635 key_flags |= cpu_to_le16(keyconf->keyidx << STA_KEY_FLG_KEYID_POS);
636 key_flags &= ~STA_KEY_FLG_INVALID;
637
Tomas Winkler5425e492008-04-15 16:01:38 -0700638 if (sta_id == priv->hw_params.bcast_sta_id)
Emmanuel Grumbach74805132008-04-14 21:16:09 -0700639 key_flags |= STA_KEY_MULTICAST_MSK;
640
641 keyconf->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
Emmanuel Grumbach74805132008-04-14 21:16:09 -0700642
643 spin_lock_irqsave(&priv->sta_lock, flags);
644 priv->stations[sta_id].keyinfo.alg = keyconf->alg;
645 priv->stations[sta_id].keyinfo.keylen = keyconf->keylen;
646
647 memcpy(priv->stations[sta_id].keyinfo.key, keyconf->key,
648 keyconf->keylen);
649
650 memcpy(priv->stations[sta_id].sta.key.key, keyconf->key,
651 keyconf->keylen);
652
Emmanuel Grumbach3ec47732008-04-17 16:03:36 -0700653 if ((priv->stations[sta_id].sta.key.key_flags & STA_KEY_FLG_ENCRYPT_MSK)
654 == STA_KEY_FLG_NO_ENC)
655 priv->stations[sta_id].sta.key.key_offset =
656 iwl_get_free_ucode_key_index(priv);
657 /* else, we are overriding an existing key => no need to allocated room
658 * in uCode. */
659
Emmanuel Grumbach74805132008-04-14 21:16:09 -0700660 priv->stations[sta_id].sta.key.key_flags = key_flags;
661 priv->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
662 priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
663
664 spin_unlock_irqrestore(&priv->sta_lock, flags);
665
666 IWL_DEBUG_INFO("hwcrypto: modify ucode station key info\n");
Tomas Winkler133636d2008-05-05 10:22:34 +0800667 return iwl_send_add_sta(priv, &priv->stations[sta_id].sta, CMD_ASYNC);
Emmanuel Grumbach74805132008-04-14 21:16:09 -0700668}
669
670static int iwl_set_tkip_dynamic_key_info(struct iwl_priv *priv,
671 struct ieee80211_key_conf *keyconf,
672 u8 sta_id)
673{
674 unsigned long flags;
675 int ret = 0;
676
677 keyconf->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
678 keyconf->flags |= IEEE80211_KEY_FLAG_GENERATE_MMIC;
Emmanuel Grumbach74805132008-04-14 21:16:09 -0700679
680 spin_lock_irqsave(&priv->sta_lock, flags);
681
682 priv->stations[sta_id].keyinfo.alg = keyconf->alg;
Emmanuel Grumbach74805132008-04-14 21:16:09 -0700683 priv->stations[sta_id].keyinfo.keylen = 16;
Emmanuel Grumbach3ec47732008-04-17 16:03:36 -0700684
685 if ((priv->stations[sta_id].sta.key.key_flags & STA_KEY_FLG_ENCRYPT_MSK)
686 == STA_KEY_FLG_NO_ENC)
687 priv->stations[sta_id].sta.key.key_offset =
Emmanuel Grumbach77bab602008-04-15 16:01:44 -0700688 iwl_get_free_ucode_key_index(priv);
Emmanuel Grumbach3ec47732008-04-17 16:03:36 -0700689 /* else, we are overriding an existing key => no need to allocated room
690 * in uCode. */
Emmanuel Grumbach74805132008-04-14 21:16:09 -0700691
692 /* This copy is acutally not needed: we get the key with each TX */
693 memcpy(priv->stations[sta_id].keyinfo.key, keyconf->key, 16);
694
695 memcpy(priv->stations[sta_id].sta.key.key, keyconf->key, 16);
696
697 spin_unlock_irqrestore(&priv->sta_lock, flags);
698
699 return ret;
700}
701
Emmanuel Grumbach3ec47732008-04-17 16:03:36 -0700702int iwl_remove_dynamic_key(struct iwl_priv *priv,
703 struct ieee80211_key_conf *keyconf,
704 u8 sta_id)
Emmanuel Grumbach74805132008-04-14 21:16:09 -0700705{
706 unsigned long flags;
Emmanuel Grumbach3ec47732008-04-17 16:03:36 -0700707 int ret = 0;
708 u16 key_flags;
709 u8 keyidx;
Emmanuel Grumbach74805132008-04-14 21:16:09 -0700710
Emmanuel Grumbachccc038a2008-05-15 13:54:09 +0800711 priv->key_mapping_key--;
Emmanuel Grumbach74805132008-04-14 21:16:09 -0700712
713 spin_lock_irqsave(&priv->sta_lock, flags);
Emmanuel Grumbach3ec47732008-04-17 16:03:36 -0700714 key_flags = le16_to_cpu(priv->stations[sta_id].sta.key.key_flags);
715 keyidx = (key_flags >> STA_KEY_FLG_KEYID_POS) & 0x3;
716
Emmanuel Grumbach4564ce82008-06-12 09:47:09 +0800717 IWL_DEBUG_WEP("Remove dynamic key: idx=%d sta=%d\n",
718 keyconf->keyidx, sta_id);
719
Emmanuel Grumbach3ec47732008-04-17 16:03:36 -0700720 if (keyconf->keyidx != keyidx) {
721 /* We need to remove a key with index different that the one
722 * in the uCode. This means that the key we need to remove has
723 * been replaced by another one with different index.
724 * Don't do anything and return ok
725 */
726 spin_unlock_irqrestore(&priv->sta_lock, flags);
727 return 0;
728 }
729
Emmanuel Grumbach74805132008-04-14 21:16:09 -0700730 if (!test_and_clear_bit(priv->stations[sta_id].sta.key.key_offset,
731 &priv->ucode_key_table))
732 IWL_ERROR("index %d not used in uCode key table.\n",
733 priv->stations[sta_id].sta.key.key_offset);
734 memset(&priv->stations[sta_id].keyinfo, 0,
Tomas Winkler6def9762008-05-05 10:22:31 +0800735 sizeof(struct iwl_hw_key));
Emmanuel Grumbach74805132008-04-14 21:16:09 -0700736 memset(&priv->stations[sta_id].sta.key, 0,
737 sizeof(struct iwl4965_keyinfo));
Emmanuel Grumbach3ec47732008-04-17 16:03:36 -0700738 priv->stations[sta_id].sta.key.key_flags =
739 STA_KEY_FLG_NO_ENC | STA_KEY_FLG_INVALID;
740 priv->stations[sta_id].sta.key.key_offset = WEP_INVALID_OFFSET;
Emmanuel Grumbach74805132008-04-14 21:16:09 -0700741 priv->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
742 priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
Emmanuel Grumbach74805132008-04-14 21:16:09 -0700743
Emmanuel Grumbachccc038a2008-05-15 13:54:09 +0800744 ret = iwl_send_add_sta(priv, &priv->stations[sta_id].sta, CMD_ASYNC);
Emmanuel Grumbach3ec47732008-04-17 16:03:36 -0700745 spin_unlock_irqrestore(&priv->sta_lock, flags);
746 return ret;
Emmanuel Grumbach74805132008-04-14 21:16:09 -0700747}
Tomas Winkler27aaba02008-05-05 10:22:44 +0800748EXPORT_SYMBOL(iwl_remove_dynamic_key);
Emmanuel Grumbach74805132008-04-14 21:16:09 -0700749
750int iwl_set_dynamic_key(struct iwl_priv *priv,
Emmanuel Grumbachccc038a2008-05-15 13:54:09 +0800751 struct ieee80211_key_conf *keyconf, u8 sta_id)
Emmanuel Grumbach74805132008-04-14 21:16:09 -0700752{
753 int ret;
754
Emmanuel Grumbachccc038a2008-05-15 13:54:09 +0800755 priv->key_mapping_key++;
756 keyconf->hw_key_idx = HW_KEY_DYNAMIC;
Emmanuel Grumbach74805132008-04-14 21:16:09 -0700757
Emmanuel Grumbachccc038a2008-05-15 13:54:09 +0800758 switch (keyconf->alg) {
Emmanuel Grumbach74805132008-04-14 21:16:09 -0700759 case ALG_CCMP:
Emmanuel Grumbachccc038a2008-05-15 13:54:09 +0800760 ret = iwl_set_ccmp_dynamic_key_info(priv, keyconf, sta_id);
Emmanuel Grumbach74805132008-04-14 21:16:09 -0700761 break;
762 case ALG_TKIP:
Emmanuel Grumbachccc038a2008-05-15 13:54:09 +0800763 ret = iwl_set_tkip_dynamic_key_info(priv, keyconf, sta_id);
Emmanuel Grumbach74805132008-04-14 21:16:09 -0700764 break;
765 case ALG_WEP:
Emmanuel Grumbachccc038a2008-05-15 13:54:09 +0800766 ret = iwl_set_wep_dynamic_key_info(priv, keyconf, sta_id);
Emmanuel Grumbach74805132008-04-14 21:16:09 -0700767 break;
768 default:
Emmanuel Grumbachccc038a2008-05-15 13:54:09 +0800769 IWL_ERROR("Unknown alg: %s alg = %d\n", __func__, keyconf->alg);
Emmanuel Grumbach74805132008-04-14 21:16:09 -0700770 ret = -EINVAL;
771 }
772
Emmanuel Grumbach4564ce82008-06-12 09:47:09 +0800773 IWL_DEBUG_WEP("Set dynamic key: alg= %d len=%d idx=%d sta=%d ret=%d\n",
774 keyconf->alg, keyconf->keylen, keyconf->keyidx,
775 sta_id, ret);
776
Emmanuel Grumbach74805132008-04-14 21:16:09 -0700777 return ret;
778}
Tomas Winkler27aaba02008-05-05 10:22:44 +0800779EXPORT_SYMBOL(iwl_set_dynamic_key);
Emmanuel Grumbach74805132008-04-14 21:16:09 -0700780
Tomas Winkler66c73db2008-04-15 16:01:40 -0700781#ifdef CONFIG_IWLWIFI_DEBUG
782static void iwl_dump_lq_cmd(struct iwl_priv *priv,
783 struct iwl_link_quality_cmd *lq)
784{
785 int i;
786 IWL_DEBUG_RATE("lq station id 0x%x\n", lq->sta_id);
787 IWL_DEBUG_RATE("lq dta 0x%X 0x%X\n",
788 lq->general_params.single_stream_ant_msk,
789 lq->general_params.dual_stream_ant_msk);
790
791 for (i = 0; i < LINK_QUAL_MAX_RETRY_NUM; i++)
792 IWL_DEBUG_RATE("lq index %d 0x%X\n",
793 i, lq->rs_table[i].rate_n_flags);
794}
795#else
796static inline void iwl_dump_lq_cmd(struct iwl_priv *priv,
797 struct iwl_link_quality_cmd *lq)
798{
799}
800#endif
801
802int iwl_send_lq_cmd(struct iwl_priv *priv,
803 struct iwl_link_quality_cmd *lq, u8 flags)
804{
805 struct iwl_host_cmd cmd = {
806 .id = REPLY_TX_LINK_QUALITY_CMD,
807 .len = sizeof(struct iwl_link_quality_cmd),
808 .meta.flags = flags,
809 .data = lq,
810 };
811
812 if ((lq->sta_id == 0xFF) &&
Johannes Berg05c914f2008-09-11 00:01:58 +0200813 (priv->iw_mode == NL80211_IFTYPE_ADHOC))
Tomas Winkler66c73db2008-04-15 16:01:40 -0700814 return -EINVAL;
815
816 if (lq->sta_id == 0xFF)
817 lq->sta_id = IWL_AP_ID;
818
Tomas Winkler3ac7f142008-07-21 02:40:14 +0300819 iwl_dump_lq_cmd(priv, lq);
Tomas Winkler66c73db2008-04-15 16:01:40 -0700820
Ron Rindjunsky36e1f162008-06-30 17:23:13 +0800821 if (iwl_is_associated(priv) && priv->assoc_station_added)
Tomas Winkler66c73db2008-04-15 16:01:40 -0700822 return iwl_send_cmd(priv, &cmd);
823
824 return 0;
825}
826EXPORT_SYMBOL(iwl_send_lq_cmd);
827
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800828/**
829 * iwl_sta_init_lq - Initialize a station's hardware rate table
830 *
831 * The uCode's station table contains a table of fallback rates
832 * for automatic fallback during transmission.
833 *
834 * NOTE: This sets up a default set of values. These will be replaced later
Tomas Winklere227cea2008-07-18 13:53:05 +0800835 * if the driver's iwl-agn-rs rate scaling algorithm is used, instead of
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800836 * rc80211_simple.
837 *
838 * NOTE: Run REPLY_ADD_STA command to set up station table entry, before
839 * calling this function (which runs REPLY_TX_LINK_QUALITY_CMD,
840 * which requires station table entry to exist).
841 */
842static void iwl_sta_init_lq(struct iwl_priv *priv, const u8 *addr, int is_ap)
843{
844 int i, r;
845 struct iwl_link_quality_cmd link_cmd = {
846 .reserved1 = 0,
847 };
Tomas Winkler5d664a42008-10-08 09:37:29 +0800848 u32 rate_flags;
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800849
850 /* Set up the rate scaling to start at selected rate, fall back
851 * all the way down to 1M in IEEE order, and then spin on 1M */
852 if (is_ap)
853 r = IWL_RATE_54M_INDEX;
854 else if (priv->band == IEEE80211_BAND_5GHZ)
855 r = IWL_RATE_6M_INDEX;
856 else
857 r = IWL_RATE_1M_INDEX;
858
859 for (i = 0; i < LINK_QUAL_MAX_RETRY_NUM; i++) {
860 rate_flags = 0;
861 if (r >= IWL_FIRST_CCK_RATE && r <= IWL_LAST_CCK_RATE)
862 rate_flags |= RATE_MCS_CCK_MSK;
863
Tomas Winkler5d664a42008-10-08 09:37:29 +0800864 rate_flags |= first_antenna(priv->hw_params.valid_tx_ant) <<
865 RATE_MCS_ANT_POS;
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800866
867 link_cmd.rs_table[i].rate_n_flags =
Tomas Winklere7d326a2008-06-12 09:47:11 +0800868 iwl_hw_set_rate_n_flags(iwl_rates[r].plcp, rate_flags);
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800869 r = iwl4965_get_prev_ieee_rate(r);
870 }
871
Tomas Winkler5d664a42008-10-08 09:37:29 +0800872 link_cmd.general_params.single_stream_ant_msk =
873 first_antenna(priv->hw_params.valid_tx_ant);
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800874 link_cmd.general_params.dual_stream_ant_msk = 3;
875 link_cmd.agg_params.agg_dis_start_th = 3;
876 link_cmd.agg_params.agg_time_limit = cpu_to_le16(4000);
877
878 /* Update the rate scaling for control frame Tx to AP */
879 link_cmd.sta_id = is_ap ? IWL_AP_ID : priv->hw_params.bcast_sta_id;
880
881 iwl_send_cmd_pdu_async(priv, REPLY_TX_LINK_QUALITY_CMD,
882 sizeof(link_cmd), &link_cmd, NULL);
883}
Emmanuel Grumbach24e5c402008-06-30 17:23:03 +0800884
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800885/**
886 * iwl_rxon_add_station - add station into station table.
887 *
888 * there is only one AP station with id= IWL_AP_ID
889 * NOTE: mutex must be held before calling this fnction
890 */
891int iwl_rxon_add_station(struct iwl_priv *priv, const u8 *addr, int is_ap)
892{
893 u8 sta_id;
894
895 /* Add station to device's station table */
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800896 struct ieee80211_conf *conf = &priv->hw->conf;
897 struct ieee80211_ht_info *cur_ht_config = &conf->ht_conf;
898
899 if ((is_ap) &&
900 (conf->flags & IEEE80211_CONF_SUPPORT_HT_MODE) &&
Johannes Berg05c914f2008-09-11 00:01:58 +0200901 (priv->iw_mode == NL80211_IFTYPE_STATION))
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800902 sta_id = iwl_add_station_flags(priv, addr, is_ap,
903 0, cur_ht_config);
904 else
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800905 sta_id = iwl_add_station_flags(priv, addr, is_ap,
906 0, NULL);
907
908 /* Set up default rate scaling table in device's station table */
909 iwl_sta_init_lq(priv, addr, is_ap);
910
911 return sta_id;
912}
913EXPORT_SYMBOL(iwl_rxon_add_station);
914
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800915/**
916 * iwl_get_sta_id - Find station's index within station table
917 *
918 * If new IBSS station, create new entry in station table
919 */
920int iwl_get_sta_id(struct iwl_priv *priv, struct ieee80211_hdr *hdr)
921{
922 int sta_id;
923 u16 fc = le16_to_cpu(hdr->frame_control);
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800924
925 /* If this frame is broadcast or management, use broadcast station id */
926 if (((fc & IEEE80211_FCTL_FTYPE) != IEEE80211_FTYPE_DATA) ||
927 is_multicast_ether_addr(hdr->addr1))
928 return priv->hw_params.bcast_sta_id;
929
930 switch (priv->iw_mode) {
931
932 /* If we are a client station in a BSS network, use the special
933 * AP station entry (that's the only station we communicate with) */
Johannes Berg05c914f2008-09-11 00:01:58 +0200934 case NL80211_IFTYPE_STATION:
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800935 return IWL_AP_ID;
936
937 /* If we are an AP, then find the station, or use BCAST */
Johannes Berg05c914f2008-09-11 00:01:58 +0200938 case NL80211_IFTYPE_AP:
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800939 sta_id = iwl_find_station(priv, hdr->addr1);
940 if (sta_id != IWL_INVALID_STATION)
941 return sta_id;
942 return priv->hw_params.bcast_sta_id;
943
944 /* If this frame is going out to an IBSS network, find the station,
945 * or create a new station table entry */
Johannes Berg05c914f2008-09-11 00:01:58 +0200946 case NL80211_IFTYPE_ADHOC:
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800947 sta_id = iwl_find_station(priv, hdr->addr1);
948 if (sta_id != IWL_INVALID_STATION)
949 return sta_id;
950
951 /* Create new station table entry */
952 sta_id = iwl_add_station_flags(priv, hdr->addr1,
953 0, CMD_ASYNC, NULL);
954
955 if (sta_id != IWL_INVALID_STATION)
956 return sta_id;
957
Johannes Berge1749612008-10-27 15:59:26 -0700958 IWL_DEBUG_DROP("Station %pM not in station map. "
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800959 "Defaulting to broadcast...\n",
Johannes Berge1749612008-10-27 15:59:26 -0700960 hdr->addr1);
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800961 iwl_print_hex_dump(priv, IWL_DL_DROP, (u8 *) hdr, sizeof(*hdr));
962 return priv->hw_params.bcast_sta_id;
963
Stefanik Gábord10c4ec2008-09-03 11:26:59 +0800964 /* If we are in monitor mode, use BCAST. This is required for
965 * packet injection. */
Johannes Berg05c914f2008-09-11 00:01:58 +0200966 case NL80211_IFTYPE_MONITOR:
Stefanik Gábord10c4ec2008-09-03 11:26:59 +0800967 return priv->hw_params.bcast_sta_id;
968
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800969 default:
Jiri Slaby6f147922008-08-11 23:49:41 +0200970 IWL_WARNING("Unknown mode of operation: %d\n", priv->iw_mode);
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800971 return priv->hw_params.bcast_sta_id;
972 }
973}
974EXPORT_SYMBOL(iwl_get_sta_id);
975
Tomas Winkler5083e562008-05-29 16:35:15 +0800976/**
977 * iwl_sta_modify_enable_tid_tx - Enable Tx for this TID in station table
978 */
979void iwl_sta_modify_enable_tid_tx(struct iwl_priv *priv, int sta_id, int tid)
980{
981 unsigned long flags;
982
983 /* Remove "disable" flag, to enable Tx for this TID */
984 spin_lock_irqsave(&priv->sta_lock, flags);
985 priv->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_TID_DISABLE_TX;
986 priv->stations[sta_id].sta.tid_disable_tx &= cpu_to_le16(~(1 << tid));
987 priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
988 spin_unlock_irqrestore(&priv->sta_lock, flags);
989
990 iwl_send_add_sta(priv, &priv->stations[sta_id].sta, CMD_ASYNC);
991}
992EXPORT_SYMBOL(iwl_sta_modify_enable_tid_tx);
993