blob: e9ca265a4bb67cc14f585183232bdb239567977a [file] [log] [blame]
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001/******************************************************************************
2 *
3 * GPL LICENSE SUMMARY
4 *
5 * Copyright(c) 2008 - 2011 Intel Corporation. All rights reserved.
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of version 2 of the GNU General Public License as
9 * published by the Free Software Foundation.
10 *
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110,
19 * USA
20 *
21 * The full GNU General Public License is included in this distribution
22 * in the file called LICENSE.GPL.
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#include <linux/kernel.h>
30#include <linux/module.h>
31#include <linux/etherdevice.h>
32#include <linux/sched.h>
33#include <linux/slab.h>
34#include <net/mac80211.h>
35
36#include "iwl-eeprom.h"
37#include "iwl-dev.h"
38#include "iwl-debug.h"
39#include "iwl-core.h"
40#include "iwl-io.h"
41#include "iwl-power.h"
42#include "iwl-sta.h"
43#include "iwl-helpers.h"
44
45
46MODULE_DESCRIPTION("iwl-legacy: common functions for 3945 and 4965");
47MODULE_VERSION(IWLWIFI_VERSION);
48MODULE_AUTHOR(DRV_COPYRIGHT " " DRV_AUTHOR);
49MODULE_LICENSE("GPL");
50
51/*
52 * set bt_coex_active to true, uCode will do kill/defer
53 * every time the priority line is asserted (BT is sending signals on the
54 * priority line in the PCIx).
55 * set bt_coex_active to false, uCode will ignore the BT activity and
56 * perform the normal operation
57 *
58 * User might experience transmit issue on some platform due to WiFi/BT
59 * co-exist problem. The possible behaviors are:
60 * Able to scan and finding all the available AP
61 * Not able to associate with any AP
62 * On those platforms, WiFi communication can be restored by set
63 * "bt_coex_active" module parameter to "false"
64 *
65 * default: bt_coex_active = true (BT_COEX_ENABLE)
66 */
John W. Linvilleef334172011-02-25 15:51:01 -050067static bool bt_coex_active = true;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -080068module_param(bt_coex_active, bool, S_IRUGO);
69MODULE_PARM_DESC(bt_coex_active, "enable wifi/bluetooth co-exist");
70
Stanislaw Gruszkad2ddf622011-08-16 14:17:04 +020071u32 il_debug_level;
72EXPORT_SYMBOL(il_debug_level);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -080073
Stanislaw Gruszkad2ddf622011-08-16 14:17:04 +020074const u8 il_bcast_addr[ETH_ALEN] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF };
75EXPORT_SYMBOL(il_bcast_addr);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -080076
77
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +020078/* This function both allocates and initializes hw and il. */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +020079struct ieee80211_hw *il_alloc_all(struct il_cfg *cfg)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -080080{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +020081 struct il_priv *il;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -080082 /* mac80211 allocates memory for this device instance, including
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +020083 * space for this driver's ilate structure */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -080084 struct ieee80211_hw *hw;
85
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +020086 hw = ieee80211_alloc_hw(sizeof(struct il_priv),
Wey-Yi Guybe663ab2011-02-21 11:27:26 -080087 cfg->ops->ieee80211_ops);
88 if (hw == NULL) {
89 pr_err("%s: Can not allocate network device\n",
90 cfg->name);
91 goto out;
92 }
93
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +020094 il = hw->priv;
95 il->hw = hw;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -080096
97out:
98 return hw;
99}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200100EXPORT_SYMBOL(il_alloc_all);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800101
102#define MAX_BIT_RATE_40_MHZ 150 /* Mbps */
103#define MAX_BIT_RATE_20_MHZ 72 /* Mbps */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200104static void il_init_ht_hw_capab(const struct il_priv *il,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800105 struct ieee80211_sta_ht_cap *ht_info,
106 enum ieee80211_band band)
107{
108 u16 max_bit_rate = 0;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200109 u8 rx_chains_num = il->hw_params.rx_chains_num;
110 u8 tx_chains_num = il->hw_params.tx_chains_num;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800111
112 ht_info->cap = 0;
113 memset(&ht_info->mcs, 0, sizeof(ht_info->mcs));
114
115 ht_info->ht_supported = true;
116
117 ht_info->cap |= IEEE80211_HT_CAP_SGI_20;
118 max_bit_rate = MAX_BIT_RATE_20_MHZ;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200119 if (il->hw_params.ht40_channel & BIT(band)) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800120 ht_info->cap |= IEEE80211_HT_CAP_SUP_WIDTH_20_40;
121 ht_info->cap |= IEEE80211_HT_CAP_SGI_40;
122 ht_info->mcs.rx_mask[4] = 0x01;
123 max_bit_rate = MAX_BIT_RATE_40_MHZ;
124 }
125
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200126 if (il->cfg->mod_params->amsdu_size_8K)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800127 ht_info->cap |= IEEE80211_HT_CAP_MAX_AMSDU;
128
129 ht_info->ampdu_factor = CFG_HT_RX_AMPDU_FACTOR_DEF;
130 ht_info->ampdu_density = CFG_HT_MPDU_DENSITY_DEF;
131
132 ht_info->mcs.rx_mask[0] = 0xFF;
133 if (rx_chains_num >= 2)
134 ht_info->mcs.rx_mask[1] = 0xFF;
135 if (rx_chains_num >= 3)
136 ht_info->mcs.rx_mask[2] = 0xFF;
137
138 /* Highest supported Rx data rate */
139 max_bit_rate *= rx_chains_num;
140 WARN_ON(max_bit_rate & ~IEEE80211_HT_MCS_RX_HIGHEST_MASK);
141 ht_info->mcs.rx_highest = cpu_to_le16(max_bit_rate);
142
143 /* Tx MCS capabilities */
144 ht_info->mcs.tx_params = IEEE80211_HT_MCS_TX_DEFINED;
145 if (tx_chains_num != rx_chains_num) {
146 ht_info->mcs.tx_params |= IEEE80211_HT_MCS_TX_RX_DIFF;
147 ht_info->mcs.tx_params |= ((tx_chains_num - 1) <<
148 IEEE80211_HT_MCS_TX_MAX_STREAMS_SHIFT);
149 }
150}
151
152/**
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200153 * il_init_geos - Initialize mac80211's geo/channel info based from eeprom
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800154 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200155int il_init_geos(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800156{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200157 struct il_channel_info *ch;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800158 struct ieee80211_supported_band *sband;
159 struct ieee80211_channel *channels;
160 struct ieee80211_channel *geo_ch;
161 struct ieee80211_rate *rates;
162 int i = 0;
Stanislaw Gruszka332704a2011-04-13 10:56:51 +0200163 s8 max_tx_power = 0;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800164
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200165 if (il->bands[IEEE80211_BAND_2GHZ].n_bitrates ||
166 il->bands[IEEE80211_BAND_5GHZ].n_bitrates) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100167 D_INFO("Geography modes already initialized.\n");
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200168 set_bit(STATUS_GEO_CONFIGURED, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800169 return 0;
170 }
171
172 channels = kzalloc(sizeof(struct ieee80211_channel) *
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200173 il->channel_count, GFP_KERNEL);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800174 if (!channels)
175 return -ENOMEM;
176
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200177 rates = kzalloc((sizeof(struct ieee80211_rate) * IL_RATE_COUNT_LEGACY),
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800178 GFP_KERNEL);
179 if (!rates) {
180 kfree(channels);
181 return -ENOMEM;
182 }
183
184 /* 5.2GHz channels start after the 2.4GHz channels */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200185 sband = &il->bands[IEEE80211_BAND_5GHZ];
Stanislaw Gruszkad2ddf622011-08-16 14:17:04 +0200186 sband->channels = &channels[ARRAY_SIZE(il_eeprom_band_1)];
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800187 /* just OFDM */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200188 sband->bitrates = &rates[IL_FIRST_OFDM_RATE];
189 sband->n_bitrates = IL_RATE_COUNT_LEGACY - IL_FIRST_OFDM_RATE;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800190
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200191 if (il->cfg->sku & IL_SKU_N)
192 il_init_ht_hw_capab(il, &sband->ht_cap,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800193 IEEE80211_BAND_5GHZ);
194
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200195 sband = &il->bands[IEEE80211_BAND_2GHZ];
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800196 sband->channels = channels;
197 /* OFDM & CCK */
198 sband->bitrates = rates;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200199 sband->n_bitrates = IL_RATE_COUNT_LEGACY;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800200
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200201 if (il->cfg->sku & IL_SKU_N)
202 il_init_ht_hw_capab(il, &sband->ht_cap,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800203 IEEE80211_BAND_2GHZ);
204
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200205 il->ieee_channels = channels;
206 il->ieee_rates = rates;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800207
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200208 for (i = 0; i < il->channel_count; i++) {
209 ch = &il->channel_info[i];
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800210
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200211 if (!il_is_channel_valid(ch))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800212 continue;
213
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200214 sband = &il->bands[ch->band];
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800215
216 geo_ch = &sband->channels[sband->n_channels++];
217
218 geo_ch->center_freq =
219 ieee80211_channel_to_frequency(ch->channel, ch->band);
220 geo_ch->max_power = ch->max_power_avg;
221 geo_ch->max_antenna_gain = 0xff;
222 geo_ch->hw_value = ch->channel;
223
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200224 if (il_is_channel_valid(ch)) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800225 if (!(ch->flags & EEPROM_CHANNEL_IBSS))
226 geo_ch->flags |= IEEE80211_CHAN_NO_IBSS;
227
228 if (!(ch->flags & EEPROM_CHANNEL_ACTIVE))
229 geo_ch->flags |= IEEE80211_CHAN_PASSIVE_SCAN;
230
231 if (ch->flags & EEPROM_CHANNEL_RADAR)
232 geo_ch->flags |= IEEE80211_CHAN_RADAR;
233
234 geo_ch->flags |= ch->ht40_extension_channel;
235
Stanislaw Gruszka332704a2011-04-13 10:56:51 +0200236 if (ch->max_power_avg > max_tx_power)
237 max_tx_power = ch->max_power_avg;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800238 } else {
239 geo_ch->flags |= IEEE80211_CHAN_DISABLED;
240 }
241
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100242 D_INFO("Channel %d Freq=%d[%sGHz] %s flag=0x%X\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800243 ch->channel, geo_ch->center_freq,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200244 il_is_channel_a_band(ch) ? "5.2" : "2.4",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800245 geo_ch->flags & IEEE80211_CHAN_DISABLED ?
246 "restricted" : "valid",
247 geo_ch->flags);
248 }
249
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200250 il->tx_power_device_lmt = max_tx_power;
251 il->tx_power_user_lmt = max_tx_power;
252 il->tx_power_next = max_tx_power;
Stanislaw Gruszka332704a2011-04-13 10:56:51 +0200253
Stanislaw Gruszka232913b2011-08-26 10:45:16 +0200254 if (il->bands[IEEE80211_BAND_5GHZ].n_channels == 0 &&
255 (il->cfg->sku & IL_SKU_A)) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +0200256 IL_INFO("Incorrectly detected BG card as ABG. "
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800257 "Please send your PCI ID 0x%04X:0x%04X to maintainer.\n",
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200258 il->pci_dev->device,
259 il->pci_dev->subsystem_device);
260 il->cfg->sku &= ~IL_SKU_A;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800261 }
262
Stanislaw Gruszka9406f792011-08-18 22:07:57 +0200263 IL_INFO("Tunable channels: %d 802.11bg, %d 802.11a channels\n",
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200264 il->bands[IEEE80211_BAND_2GHZ].n_channels,
265 il->bands[IEEE80211_BAND_5GHZ].n_channels);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800266
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200267 set_bit(STATUS_GEO_CONFIGURED, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800268
269 return 0;
270}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200271EXPORT_SYMBOL(il_init_geos);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800272
273/*
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200274 * il_free_geos - undo allocations in il_init_geos
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800275 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200276void il_free_geos(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800277{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200278 kfree(il->ieee_channels);
279 kfree(il->ieee_rates);
280 clear_bit(STATUS_GEO_CONFIGURED, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800281}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200282EXPORT_SYMBOL(il_free_geos);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800283
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200284static bool il_is_channel_extension(struct il_priv *il,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800285 enum ieee80211_band band,
286 u16 channel, u8 extension_chan_offset)
287{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200288 const struct il_channel_info *ch_info;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800289
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200290 ch_info = il_get_channel_info(il, band, channel);
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200291 if (!il_is_channel_valid(ch_info))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800292 return false;
293
294 if (extension_chan_offset == IEEE80211_HT_PARAM_CHA_SEC_ABOVE)
295 return !(ch_info->ht40_extension_channel &
296 IEEE80211_CHAN_NO_HT40PLUS);
297 else if (extension_chan_offset == IEEE80211_HT_PARAM_CHA_SEC_BELOW)
298 return !(ch_info->ht40_extension_channel &
299 IEEE80211_CHAN_NO_HT40MINUS);
300
301 return false;
302}
303
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200304bool il_is_ht40_tx_allowed(struct il_priv *il,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200305 struct il_rxon_context *ctx,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800306 struct ieee80211_sta_ht_cap *ht_cap)
307{
308 if (!ctx->ht.enabled || !ctx->ht.is_40mhz)
309 return false;
310
311 /*
312 * We do not check for IEEE80211_HT_CAP_SUP_WIDTH_20_40
313 * the bit will not set if it is pure 40MHz case
314 */
315 if (ht_cap && !ht_cap->ht_supported)
316 return false;
317
Stanislaw Gruszkad3175162011-11-15 11:25:42 +0100318#ifdef CONFIG_IWLEGACY_DEBUGFS
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200319 if (il->disable_ht40)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800320 return false;
321#endif
322
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200323 return il_is_channel_extension(il, il->band,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800324 le16_to_cpu(ctx->staging.channel),
325 ctx->ht.extension_chan_offset);
326}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200327EXPORT_SYMBOL(il_is_ht40_tx_allowed);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800328
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200329static u16 il_adjust_beacon_interval(u16 beacon_val, u16 max_beacon_val)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800330{
331 u16 new_val;
332 u16 beacon_factor;
333
334 /*
335 * If mac80211 hasn't given us a beacon interval, program
336 * the default into the device.
337 */
338 if (!beacon_val)
339 return DEFAULT_BEACON_INTERVAL;
340
341 /*
342 * If the beacon interval we obtained from the peer
343 * is too large, we'll have to wake up more often
344 * (and in IBSS case, we'll beacon too much)
345 *
346 * For example, if max_beacon_val is 4096, and the
347 * requested beacon interval is 7000, we'll have to
348 * use 3500 to be able to wake up on the beacons.
349 *
350 * This could badly influence beacon detection stats.
351 */
352
353 beacon_factor = (beacon_val + max_beacon_val) / max_beacon_val;
354 new_val = beacon_val / beacon_factor;
355
356 if (!new_val)
357 new_val = max_beacon_val;
358
359 return new_val;
360}
361
362int
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200363il_send_rxon_timing(struct il_priv *il, struct il_rxon_context *ctx)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800364{
365 u64 tsf;
366 s32 interval_tm, rem;
367 struct ieee80211_conf *conf = NULL;
368 u16 beacon_int;
369 struct ieee80211_vif *vif = ctx->vif;
370
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200371 conf = il_ieee80211_get_hw_conf(il->hw);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800372
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200373 lockdep_assert_held(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800374
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200375 memset(&ctx->timing, 0, sizeof(struct il_rxon_time_cmd));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800376
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200377 ctx->timing.timestamp = cpu_to_le64(il->timestamp);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800378 ctx->timing.listen_interval = cpu_to_le16(conf->listen_interval);
379
380 beacon_int = vif ? vif->bss_conf.beacon_int : 0;
381
382 /*
383 * TODO: For IBSS we need to get atim_window from mac80211,
384 * for now just always use 0
385 */
386 ctx->timing.atim_window = 0;
387
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200388 beacon_int = il_adjust_beacon_interval(beacon_int,
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200389 il->hw_params.max_beacon_itrvl * TIME_UNIT);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800390 ctx->timing.beacon_interval = cpu_to_le16(beacon_int);
391
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200392 tsf = il->timestamp; /* tsf is modifed by do_div: copy it */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800393 interval_tm = beacon_int * TIME_UNIT;
394 rem = do_div(tsf, interval_tm);
395 ctx->timing.beacon_init_val = cpu_to_le32(interval_tm - rem);
396
397 ctx->timing.dtim_period = vif ? (vif->bss_conf.dtim_period ?: 1) : 1;
398
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100399 D_ASSOC(
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800400 "beacon interval %d beacon timer %d beacon tim %d\n",
401 le16_to_cpu(ctx->timing.beacon_interval),
402 le32_to_cpu(ctx->timing.beacon_init_val),
403 le16_to_cpu(ctx->timing.atim_window));
404
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200405 return il_send_cmd_pdu(il, ctx->rxon_timing_cmd,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800406 sizeof(ctx->timing), &ctx->timing);
407}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200408EXPORT_SYMBOL(il_send_rxon_timing);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800409
410void
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200411il_set_rxon_hwcrypto(struct il_priv *il,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200412 struct il_rxon_context *ctx,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800413 int hw_decrypt)
414{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200415 struct il_rxon_cmd *rxon = &ctx->staging;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800416
417 if (hw_decrypt)
418 rxon->filter_flags &= ~RXON_FILTER_DIS_DECRYPT_MSK;
419 else
420 rxon->filter_flags |= RXON_FILTER_DIS_DECRYPT_MSK;
421
422}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200423EXPORT_SYMBOL(il_set_rxon_hwcrypto);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800424
425/* validate RXON structure is valid */
426int
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200427il_check_rxon_cmd(struct il_priv *il, struct il_rxon_context *ctx)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800428{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200429 struct il_rxon_cmd *rxon = &ctx->staging;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800430 bool error = false;
431
432 if (rxon->flags & RXON_FLG_BAND_24G_MSK) {
433 if (rxon->flags & RXON_FLG_TGJ_NARROW_BAND_MSK) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +0200434 IL_WARN("check 2.4G: wrong narrow\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800435 error = true;
436 }
437 if (rxon->flags & RXON_FLG_RADAR_DETECT_MSK) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +0200438 IL_WARN("check 2.4G: wrong radar\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800439 error = true;
440 }
441 } else {
442 if (!(rxon->flags & RXON_FLG_SHORT_SLOT_MSK)) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +0200443 IL_WARN("check 5.2G: not short slot!\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800444 error = true;
445 }
446 if (rxon->flags & RXON_FLG_CCK_MSK) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +0200447 IL_WARN("check 5.2G: CCK!\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800448 error = true;
449 }
450 }
451 if ((rxon->node_addr[0] | rxon->bssid_addr[0]) & 0x1) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +0200452 IL_WARN("mac/bssid mcast!\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800453 error = true;
454 }
455
456 /* make sure basic rates 6Mbps and 1Mbps are supported */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200457 if ((rxon->ofdm_basic_rates & IL_RATE_6M_MASK) == 0 &&
458 (rxon->cck_basic_rates & IL_RATE_1M_MASK) == 0) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +0200459 IL_WARN("neither 1 nor 6 are basic\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800460 error = true;
461 }
462
463 if (le16_to_cpu(rxon->assoc_id) > 2007) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +0200464 IL_WARN("aid > 2007\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800465 error = true;
466 }
467
468 if ((rxon->flags & (RXON_FLG_CCK_MSK | RXON_FLG_SHORT_SLOT_MSK))
469 == (RXON_FLG_CCK_MSK | RXON_FLG_SHORT_SLOT_MSK)) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +0200470 IL_WARN("CCK and short slot\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800471 error = true;
472 }
473
474 if ((rxon->flags & (RXON_FLG_CCK_MSK | RXON_FLG_AUTO_DETECT_MSK))
475 == (RXON_FLG_CCK_MSK | RXON_FLG_AUTO_DETECT_MSK)) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +0200476 IL_WARN("CCK and auto detect");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800477 error = true;
478 }
479
480 if ((rxon->flags & (RXON_FLG_AUTO_DETECT_MSK |
481 RXON_FLG_TGG_PROTECT_MSK)) ==
482 RXON_FLG_TGG_PROTECT_MSK) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +0200483 IL_WARN("TGg but no auto-detect\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800484 error = true;
485 }
486
487 if (error)
Stanislaw Gruszka9406f792011-08-18 22:07:57 +0200488 IL_WARN("Tuning to channel %d\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800489 le16_to_cpu(rxon->channel));
490
491 if (error) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +0200492 IL_ERR("Invalid RXON\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800493 return -EINVAL;
494 }
495 return 0;
496}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200497EXPORT_SYMBOL(il_check_rxon_cmd);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800498
499/**
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200500 * il_full_rxon_required - check if full RXON (vs RXON_ASSOC) cmd is needed
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200501 * @il: staging_rxon is compared to active_rxon
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800502 *
503 * If the RXON structure is changing enough to require a new tune,
504 * or is clearing the RXON_FILTER_ASSOC_MSK, then return 1 to indicate that
505 * a new tune (full RXON command, rather than RXON_ASSOC cmd) is required.
506 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200507int il_full_rxon_required(struct il_priv *il,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200508 struct il_rxon_context *ctx)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800509{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200510 const struct il_rxon_cmd *staging = &ctx->staging;
511 const struct il_rxon_cmd *active = &ctx->active;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800512
513#define CHK(cond) \
514 if ((cond)) { \
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100515 D_INFO("need full RXON - " #cond "\n"); \
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800516 return 1; \
517 }
518
519#define CHK_NEQ(c1, c2) \
520 if ((c1) != (c2)) { \
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100521 D_INFO("need full RXON - " \
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800522 #c1 " != " #c2 " - %d != %d\n", \
523 (c1), (c2)); \
524 return 1; \
525 }
526
527 /* These items are only settable from the full RXON command */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200528 CHK(!il_is_associated_ctx(ctx));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800529 CHK(compare_ether_addr(staging->bssid_addr, active->bssid_addr));
530 CHK(compare_ether_addr(staging->node_addr, active->node_addr));
531 CHK(compare_ether_addr(staging->wlap_bssid_addr,
532 active->wlap_bssid_addr));
533 CHK_NEQ(staging->dev_type, active->dev_type);
534 CHK_NEQ(staging->channel, active->channel);
535 CHK_NEQ(staging->air_propagation, active->air_propagation);
536 CHK_NEQ(staging->ofdm_ht_single_stream_basic_rates,
537 active->ofdm_ht_single_stream_basic_rates);
538 CHK_NEQ(staging->ofdm_ht_dual_stream_basic_rates,
539 active->ofdm_ht_dual_stream_basic_rates);
540 CHK_NEQ(staging->assoc_id, active->assoc_id);
541
542 /* flags, filter_flags, ofdm_basic_rates, and cck_basic_rates can
543 * be updated with the RXON_ASSOC command -- however only some
544 * flag transitions are allowed using RXON_ASSOC */
545
546 /* Check if we are not switching bands */
547 CHK_NEQ(staging->flags & RXON_FLG_BAND_24G_MSK,
548 active->flags & RXON_FLG_BAND_24G_MSK);
549
550 /* Check if we are switching association toggle */
551 CHK_NEQ(staging->filter_flags & RXON_FILTER_ASSOC_MSK,
552 active->filter_flags & RXON_FILTER_ASSOC_MSK);
553
554#undef CHK
555#undef CHK_NEQ
556
557 return 0;
558}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200559EXPORT_SYMBOL(il_full_rxon_required);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800560
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200561u8 il_get_lowest_plcp(struct il_priv *il,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200562 struct il_rxon_context *ctx)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800563{
564 /*
565 * Assign the lowest rate -- should really get this from
566 * the beacon skb from mac80211.
567 */
568 if (ctx->staging.flags & RXON_FLG_BAND_24G_MSK)
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200569 return IL_RATE_1M_PLCP;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800570 else
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200571 return IL_RATE_6M_PLCP;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800572}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200573EXPORT_SYMBOL(il_get_lowest_plcp);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800574
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200575static void _il_set_rxon_ht(struct il_priv *il,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200576 struct il_ht_config *ht_conf,
577 struct il_rxon_context *ctx)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800578{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200579 struct il_rxon_cmd *rxon = &ctx->staging;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800580
581 if (!ctx->ht.enabled) {
582 rxon->flags &= ~(RXON_FLG_CHANNEL_MODE_MSK |
583 RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK |
584 RXON_FLG_HT40_PROT_MSK |
585 RXON_FLG_HT_PROT_MSK);
586 return;
587 }
588
589 rxon->flags |= cpu_to_le32(ctx->ht.protection <<
590 RXON_FLG_HT_OPERATING_MODE_POS);
591
592 /* Set up channel bandwidth:
593 * 20 MHz only, 20/40 mixed or pure 40 if ht40 ok */
594 /* clear the HT channel mode before set the mode */
595 rxon->flags &= ~(RXON_FLG_CHANNEL_MODE_MSK |
596 RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200597 if (il_is_ht40_tx_allowed(il, ctx, NULL)) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800598 /* pure ht40 */
599 if (ctx->ht.protection ==
600 IEEE80211_HT_OP_MODE_PROTECTION_20MHZ) {
601 rxon->flags |= RXON_FLG_CHANNEL_MODE_PURE_40;
602 /* Note: control channel is opposite of extension channel */
603 switch (ctx->ht.extension_chan_offset) {
604 case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
605 rxon->flags &=
606 ~RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK;
607 break;
608 case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
609 rxon->flags |=
610 RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK;
611 break;
612 }
613 } else {
614 /* Note: control channel is opposite of extension channel */
615 switch (ctx->ht.extension_chan_offset) {
616 case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
617 rxon->flags &=
618 ~(RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK);
619 rxon->flags |= RXON_FLG_CHANNEL_MODE_MIXED;
620 break;
621 case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
622 rxon->flags |=
623 RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK;
624 rxon->flags |= RXON_FLG_CHANNEL_MODE_MIXED;
625 break;
626 case IEEE80211_HT_PARAM_CHA_SEC_NONE:
627 default:
628 /* channel location only valid if in Mixed mode */
Stanislaw Gruszka9406f792011-08-18 22:07:57 +0200629 IL_ERR(
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800630 "invalid extension channel offset\n");
631 break;
632 }
633 }
634 } else {
635 rxon->flags |= RXON_FLG_CHANNEL_MODE_LEGACY;
636 }
637
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200638 if (il->cfg->ops->hcmd->set_rxon_chain)
639 il->cfg->ops->hcmd->set_rxon_chain(il, ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800640
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100641 D_ASSOC("rxon flags 0x%X operation mode :0x%X "
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800642 "extension channel offset 0x%x\n",
643 le32_to_cpu(rxon->flags), ctx->ht.protection,
644 ctx->ht.extension_chan_offset);
645}
646
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200647void il_set_rxon_ht(struct il_priv *il, struct il_ht_config *ht_conf)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800648{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200649 struct il_rxon_context *ctx;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800650
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200651 for_each_context(il, ctx)
652 _il_set_rxon_ht(il, ht_conf, ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800653}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200654EXPORT_SYMBOL(il_set_rxon_ht);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800655
656/* Return valid, unused, channel for a passive scan to reset the RF */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200657u8 il_get_single_channel_number(struct il_priv *il,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800658 enum ieee80211_band band)
659{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200660 const struct il_channel_info *ch_info;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800661 int i;
662 u8 channel = 0;
663 u8 min, max;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200664 struct il_rxon_context *ctx;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800665
666 if (band == IEEE80211_BAND_5GHZ) {
667 min = 14;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200668 max = il->channel_count;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800669 } else {
670 min = 0;
671 max = 14;
672 }
673
674 for (i = min; i < max; i++) {
675 bool busy = false;
676
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200677 for_each_context(il, ctx) {
678 busy = il->channel_info[i].channel ==
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800679 le16_to_cpu(ctx->staging.channel);
680 if (busy)
681 break;
682 }
683
684 if (busy)
685 continue;
686
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200687 channel = il->channel_info[i].channel;
688 ch_info = il_get_channel_info(il, band, channel);
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200689 if (il_is_channel_valid(ch_info))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800690 break;
691 }
692
693 return channel;
694}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200695EXPORT_SYMBOL(il_get_single_channel_number);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800696
697/**
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200698 * il_set_rxon_channel - Set the band and channel values in staging RXON
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800699 * @ch: requested channel as a pointer to struct ieee80211_channel
700
701 * NOTE: Does not commit to the hardware; it sets appropriate bit fields
702 * in the staging RXON flag structure based on the ch->band
703 */
704int
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200705il_set_rxon_channel(struct il_priv *il, struct ieee80211_channel *ch,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200706 struct il_rxon_context *ctx)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800707{
708 enum ieee80211_band band = ch->band;
709 u16 channel = ch->hw_value;
710
Stanislaw Gruszka232913b2011-08-26 10:45:16 +0200711 if (le16_to_cpu(ctx->staging.channel) == channel && il->band == band)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800712 return 0;
713
714 ctx->staging.channel = cpu_to_le16(channel);
715 if (band == IEEE80211_BAND_5GHZ)
716 ctx->staging.flags &= ~RXON_FLG_BAND_24G_MSK;
717 else
718 ctx->staging.flags |= RXON_FLG_BAND_24G_MSK;
719
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200720 il->band = band;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800721
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100722 D_INFO("Staging channel set to %d [%d]\n", channel, band);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800723
724 return 0;
725}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200726EXPORT_SYMBOL(il_set_rxon_channel);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800727
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200728void il_set_flags_for_band(struct il_priv *il,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200729 struct il_rxon_context *ctx,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800730 enum ieee80211_band band,
731 struct ieee80211_vif *vif)
732{
733 if (band == IEEE80211_BAND_5GHZ) {
734 ctx->staging.flags &=
735 ~(RXON_FLG_BAND_24G_MSK | RXON_FLG_AUTO_DETECT_MSK
736 | RXON_FLG_CCK_MSK);
737 ctx->staging.flags |= RXON_FLG_SHORT_SLOT_MSK;
738 } else {
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200739 /* Copied from il_post_associate() */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800740 if (vif && vif->bss_conf.use_short_slot)
741 ctx->staging.flags |= RXON_FLG_SHORT_SLOT_MSK;
742 else
743 ctx->staging.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
744
745 ctx->staging.flags |= RXON_FLG_BAND_24G_MSK;
746 ctx->staging.flags |= RXON_FLG_AUTO_DETECT_MSK;
747 ctx->staging.flags &= ~RXON_FLG_CCK_MSK;
748 }
749}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200750EXPORT_SYMBOL(il_set_flags_for_band);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800751
752/*
753 * initialize rxon structure with default values from eeprom
754 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200755void il_connection_init_rx_config(struct il_priv *il,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200756 struct il_rxon_context *ctx)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800757{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200758 const struct il_channel_info *ch_info;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800759
760 memset(&ctx->staging, 0, sizeof(ctx->staging));
761
762 if (!ctx->vif) {
763 ctx->staging.dev_type = ctx->unused_devtype;
764 } else
765 switch (ctx->vif->type) {
766
767 case NL80211_IFTYPE_STATION:
768 ctx->staging.dev_type = ctx->station_devtype;
769 ctx->staging.filter_flags = RXON_FILTER_ACCEPT_GRP_MSK;
770 break;
771
772 case NL80211_IFTYPE_ADHOC:
773 ctx->staging.dev_type = ctx->ibss_devtype;
774 ctx->staging.flags = RXON_FLG_SHORT_PREAMBLE_MSK;
775 ctx->staging.filter_flags = RXON_FILTER_BCON_AWARE_MSK |
776 RXON_FILTER_ACCEPT_GRP_MSK;
777 break;
778
779 default:
Stanislaw Gruszka9406f792011-08-18 22:07:57 +0200780 IL_ERR("Unsupported interface type %d\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800781 ctx->vif->type);
782 break;
783 }
784
785#if 0
786 /* TODO: Figure out when short_preamble would be set and cache from
787 * that */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200788 if (!hw_to_local(il->hw)->short_preamble)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800789 ctx->staging.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
790 else
791 ctx->staging.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
792#endif
793
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200794 ch_info = il_get_channel_info(il, il->band,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800795 le16_to_cpu(ctx->active.channel));
796
797 if (!ch_info)
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200798 ch_info = &il->channel_info[0];
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800799
800 ctx->staging.channel = cpu_to_le16(ch_info->channel);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200801 il->band = ch_info->band;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800802
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200803 il_set_flags_for_band(il, ctx, il->band, ctx->vif);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800804
805 ctx->staging.ofdm_basic_rates =
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200806 (IL_OFDM_RATES_MASK >> IL_FIRST_OFDM_RATE) & 0xFF;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800807 ctx->staging.cck_basic_rates =
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200808 (IL_CCK_RATES_MASK >> IL_FIRST_CCK_RATE) & 0xF;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800809
810 /* clear both MIX and PURE40 mode flag */
811 ctx->staging.flags &= ~(RXON_FLG_CHANNEL_MODE_MIXED |
812 RXON_FLG_CHANNEL_MODE_PURE_40);
813 if (ctx->vif)
814 memcpy(ctx->staging.node_addr, ctx->vif->addr, ETH_ALEN);
815
816 ctx->staging.ofdm_ht_single_stream_basic_rates = 0xff;
817 ctx->staging.ofdm_ht_dual_stream_basic_rates = 0xff;
818}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200819EXPORT_SYMBOL(il_connection_init_rx_config);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800820
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200821void il_set_rate(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800822{
823 const struct ieee80211_supported_band *hw = NULL;
824 struct ieee80211_rate *rate;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200825 struct il_rxon_context *ctx;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800826 int i;
827
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200828 hw = il_get_hw_mode(il, il->band);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800829 if (!hw) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +0200830 IL_ERR("Failed to set rate: unable to get hw mode\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800831 return;
832 }
833
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200834 il->active_rate = 0;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800835
836 for (i = 0; i < hw->n_bitrates; i++) {
837 rate = &(hw->bitrates[i]);
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200838 if (rate->hw_value < IL_RATE_COUNT_LEGACY)
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200839 il->active_rate |= (1 << rate->hw_value);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800840 }
841
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100842 D_RATE("Set active_rate = %0x\n", il->active_rate);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800843
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200844 for_each_context(il, ctx) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800845 ctx->staging.cck_basic_rates =
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200846 (IL_CCK_BASIC_RATES_MASK >> IL_FIRST_CCK_RATE) & 0xF;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800847
848 ctx->staging.ofdm_basic_rates =
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200849 (IL_OFDM_BASIC_RATES_MASK >> IL_FIRST_OFDM_RATE) & 0xFF;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800850 }
851}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200852EXPORT_SYMBOL(il_set_rate);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800853
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200854void il_chswitch_done(struct il_priv *il, bool is_success)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800855{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200856 struct il_rxon_context *ctx = &il->contexts[IL_RXON_CTX_BSS];
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800857
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200858 if (test_bit(STATUS_EXIT_PENDING, &il->status))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800859 return;
860
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200861 if (test_and_clear_bit(STATUS_CHANNEL_SWITCH_PENDING, &il->status))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800862 ieee80211_chswitch_done(ctx->vif, is_success);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800863}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200864EXPORT_SYMBOL(il_chswitch_done);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800865
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200866void il_rx_csa(struct il_priv *il, struct il_rx_mem_buffer *rxb)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800867{
Stanislaw Gruszkadcae1c62011-08-26 14:36:21 +0200868 struct il_rx_pkt *pkt = rxb_addr(rxb);
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200869 struct il_csa_notification *csa = &(pkt->u.csa_notif);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800870
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200871 struct il_rxon_context *ctx = &il->contexts[IL_RXON_CTX_BSS];
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200872 struct il_rxon_cmd *rxon = (void *)&ctx->active;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800873
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200874 if (!test_bit(STATUS_CHANNEL_SWITCH_PENDING, &il->status))
Stanislaw Gruszka51e65252011-06-08 15:26:31 +0200875 return;
876
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200877 if (!le32_to_cpu(csa->status) && csa->channel == il->switch_channel) {
Stanislaw Gruszka51e65252011-06-08 15:26:31 +0200878 rxon->channel = csa->channel;
879 ctx->staging.channel = csa->channel;
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100880 D_11H("CSA notif: channel %d\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800881 le16_to_cpu(csa->channel));
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200882 il_chswitch_done(il, true);
Stanislaw Gruszka51e65252011-06-08 15:26:31 +0200883 } else {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +0200884 IL_ERR("CSA notif (fail) : channel %d\n",
Stanislaw Gruszka51e65252011-06-08 15:26:31 +0200885 le16_to_cpu(csa->channel));
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200886 il_chswitch_done(il, false);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800887 }
888}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200889EXPORT_SYMBOL(il_rx_csa);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800890
Stanislaw Gruszkad3175162011-11-15 11:25:42 +0100891#ifdef CONFIG_IWLEGACY_DEBUG
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200892void il_print_rx_config_cmd(struct il_priv *il,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200893 struct il_rxon_context *ctx)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800894{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200895 struct il_rxon_cmd *rxon = &ctx->staging;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800896
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100897 D_RADIO("RX CONFIG:\n");
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200898 il_print_hex_dump(il, IL_DL_RADIO, (u8 *) rxon, sizeof(*rxon));
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100899 D_RADIO("u16 channel: 0x%x\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800900 le16_to_cpu(rxon->channel));
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100901 D_RADIO("u32 flags: 0x%08X\n", le32_to_cpu(rxon->flags));
902 D_RADIO("u32 filter_flags: 0x%08x\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800903 le32_to_cpu(rxon->filter_flags));
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100904 D_RADIO("u8 dev_type: 0x%x\n", rxon->dev_type);
905 D_RADIO("u8 ofdm_basic_rates: 0x%02x\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800906 rxon->ofdm_basic_rates);
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100907 D_RADIO("u8 cck_basic_rates: 0x%02x\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800908 rxon->cck_basic_rates);
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100909 D_RADIO("u8[6] node_addr: %pM\n", rxon->node_addr);
910 D_RADIO("u8[6] bssid_addr: %pM\n", rxon->bssid_addr);
911 D_RADIO("u16 assoc_id: 0x%x\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800912 le16_to_cpu(rxon->assoc_id));
913}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200914EXPORT_SYMBOL(il_print_rx_config_cmd);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800915#endif
916/**
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200917 * il_irq_handle_error - called for HW or SW error interrupt from card
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800918 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200919void il_irq_handle_error(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800920{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200921 /* Set the FW error flag -- cleared on il_down */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200922 set_bit(STATUS_FW_ERROR, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800923
924 /* Cancel currently queued command. */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200925 clear_bit(STATUS_HCMD_ACTIVE, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800926
Stanislaw Gruszka9406f792011-08-18 22:07:57 +0200927 IL_ERR("Loaded firmware version: %s\n",
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200928 il->hw->wiphy->fw_version);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800929
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200930 il->cfg->ops->lib->dump_nic_error_log(il);
931 if (il->cfg->ops->lib->dump_fh)
932 il->cfg->ops->lib->dump_fh(il, NULL, false);
Stanislaw Gruszkad3175162011-11-15 11:25:42 +0100933#ifdef CONFIG_IWLEGACY_DEBUG
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200934 if (il_get_debug_level(il) & IL_DL_FW_ERRORS)
935 il_print_rx_config_cmd(il,
936 &il->contexts[IL_RXON_CTX_BSS]);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800937#endif
938
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200939 wake_up(&il->wait_command_queue);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800940
941 /* Keep the restart process from trying to send host
942 * commands by clearing the INIT status bit */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200943 clear_bit(STATUS_READY, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800944
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200945 if (!test_bit(STATUS_EXIT_PENDING, &il->status)) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100946 IL_DBG(IL_DL_FW_ERRORS,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800947 "Restarting adapter due to uCode error.\n");
948
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200949 if (il->cfg->mod_params->restart_fw)
950 queue_work(il->workqueue, &il->restart);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800951 }
952}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200953EXPORT_SYMBOL(il_irq_handle_error);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800954
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200955static int il_apm_stop_master(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800956{
957 int ret = 0;
958
959 /* stop device's busmaster DMA activity */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200960 il_set_bit(il, CSR_RESET, CSR_RESET_REG_FLAG_STOP_MASTER);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800961
Stanislaw Gruszka142b3432011-08-24 15:22:57 +0200962 ret = _il_poll_bit(il, CSR_RESET, CSR_RESET_REG_FLAG_MASTER_DISABLED,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800963 CSR_RESET_REG_FLAG_MASTER_DISABLED, 100);
964 if (ret)
Stanislaw Gruszka9406f792011-08-18 22:07:57 +0200965 IL_WARN("Master Disable Timed Out, 100 usec\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800966
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100967 D_INFO("stop master\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800968
969 return ret;
970}
971
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200972void il_apm_stop(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800973{
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100974 D_INFO("Stop card, put in low power state\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800975
976 /* Stop device's DMA activity */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200977 il_apm_stop_master(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800978
979 /* Reset the entire device */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200980 il_set_bit(il, CSR_RESET, CSR_RESET_REG_FLAG_SW_RESET);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800981
982 udelay(10);
983
984 /*
985 * Clear "initialization complete" bit to move adapter from
986 * D0A* (powered-up Active) --> D0U* (Uninitialized) state.
987 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200988 il_clear_bit(il, CSR_GP_CNTRL,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800989 CSR_GP_CNTRL_REG_FLAG_INIT_DONE);
990}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200991EXPORT_SYMBOL(il_apm_stop);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800992
993
994/*
995 * Start up NIC's basic functionality after it has been reset
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200996 * (e.g. after platform boot, or shutdown via il_apm_stop())
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800997 * NOTE: This does not load uCode nor start the embedded processor
998 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200999int il_apm_init(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001000{
1001 int ret = 0;
1002 u16 lctl;
1003
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01001004 D_INFO("Init card's basic functions\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001005
1006 /*
1007 * Use "set_bit" below rather than "write", to preserve any hardware
1008 * bits already set by default after reset.
1009 */
1010
1011 /* Disable L0S exit timer (platform NMI Work/Around) */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001012 il_set_bit(il, CSR_GIO_CHICKEN_BITS,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001013 CSR_GIO_CHICKEN_BITS_REG_BIT_DIS_L0S_EXIT_TIMER);
1014
1015 /*
1016 * Disable L0s without affecting L1;
1017 * don't wait for ICH L0s (ICH bug W/A)
1018 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001019 il_set_bit(il, CSR_GIO_CHICKEN_BITS,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001020 CSR_GIO_CHICKEN_BITS_REG_BIT_L1A_NO_L0S_RX);
1021
1022 /* Set FH wait threshold to maximum (HW error during stress W/A) */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001023 il_set_bit(il, CSR_DBG_HPET_MEM_REG,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001024 CSR_DBG_HPET_MEM_REG_VAL);
1025
1026 /*
1027 * Enable HAP INTA (interrupt from management bus) to
1028 * wake device's PCI Express link L1a -> L0s
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001029 * NOTE: This is no-op for 3945 (non-existent bit)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001030 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001031 il_set_bit(il, CSR_HW_IF_CONFIG_REG,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001032 CSR_HW_IF_CONFIG_REG_BIT_HAP_WAKE_L1A);
1033
1034 /*
1035 * HW bug W/A for instability in PCIe bus L0->L0S->L1 transition.
1036 * Check if BIOS (or OS) enabled L1-ASPM on this device.
1037 * If so (likely), disable L0S, so device moves directly L0->L1;
1038 * costs negligible amount of power savings.
1039 * If not (unlikely), enable L0S, so there is at least some
1040 * power savings, even without L1.
1041 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001042 if (il->cfg->base_params->set_l0s) {
1043 lctl = il_pcie_link_ctl(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001044 if ((lctl & PCI_CFG_LINK_CTRL_VAL_L1_EN) ==
1045 PCI_CFG_LINK_CTRL_VAL_L1_EN) {
1046 /* L1-ASPM enabled; disable(!) L0S */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001047 il_set_bit(il, CSR_GIO_REG,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001048 CSR_GIO_REG_VAL_L0S_ENABLED);
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01001049 D_POWER("L1 Enabled; Disabling L0S\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001050 } else {
1051 /* L1-ASPM disabled; enable(!) L0S */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001052 il_clear_bit(il, CSR_GIO_REG,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001053 CSR_GIO_REG_VAL_L0S_ENABLED);
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01001054 D_POWER("L1 Disabled; Enabling L0S\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001055 }
1056 }
1057
1058 /* Configure analog phase-lock-loop before activating to D0A */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001059 if (il->cfg->base_params->pll_cfg_val)
1060 il_set_bit(il, CSR_ANA_PLL_CFG,
1061 il->cfg->base_params->pll_cfg_val);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001062
1063 /*
1064 * Set "initialization complete" bit to move adapter from
1065 * D0U* --> D0A* (powered-up active) state.
1066 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001067 il_set_bit(il, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_INIT_DONE);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001068
1069 /*
1070 * Wait for clock stabilization; once stabilized, access to
Stanislaw Gruszkadb54eb52011-08-24 21:06:33 +02001071 * device-internal resources is supported, e.g. il_wr_prph()
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001072 * and accesses to uCode SRAM.
1073 */
Stanislaw Gruszka142b3432011-08-24 15:22:57 +02001074 ret = _il_poll_bit(il, CSR_GP_CNTRL,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001075 CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY,
1076 CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY, 25000);
1077 if (ret < 0) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01001078 D_INFO("Failed to init the card\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001079 goto out;
1080 }
1081
1082 /*
1083 * Enable DMA and BSM (if used) clocks, wait for them to stabilize.
1084 * BSM (Boostrap State Machine) is only in 3945 and 4965.
1085 *
1086 * Write to "CLK_EN_REG"; "1" bits enable clocks, while "0" bits
1087 * do not disable clocks. This preserves any hardware bits already
1088 * set by default in "CLK_CTRL_REG" after reset.
1089 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001090 if (il->cfg->base_params->use_bsm)
Stanislaw Gruszkadb54eb52011-08-24 21:06:33 +02001091 il_wr_prph(il, APMG_CLK_EN_REG,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001092 APMG_CLK_VAL_DMA_CLK_RQT | APMG_CLK_VAL_BSM_CLK_RQT);
1093 else
Stanislaw Gruszkadb54eb52011-08-24 21:06:33 +02001094 il_wr_prph(il, APMG_CLK_EN_REG,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001095 APMG_CLK_VAL_DMA_CLK_RQT);
1096 udelay(20);
1097
1098 /* Disable L1-Active */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001099 il_set_bits_prph(il, APMG_PCIDEV_STT_REG,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001100 APMG_PCIDEV_STT_VAL_L1_ACT_DIS);
1101
1102out:
1103 return ret;
1104}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001105EXPORT_SYMBOL(il_apm_init);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001106
1107
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001108int il_set_tx_power(struct il_priv *il, s8 tx_power, bool force)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001109{
1110 int ret;
1111 s8 prev_tx_power;
Stanislaw Gruszka43f12d42011-02-24 14:23:55 +01001112 bool defer;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001113 struct il_rxon_context *ctx = &il->contexts[IL_RXON_CTX_BSS];
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001114
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001115 lockdep_assert_held(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001116
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001117 if (il->tx_power_user_lmt == tx_power && !force)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001118 return 0;
1119
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001120 if (!il->cfg->ops->lib->send_tx_power)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001121 return -EOPNOTSUPP;
1122
Stanislaw Gruszka332704a2011-04-13 10:56:51 +02001123 /* 0 dBm mean 1 milliwatt */
1124 if (tx_power < 0) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02001125 IL_WARN(
Stanislaw Gruszka332704a2011-04-13 10:56:51 +02001126 "Requested user TXPOWER %d below 1 mW.\n",
1127 tx_power);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001128 return -EINVAL;
1129 }
1130
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001131 if (tx_power > il->tx_power_device_lmt) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02001132 IL_WARN(
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001133 "Requested user TXPOWER %d above upper limit %d.\n",
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001134 tx_power, il->tx_power_device_lmt);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001135 return -EINVAL;
1136 }
1137
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001138 if (!il_is_ready_rf(il))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001139 return -EIO;
1140
Stanislaw Gruszka43f12d42011-02-24 14:23:55 +01001141 /* scan complete and commit_rxon use tx_power_next value,
1142 * it always need to be updated for newest request */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001143 il->tx_power_next = tx_power;
Stanislaw Gruszka43f12d42011-02-24 14:23:55 +01001144
1145 /* do not set tx power when scanning or channel changing */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001146 defer = test_bit(STATUS_SCANNING, &il->status) ||
Stanislaw Gruszka43f12d42011-02-24 14:23:55 +01001147 memcmp(&ctx->active, &ctx->staging, sizeof(ctx->staging));
1148 if (defer && !force) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01001149 D_INFO("Deferring tx power set\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001150 return 0;
1151 }
1152
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001153 prev_tx_power = il->tx_power_user_lmt;
1154 il->tx_power_user_lmt = tx_power;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001155
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001156 ret = il->cfg->ops->lib->send_tx_power(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001157
1158 /* if fail to set tx_power, restore the orig. tx power */
1159 if (ret) {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001160 il->tx_power_user_lmt = prev_tx_power;
1161 il->tx_power_next = prev_tx_power;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001162 }
1163 return ret;
1164}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001165EXPORT_SYMBOL(il_set_tx_power);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001166
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001167void il_send_bt_config(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001168{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001169 struct il_bt_cmd bt_cmd = {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001170 .lead_time = BT_LEAD_TIME_DEF,
1171 .max_kill = BT_MAX_KILL_DEF,
1172 .kill_ack_mask = 0,
1173 .kill_cts_mask = 0,
1174 };
1175
1176 if (!bt_coex_active)
1177 bt_cmd.flags = BT_COEX_DISABLE;
1178 else
1179 bt_cmd.flags = BT_COEX_ENABLE;
1180
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01001181 D_INFO("BT coex %s\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001182 (bt_cmd.flags == BT_COEX_DISABLE) ? "disable" : "active");
1183
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001184 if (il_send_cmd_pdu(il, REPLY_BT_CONFIG,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001185 sizeof(struct il_bt_cmd), &bt_cmd))
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02001186 IL_ERR("failed to send BT Coex Config\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001187}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001188EXPORT_SYMBOL(il_send_bt_config);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001189
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001190int il_send_statistics_request(struct il_priv *il, u8 flags, bool clear)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001191{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001192 struct il_statistics_cmd statistics_cmd = {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001193 .configuration_flags =
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001194 clear ? IL_STATS_CONF_CLEAR_STATS : 0,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001195 };
1196
1197 if (flags & CMD_ASYNC)
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001198 return il_send_cmd_pdu_async(il, REPLY_STATISTICS_CMD,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001199 sizeof(struct il_statistics_cmd),
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001200 &statistics_cmd, NULL);
1201 else
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001202 return il_send_cmd_pdu(il, REPLY_STATISTICS_CMD,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001203 sizeof(struct il_statistics_cmd),
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001204 &statistics_cmd);
1205}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001206EXPORT_SYMBOL(il_send_statistics_request);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001207
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001208void il_rx_pm_sleep_notif(struct il_priv *il,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001209 struct il_rx_mem_buffer *rxb)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001210{
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01001211#ifdef CONFIG_IWLEGACY_DEBUG
Stanislaw Gruszkadcae1c62011-08-26 14:36:21 +02001212 struct il_rx_pkt *pkt = rxb_addr(rxb);
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001213 struct il_sleep_notification *sleep = &(pkt->u.sleep_notif);
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01001214 D_RX("sleep mode: %d, src: %d\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001215 sleep->pm_sleep_mode, sleep->pm_wakeup_src);
1216#endif
1217}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001218EXPORT_SYMBOL(il_rx_pm_sleep_notif);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001219
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001220void il_rx_pm_debug_statistics_notif(struct il_priv *il,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001221 struct il_rx_mem_buffer *rxb)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001222{
Stanislaw Gruszkadcae1c62011-08-26 14:36:21 +02001223 struct il_rx_pkt *pkt = rxb_addr(rxb);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001224 u32 len = le32_to_cpu(pkt->len_n_flags) & FH_RSCSR_FRAME_SIZE_MSK;
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01001225 D_RADIO("Dumping %d bytes of unhandled "
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001226 "notification for %s:\n", len,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001227 il_get_cmd_string(pkt->hdr.cmd));
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001228 il_print_hex_dump(il, IL_DL_RADIO, pkt->u.raw, len);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001229}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001230EXPORT_SYMBOL(il_rx_pm_debug_statistics_notif);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001231
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001232void il_rx_reply_error(struct il_priv *il,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001233 struct il_rx_mem_buffer *rxb)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001234{
Stanislaw Gruszkadcae1c62011-08-26 14:36:21 +02001235 struct il_rx_pkt *pkt = rxb_addr(rxb);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001236
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02001237 IL_ERR("Error Reply type 0x%08X cmd %s (0x%02X) "
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001238 "seq 0x%04X ser 0x%08X\n",
1239 le32_to_cpu(pkt->u.err_resp.error_type),
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001240 il_get_cmd_string(pkt->u.err_resp.cmd_id),
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001241 pkt->u.err_resp.cmd_id,
1242 le16_to_cpu(pkt->u.err_resp.bad_cmd_seq_num),
1243 le32_to_cpu(pkt->u.err_resp.error_info));
1244}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001245EXPORT_SYMBOL(il_rx_reply_error);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001246
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001247void il_clear_isr_stats(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001248{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001249 memset(&il->isr_stats, 0, sizeof(il->isr_stats));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001250}
1251
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001252int il_mac_conf_tx(struct ieee80211_hw *hw,
Eliad Peller8a3a3c82011-10-02 10:15:52 +02001253 struct ieee80211_vif *vif, u16 queue,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001254 const struct ieee80211_tx_queue_params *params)
1255{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001256 struct il_priv *il = hw->priv;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001257 struct il_rxon_context *ctx;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001258 unsigned long flags;
1259 int q;
1260
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01001261 D_MAC80211("enter\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001262
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001263 if (!il_is_ready_rf(il)) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01001264 D_MAC80211("leave - RF not ready\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001265 return -EIO;
1266 }
1267
1268 if (queue >= AC_NUM) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01001269 D_MAC80211("leave - queue >= AC_NUM %d\n", queue);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001270 return 0;
1271 }
1272
1273 q = AC_NUM - 1 - queue;
1274
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001275 spin_lock_irqsave(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001276
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001277 for_each_context(il, ctx) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001278 ctx->qos_data.def_qos_parm.ac[q].cw_min =
1279 cpu_to_le16(params->cw_min);
1280 ctx->qos_data.def_qos_parm.ac[q].cw_max =
1281 cpu_to_le16(params->cw_max);
1282 ctx->qos_data.def_qos_parm.ac[q].aifsn = params->aifs;
1283 ctx->qos_data.def_qos_parm.ac[q].edca_txop =
1284 cpu_to_le16((params->txop * 32));
1285
1286 ctx->qos_data.def_qos_parm.ac[q].reserved1 = 0;
1287 }
1288
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001289 spin_unlock_irqrestore(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001290
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01001291 D_MAC80211("leave\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001292 return 0;
1293}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001294EXPORT_SYMBOL(il_mac_conf_tx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001295
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001296int il_mac_tx_last_beacon(struct ieee80211_hw *hw)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001297{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001298 struct il_priv *il = hw->priv;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001299
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001300 return il->ibss_manager == IL_IBSS_MANAGER;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001301}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001302EXPORT_SYMBOL_GPL(il_mac_tx_last_beacon);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001303
1304static int
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001305il_set_mode(struct il_priv *il, struct il_rxon_context *ctx)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001306{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001307 il_connection_init_rx_config(il, ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001308
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001309 if (il->cfg->ops->hcmd->set_rxon_chain)
1310 il->cfg->ops->hcmd->set_rxon_chain(il, ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001311
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001312 return il_commit_rxon(il, ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001313}
1314
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001315static int il_setup_interface(struct il_priv *il,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001316 struct il_rxon_context *ctx)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001317{
1318 struct ieee80211_vif *vif = ctx->vif;
1319 int err;
1320
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001321 lockdep_assert_held(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001322
1323 /*
1324 * This variable will be correct only when there's just
1325 * a single context, but all code using it is for hardware
1326 * that supports only one context.
1327 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001328 il->iw_mode = vif->type;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001329
1330 ctx->is_active = true;
1331
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001332 err = il_set_mode(il, ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001333 if (err) {
1334 if (!ctx->always_active)
1335 ctx->is_active = false;
1336 return err;
1337 }
1338
1339 return 0;
1340}
1341
1342int
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001343il_mac_add_interface(struct ieee80211_hw *hw, struct ieee80211_vif *vif)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001344{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001345 struct il_priv *il = hw->priv;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001346 struct il_vif_priv *vif_priv = (void *)vif->drv_priv;
1347 struct il_rxon_context *tmp, *ctx = NULL;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001348 int err;
1349
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01001350 D_MAC80211("enter: type %d, addr %pM\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001351 vif->type, vif->addr);
1352
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001353 mutex_lock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001354
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001355 if (!il_is_ready_rf(il)) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02001356 IL_WARN("Try to add interface when device not ready\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001357 err = -EINVAL;
1358 goto out;
1359 }
1360
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001361 for_each_context(il, tmp) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001362 u32 possible_modes =
1363 tmp->interface_modes | tmp->exclusive_interface_modes;
1364
1365 if (tmp->vif) {
1366 /* check if this busy context is exclusive */
1367 if (tmp->exclusive_interface_modes &
1368 BIT(tmp->vif->type)) {
1369 err = -EINVAL;
1370 goto out;
1371 }
1372 continue;
1373 }
1374
1375 if (!(possible_modes & BIT(vif->type)))
1376 continue;
1377
1378 /* have maybe usable context w/o interface */
1379 ctx = tmp;
1380 break;
1381 }
1382
1383 if (!ctx) {
1384 err = -EOPNOTSUPP;
1385 goto out;
1386 }
1387
1388 vif_priv->ctx = ctx;
1389 ctx->vif = vif;
1390
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001391 err = il_setup_interface(il, ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001392 if (!err)
1393 goto out;
1394
1395 ctx->vif = NULL;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001396 il->iw_mode = NL80211_IFTYPE_STATION;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001397 out:
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001398 mutex_unlock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001399
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01001400 D_MAC80211("leave\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001401 return err;
1402}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001403EXPORT_SYMBOL(il_mac_add_interface);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001404
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001405static void il_teardown_interface(struct il_priv *il,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001406 struct ieee80211_vif *vif,
1407 bool mode_change)
1408{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001409 struct il_rxon_context *ctx = il_rxon_ctx_from_vif(vif);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001410
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001411 lockdep_assert_held(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001412
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001413 if (il->scan_vif == vif) {
1414 il_scan_cancel_timeout(il, 200);
1415 il_force_scan_end(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001416 }
1417
1418 if (!mode_change) {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001419 il_set_mode(il, ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001420 if (!ctx->always_active)
1421 ctx->is_active = false;
1422 }
1423}
1424
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001425void il_mac_remove_interface(struct ieee80211_hw *hw,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001426 struct ieee80211_vif *vif)
1427{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001428 struct il_priv *il = hw->priv;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001429 struct il_rxon_context *ctx = il_rxon_ctx_from_vif(vif);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001430
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01001431 D_MAC80211("enter\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001432
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001433 mutex_lock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001434
1435 WARN_ON(ctx->vif != vif);
1436 ctx->vif = NULL;
1437
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001438 il_teardown_interface(il, vif, false);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001439
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001440 memset(il->bssid, 0, ETH_ALEN);
1441 mutex_unlock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001442
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01001443 D_MAC80211("leave\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001444
1445}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001446EXPORT_SYMBOL(il_mac_remove_interface);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001447
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001448int il_alloc_txq_mem(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001449{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001450 if (!il->txq)
1451 il->txq = kzalloc(
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001452 sizeof(struct il_tx_queue) *
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001453 il->cfg->base_params->num_of_queues,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001454 GFP_KERNEL);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001455 if (!il->txq) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02001456 IL_ERR("Not enough memory for txq\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001457 return -ENOMEM;
1458 }
1459 return 0;
1460}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001461EXPORT_SYMBOL(il_alloc_txq_mem);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001462
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001463void il_txq_mem(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001464{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001465 kfree(il->txq);
1466 il->txq = NULL;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001467}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001468EXPORT_SYMBOL(il_txq_mem);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001469
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01001470#ifdef CONFIG_IWLEGACY_DEBUGFS
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001471
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001472#define IL_TRAFFIC_DUMP_SIZE (IL_TRAFFIC_ENTRY_SIZE * IL_TRAFFIC_ENTRIES)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001473
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001474void il_reset_traffic_log(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001475{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001476 il->tx_traffic_idx = 0;
1477 il->rx_traffic_idx = 0;
1478 if (il->tx_traffic)
1479 memset(il->tx_traffic, 0, IL_TRAFFIC_DUMP_SIZE);
1480 if (il->rx_traffic)
1481 memset(il->rx_traffic, 0, IL_TRAFFIC_DUMP_SIZE);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001482}
1483
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001484int il_alloc_traffic_mem(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001485{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001486 u32 traffic_size = IL_TRAFFIC_DUMP_SIZE;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001487
Stanislaw Gruszkad2ddf622011-08-16 14:17:04 +02001488 if (il_debug_level & IL_DL_TX) {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001489 if (!il->tx_traffic) {
1490 il->tx_traffic =
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001491 kzalloc(traffic_size, GFP_KERNEL);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001492 if (!il->tx_traffic)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001493 return -ENOMEM;
1494 }
1495 }
Stanislaw Gruszkad2ddf622011-08-16 14:17:04 +02001496 if (il_debug_level & IL_DL_RX) {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001497 if (!il->rx_traffic) {
1498 il->rx_traffic =
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001499 kzalloc(traffic_size, GFP_KERNEL);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001500 if (!il->rx_traffic)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001501 return -ENOMEM;
1502 }
1503 }
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001504 il_reset_traffic_log(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001505 return 0;
1506}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001507EXPORT_SYMBOL(il_alloc_traffic_mem);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001508
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001509void il_free_traffic_mem(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001510{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001511 kfree(il->tx_traffic);
1512 il->tx_traffic = NULL;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001513
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001514 kfree(il->rx_traffic);
1515 il->rx_traffic = NULL;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001516}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001517EXPORT_SYMBOL(il_free_traffic_mem);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001518
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001519void il_dbg_log_tx_data_frame(struct il_priv *il,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001520 u16 length, struct ieee80211_hdr *header)
1521{
1522 __le16 fc;
1523 u16 len;
1524
Stanislaw Gruszkad2ddf622011-08-16 14:17:04 +02001525 if (likely(!(il_debug_level & IL_DL_TX)))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001526 return;
1527
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001528 if (!il->tx_traffic)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001529 return;
1530
1531 fc = header->frame_control;
1532 if (ieee80211_is_data(fc)) {
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001533 len = (length > IL_TRAFFIC_ENTRY_SIZE)
1534 ? IL_TRAFFIC_ENTRY_SIZE : length;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001535 memcpy((il->tx_traffic +
1536 (il->tx_traffic_idx * IL_TRAFFIC_ENTRY_SIZE)),
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001537 header, len);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001538 il->tx_traffic_idx =
1539 (il->tx_traffic_idx + 1) % IL_TRAFFIC_ENTRIES;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001540 }
1541}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001542EXPORT_SYMBOL(il_dbg_log_tx_data_frame);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001543
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001544void il_dbg_log_rx_data_frame(struct il_priv *il,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001545 u16 length, struct ieee80211_hdr *header)
1546{
1547 __le16 fc;
1548 u16 len;
1549
Stanislaw Gruszkad2ddf622011-08-16 14:17:04 +02001550 if (likely(!(il_debug_level & IL_DL_RX)))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001551 return;
1552
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001553 if (!il->rx_traffic)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001554 return;
1555
1556 fc = header->frame_control;
1557 if (ieee80211_is_data(fc)) {
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001558 len = (length > IL_TRAFFIC_ENTRY_SIZE)
1559 ? IL_TRAFFIC_ENTRY_SIZE : length;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001560 memcpy((il->rx_traffic +
1561 (il->rx_traffic_idx * IL_TRAFFIC_ENTRY_SIZE)),
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001562 header, len);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001563 il->rx_traffic_idx =
1564 (il->rx_traffic_idx + 1) % IL_TRAFFIC_ENTRIES;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001565 }
1566}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001567EXPORT_SYMBOL(il_dbg_log_rx_data_frame);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001568
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001569const char *il_get_mgmt_string(int cmd)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001570{
1571 switch (cmd) {
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001572 IL_CMD(MANAGEMENT_ASSOC_REQ);
1573 IL_CMD(MANAGEMENT_ASSOC_RESP);
1574 IL_CMD(MANAGEMENT_REASSOC_REQ);
1575 IL_CMD(MANAGEMENT_REASSOC_RESP);
1576 IL_CMD(MANAGEMENT_PROBE_REQ);
1577 IL_CMD(MANAGEMENT_PROBE_RESP);
1578 IL_CMD(MANAGEMENT_BEACON);
1579 IL_CMD(MANAGEMENT_ATIM);
1580 IL_CMD(MANAGEMENT_DISASSOC);
1581 IL_CMD(MANAGEMENT_AUTH);
1582 IL_CMD(MANAGEMENT_DEAUTH);
1583 IL_CMD(MANAGEMENT_ACTION);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001584 default:
1585 return "UNKNOWN";
1586
1587 }
1588}
1589
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001590const char *il_get_ctrl_string(int cmd)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001591{
1592 switch (cmd) {
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001593 IL_CMD(CONTROL_BACK_REQ);
1594 IL_CMD(CONTROL_BACK);
1595 IL_CMD(CONTROL_PSPOLL);
1596 IL_CMD(CONTROL_RTS);
1597 IL_CMD(CONTROL_CTS);
1598 IL_CMD(CONTROL_ACK);
1599 IL_CMD(CONTROL_CFEND);
1600 IL_CMD(CONTROL_CFENDACK);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001601 default:
1602 return "UNKNOWN";
1603
1604 }
1605}
1606
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001607void il_clear_traffic_stats(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001608{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001609 memset(&il->tx_stats, 0, sizeof(struct traffic_stats));
1610 memset(&il->rx_stats, 0, sizeof(struct traffic_stats));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001611}
1612
1613/*
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01001614 * if CONFIG_IWLEGACY_DEBUGFS defined,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001615 * il_update_stats function will
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001616 * record all the MGMT, CTRL and DATA pkt for both TX and Rx pass
1617 * Use debugFs to display the rx/rx_statistics
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01001618 * if CONFIG_IWLEGACY_DEBUGFS not being defined, then no MGMT and CTRL
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001619 * information will be recorded, but DATA pkt still will be recorded
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001620 * for the reason of il_led.c need to control the led blinking based on
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001621 * number of tx and rx data.
1622 *
1623 */
1624void
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001625il_update_stats(struct il_priv *il, bool is_tx, __le16 fc, u16 len)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001626{
1627 struct traffic_stats *stats;
1628
1629 if (is_tx)
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001630 stats = &il->tx_stats;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001631 else
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001632 stats = &il->rx_stats;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001633
1634 if (ieee80211_is_mgmt(fc)) {
1635 switch (fc & cpu_to_le16(IEEE80211_FCTL_STYPE)) {
1636 case cpu_to_le16(IEEE80211_STYPE_ASSOC_REQ):
1637 stats->mgmt[MANAGEMENT_ASSOC_REQ]++;
1638 break;
1639 case cpu_to_le16(IEEE80211_STYPE_ASSOC_RESP):
1640 stats->mgmt[MANAGEMENT_ASSOC_RESP]++;
1641 break;
1642 case cpu_to_le16(IEEE80211_STYPE_REASSOC_REQ):
1643 stats->mgmt[MANAGEMENT_REASSOC_REQ]++;
1644 break;
1645 case cpu_to_le16(IEEE80211_STYPE_REASSOC_RESP):
1646 stats->mgmt[MANAGEMENT_REASSOC_RESP]++;
1647 break;
1648 case cpu_to_le16(IEEE80211_STYPE_PROBE_REQ):
1649 stats->mgmt[MANAGEMENT_PROBE_REQ]++;
1650 break;
1651 case cpu_to_le16(IEEE80211_STYPE_PROBE_RESP):
1652 stats->mgmt[MANAGEMENT_PROBE_RESP]++;
1653 break;
1654 case cpu_to_le16(IEEE80211_STYPE_BEACON):
1655 stats->mgmt[MANAGEMENT_BEACON]++;
1656 break;
1657 case cpu_to_le16(IEEE80211_STYPE_ATIM):
1658 stats->mgmt[MANAGEMENT_ATIM]++;
1659 break;
1660 case cpu_to_le16(IEEE80211_STYPE_DISASSOC):
1661 stats->mgmt[MANAGEMENT_DISASSOC]++;
1662 break;
1663 case cpu_to_le16(IEEE80211_STYPE_AUTH):
1664 stats->mgmt[MANAGEMENT_AUTH]++;
1665 break;
1666 case cpu_to_le16(IEEE80211_STYPE_DEAUTH):
1667 stats->mgmt[MANAGEMENT_DEAUTH]++;
1668 break;
1669 case cpu_to_le16(IEEE80211_STYPE_ACTION):
1670 stats->mgmt[MANAGEMENT_ACTION]++;
1671 break;
1672 }
1673 } else if (ieee80211_is_ctl(fc)) {
1674 switch (fc & cpu_to_le16(IEEE80211_FCTL_STYPE)) {
1675 case cpu_to_le16(IEEE80211_STYPE_BACK_REQ):
1676 stats->ctrl[CONTROL_BACK_REQ]++;
1677 break;
1678 case cpu_to_le16(IEEE80211_STYPE_BACK):
1679 stats->ctrl[CONTROL_BACK]++;
1680 break;
1681 case cpu_to_le16(IEEE80211_STYPE_PSPOLL):
1682 stats->ctrl[CONTROL_PSPOLL]++;
1683 break;
1684 case cpu_to_le16(IEEE80211_STYPE_RTS):
1685 stats->ctrl[CONTROL_RTS]++;
1686 break;
1687 case cpu_to_le16(IEEE80211_STYPE_CTS):
1688 stats->ctrl[CONTROL_CTS]++;
1689 break;
1690 case cpu_to_le16(IEEE80211_STYPE_ACK):
1691 stats->ctrl[CONTROL_ACK]++;
1692 break;
1693 case cpu_to_le16(IEEE80211_STYPE_CFEND):
1694 stats->ctrl[CONTROL_CFEND]++;
1695 break;
1696 case cpu_to_le16(IEEE80211_STYPE_CFENDACK):
1697 stats->ctrl[CONTROL_CFENDACK]++;
1698 break;
1699 }
1700 } else {
1701 /* data */
1702 stats->data_cnt++;
1703 stats->data_bytes += len;
1704 }
1705}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001706EXPORT_SYMBOL(il_update_stats);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001707#endif
1708
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001709int il_force_reset(struct il_priv *il, bool external)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001710{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001711 struct il_force_reset *force_reset;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001712
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001713 if (test_bit(STATUS_EXIT_PENDING, &il->status))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001714 return -EINVAL;
1715
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001716 force_reset = &il->force_reset;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001717 force_reset->reset_request_count++;
1718 if (!external) {
1719 if (force_reset->last_force_reset_jiffies &&
1720 time_after(force_reset->last_force_reset_jiffies +
1721 force_reset->reset_duration, jiffies)) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01001722 D_INFO("force reset rejected\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001723 force_reset->reset_reject_count++;
1724 return -EAGAIN;
1725 }
1726 }
1727 force_reset->reset_success_count++;
1728 force_reset->last_force_reset_jiffies = jiffies;
Stanislaw Gruszkadd6d2a82011-06-08 15:28:26 +02001729
1730 /*
1731 * if the request is from external(ex: debugfs),
1732 * then always perform the request in regardless the module
1733 * parameter setting
1734 * if the request is from internal (uCode error or driver
1735 * detect failure), then fw_restart module parameter
1736 * need to be check before performing firmware reload
1737 */
1738
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001739 if (!external && !il->cfg->mod_params->restart_fw) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01001740 D_INFO("Cancel firmware reload based on "
Stanislaw Gruszkadd6d2a82011-06-08 15:28:26 +02001741 "module parameter setting\n");
1742 return 0;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001743 }
Stanislaw Gruszkadd6d2a82011-06-08 15:28:26 +02001744
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02001745 IL_ERR("On demand firmware reload\n");
Stanislaw Gruszkadd6d2a82011-06-08 15:28:26 +02001746
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001747 /* Set the FW error flag -- cleared on il_down */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001748 set_bit(STATUS_FW_ERROR, &il->status);
1749 wake_up(&il->wait_command_queue);
Stanislaw Gruszkadd6d2a82011-06-08 15:28:26 +02001750 /*
1751 * Keep the restart process from trying to send host
1752 * commands by clearing the INIT status bit
1753 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001754 clear_bit(STATUS_READY, &il->status);
1755 queue_work(il->workqueue, &il->restart);
Stanislaw Gruszkadd6d2a82011-06-08 15:28:26 +02001756
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001757 return 0;
1758}
1759
1760int
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001761il_mac_change_interface(struct ieee80211_hw *hw,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001762 struct ieee80211_vif *vif,
1763 enum nl80211_iftype newtype, bool newp2p)
1764{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001765 struct il_priv *il = hw->priv;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001766 struct il_rxon_context *ctx = il_rxon_ctx_from_vif(vif);
1767 struct il_rxon_context *tmp;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001768 u32 interface_modes;
1769 int err;
1770
1771 newtype = ieee80211_iftype_p2p(newtype, newp2p);
1772
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001773 mutex_lock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001774
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001775 if (!ctx->vif || !il_is_ready_rf(il)) {
Johannes Bergffd8c742011-03-29 15:28:11 +02001776 /*
1777 * Huh? But wait ... this can maybe happen when
1778 * we're in the middle of a firmware restart!
1779 */
1780 err = -EBUSY;
1781 goto out;
1782 }
1783
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001784 interface_modes = ctx->interface_modes | ctx->exclusive_interface_modes;
1785
1786 if (!(interface_modes & BIT(newtype))) {
1787 err = -EBUSY;
1788 goto out;
1789 }
1790
1791 if (ctx->exclusive_interface_modes & BIT(newtype)) {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001792 for_each_context(il, tmp) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001793 if (ctx == tmp)
1794 continue;
1795
1796 if (!tmp->vif)
1797 continue;
1798
1799 /*
1800 * The current mode switch would be exclusive, but
1801 * another context is active ... refuse the switch.
1802 */
1803 err = -EBUSY;
1804 goto out;
1805 }
1806 }
1807
1808 /* success */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001809 il_teardown_interface(il, vif, true);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001810 vif->type = newtype;
Johannes Bergffd8c742011-03-29 15:28:11 +02001811 vif->p2p = newp2p;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001812 err = il_setup_interface(il, ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001813 WARN_ON(err);
1814 /*
1815 * We've switched internally, but submitting to the
1816 * device may have failed for some reason. Mask this
1817 * error, because otherwise mac80211 will not switch
1818 * (and set the interface type back) and we'll be
1819 * out of sync with it.
1820 */
1821 err = 0;
1822
1823 out:
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001824 mutex_unlock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001825 return err;
1826}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001827EXPORT_SYMBOL(il_mac_change_interface);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001828
1829/*
1830 * On every watchdog tick we check (latest) time stamp. If it does not
1831 * change during timeout period and queue is not empty we reset firmware.
1832 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001833static int il_check_stuck_queue(struct il_priv *il, int cnt)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001834{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001835 struct il_tx_queue *txq = &il->txq[cnt];
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001836 struct il_queue *q = &txq->q;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001837 unsigned long timeout;
1838 int ret;
1839
1840 if (q->read_ptr == q->write_ptr) {
1841 txq->time_stamp = jiffies;
1842 return 0;
1843 }
1844
1845 timeout = txq->time_stamp +
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001846 msecs_to_jiffies(il->cfg->base_params->wd_timeout);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001847
1848 if (time_after(jiffies, timeout)) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02001849 IL_ERR("Queue %d stuck for %u ms.\n",
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001850 q->id, il->cfg->base_params->wd_timeout);
1851 ret = il_force_reset(il, false);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001852 return (ret == -EAGAIN) ? 0 : 1;
1853 }
1854
1855 return 0;
1856}
1857
1858/*
1859 * Making watchdog tick be a quarter of timeout assure we will
1860 * discover the queue hung between timeout and 1.25*timeout
1861 */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001862#define IL_WD_TICK(timeout) ((timeout) / 4)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001863
1864/*
1865 * Watchdog timer callback, we check each tx queue for stuck, if if hung
1866 * we reset the firmware. If everything is fine just rearm the timer.
1867 */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001868void il_bg_watchdog(unsigned long data)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001869{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001870 struct il_priv *il = (struct il_priv *)data;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001871 int cnt;
1872 unsigned long timeout;
1873
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001874 if (test_bit(STATUS_EXIT_PENDING, &il->status))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001875 return;
1876
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001877 timeout = il->cfg->base_params->wd_timeout;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001878 if (timeout == 0)
1879 return;
1880
1881 /* monitor and check for stuck cmd queue */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001882 if (il_check_stuck_queue(il, il->cmd_queue))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001883 return;
1884
1885 /* monitor and check for other stuck queues */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001886 if (il_is_any_associated(il)) {
1887 for (cnt = 0; cnt < il->hw_params.max_txq_num; cnt++) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001888 /* skip as we already checked the command queue */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001889 if (cnt == il->cmd_queue)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001890 continue;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001891 if (il_check_stuck_queue(il, cnt))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001892 return;
1893 }
1894 }
1895
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001896 mod_timer(&il->watchdog, jiffies +
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001897 msecs_to_jiffies(IL_WD_TICK(timeout)));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001898}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001899EXPORT_SYMBOL(il_bg_watchdog);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001900
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001901void il_setup_watchdog(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001902{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001903 unsigned int timeout = il->cfg->base_params->wd_timeout;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001904
1905 if (timeout)
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001906 mod_timer(&il->watchdog,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001907 jiffies + msecs_to_jiffies(IL_WD_TICK(timeout)));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001908 else
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001909 del_timer(&il->watchdog);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001910}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001911EXPORT_SYMBOL(il_setup_watchdog);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001912
1913/*
1914 * extended beacon time format
1915 * time in usec will be changed into a 32-bit value in extended:internal format
1916 * the extended part is the beacon counts
1917 * the internal part is the time in usec within one beacon interval
1918 */
1919u32
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001920il_usecs_to_beacons(struct il_priv *il,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001921 u32 usec, u32 beacon_interval)
1922{
1923 u32 quot;
1924 u32 rem;
1925 u32 interval = beacon_interval * TIME_UNIT;
1926
1927 if (!interval || !usec)
1928 return 0;
1929
1930 quot = (usec / interval) &
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001931 (il_beacon_time_mask_high(il,
1932 il->hw_params.beacon_time_tsf_bits) >>
1933 il->hw_params.beacon_time_tsf_bits);
1934 rem = (usec % interval) & il_beacon_time_mask_low(il,
1935 il->hw_params.beacon_time_tsf_bits);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001936
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001937 return (quot << il->hw_params.beacon_time_tsf_bits) + rem;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001938}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001939EXPORT_SYMBOL(il_usecs_to_beacons);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001940
1941/* base is usually what we get from ucode with each received frame,
1942 * the same as HW timer counter counting down
1943 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001944__le32 il_add_beacon_time(struct il_priv *il, u32 base,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001945 u32 addon, u32 beacon_interval)
1946{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001947 u32 base_low = base & il_beacon_time_mask_low(il,
1948 il->hw_params.beacon_time_tsf_bits);
1949 u32 addon_low = addon & il_beacon_time_mask_low(il,
1950 il->hw_params.beacon_time_tsf_bits);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001951 u32 interval = beacon_interval * TIME_UNIT;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001952 u32 res = (base & il_beacon_time_mask_high(il,
1953 il->hw_params.beacon_time_tsf_bits)) +
1954 (addon & il_beacon_time_mask_high(il,
1955 il->hw_params.beacon_time_tsf_bits));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001956
1957 if (base_low > addon_low)
1958 res += base_low - addon_low;
1959 else if (base_low < addon_low) {
1960 res += interval + base_low - addon_low;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001961 res += (1 << il->hw_params.beacon_time_tsf_bits);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001962 } else
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001963 res += (1 << il->hw_params.beacon_time_tsf_bits);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001964
1965 return cpu_to_le32(res);
1966}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001967EXPORT_SYMBOL(il_add_beacon_time);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001968
1969#ifdef CONFIG_PM
1970
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001971int il_pci_suspend(struct device *device)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001972{
1973 struct pci_dev *pdev = to_pci_dev(device);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001974 struct il_priv *il = pci_get_drvdata(pdev);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001975
1976 /*
1977 * This function is called when system goes into suspend state
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001978 * mac80211 will call il_mac_stop() from the mac80211 suspend function
1979 * first but since il_mac_stop() has no knowledge of who the caller is,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001980 * it will not call apm_ops.stop() to stop the DMA operation.
1981 * Calling apm_ops.stop here to make sure we stop the DMA.
1982 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001983 il_apm_stop(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001984
1985 return 0;
1986}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001987EXPORT_SYMBOL(il_pci_suspend);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001988
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001989int il_pci_resume(struct device *device)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001990{
1991 struct pci_dev *pdev = to_pci_dev(device);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001992 struct il_priv *il = pci_get_drvdata(pdev);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001993 bool hw_rfkill = false;
1994
1995 /*
1996 * We disable the RETRY_TIMEOUT register (0x41) to keep
1997 * PCI Tx retries from interfering with C3 CPU state.
1998 */
1999 pci_write_config_byte(pdev, PCI_CFG_RETRY_TIMEOUT, 0x00);
2000
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002001 il_enable_interrupts(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002002
Stanislaw Gruszka841b2cc2011-08-24 15:14:03 +02002003 if (!(_il_rd(il, CSR_GP_CNTRL) &
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002004 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW))
2005 hw_rfkill = true;
2006
2007 if (hw_rfkill)
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002008 set_bit(STATUS_RF_KILL_HW, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002009 else
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002010 clear_bit(STATUS_RF_KILL_HW, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002011
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002012 wiphy_rfkill_set_hw_state(il->hw->wiphy, hw_rfkill);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002013
2014 return 0;
2015}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002016EXPORT_SYMBOL(il_pci_resume);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002017
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002018const struct dev_pm_ops il_pm_ops = {
2019 .suspend = il_pci_suspend,
2020 .resume = il_pci_resume,
2021 .freeze = il_pci_suspend,
2022 .thaw = il_pci_resume,
2023 .poweroff = il_pci_suspend,
2024 .restore = il_pci_resume,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002025};
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002026EXPORT_SYMBOL(il_pm_ops);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002027
2028#endif /* CONFIG_PM */
2029
2030static void
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002031il_update_qos(struct il_priv *il, struct il_rxon_context *ctx)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002032{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002033 if (test_bit(STATUS_EXIT_PENDING, &il->status))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002034 return;
2035
2036 if (!ctx->is_active)
2037 return;
2038
2039 ctx->qos_data.def_qos_parm.qos_flags = 0;
2040
2041 if (ctx->qos_data.qos_active)
2042 ctx->qos_data.def_qos_parm.qos_flags |=
2043 QOS_PARAM_FLG_UPDATE_EDCA_MSK;
2044
2045 if (ctx->ht.enabled)
2046 ctx->qos_data.def_qos_parm.qos_flags |= QOS_PARAM_FLG_TGN_MSK;
2047
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01002048 D_QOS("send QoS cmd with Qos active=%d FLAGS=0x%X\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002049 ctx->qos_data.qos_active,
2050 ctx->qos_data.def_qos_parm.qos_flags);
2051
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002052 il_send_cmd_pdu_async(il, ctx->qos_cmd,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002053 sizeof(struct il_qosparam_cmd),
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002054 &ctx->qos_data.def_qos_parm, NULL);
2055}
2056
2057/**
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002058 * il_mac_config - mac80211 config callback
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002059 */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002060int il_mac_config(struct ieee80211_hw *hw, u32 changed)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002061{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002062 struct il_priv *il = hw->priv;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002063 const struct il_channel_info *ch_info;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002064 struct ieee80211_conf *conf = &hw->conf;
2065 struct ieee80211_channel *channel = conf->channel;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002066 struct il_ht_config *ht_conf = &il->current_ht_config;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002067 struct il_rxon_context *ctx;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002068 unsigned long flags = 0;
2069 int ret = 0;
2070 u16 ch;
2071 int scan_active = 0;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002072 bool ht_changed[NUM_IL_RXON_CTX] = {};
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002073
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002074 if (WARN_ON(!il->cfg->ops->legacy))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002075 return -EOPNOTSUPP;
2076
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002077 mutex_lock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002078
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01002079 D_MAC80211("enter to channel %d changed 0x%X\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002080 channel->hw_value, changed);
2081
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002082 if (unlikely(test_bit(STATUS_SCANNING, &il->status))) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002083 scan_active = 1;
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01002084 D_MAC80211("scan active\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002085 }
2086
2087 if (changed & (IEEE80211_CONF_CHANGE_SMPS |
2088 IEEE80211_CONF_CHANGE_CHANNEL)) {
2089 /* mac80211 uses static for non-HT which is what we want */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002090 il->current_ht_config.smps = conf->smps_mode;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002091
2092 /*
2093 * Recalculate chain counts.
2094 *
2095 * If monitor mode is enabled then mac80211 will
2096 * set up the SM PS mode to OFF if an HT channel is
2097 * configured.
2098 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002099 if (il->cfg->ops->hcmd->set_rxon_chain)
2100 for_each_context(il, ctx)
2101 il->cfg->ops->hcmd->set_rxon_chain(il, ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002102 }
2103
2104 /* during scanning mac80211 will delay channel setting until
2105 * scan finish with changed = 0
2106 */
2107 if (!changed || (changed & IEEE80211_CONF_CHANGE_CHANNEL)) {
2108 if (scan_active)
2109 goto set_ch_out;
2110
2111 ch = channel->hw_value;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002112 ch_info = il_get_channel_info(il, channel->band, ch);
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002113 if (!il_is_channel_valid(ch_info)) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01002114 D_MAC80211("leave - invalid channel\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002115 ret = -EINVAL;
2116 goto set_ch_out;
2117 }
2118
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002119 if (il->iw_mode == NL80211_IFTYPE_ADHOC &&
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002120 !il_is_channel_ibss(ch_info)) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01002121 D_MAC80211("leave - not IBSS channel\n");
Stanislaw Gruszkaeb85de32011-05-07 17:46:21 +02002122 ret = -EINVAL;
2123 goto set_ch_out;
2124 }
2125
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002126 spin_lock_irqsave(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002127
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002128 for_each_context(il, ctx) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002129 /* Configure HT40 channels */
2130 if (ctx->ht.enabled != conf_is_ht(conf)) {
2131 ctx->ht.enabled = conf_is_ht(conf);
2132 ht_changed[ctx->ctxid] = true;
2133 }
2134 if (ctx->ht.enabled) {
2135 if (conf_is_ht40_minus(conf)) {
2136 ctx->ht.extension_chan_offset =
2137 IEEE80211_HT_PARAM_CHA_SEC_BELOW;
2138 ctx->ht.is_40mhz = true;
2139 } else if (conf_is_ht40_plus(conf)) {
2140 ctx->ht.extension_chan_offset =
2141 IEEE80211_HT_PARAM_CHA_SEC_ABOVE;
2142 ctx->ht.is_40mhz = true;
2143 } else {
2144 ctx->ht.extension_chan_offset =
2145 IEEE80211_HT_PARAM_CHA_SEC_NONE;
2146 ctx->ht.is_40mhz = false;
2147 }
2148 } else
2149 ctx->ht.is_40mhz = false;
2150
2151 /*
2152 * Default to no protection. Protection mode will
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002153 * later be set from BSS config in il_ht_conf
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002154 */
2155 ctx->ht.protection =
2156 IEEE80211_HT_OP_MODE_PROTECTION_NONE;
2157
2158 /* if we are switching from ht to 2.4 clear flags
2159 * from any ht related info since 2.4 does not
2160 * support ht */
2161 if ((le16_to_cpu(ctx->staging.channel) != ch))
2162 ctx->staging.flags = 0;
2163
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002164 il_set_rxon_channel(il, channel, ctx);
2165 il_set_rxon_ht(il, ht_conf);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002166
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002167 il_set_flags_for_band(il, ctx, channel->band,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002168 ctx->vif);
2169 }
2170
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002171 spin_unlock_irqrestore(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002172
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002173 if (il->cfg->ops->legacy->update_bcast_stations)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002174 ret =
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002175 il->cfg->ops->legacy->update_bcast_stations(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002176
2177 set_ch_out:
2178 /* The list of supported rates and rate mask can be different
2179 * for each band; since the band may have changed, reset
2180 * the rate mask to what mac80211 lists */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002181 il_set_rate(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002182 }
2183
2184 if (changed & (IEEE80211_CONF_CHANGE_PS |
2185 IEEE80211_CONF_CHANGE_IDLE)) {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002186 ret = il_power_update_mode(il, false);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002187 if (ret)
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01002188 D_MAC80211("Error setting sleep level\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002189 }
2190
2191 if (changed & IEEE80211_CONF_CHANGE_POWER) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01002192 D_MAC80211("TX Power old=%d new=%d\n",
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002193 il->tx_power_user_lmt, conf->power_level);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002194
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002195 il_set_tx_power(il, conf->power_level, false);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002196 }
2197
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002198 if (!il_is_ready(il)) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01002199 D_MAC80211("leave - not ready\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002200 goto out;
2201 }
2202
2203 if (scan_active)
2204 goto out;
2205
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002206 for_each_context(il, ctx) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002207 if (memcmp(&ctx->active, &ctx->staging, sizeof(ctx->staging)))
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002208 il_commit_rxon(il, ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002209 else
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01002210 D_INFO(
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002211 "Not re-sending same RXON configuration.\n");
2212 if (ht_changed[ctx->ctxid])
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002213 il_update_qos(il, ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002214 }
2215
2216out:
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01002217 D_MAC80211("leave\n");
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002218 mutex_unlock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002219 return ret;
2220}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002221EXPORT_SYMBOL(il_mac_config);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002222
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002223void il_mac_reset_tsf(struct ieee80211_hw *hw,
Eliad Peller37a41b42011-09-21 14:06:11 +03002224 struct ieee80211_vif *vif)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002225{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002226 struct il_priv *il = hw->priv;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002227 unsigned long flags;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002228 /* IBSS can only be the IL_RXON_CTX_BSS context */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002229 struct il_rxon_context *ctx = &il->contexts[IL_RXON_CTX_BSS];
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002230
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002231 if (WARN_ON(!il->cfg->ops->legacy))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002232 return;
2233
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002234 mutex_lock(&il->mutex);
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01002235 D_MAC80211("enter\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002236
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002237 spin_lock_irqsave(&il->lock, flags);
2238 memset(&il->current_ht_config, 0, sizeof(struct il_ht_config));
2239 spin_unlock_irqrestore(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002240
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002241 spin_lock_irqsave(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002242
2243 /* new association get rid of ibss beacon skb */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002244 if (il->beacon_skb)
2245 dev_kfree_skb(il->beacon_skb);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002246
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002247 il->beacon_skb = NULL;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002248
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002249 il->timestamp = 0;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002250
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002251 spin_unlock_irqrestore(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002252
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002253 il_scan_cancel_timeout(il, 100);
2254 if (!il_is_ready_rf(il)) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01002255 D_MAC80211("leave - not ready\n");
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002256 mutex_unlock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002257 return;
2258 }
2259
2260 /* we are restarting association process
2261 * clear RXON_FILTER_ASSOC_MSK bit
2262 */
2263 ctx->staging.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002264 il_commit_rxon(il, ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002265
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002266 il_set_rate(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002267
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002268 mutex_unlock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002269
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01002270 D_MAC80211("leave\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002271}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002272EXPORT_SYMBOL(il_mac_reset_tsf);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002273
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002274static void il_ht_conf(struct il_priv *il,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002275 struct ieee80211_vif *vif)
2276{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002277 struct il_ht_config *ht_conf = &il->current_ht_config;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002278 struct ieee80211_sta *sta;
2279 struct ieee80211_bss_conf *bss_conf = &vif->bss_conf;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002280 struct il_rxon_context *ctx = il_rxon_ctx_from_vif(vif);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002281
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01002282 D_ASSOC("enter:\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002283
2284 if (!ctx->ht.enabled)
2285 return;
2286
2287 ctx->ht.protection =
2288 bss_conf->ht_operation_mode & IEEE80211_HT_OP_MODE_PROTECTION;
2289 ctx->ht.non_gf_sta_present =
2290 !!(bss_conf->ht_operation_mode &
2291 IEEE80211_HT_OP_MODE_NON_GF_STA_PRSNT);
2292
2293 ht_conf->single_chain_sufficient = false;
2294
2295 switch (vif->type) {
2296 case NL80211_IFTYPE_STATION:
2297 rcu_read_lock();
2298 sta = ieee80211_find_sta(vif, bss_conf->bssid);
2299 if (sta) {
2300 struct ieee80211_sta_ht_cap *ht_cap = &sta->ht_cap;
2301 int maxstreams;
2302
2303 maxstreams = (ht_cap->mcs.tx_params &
2304 IEEE80211_HT_MCS_TX_MAX_STREAMS_MASK)
2305 >> IEEE80211_HT_MCS_TX_MAX_STREAMS_SHIFT;
2306 maxstreams += 1;
2307
Stanislaw Gruszka232913b2011-08-26 10:45:16 +02002308 if (ht_cap->mcs.rx_mask[1] == 0 &&
2309 ht_cap->mcs.rx_mask[2] == 0)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002310 ht_conf->single_chain_sufficient = true;
2311 if (maxstreams <= 1)
2312 ht_conf->single_chain_sufficient = true;
2313 } else {
2314 /*
2315 * If at all, this can only happen through a race
2316 * when the AP disconnects us while we're still
2317 * setting up the connection, in that case mac80211
2318 * will soon tell us about that.
2319 */
2320 ht_conf->single_chain_sufficient = true;
2321 }
2322 rcu_read_unlock();
2323 break;
2324 case NL80211_IFTYPE_ADHOC:
2325 ht_conf->single_chain_sufficient = true;
2326 break;
2327 default:
2328 break;
2329 }
2330
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01002331 D_ASSOC("leave\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002332}
2333
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002334static inline void il_set_no_assoc(struct il_priv *il,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002335 struct ieee80211_vif *vif)
2336{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002337 struct il_rxon_context *ctx = il_rxon_ctx_from_vif(vif);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002338
2339 /*
2340 * inform the ucode that there is no longer an
2341 * association and that no more packets should be
2342 * sent
2343 */
2344 ctx->staging.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
2345 ctx->staging.assoc_id = 0;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002346 il_commit_rxon(il, ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002347}
2348
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002349static void il_beacon_update(struct ieee80211_hw *hw,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002350 struct ieee80211_vif *vif)
2351{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002352 struct il_priv *il = hw->priv;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002353 unsigned long flags;
2354 __le64 timestamp;
2355 struct sk_buff *skb = ieee80211_beacon_get(hw, vif);
2356
2357 if (!skb)
2358 return;
2359
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01002360 D_MAC80211("enter\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002361
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002362 lockdep_assert_held(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002363
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002364 if (!il->beacon_ctx) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02002365 IL_ERR("update beacon but no beacon context!\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002366 dev_kfree_skb(skb);
2367 return;
2368 }
2369
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002370 spin_lock_irqsave(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002371
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002372 if (il->beacon_skb)
2373 dev_kfree_skb(il->beacon_skb);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002374
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002375 il->beacon_skb = skb;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002376
2377 timestamp = ((struct ieee80211_mgmt *)skb->data)->u.beacon.timestamp;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002378 il->timestamp = le64_to_cpu(timestamp);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002379
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01002380 D_MAC80211("leave\n");
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002381 spin_unlock_irqrestore(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002382
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002383 if (!il_is_ready_rf(il)) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01002384 D_MAC80211("leave - RF not ready\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002385 return;
2386 }
2387
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002388 il->cfg->ops->legacy->post_associate(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002389}
2390
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002391void il_mac_bss_info_changed(struct ieee80211_hw *hw,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002392 struct ieee80211_vif *vif,
2393 struct ieee80211_bss_conf *bss_conf,
2394 u32 changes)
2395{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002396 struct il_priv *il = hw->priv;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002397 struct il_rxon_context *ctx = il_rxon_ctx_from_vif(vif);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002398 int ret;
2399
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002400 if (WARN_ON(!il->cfg->ops->legacy))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002401 return;
2402
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01002403 D_MAC80211("changes = 0x%X\n", changes);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002404
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002405 mutex_lock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002406
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002407 if (!il_is_alive(il)) {
2408 mutex_unlock(&il->mutex);
Stanislaw Gruszka28a6e572011-04-28 11:51:32 +02002409 return;
2410 }
2411
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002412 if (changes & BSS_CHANGED_QOS) {
2413 unsigned long flags;
2414
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002415 spin_lock_irqsave(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002416 ctx->qos_data.qos_active = bss_conf->qos;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002417 il_update_qos(il, ctx);
2418 spin_unlock_irqrestore(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002419 }
2420
2421 if (changes & BSS_CHANGED_BEACON_ENABLED) {
2422 /*
2423 * the add_interface code must make sure we only ever
2424 * have a single interface that could be beaconing at
2425 * any time.
2426 */
2427 if (vif->bss_conf.enable_beacon)
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002428 il->beacon_ctx = ctx;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002429 else
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002430 il->beacon_ctx = NULL;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002431 }
2432
2433 if (changes & BSS_CHANGED_BSSID) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01002434 D_MAC80211("BSSID %pM\n", bss_conf->bssid);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002435
2436 /*
2437 * If there is currently a HW scan going on in the
2438 * background then we need to cancel it else the RXON
2439 * below/in post_associate will fail.
2440 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002441 if (il_scan_cancel_timeout(il, 100)) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02002442 IL_WARN(
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002443 "Aborted scan still in progress after 100ms\n");
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01002444 D_MAC80211(
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002445 "leaving - scan abort failed.\n");
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002446 mutex_unlock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002447 return;
2448 }
2449
2450 /* mac80211 only sets assoc when in STATION mode */
2451 if (vif->type == NL80211_IFTYPE_ADHOC || bss_conf->assoc) {
2452 memcpy(ctx->staging.bssid_addr,
2453 bss_conf->bssid, ETH_ALEN);
2454
2455 /* currently needed in a few places */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002456 memcpy(il->bssid, bss_conf->bssid, ETH_ALEN);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002457 } else {
2458 ctx->staging.filter_flags &=
2459 ~RXON_FILTER_ASSOC_MSK;
2460 }
2461
2462 }
2463
2464 /*
2465 * This needs to be after setting the BSSID in case
2466 * mac80211 decides to do both changes at once because
2467 * it will invoke post_associate.
2468 */
Stanislaw Gruszka232913b2011-08-26 10:45:16 +02002469 if (vif->type == NL80211_IFTYPE_ADHOC && (changes & BSS_CHANGED_BEACON))
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002470 il_beacon_update(hw, vif);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002471
2472 if (changes & BSS_CHANGED_ERP_PREAMBLE) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01002473 D_MAC80211("ERP_PREAMBLE %d\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002474 bss_conf->use_short_preamble);
2475 if (bss_conf->use_short_preamble)
2476 ctx->staging.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
2477 else
2478 ctx->staging.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
2479 }
2480
2481 if (changes & BSS_CHANGED_ERP_CTS_PROT) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01002482 D_MAC80211(
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002483 "ERP_CTS %d\n", bss_conf->use_cts_prot);
Stanislaw Gruszka232913b2011-08-26 10:45:16 +02002484 if (bss_conf->use_cts_prot && il->band != IEEE80211_BAND_5GHZ)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002485 ctx->staging.flags |= RXON_FLG_TGG_PROTECT_MSK;
2486 else
2487 ctx->staging.flags &= ~RXON_FLG_TGG_PROTECT_MSK;
2488 if (bss_conf->use_cts_prot)
2489 ctx->staging.flags |= RXON_FLG_SELF_CTS_EN;
2490 else
2491 ctx->staging.flags &= ~RXON_FLG_SELF_CTS_EN;
2492 }
2493
2494 if (changes & BSS_CHANGED_BASIC_RATES) {
2495 /* XXX use this information
2496 *
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002497 * To do that, remove code from il_set_rate() and put something
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002498 * like this here:
2499 *
2500 if (A-band)
2501 ctx->staging.ofdm_basic_rates =
2502 bss_conf->basic_rates;
2503 else
2504 ctx->staging.ofdm_basic_rates =
2505 bss_conf->basic_rates >> 4;
2506 ctx->staging.cck_basic_rates =
2507 bss_conf->basic_rates & 0xF;
2508 */
2509 }
2510
2511 if (changes & BSS_CHANGED_HT) {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002512 il_ht_conf(il, vif);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002513
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002514 if (il->cfg->ops->hcmd->set_rxon_chain)
2515 il->cfg->ops->hcmd->set_rxon_chain(il, ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002516 }
2517
2518 if (changes & BSS_CHANGED_ASSOC) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01002519 D_MAC80211("ASSOC %d\n", bss_conf->assoc);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002520 if (bss_conf->assoc) {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002521 il->timestamp = bss_conf->timestamp;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002522
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002523 if (!il_is_rfkill(il))
2524 il->cfg->ops->legacy->post_associate(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002525 } else
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002526 il_set_no_assoc(il, vif);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002527 }
2528
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002529 if (changes && il_is_associated_ctx(ctx) && bss_conf->aid) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01002530 D_MAC80211("Changes (%#x) while associated\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002531 changes);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002532 ret = il_send_rxon_assoc(il, ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002533 if (!ret) {
2534 /* Sync active_rxon with latest change. */
2535 memcpy((void *)&ctx->active,
2536 &ctx->staging,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002537 sizeof(struct il_rxon_cmd));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002538 }
2539 }
2540
2541 if (changes & BSS_CHANGED_BEACON_ENABLED) {
2542 if (vif->bss_conf.enable_beacon) {
2543 memcpy(ctx->staging.bssid_addr,
2544 bss_conf->bssid, ETH_ALEN);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002545 memcpy(il->bssid, bss_conf->bssid, ETH_ALEN);
2546 il->cfg->ops->legacy->config_ap(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002547 } else
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002548 il_set_no_assoc(il, vif);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002549 }
2550
2551 if (changes & BSS_CHANGED_IBSS) {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002552 ret = il->cfg->ops->legacy->manage_ibss_station(il, vif,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002553 bss_conf->ibss_joined);
2554 if (ret)
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02002555 IL_ERR("failed to %s IBSS station %pM\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002556 bss_conf->ibss_joined ? "add" : "remove",
2557 bss_conf->bssid);
2558 }
2559
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002560 mutex_unlock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002561
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01002562 D_MAC80211("leave\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002563}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002564EXPORT_SYMBOL(il_mac_bss_info_changed);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002565
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002566irqreturn_t il_isr(int irq, void *data)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002567{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002568 struct il_priv *il = data;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002569 u32 inta, inta_mask;
2570 u32 inta_fh;
2571 unsigned long flags;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002572 if (!il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002573 return IRQ_NONE;
2574
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002575 spin_lock_irqsave(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002576
2577 /* Disable (but don't clear!) interrupts here to avoid
2578 * back-to-back ISRs and sporadic interrupts from our NIC.
2579 * If we have something to service, the tasklet will re-enable ints.
2580 * If we *don't* have something, we'll re-enable before leaving here. */
Stanislaw Gruszka841b2cc2011-08-24 15:14:03 +02002581 inta_mask = _il_rd(il, CSR_INT_MASK); /* just for debug */
2582 _il_wr(il, CSR_INT_MASK, 0x00000000);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002583
2584 /* Discover which interrupts are active/pending */
Stanislaw Gruszka841b2cc2011-08-24 15:14:03 +02002585 inta = _il_rd(il, CSR_INT);
2586 inta_fh = _il_rd(il, CSR_FH_INT_STATUS);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002587
2588 /* Ignore interrupt if there's nothing in NIC to service.
2589 * This may be due to IRQ shared with another device,
2590 * or due to sporadic interrupts thrown from our NIC. */
2591 if (!inta && !inta_fh) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01002592 D_ISR(
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002593 "Ignore interrupt, inta == 0, inta_fh == 0\n");
2594 goto none;
2595 }
2596
Stanislaw Gruszka232913b2011-08-26 10:45:16 +02002597 if (inta == 0xFFFFFFFF || (inta & 0xFFFFFFF0) == 0xa5a5a5a0) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002598 /* Hardware disappeared. It might have already raised
2599 * an interrupt */
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02002600 IL_WARN("HARDWARE GONE?? INTA == 0x%08x\n", inta);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002601 goto unplugged;
2602 }
2603
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01002604 D_ISR("ISR inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002605 inta, inta_mask, inta_fh);
2606
2607 inta &= ~CSR_INT_BIT_SCD;
2608
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002609 /* il_irq_tasklet() will service interrupts and re-enable them */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002610 if (likely(inta || inta_fh))
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002611 tasklet_schedule(&il->irq_tasklet);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002612
2613unplugged:
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002614 spin_unlock_irqrestore(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002615 return IRQ_HANDLED;
2616
2617none:
2618 /* re-enable interrupts here since we don't have anything to service. */
Stanislaw Gruszka93fd74e2011-04-28 11:51:30 +02002619 /* only Re-enable if disabled by irq */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002620 if (test_bit(STATUS_INT_ENABLED, &il->status))
2621 il_enable_interrupts(il);
2622 spin_unlock_irqrestore(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002623 return IRQ_NONE;
2624}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002625EXPORT_SYMBOL(il_isr);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002626
2627/*
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002628 * il_tx_cmd_protection: Set rts/cts. 3945 and 4965 only share this
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002629 * function.
2630 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002631void il_tx_cmd_protection(struct il_priv *il,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002632 struct ieee80211_tx_info *info,
2633 __le16 fc, __le32 *tx_flags)
2634{
2635 if (info->control.rates[0].flags & IEEE80211_TX_RC_USE_RTS_CTS) {
2636 *tx_flags |= TX_CMD_FLG_RTS_MSK;
2637 *tx_flags &= ~TX_CMD_FLG_CTS_MSK;
2638 *tx_flags |= TX_CMD_FLG_FULL_TXOP_PROT_MSK;
2639
2640 if (!ieee80211_is_mgmt(fc))
2641 return;
2642
2643 switch (fc & cpu_to_le16(IEEE80211_FCTL_STYPE)) {
2644 case cpu_to_le16(IEEE80211_STYPE_AUTH):
2645 case cpu_to_le16(IEEE80211_STYPE_DEAUTH):
2646 case cpu_to_le16(IEEE80211_STYPE_ASSOC_REQ):
2647 case cpu_to_le16(IEEE80211_STYPE_REASSOC_REQ):
2648 *tx_flags &= ~TX_CMD_FLG_RTS_MSK;
2649 *tx_flags |= TX_CMD_FLG_CTS_MSK;
2650 break;
2651 }
2652 } else if (info->control.rates[0].flags &
2653 IEEE80211_TX_RC_USE_CTS_PROTECT) {
2654 *tx_flags &= ~TX_CMD_FLG_RTS_MSK;
2655 *tx_flags |= TX_CMD_FLG_CTS_MSK;
2656 *tx_flags |= TX_CMD_FLG_FULL_TXOP_PROT_MSK;
2657 }
2658}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002659EXPORT_SYMBOL(il_tx_cmd_protection);