blob: 856a321ed1eaaf79eada541432af7c4bb1ece237 [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 Gruszkad2ddf6212011-08-16 14:17:04 +020071u32 il_debug_level;
72EXPORT_SYMBOL(il_debug_level);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -080073
Stanislaw Gruszkad2ddf6212011-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 Gruszkaa6766cc2011-11-15 13:09:01 +0100168 set_bit(S_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 Gruszka2eb05812011-08-26 16:07:43 +0200177 rates = kzalloc((sizeof(struct ieee80211_rate) * 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 Gruszkad2ddf6212011-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];
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +0200189 sband->n_bitrates = 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 Gruszka2eb05812011-08-26 16:07:43 +0200199 sband->n_bitrates = 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 Gruszkaa6766cc2011-11-15 13:09:01 +0100267 set_bit(S_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);
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +0100280 clear_bit(S_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 /*
Stanislaw Gruszka6ce1dc42011-08-26 15:49:28 +0200383 * TODO: For IBSS we need to get atim_win from mac80211,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800384 * for now just always use 0
385 */
Stanislaw Gruszka6ce1dc42011-08-26 15:49:28 +0200386 ctx->timing.atim_win = 0;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800387
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),
Stanislaw Gruszka6ce1dc42011-08-26 15:49:28 +0200403 le16_to_cpu(ctx->timing.atim_win));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800404
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 Gruszka2eb05812011-08-26 16:07:43 +0200457 if ((rxon->ofdm_basic_rates & RATE_6M_MASK) == 0 &&
458 (rxon->cck_basic_rates & 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 Gruszka2eb05812011-08-26 16:07:43 +0200569 return RATE_1M_PLCP;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800570 else
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +0200571 return 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 Gruszka17d6e552011-08-29 12:52:20 +0200649 _il_set_rxon_ht(il, ht_conf, &il->ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800650}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200651EXPORT_SYMBOL(il_set_rxon_ht);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800652
653/* Return valid, unused, channel for a passive scan to reset the RF */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200654u8 il_get_single_channel_number(struct il_priv *il,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800655 enum ieee80211_band band)
656{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200657 const struct il_channel_info *ch_info;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800658 int i;
659 u8 channel = 0;
660 u8 min, max;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800661
662 if (band == IEEE80211_BAND_5GHZ) {
663 min = 14;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200664 max = il->channel_count;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800665 } else {
666 min = 0;
667 max = 14;
668 }
669
670 for (i = min; i < max; i++) {
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +0200671 channel = il->channel_info[i].channel;
672 if (channel == le16_to_cpu(il->ctx.staging.channel))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800673 continue;
674
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200675 ch_info = il_get_channel_info(il, band, channel);
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200676 if (il_is_channel_valid(ch_info))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800677 break;
678 }
679
680 return channel;
681}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200682EXPORT_SYMBOL(il_get_single_channel_number);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800683
684/**
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200685 * il_set_rxon_channel - Set the band and channel values in staging RXON
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800686 * @ch: requested channel as a pointer to struct ieee80211_channel
687
688 * NOTE: Does not commit to the hardware; it sets appropriate bit fields
689 * in the staging RXON flag structure based on the ch->band
690 */
691int
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200692il_set_rxon_channel(struct il_priv *il, struct ieee80211_channel *ch,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200693 struct il_rxon_context *ctx)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800694{
695 enum ieee80211_band band = ch->band;
696 u16 channel = ch->hw_value;
697
Stanislaw Gruszka232913b2011-08-26 10:45:16 +0200698 if (le16_to_cpu(ctx->staging.channel) == channel && il->band == band)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800699 return 0;
700
701 ctx->staging.channel = cpu_to_le16(channel);
702 if (band == IEEE80211_BAND_5GHZ)
703 ctx->staging.flags &= ~RXON_FLG_BAND_24G_MSK;
704 else
705 ctx->staging.flags |= RXON_FLG_BAND_24G_MSK;
706
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200707 il->band = band;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800708
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100709 D_INFO("Staging channel set to %d [%d]\n", channel, band);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800710
711 return 0;
712}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200713EXPORT_SYMBOL(il_set_rxon_channel);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800714
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200715void il_set_flags_for_band(struct il_priv *il,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200716 struct il_rxon_context *ctx,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800717 enum ieee80211_band band,
718 struct ieee80211_vif *vif)
719{
720 if (band == IEEE80211_BAND_5GHZ) {
721 ctx->staging.flags &=
722 ~(RXON_FLG_BAND_24G_MSK | RXON_FLG_AUTO_DETECT_MSK
723 | RXON_FLG_CCK_MSK);
724 ctx->staging.flags |= RXON_FLG_SHORT_SLOT_MSK;
725 } else {
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200726 /* Copied from il_post_associate() */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800727 if (vif && vif->bss_conf.use_short_slot)
728 ctx->staging.flags |= RXON_FLG_SHORT_SLOT_MSK;
729 else
730 ctx->staging.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
731
732 ctx->staging.flags |= RXON_FLG_BAND_24G_MSK;
733 ctx->staging.flags |= RXON_FLG_AUTO_DETECT_MSK;
734 ctx->staging.flags &= ~RXON_FLG_CCK_MSK;
735 }
736}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200737EXPORT_SYMBOL(il_set_flags_for_band);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800738
739/*
740 * initialize rxon structure with default values from eeprom
741 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200742void il_connection_init_rx_config(struct il_priv *il,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200743 struct il_rxon_context *ctx)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800744{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200745 const struct il_channel_info *ch_info;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800746
747 memset(&ctx->staging, 0, sizeof(ctx->staging));
748
749 if (!ctx->vif) {
750 ctx->staging.dev_type = ctx->unused_devtype;
751 } else
752 switch (ctx->vif->type) {
753
754 case NL80211_IFTYPE_STATION:
755 ctx->staging.dev_type = ctx->station_devtype;
756 ctx->staging.filter_flags = RXON_FILTER_ACCEPT_GRP_MSK;
757 break;
758
759 case NL80211_IFTYPE_ADHOC:
760 ctx->staging.dev_type = ctx->ibss_devtype;
761 ctx->staging.flags = RXON_FLG_SHORT_PREAMBLE_MSK;
762 ctx->staging.filter_flags = RXON_FILTER_BCON_AWARE_MSK |
763 RXON_FILTER_ACCEPT_GRP_MSK;
764 break;
765
766 default:
Stanislaw Gruszka9406f792011-08-18 22:07:57 +0200767 IL_ERR("Unsupported interface type %d\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800768 ctx->vif->type);
769 break;
770 }
771
772#if 0
773 /* TODO: Figure out when short_preamble would be set and cache from
774 * that */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200775 if (!hw_to_local(il->hw)->short_preamble)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800776 ctx->staging.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
777 else
778 ctx->staging.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
779#endif
780
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200781 ch_info = il_get_channel_info(il, il->band,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800782 le16_to_cpu(ctx->active.channel));
783
784 if (!ch_info)
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200785 ch_info = &il->channel_info[0];
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800786
787 ctx->staging.channel = cpu_to_le16(ch_info->channel);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200788 il->band = ch_info->band;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800789
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200790 il_set_flags_for_band(il, ctx, il->band, ctx->vif);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800791
792 ctx->staging.ofdm_basic_rates =
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200793 (IL_OFDM_RATES_MASK >> IL_FIRST_OFDM_RATE) & 0xFF;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800794 ctx->staging.cck_basic_rates =
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200795 (IL_CCK_RATES_MASK >> IL_FIRST_CCK_RATE) & 0xF;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800796
797 /* clear both MIX and PURE40 mode flag */
798 ctx->staging.flags &= ~(RXON_FLG_CHANNEL_MODE_MIXED |
799 RXON_FLG_CHANNEL_MODE_PURE_40);
800 if (ctx->vif)
801 memcpy(ctx->staging.node_addr, ctx->vif->addr, ETH_ALEN);
802
803 ctx->staging.ofdm_ht_single_stream_basic_rates = 0xff;
804 ctx->staging.ofdm_ht_dual_stream_basic_rates = 0xff;
805}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200806EXPORT_SYMBOL(il_connection_init_rx_config);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800807
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200808void il_set_rate(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800809{
810 const struct ieee80211_supported_band *hw = NULL;
811 struct ieee80211_rate *rate;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800812 int i;
813
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200814 hw = il_get_hw_mode(il, il->band);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800815 if (!hw) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +0200816 IL_ERR("Failed to set rate: unable to get hw mode\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800817 return;
818 }
819
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200820 il->active_rate = 0;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800821
822 for (i = 0; i < hw->n_bitrates; i++) {
823 rate = &(hw->bitrates[i]);
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +0200824 if (rate->hw_value < RATE_COUNT_LEGACY)
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200825 il->active_rate |= (1 << rate->hw_value);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800826 }
827
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100828 D_RATE("Set active_rate = %0x\n", il->active_rate);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800829
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +0200830 il->ctx.staging.cck_basic_rates =
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200831 (IL_CCK_BASIC_RATES_MASK >> IL_FIRST_CCK_RATE) & 0xF;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800832
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +0200833 il->ctx.staging.ofdm_basic_rates =
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200834 (IL_OFDM_BASIC_RATES_MASK >> IL_FIRST_OFDM_RATE) & 0xFF;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800835}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200836EXPORT_SYMBOL(il_set_rate);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800837
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200838void il_chswitch_done(struct il_priv *il, bool is_success)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800839{
Stanislaw Gruszka7c2cde22011-11-15 11:29:04 +0100840 struct il_rxon_context *ctx = &il->ctx;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800841
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +0100842 if (test_bit(S_EXIT_PENDING, &il->status))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800843 return;
844
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +0100845 if (test_and_clear_bit(S_CHANNEL_SWITCH_PENDING, &il->status))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800846 ieee80211_chswitch_done(ctx->vif, is_success);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800847}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200848EXPORT_SYMBOL(il_chswitch_done);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800849
Stanislaw Gruszkad2dfb332011-11-15 13:16:38 +0100850void il_hdl_csa(struct il_priv *il, struct il_rx_buf *rxb)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800851{
Stanislaw Gruszkadcae1c62011-08-26 14:36:21 +0200852 struct il_rx_pkt *pkt = rxb_addr(rxb);
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200853 struct il_csa_notification *csa = &(pkt->u.csa_notif);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800854
Stanislaw Gruszka7c2cde22011-11-15 11:29:04 +0100855 struct il_rxon_context *ctx = &il->ctx;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200856 struct il_rxon_cmd *rxon = (void *)&ctx->active;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800857
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +0100858 if (!test_bit(S_CHANNEL_SWITCH_PENDING, &il->status))
Stanislaw Gruszka51e65252011-06-08 15:26:31 +0200859 return;
860
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200861 if (!le32_to_cpu(csa->status) && csa->channel == il->switch_channel) {
Stanislaw Gruszka51e65252011-06-08 15:26:31 +0200862 rxon->channel = csa->channel;
863 ctx->staging.channel = csa->channel;
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100864 D_11H("CSA notif: channel %d\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800865 le16_to_cpu(csa->channel));
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200866 il_chswitch_done(il, true);
Stanislaw Gruszka51e65252011-06-08 15:26:31 +0200867 } else {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +0200868 IL_ERR("CSA notif (fail) : channel %d\n",
Stanislaw Gruszka51e65252011-06-08 15:26:31 +0200869 le16_to_cpu(csa->channel));
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200870 il_chswitch_done(il, false);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800871 }
872}
Stanislaw Gruszkad2dfb332011-11-15 13:16:38 +0100873EXPORT_SYMBOL(il_hdl_csa);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800874
Stanislaw Gruszkad3175162011-11-15 11:25:42 +0100875#ifdef CONFIG_IWLEGACY_DEBUG
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200876void il_print_rx_config_cmd(struct il_priv *il,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200877 struct il_rxon_context *ctx)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800878{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200879 struct il_rxon_cmd *rxon = &ctx->staging;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800880
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100881 D_RADIO("RX CONFIG:\n");
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200882 il_print_hex_dump(il, IL_DL_RADIO, (u8 *) rxon, sizeof(*rxon));
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100883 D_RADIO("u16 channel: 0x%x\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800884 le16_to_cpu(rxon->channel));
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100885 D_RADIO("u32 flags: 0x%08X\n", le32_to_cpu(rxon->flags));
886 D_RADIO("u32 filter_flags: 0x%08x\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800887 le32_to_cpu(rxon->filter_flags));
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100888 D_RADIO("u8 dev_type: 0x%x\n", rxon->dev_type);
889 D_RADIO("u8 ofdm_basic_rates: 0x%02x\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800890 rxon->ofdm_basic_rates);
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100891 D_RADIO("u8 cck_basic_rates: 0x%02x\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800892 rxon->cck_basic_rates);
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100893 D_RADIO("u8[6] node_addr: %pM\n", rxon->node_addr);
894 D_RADIO("u8[6] bssid_addr: %pM\n", rxon->bssid_addr);
895 D_RADIO("u16 assoc_id: 0x%x\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800896 le16_to_cpu(rxon->assoc_id));
897}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200898EXPORT_SYMBOL(il_print_rx_config_cmd);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800899#endif
900/**
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200901 * il_irq_handle_error - called for HW or SW error interrupt from card
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800902 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200903void il_irq_handle_error(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800904{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200905 /* Set the FW error flag -- cleared on il_down */
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +0100906 set_bit(S_FW_ERROR, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800907
908 /* Cancel currently queued command. */
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +0100909 clear_bit(S_HCMD_ACTIVE, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800910
Stanislaw Gruszka9406f792011-08-18 22:07:57 +0200911 IL_ERR("Loaded firmware version: %s\n",
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200912 il->hw->wiphy->fw_version);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800913
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200914 il->cfg->ops->lib->dump_nic_error_log(il);
915 if (il->cfg->ops->lib->dump_fh)
916 il->cfg->ops->lib->dump_fh(il, NULL, false);
Stanislaw Gruszkad3175162011-11-15 11:25:42 +0100917#ifdef CONFIG_IWLEGACY_DEBUG
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200918 if (il_get_debug_level(il) & IL_DL_FW_ERRORS)
919 il_print_rx_config_cmd(il,
Stanislaw Gruszka7c2cde22011-11-15 11:29:04 +0100920 &il->ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800921#endif
922
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200923 wake_up(&il->wait_command_queue);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800924
925 /* Keep the restart process from trying to send host
926 * commands by clearing the INIT status bit */
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +0100927 clear_bit(S_READY, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800928
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +0100929 if (!test_bit(S_EXIT_PENDING, &il->status)) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100930 IL_DBG(IL_DL_FW_ERRORS,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800931 "Restarting adapter due to uCode error.\n");
932
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200933 if (il->cfg->mod_params->restart_fw)
934 queue_work(il->workqueue, &il->restart);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800935 }
936}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200937EXPORT_SYMBOL(il_irq_handle_error);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800938
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200939static int il_apm_stop_master(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800940{
941 int ret = 0;
942
943 /* stop device's busmaster DMA activity */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200944 il_set_bit(il, CSR_RESET, CSR_RESET_REG_FLAG_STOP_MASTER);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800945
Stanislaw Gruszka142b3432011-08-24 15:22:57 +0200946 ret = _il_poll_bit(il, CSR_RESET, CSR_RESET_REG_FLAG_MASTER_DISABLED,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800947 CSR_RESET_REG_FLAG_MASTER_DISABLED, 100);
948 if (ret)
Stanislaw Gruszka9406f792011-08-18 22:07:57 +0200949 IL_WARN("Master Disable Timed Out, 100 usec\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800950
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100951 D_INFO("stop master\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800952
953 return ret;
954}
955
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200956void il_apm_stop(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800957{
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100958 D_INFO("Stop card, put in low power state\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800959
960 /* Stop device's DMA activity */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200961 il_apm_stop_master(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800962
963 /* Reset the entire device */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200964 il_set_bit(il, CSR_RESET, CSR_RESET_REG_FLAG_SW_RESET);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800965
966 udelay(10);
967
968 /*
969 * Clear "initialization complete" bit to move adapter from
970 * D0A* (powered-up Active) --> D0U* (Uninitialized) state.
971 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200972 il_clear_bit(il, CSR_GP_CNTRL,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800973 CSR_GP_CNTRL_REG_FLAG_INIT_DONE);
974}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200975EXPORT_SYMBOL(il_apm_stop);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800976
977
978/*
979 * Start up NIC's basic functionality after it has been reset
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200980 * (e.g. after platform boot, or shutdown via il_apm_stop())
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800981 * NOTE: This does not load uCode nor start the embedded processor
982 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200983int il_apm_init(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800984{
985 int ret = 0;
986 u16 lctl;
987
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100988 D_INFO("Init card's basic functions\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800989
990 /*
991 * Use "set_bit" below rather than "write", to preserve any hardware
992 * bits already set by default after reset.
993 */
994
995 /* Disable L0S exit timer (platform NMI Work/Around) */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200996 il_set_bit(il, CSR_GIO_CHICKEN_BITS,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800997 CSR_GIO_CHICKEN_BITS_REG_BIT_DIS_L0S_EXIT_TIMER);
998
999 /*
1000 * Disable L0s without affecting L1;
1001 * don't wait for ICH L0s (ICH bug W/A)
1002 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001003 il_set_bit(il, CSR_GIO_CHICKEN_BITS,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001004 CSR_GIO_CHICKEN_BITS_REG_BIT_L1A_NO_L0S_RX);
1005
1006 /* Set FH wait threshold to maximum (HW error during stress W/A) */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001007 il_set_bit(il, CSR_DBG_HPET_MEM_REG,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001008 CSR_DBG_HPET_MEM_REG_VAL);
1009
1010 /*
1011 * Enable HAP INTA (interrupt from management bus) to
1012 * wake device's PCI Express link L1a -> L0s
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001013 * NOTE: This is no-op for 3945 (non-existent bit)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001014 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001015 il_set_bit(il, CSR_HW_IF_CONFIG_REG,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001016 CSR_HW_IF_CONFIG_REG_BIT_HAP_WAKE_L1A);
1017
1018 /*
1019 * HW bug W/A for instability in PCIe bus L0->L0S->L1 transition.
1020 * Check if BIOS (or OS) enabled L1-ASPM on this device.
1021 * If so (likely), disable L0S, so device moves directly L0->L1;
1022 * costs negligible amount of power savings.
1023 * If not (unlikely), enable L0S, so there is at least some
1024 * power savings, even without L1.
1025 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001026 if (il->cfg->base_params->set_l0s) {
1027 lctl = il_pcie_link_ctl(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001028 if ((lctl & PCI_CFG_LINK_CTRL_VAL_L1_EN) ==
1029 PCI_CFG_LINK_CTRL_VAL_L1_EN) {
1030 /* L1-ASPM enabled; disable(!) L0S */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001031 il_set_bit(il, CSR_GIO_REG,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001032 CSR_GIO_REG_VAL_L0S_ENABLED);
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01001033 D_POWER("L1 Enabled; Disabling L0S\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001034 } else {
1035 /* L1-ASPM disabled; enable(!) L0S */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001036 il_clear_bit(il, CSR_GIO_REG,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001037 CSR_GIO_REG_VAL_L0S_ENABLED);
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01001038 D_POWER("L1 Disabled; Enabling L0S\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001039 }
1040 }
1041
1042 /* Configure analog phase-lock-loop before activating to D0A */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001043 if (il->cfg->base_params->pll_cfg_val)
1044 il_set_bit(il, CSR_ANA_PLL_CFG,
1045 il->cfg->base_params->pll_cfg_val);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001046
1047 /*
1048 * Set "initialization complete" bit to move adapter from
1049 * D0U* --> D0A* (powered-up active) state.
1050 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001051 il_set_bit(il, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_INIT_DONE);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001052
1053 /*
1054 * Wait for clock stabilization; once stabilized, access to
Stanislaw Gruszkadb54eb52011-08-24 21:06:33 +02001055 * device-internal resources is supported, e.g. il_wr_prph()
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001056 * and accesses to uCode SRAM.
1057 */
Stanislaw Gruszka142b3432011-08-24 15:22:57 +02001058 ret = _il_poll_bit(il, CSR_GP_CNTRL,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001059 CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY,
1060 CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY, 25000);
1061 if (ret < 0) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01001062 D_INFO("Failed to init the card\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001063 goto out;
1064 }
1065
1066 /*
1067 * Enable DMA and BSM (if used) clocks, wait for them to stabilize.
1068 * BSM (Boostrap State Machine) is only in 3945 and 4965.
1069 *
1070 * Write to "CLK_EN_REG"; "1" bits enable clocks, while "0" bits
1071 * do not disable clocks. This preserves any hardware bits already
1072 * set by default in "CLK_CTRL_REG" after reset.
1073 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001074 if (il->cfg->base_params->use_bsm)
Stanislaw Gruszkadb54eb52011-08-24 21:06:33 +02001075 il_wr_prph(il, APMG_CLK_EN_REG,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001076 APMG_CLK_VAL_DMA_CLK_RQT | APMG_CLK_VAL_BSM_CLK_RQT);
1077 else
Stanislaw Gruszkadb54eb52011-08-24 21:06:33 +02001078 il_wr_prph(il, APMG_CLK_EN_REG,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001079 APMG_CLK_VAL_DMA_CLK_RQT);
1080 udelay(20);
1081
1082 /* Disable L1-Active */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001083 il_set_bits_prph(il, APMG_PCIDEV_STT_REG,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001084 APMG_PCIDEV_STT_VAL_L1_ACT_DIS);
1085
1086out:
1087 return ret;
1088}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001089EXPORT_SYMBOL(il_apm_init);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001090
1091
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001092int il_set_tx_power(struct il_priv *il, s8 tx_power, bool force)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001093{
1094 int ret;
1095 s8 prev_tx_power;
Stanislaw Gruszka43f12d42011-02-24 14:23:55 +01001096 bool defer;
Stanislaw Gruszka7c2cde22011-11-15 11:29:04 +01001097 struct il_rxon_context *ctx = &il->ctx;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001098
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001099 lockdep_assert_held(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001100
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001101 if (il->tx_power_user_lmt == tx_power && !force)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001102 return 0;
1103
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001104 if (!il->cfg->ops->lib->send_tx_power)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001105 return -EOPNOTSUPP;
1106
Stanislaw Gruszka332704a2011-04-13 10:56:51 +02001107 /* 0 dBm mean 1 milliwatt */
1108 if (tx_power < 0) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02001109 IL_WARN(
Stanislaw Gruszka332704a2011-04-13 10:56:51 +02001110 "Requested user TXPOWER %d below 1 mW.\n",
1111 tx_power);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001112 return -EINVAL;
1113 }
1114
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001115 if (tx_power > il->tx_power_device_lmt) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02001116 IL_WARN(
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001117 "Requested user TXPOWER %d above upper limit %d.\n",
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001118 tx_power, il->tx_power_device_lmt);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001119 return -EINVAL;
1120 }
1121
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001122 if (!il_is_ready_rf(il))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001123 return -EIO;
1124
Stanislaw Gruszka43f12d42011-02-24 14:23:55 +01001125 /* scan complete and commit_rxon use tx_power_next value,
1126 * it always need to be updated for newest request */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001127 il->tx_power_next = tx_power;
Stanislaw Gruszka43f12d42011-02-24 14:23:55 +01001128
1129 /* do not set tx power when scanning or channel changing */
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01001130 defer = test_bit(S_SCANNING, &il->status) ||
Stanislaw Gruszka43f12d42011-02-24 14:23:55 +01001131 memcmp(&ctx->active, &ctx->staging, sizeof(ctx->staging));
1132 if (defer && !force) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01001133 D_INFO("Deferring tx power set\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001134 return 0;
1135 }
1136
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001137 prev_tx_power = il->tx_power_user_lmt;
1138 il->tx_power_user_lmt = tx_power;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001139
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001140 ret = il->cfg->ops->lib->send_tx_power(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001141
1142 /* if fail to set tx_power, restore the orig. tx power */
1143 if (ret) {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001144 il->tx_power_user_lmt = prev_tx_power;
1145 il->tx_power_next = prev_tx_power;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001146 }
1147 return ret;
1148}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001149EXPORT_SYMBOL(il_set_tx_power);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001150
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001151void il_send_bt_config(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001152{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001153 struct il_bt_cmd bt_cmd = {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001154 .lead_time = BT_LEAD_TIME_DEF,
1155 .max_kill = BT_MAX_KILL_DEF,
1156 .kill_ack_mask = 0,
1157 .kill_cts_mask = 0,
1158 };
1159
1160 if (!bt_coex_active)
1161 bt_cmd.flags = BT_COEX_DISABLE;
1162 else
1163 bt_cmd.flags = BT_COEX_ENABLE;
1164
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01001165 D_INFO("BT coex %s\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001166 (bt_cmd.flags == BT_COEX_DISABLE) ? "disable" : "active");
1167
Stanislaw Gruszka4d69c752011-08-30 15:26:35 +02001168 if (il_send_cmd_pdu(il, C_BT_CONFIG,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001169 sizeof(struct il_bt_cmd), &bt_cmd))
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02001170 IL_ERR("failed to send BT Coex Config\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001171}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001172EXPORT_SYMBOL(il_send_bt_config);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001173
Stanislaw Gruszkaebf0d902011-08-26 15:43:47 +02001174int il_send_stats_request(struct il_priv *il, u8 flags, bool clear)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001175{
Stanislaw Gruszkaebf0d902011-08-26 15:43:47 +02001176 struct il_stats_cmd stats_cmd = {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001177 .configuration_flags =
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001178 clear ? IL_STATS_CONF_CLEAR_STATS : 0,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001179 };
1180
1181 if (flags & CMD_ASYNC)
Stanislaw Gruszka4d69c752011-08-30 15:26:35 +02001182 return il_send_cmd_pdu_async(il, C_STATS,
Stanislaw Gruszkaebf0d902011-08-26 15:43:47 +02001183 sizeof(struct il_stats_cmd),
1184 &stats_cmd, NULL);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001185 else
Stanislaw Gruszka4d69c752011-08-30 15:26:35 +02001186 return il_send_cmd_pdu(il, C_STATS,
Stanislaw Gruszkaebf0d902011-08-26 15:43:47 +02001187 sizeof(struct il_stats_cmd),
1188 &stats_cmd);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001189}
Stanislaw Gruszkaebf0d902011-08-26 15:43:47 +02001190EXPORT_SYMBOL(il_send_stats_request);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001191
Stanislaw Gruszkad2dfb332011-11-15 13:16:38 +01001192void il_hdl_pm_sleep(struct il_priv *il,
Stanislaw Gruszkab73bb5f2011-08-26 14:37:54 +02001193 struct il_rx_buf *rxb)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001194{
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01001195#ifdef CONFIG_IWLEGACY_DEBUG
Stanislaw Gruszkadcae1c62011-08-26 14:36:21 +02001196 struct il_rx_pkt *pkt = rxb_addr(rxb);
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001197 struct il_sleep_notification *sleep = &(pkt->u.sleep_notif);
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01001198 D_RX("sleep mode: %d, src: %d\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001199 sleep->pm_sleep_mode, sleep->pm_wakeup_src);
1200#endif
1201}
Stanislaw Gruszkad2dfb332011-11-15 13:16:38 +01001202EXPORT_SYMBOL(il_hdl_pm_sleep);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001203
Stanislaw Gruszkad2dfb332011-11-15 13:16:38 +01001204void il_hdl_pm_debug_stats(struct il_priv *il,
Stanislaw Gruszkab73bb5f2011-08-26 14:37:54 +02001205 struct il_rx_buf *rxb)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001206{
Stanislaw Gruszkadcae1c62011-08-26 14:36:21 +02001207 struct il_rx_pkt *pkt = rxb_addr(rxb);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001208 u32 len = le32_to_cpu(pkt->len_n_flags) & FH_RSCSR_FRAME_SIZE_MSK;
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01001209 D_RADIO("Dumping %d bytes of unhandled "
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001210 "notification for %s:\n", len,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001211 il_get_cmd_string(pkt->hdr.cmd));
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001212 il_print_hex_dump(il, IL_DL_RADIO, pkt->u.raw, len);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001213}
Stanislaw Gruszkad2dfb332011-11-15 13:16:38 +01001214EXPORT_SYMBOL(il_hdl_pm_debug_stats);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001215
Stanislaw Gruszka6e9848b42011-08-30 15:45:31 +02001216void il_hdl_error(struct il_priv *il,
Stanislaw Gruszkab73bb5f2011-08-26 14:37:54 +02001217 struct il_rx_buf *rxb)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001218{
Stanislaw Gruszkadcae1c62011-08-26 14:36:21 +02001219 struct il_rx_pkt *pkt = rxb_addr(rxb);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001220
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02001221 IL_ERR("Error Reply type 0x%08X cmd %s (0x%02X) "
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001222 "seq 0x%04X ser 0x%08X\n",
1223 le32_to_cpu(pkt->u.err_resp.error_type),
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001224 il_get_cmd_string(pkt->u.err_resp.cmd_id),
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001225 pkt->u.err_resp.cmd_id,
1226 le16_to_cpu(pkt->u.err_resp.bad_cmd_seq_num),
1227 le32_to_cpu(pkt->u.err_resp.error_info));
1228}
Stanislaw Gruszka6e9848b42011-08-30 15:45:31 +02001229EXPORT_SYMBOL(il_hdl_error);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001230
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001231void il_clear_isr_stats(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001232{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001233 memset(&il->isr_stats, 0, sizeof(il->isr_stats));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001234}
1235
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001236int il_mac_conf_tx(struct ieee80211_hw *hw,
Eliad Peller8a3a3c82011-10-02 10:15:52 +02001237 struct ieee80211_vif *vif, u16 queue,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001238 const struct ieee80211_tx_queue_params *params)
1239{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001240 struct il_priv *il = hw->priv;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001241 unsigned long flags;
1242 int q;
1243
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01001244 D_MAC80211("enter\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001245
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001246 if (!il_is_ready_rf(il)) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01001247 D_MAC80211("leave - RF not ready\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001248 return -EIO;
1249 }
1250
1251 if (queue >= AC_NUM) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01001252 D_MAC80211("leave - queue >= AC_NUM %d\n", queue);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001253 return 0;
1254 }
1255
1256 q = AC_NUM - 1 - queue;
1257
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001258 spin_lock_irqsave(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001259
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02001260 il->ctx.qos_data.def_qos_parm.ac[q].cw_min =
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001261 cpu_to_le16(params->cw_min);
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02001262 il->ctx.qos_data.def_qos_parm.ac[q].cw_max =
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001263 cpu_to_le16(params->cw_max);
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02001264 il->ctx.qos_data.def_qos_parm.ac[q].aifsn = params->aifs;
1265 il->ctx.qos_data.def_qos_parm.ac[q].edca_txop =
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001266 cpu_to_le16((params->txop * 32));
1267
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02001268 il->ctx.qos_data.def_qos_parm.ac[q].reserved1 = 0;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001269
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001270 spin_unlock_irqrestore(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001271
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01001272 D_MAC80211("leave\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001273 return 0;
1274}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001275EXPORT_SYMBOL(il_mac_conf_tx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001276
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001277int il_mac_tx_last_beacon(struct ieee80211_hw *hw)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001278{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001279 struct il_priv *il = hw->priv;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001280
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001281 return il->ibss_manager == IL_IBSS_MANAGER;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001282}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001283EXPORT_SYMBOL_GPL(il_mac_tx_last_beacon);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001284
1285static int
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001286il_set_mode(struct il_priv *il, struct il_rxon_context *ctx)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001287{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001288 il_connection_init_rx_config(il, ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001289
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001290 if (il->cfg->ops->hcmd->set_rxon_chain)
1291 il->cfg->ops->hcmd->set_rxon_chain(il, ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001292
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001293 return il_commit_rxon(il, ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001294}
1295
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001296static int il_setup_interface(struct il_priv *il,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001297 struct il_rxon_context *ctx)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001298{
1299 struct ieee80211_vif *vif = ctx->vif;
1300 int err;
1301
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001302 lockdep_assert_held(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001303
1304 /*
1305 * This variable will be correct only when there's just
1306 * a single context, but all code using it is for hardware
1307 * that supports only one context.
1308 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001309 il->iw_mode = vif->type;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001310
1311 ctx->is_active = true;
1312
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001313 err = il_set_mode(il, ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001314 if (err) {
1315 if (!ctx->always_active)
1316 ctx->is_active = false;
1317 return err;
1318 }
1319
1320 return 0;
1321}
1322
1323int
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001324il_mac_add_interface(struct ieee80211_hw *hw, struct ieee80211_vif *vif)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001325{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001326 struct il_priv *il = hw->priv;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001327 struct il_vif_priv *vif_priv = (void *)vif->drv_priv;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001328 int err;
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02001329 u32 modes;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001330
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01001331 D_MAC80211("enter: type %d, addr %pM\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001332 vif->type, vif->addr);
1333
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001334 mutex_lock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001335
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001336 if (!il_is_ready_rf(il)) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02001337 IL_WARN("Try to add interface when device not ready\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001338 err = -EINVAL;
1339 goto out;
1340 }
1341
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001342
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02001343 /* check if busy context is exclusive */
1344 if (il->ctx.vif &&
1345 (il->ctx.exclusive_interface_modes & BIT(il->ctx.vif->type))) {
1346 err = -EINVAL;
1347 goto out;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001348 }
1349
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02001350 modes = il->ctx.interface_modes | il->ctx.exclusive_interface_modes;
1351 if (!(modes & BIT(vif->type))) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001352 err = -EOPNOTSUPP;
1353 goto out;
1354 }
1355
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02001356 vif_priv->ctx = &il->ctx;
1357 il->ctx.vif = vif;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001358
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02001359 err = il_setup_interface(il, &il->ctx);
1360 if (err) {
1361 il->ctx.vif = NULL;
1362 il->iw_mode = NL80211_IFTYPE_STATION;
1363 }
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001364
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001365 out:
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001366 mutex_unlock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001367
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01001368 D_MAC80211("leave\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001369 return err;
1370}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001371EXPORT_SYMBOL(il_mac_add_interface);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001372
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001373static void il_teardown_interface(struct il_priv *il,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001374 struct ieee80211_vif *vif,
1375 bool mode_change)
1376{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001377 struct il_rxon_context *ctx = il_rxon_ctx_from_vif(vif);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001378
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001379 lockdep_assert_held(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001380
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001381 if (il->scan_vif == vif) {
1382 il_scan_cancel_timeout(il, 200);
1383 il_force_scan_end(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001384 }
1385
1386 if (!mode_change) {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001387 il_set_mode(il, ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001388 if (!ctx->always_active)
1389 ctx->is_active = false;
1390 }
1391}
1392
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001393void il_mac_remove_interface(struct ieee80211_hw *hw,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001394 struct ieee80211_vif *vif)
1395{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001396 struct il_priv *il = hw->priv;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001397 struct il_rxon_context *ctx = il_rxon_ctx_from_vif(vif);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001398
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01001399 D_MAC80211("enter\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001400
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001401 mutex_lock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001402
1403 WARN_ON(ctx->vif != vif);
1404 ctx->vif = NULL;
1405
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001406 il_teardown_interface(il, vif, false);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001407
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001408 memset(il->bssid, 0, ETH_ALEN);
1409 mutex_unlock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001410
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01001411 D_MAC80211("leave\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001412
1413}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001414EXPORT_SYMBOL(il_mac_remove_interface);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001415
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001416int il_alloc_txq_mem(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001417{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001418 if (!il->txq)
1419 il->txq = kzalloc(
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001420 sizeof(struct il_tx_queue) *
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001421 il->cfg->base_params->num_of_queues,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001422 GFP_KERNEL);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001423 if (!il->txq) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02001424 IL_ERR("Not enough memory for txq\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001425 return -ENOMEM;
1426 }
1427 return 0;
1428}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001429EXPORT_SYMBOL(il_alloc_txq_mem);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001430
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001431void il_txq_mem(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001432{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001433 kfree(il->txq);
1434 il->txq = NULL;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001435}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001436EXPORT_SYMBOL(il_txq_mem);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001437
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01001438#ifdef CONFIG_IWLEGACY_DEBUGFS
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001439
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001440#define IL_TRAFFIC_DUMP_SIZE (IL_TRAFFIC_ENTRY_SIZE * IL_TRAFFIC_ENTRIES)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001441
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001442void il_reset_traffic_log(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001443{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001444 il->tx_traffic_idx = 0;
1445 il->rx_traffic_idx = 0;
1446 if (il->tx_traffic)
1447 memset(il->tx_traffic, 0, IL_TRAFFIC_DUMP_SIZE);
1448 if (il->rx_traffic)
1449 memset(il->rx_traffic, 0, IL_TRAFFIC_DUMP_SIZE);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001450}
1451
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001452int il_alloc_traffic_mem(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001453{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001454 u32 traffic_size = IL_TRAFFIC_DUMP_SIZE;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001455
Stanislaw Gruszkad2ddf6212011-08-16 14:17:04 +02001456 if (il_debug_level & IL_DL_TX) {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001457 if (!il->tx_traffic) {
1458 il->tx_traffic =
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001459 kzalloc(traffic_size, GFP_KERNEL);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001460 if (!il->tx_traffic)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001461 return -ENOMEM;
1462 }
1463 }
Stanislaw Gruszkad2ddf6212011-08-16 14:17:04 +02001464 if (il_debug_level & IL_DL_RX) {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001465 if (!il->rx_traffic) {
1466 il->rx_traffic =
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001467 kzalloc(traffic_size, GFP_KERNEL);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001468 if (!il->rx_traffic)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001469 return -ENOMEM;
1470 }
1471 }
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001472 il_reset_traffic_log(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001473 return 0;
1474}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001475EXPORT_SYMBOL(il_alloc_traffic_mem);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001476
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001477void il_free_traffic_mem(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001478{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001479 kfree(il->tx_traffic);
1480 il->tx_traffic = NULL;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001481
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001482 kfree(il->rx_traffic);
1483 il->rx_traffic = NULL;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001484}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001485EXPORT_SYMBOL(il_free_traffic_mem);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001486
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001487void il_dbg_log_tx_data_frame(struct il_priv *il,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001488 u16 length, struct ieee80211_hdr *header)
1489{
1490 __le16 fc;
1491 u16 len;
1492
Stanislaw Gruszkad2ddf6212011-08-16 14:17:04 +02001493 if (likely(!(il_debug_level & IL_DL_TX)))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001494 return;
1495
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001496 if (!il->tx_traffic)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001497 return;
1498
1499 fc = header->frame_control;
1500 if (ieee80211_is_data(fc)) {
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001501 len = (length > IL_TRAFFIC_ENTRY_SIZE)
1502 ? IL_TRAFFIC_ENTRY_SIZE : length;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001503 memcpy((il->tx_traffic +
1504 (il->tx_traffic_idx * IL_TRAFFIC_ENTRY_SIZE)),
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001505 header, len);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001506 il->tx_traffic_idx =
1507 (il->tx_traffic_idx + 1) % IL_TRAFFIC_ENTRIES;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001508 }
1509}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001510EXPORT_SYMBOL(il_dbg_log_tx_data_frame);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001511
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001512void il_dbg_log_rx_data_frame(struct il_priv *il,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001513 u16 length, struct ieee80211_hdr *header)
1514{
1515 __le16 fc;
1516 u16 len;
1517
Stanislaw Gruszkad2ddf6212011-08-16 14:17:04 +02001518 if (likely(!(il_debug_level & IL_DL_RX)))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001519 return;
1520
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001521 if (!il->rx_traffic)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001522 return;
1523
1524 fc = header->frame_control;
1525 if (ieee80211_is_data(fc)) {
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001526 len = (length > IL_TRAFFIC_ENTRY_SIZE)
1527 ? IL_TRAFFIC_ENTRY_SIZE : length;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001528 memcpy((il->rx_traffic +
1529 (il->rx_traffic_idx * IL_TRAFFIC_ENTRY_SIZE)),
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001530 header, len);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001531 il->rx_traffic_idx =
1532 (il->rx_traffic_idx + 1) % IL_TRAFFIC_ENTRIES;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001533 }
1534}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001535EXPORT_SYMBOL(il_dbg_log_rx_data_frame);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001536
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001537const char *il_get_mgmt_string(int cmd)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001538{
1539 switch (cmd) {
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001540 IL_CMD(MANAGEMENT_ASSOC_REQ);
1541 IL_CMD(MANAGEMENT_ASSOC_RESP);
1542 IL_CMD(MANAGEMENT_REASSOC_REQ);
1543 IL_CMD(MANAGEMENT_REASSOC_RESP);
1544 IL_CMD(MANAGEMENT_PROBE_REQ);
1545 IL_CMD(MANAGEMENT_PROBE_RESP);
1546 IL_CMD(MANAGEMENT_BEACON);
1547 IL_CMD(MANAGEMENT_ATIM);
1548 IL_CMD(MANAGEMENT_DISASSOC);
1549 IL_CMD(MANAGEMENT_AUTH);
1550 IL_CMD(MANAGEMENT_DEAUTH);
1551 IL_CMD(MANAGEMENT_ACTION);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001552 default:
1553 return "UNKNOWN";
1554
1555 }
1556}
1557
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001558const char *il_get_ctrl_string(int cmd)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001559{
1560 switch (cmd) {
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001561 IL_CMD(CONTROL_BACK_REQ);
1562 IL_CMD(CONTROL_BACK);
1563 IL_CMD(CONTROL_PSPOLL);
1564 IL_CMD(CONTROL_RTS);
1565 IL_CMD(CONTROL_CTS);
1566 IL_CMD(CONTROL_ACK);
1567 IL_CMD(CONTROL_CFEND);
1568 IL_CMD(CONTROL_CFENDACK);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001569 default:
1570 return "UNKNOWN";
1571
1572 }
1573}
1574
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001575void il_clear_traffic_stats(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001576{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001577 memset(&il->tx_stats, 0, sizeof(struct traffic_stats));
1578 memset(&il->rx_stats, 0, sizeof(struct traffic_stats));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001579}
1580
1581/*
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01001582 * if CONFIG_IWLEGACY_DEBUGFS defined,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001583 * il_update_stats function will
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001584 * record all the MGMT, CTRL and DATA pkt for both TX and Rx pass
Stanislaw Gruszkaebf0d902011-08-26 15:43:47 +02001585 * Use debugFs to display the rx/rx_stats
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01001586 * if CONFIG_IWLEGACY_DEBUGFS not being defined, then no MGMT and CTRL
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001587 * information will be recorded, but DATA pkt still will be recorded
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001588 * for the reason of il_led.c need to control the led blinking based on
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001589 * number of tx and rx data.
1590 *
1591 */
1592void
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001593il_update_stats(struct il_priv *il, bool is_tx, __le16 fc, u16 len)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001594{
1595 struct traffic_stats *stats;
1596
1597 if (is_tx)
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001598 stats = &il->tx_stats;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001599 else
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001600 stats = &il->rx_stats;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001601
1602 if (ieee80211_is_mgmt(fc)) {
1603 switch (fc & cpu_to_le16(IEEE80211_FCTL_STYPE)) {
1604 case cpu_to_le16(IEEE80211_STYPE_ASSOC_REQ):
1605 stats->mgmt[MANAGEMENT_ASSOC_REQ]++;
1606 break;
1607 case cpu_to_le16(IEEE80211_STYPE_ASSOC_RESP):
1608 stats->mgmt[MANAGEMENT_ASSOC_RESP]++;
1609 break;
1610 case cpu_to_le16(IEEE80211_STYPE_REASSOC_REQ):
1611 stats->mgmt[MANAGEMENT_REASSOC_REQ]++;
1612 break;
1613 case cpu_to_le16(IEEE80211_STYPE_REASSOC_RESP):
1614 stats->mgmt[MANAGEMENT_REASSOC_RESP]++;
1615 break;
1616 case cpu_to_le16(IEEE80211_STYPE_PROBE_REQ):
1617 stats->mgmt[MANAGEMENT_PROBE_REQ]++;
1618 break;
1619 case cpu_to_le16(IEEE80211_STYPE_PROBE_RESP):
1620 stats->mgmt[MANAGEMENT_PROBE_RESP]++;
1621 break;
1622 case cpu_to_le16(IEEE80211_STYPE_BEACON):
1623 stats->mgmt[MANAGEMENT_BEACON]++;
1624 break;
1625 case cpu_to_le16(IEEE80211_STYPE_ATIM):
1626 stats->mgmt[MANAGEMENT_ATIM]++;
1627 break;
1628 case cpu_to_le16(IEEE80211_STYPE_DISASSOC):
1629 stats->mgmt[MANAGEMENT_DISASSOC]++;
1630 break;
1631 case cpu_to_le16(IEEE80211_STYPE_AUTH):
1632 stats->mgmt[MANAGEMENT_AUTH]++;
1633 break;
1634 case cpu_to_le16(IEEE80211_STYPE_DEAUTH):
1635 stats->mgmt[MANAGEMENT_DEAUTH]++;
1636 break;
1637 case cpu_to_le16(IEEE80211_STYPE_ACTION):
1638 stats->mgmt[MANAGEMENT_ACTION]++;
1639 break;
1640 }
1641 } else if (ieee80211_is_ctl(fc)) {
1642 switch (fc & cpu_to_le16(IEEE80211_FCTL_STYPE)) {
1643 case cpu_to_le16(IEEE80211_STYPE_BACK_REQ):
1644 stats->ctrl[CONTROL_BACK_REQ]++;
1645 break;
1646 case cpu_to_le16(IEEE80211_STYPE_BACK):
1647 stats->ctrl[CONTROL_BACK]++;
1648 break;
1649 case cpu_to_le16(IEEE80211_STYPE_PSPOLL):
1650 stats->ctrl[CONTROL_PSPOLL]++;
1651 break;
1652 case cpu_to_le16(IEEE80211_STYPE_RTS):
1653 stats->ctrl[CONTROL_RTS]++;
1654 break;
1655 case cpu_to_le16(IEEE80211_STYPE_CTS):
1656 stats->ctrl[CONTROL_CTS]++;
1657 break;
1658 case cpu_to_le16(IEEE80211_STYPE_ACK):
1659 stats->ctrl[CONTROL_ACK]++;
1660 break;
1661 case cpu_to_le16(IEEE80211_STYPE_CFEND):
1662 stats->ctrl[CONTROL_CFEND]++;
1663 break;
1664 case cpu_to_le16(IEEE80211_STYPE_CFENDACK):
1665 stats->ctrl[CONTROL_CFENDACK]++;
1666 break;
1667 }
1668 } else {
1669 /* data */
1670 stats->data_cnt++;
1671 stats->data_bytes += len;
1672 }
1673}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001674EXPORT_SYMBOL(il_update_stats);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001675#endif
1676
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001677int il_force_reset(struct il_priv *il, bool external)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001678{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001679 struct il_force_reset *force_reset;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001680
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01001681 if (test_bit(S_EXIT_PENDING, &il->status))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001682 return -EINVAL;
1683
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001684 force_reset = &il->force_reset;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001685 force_reset->reset_request_count++;
1686 if (!external) {
1687 if (force_reset->last_force_reset_jiffies &&
1688 time_after(force_reset->last_force_reset_jiffies +
1689 force_reset->reset_duration, jiffies)) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01001690 D_INFO("force reset rejected\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001691 force_reset->reset_reject_count++;
1692 return -EAGAIN;
1693 }
1694 }
1695 force_reset->reset_success_count++;
1696 force_reset->last_force_reset_jiffies = jiffies;
Stanislaw Gruszkadd6d2a82011-06-08 15:28:26 +02001697
1698 /*
1699 * if the request is from external(ex: debugfs),
1700 * then always perform the request in regardless the module
1701 * parameter setting
1702 * if the request is from internal (uCode error or driver
1703 * detect failure), then fw_restart module parameter
1704 * need to be check before performing firmware reload
1705 */
1706
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001707 if (!external && !il->cfg->mod_params->restart_fw) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01001708 D_INFO("Cancel firmware reload based on "
Stanislaw Gruszkadd6d2a82011-06-08 15:28:26 +02001709 "module parameter setting\n");
1710 return 0;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001711 }
Stanislaw Gruszkadd6d2a82011-06-08 15:28:26 +02001712
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02001713 IL_ERR("On demand firmware reload\n");
Stanislaw Gruszkadd6d2a82011-06-08 15:28:26 +02001714
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001715 /* Set the FW error flag -- cleared on il_down */
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01001716 set_bit(S_FW_ERROR, &il->status);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001717 wake_up(&il->wait_command_queue);
Stanislaw Gruszkadd6d2a82011-06-08 15:28:26 +02001718 /*
1719 * Keep the restart process from trying to send host
1720 * commands by clearing the INIT status bit
1721 */
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01001722 clear_bit(S_READY, &il->status);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001723 queue_work(il->workqueue, &il->restart);
Stanislaw Gruszkadd6d2a82011-06-08 15:28:26 +02001724
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001725 return 0;
1726}
1727
1728int
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001729il_mac_change_interface(struct ieee80211_hw *hw,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001730 struct ieee80211_vif *vif,
1731 enum nl80211_iftype newtype, bool newp2p)
1732{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001733 struct il_priv *il = hw->priv;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001734 struct il_rxon_context *ctx = il_rxon_ctx_from_vif(vif);
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02001735 u32 modes;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001736 int err;
1737
1738 newtype = ieee80211_iftype_p2p(newtype, newp2p);
1739
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001740 mutex_lock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001741
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001742 if (!ctx->vif || !il_is_ready_rf(il)) {
Johannes Bergffd8c742011-03-29 15:28:11 +02001743 /*
1744 * Huh? But wait ... this can maybe happen when
1745 * we're in the middle of a firmware restart!
1746 */
1747 err = -EBUSY;
1748 goto out;
1749 }
1750
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02001751 modes = ctx->interface_modes | ctx->exclusive_interface_modes;
1752 if (!(modes & BIT(newtype))) {
1753 err = -EOPNOTSUPP;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001754 goto out;
1755 }
1756
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02001757 if ((il->ctx.exclusive_interface_modes & BIT(il->ctx.vif->type)) ||
1758 (il->ctx.exclusive_interface_modes & BIT(newtype))) {
1759 err = -EINVAL;
1760 goto out;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001761 }
1762
1763 /* success */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001764 il_teardown_interface(il, vif, true);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001765 vif->type = newtype;
Johannes Bergffd8c742011-03-29 15:28:11 +02001766 vif->p2p = newp2p;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001767 err = il_setup_interface(il, ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001768 WARN_ON(err);
1769 /*
1770 * We've switched internally, but submitting to the
1771 * device may have failed for some reason. Mask this
1772 * error, because otherwise mac80211 will not switch
1773 * (and set the interface type back) and we'll be
1774 * out of sync with it.
1775 */
1776 err = 0;
1777
1778 out:
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001779 mutex_unlock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001780 return err;
1781}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001782EXPORT_SYMBOL(il_mac_change_interface);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001783
1784/*
1785 * On every watchdog tick we check (latest) time stamp. If it does not
1786 * change during timeout period and queue is not empty we reset firmware.
1787 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001788static int il_check_stuck_queue(struct il_priv *il, int cnt)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001789{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001790 struct il_tx_queue *txq = &il->txq[cnt];
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001791 struct il_queue *q = &txq->q;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001792 unsigned long timeout;
1793 int ret;
1794
1795 if (q->read_ptr == q->write_ptr) {
1796 txq->time_stamp = jiffies;
1797 return 0;
1798 }
1799
1800 timeout = txq->time_stamp +
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001801 msecs_to_jiffies(il->cfg->base_params->wd_timeout);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001802
1803 if (time_after(jiffies, timeout)) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02001804 IL_ERR("Queue %d stuck for %u ms.\n",
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001805 q->id, il->cfg->base_params->wd_timeout);
1806 ret = il_force_reset(il, false);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001807 return (ret == -EAGAIN) ? 0 : 1;
1808 }
1809
1810 return 0;
1811}
1812
1813/*
1814 * Making watchdog tick be a quarter of timeout assure we will
1815 * discover the queue hung between timeout and 1.25*timeout
1816 */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001817#define IL_WD_TICK(timeout) ((timeout) / 4)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001818
1819/*
1820 * Watchdog timer callback, we check each tx queue for stuck, if if hung
1821 * we reset the firmware. If everything is fine just rearm the timer.
1822 */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001823void il_bg_watchdog(unsigned long data)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001824{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001825 struct il_priv *il = (struct il_priv *)data;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001826 int cnt;
1827 unsigned long timeout;
1828
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01001829 if (test_bit(S_EXIT_PENDING, &il->status))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001830 return;
1831
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001832 timeout = il->cfg->base_params->wd_timeout;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001833 if (timeout == 0)
1834 return;
1835
1836 /* monitor and check for stuck cmd queue */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001837 if (il_check_stuck_queue(il, il->cmd_queue))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001838 return;
1839
1840 /* monitor and check for other stuck queues */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001841 if (il_is_any_associated(il)) {
1842 for (cnt = 0; cnt < il->hw_params.max_txq_num; cnt++) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001843 /* skip as we already checked the command queue */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001844 if (cnt == il->cmd_queue)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001845 continue;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001846 if (il_check_stuck_queue(il, cnt))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001847 return;
1848 }
1849 }
1850
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001851 mod_timer(&il->watchdog, jiffies +
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001852 msecs_to_jiffies(IL_WD_TICK(timeout)));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001853}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001854EXPORT_SYMBOL(il_bg_watchdog);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001855
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001856void il_setup_watchdog(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001857{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001858 unsigned int timeout = il->cfg->base_params->wd_timeout;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001859
1860 if (timeout)
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001861 mod_timer(&il->watchdog,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001862 jiffies + msecs_to_jiffies(IL_WD_TICK(timeout)));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001863 else
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001864 del_timer(&il->watchdog);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001865}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001866EXPORT_SYMBOL(il_setup_watchdog);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001867
1868/*
1869 * extended beacon time format
1870 * time in usec will be changed into a 32-bit value in extended:internal format
1871 * the extended part is the beacon counts
1872 * the internal part is the time in usec within one beacon interval
1873 */
1874u32
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001875il_usecs_to_beacons(struct il_priv *il,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001876 u32 usec, u32 beacon_interval)
1877{
1878 u32 quot;
1879 u32 rem;
1880 u32 interval = beacon_interval * TIME_UNIT;
1881
1882 if (!interval || !usec)
1883 return 0;
1884
1885 quot = (usec / interval) &
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001886 (il_beacon_time_mask_high(il,
1887 il->hw_params.beacon_time_tsf_bits) >>
1888 il->hw_params.beacon_time_tsf_bits);
1889 rem = (usec % interval) & il_beacon_time_mask_low(il,
1890 il->hw_params.beacon_time_tsf_bits);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001891
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001892 return (quot << il->hw_params.beacon_time_tsf_bits) + rem;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001893}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001894EXPORT_SYMBOL(il_usecs_to_beacons);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001895
1896/* base is usually what we get from ucode with each received frame,
1897 * the same as HW timer counter counting down
1898 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001899__le32 il_add_beacon_time(struct il_priv *il, u32 base,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001900 u32 addon, u32 beacon_interval)
1901{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001902 u32 base_low = base & il_beacon_time_mask_low(il,
1903 il->hw_params.beacon_time_tsf_bits);
1904 u32 addon_low = addon & il_beacon_time_mask_low(il,
1905 il->hw_params.beacon_time_tsf_bits);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001906 u32 interval = beacon_interval * TIME_UNIT;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001907 u32 res = (base & il_beacon_time_mask_high(il,
1908 il->hw_params.beacon_time_tsf_bits)) +
1909 (addon & il_beacon_time_mask_high(il,
1910 il->hw_params.beacon_time_tsf_bits));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001911
1912 if (base_low > addon_low)
1913 res += base_low - addon_low;
1914 else if (base_low < addon_low) {
1915 res += interval + base_low - addon_low;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001916 res += (1 << il->hw_params.beacon_time_tsf_bits);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001917 } else
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001918 res += (1 << il->hw_params.beacon_time_tsf_bits);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001919
1920 return cpu_to_le32(res);
1921}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001922EXPORT_SYMBOL(il_add_beacon_time);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001923
1924#ifdef CONFIG_PM
1925
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001926int il_pci_suspend(struct device *device)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001927{
1928 struct pci_dev *pdev = to_pci_dev(device);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001929 struct il_priv *il = pci_get_drvdata(pdev);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001930
1931 /*
1932 * This function is called when system goes into suspend state
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001933 * mac80211 will call il_mac_stop() from the mac80211 suspend function
1934 * first but since il_mac_stop() has no knowledge of who the caller is,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001935 * it will not call apm_ops.stop() to stop the DMA operation.
1936 * Calling apm_ops.stop here to make sure we stop the DMA.
1937 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001938 il_apm_stop(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001939
1940 return 0;
1941}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001942EXPORT_SYMBOL(il_pci_suspend);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001943
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001944int il_pci_resume(struct device *device)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001945{
1946 struct pci_dev *pdev = to_pci_dev(device);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001947 struct il_priv *il = pci_get_drvdata(pdev);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001948 bool hw_rfkill = false;
1949
1950 /*
1951 * We disable the RETRY_TIMEOUT register (0x41) to keep
1952 * PCI Tx retries from interfering with C3 CPU state.
1953 */
1954 pci_write_config_byte(pdev, PCI_CFG_RETRY_TIMEOUT, 0x00);
1955
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001956 il_enable_interrupts(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001957
Stanislaw Gruszka841b2cc2011-08-24 15:14:03 +02001958 if (!(_il_rd(il, CSR_GP_CNTRL) &
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001959 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW))
1960 hw_rfkill = true;
1961
1962 if (hw_rfkill)
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01001963 set_bit(S_RF_KILL_HW, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001964 else
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01001965 clear_bit(S_RF_KILL_HW, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001966
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001967 wiphy_rfkill_set_hw_state(il->hw->wiphy, hw_rfkill);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001968
1969 return 0;
1970}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001971EXPORT_SYMBOL(il_pci_resume);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001972
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001973const struct dev_pm_ops il_pm_ops = {
1974 .suspend = il_pci_suspend,
1975 .resume = il_pci_resume,
1976 .freeze = il_pci_suspend,
1977 .thaw = il_pci_resume,
1978 .poweroff = il_pci_suspend,
1979 .restore = il_pci_resume,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001980};
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001981EXPORT_SYMBOL(il_pm_ops);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001982
1983#endif /* CONFIG_PM */
1984
1985static void
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001986il_update_qos(struct il_priv *il, struct il_rxon_context *ctx)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001987{
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01001988 if (test_bit(S_EXIT_PENDING, &il->status))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001989 return;
1990
1991 if (!ctx->is_active)
1992 return;
1993
1994 ctx->qos_data.def_qos_parm.qos_flags = 0;
1995
1996 if (ctx->qos_data.qos_active)
1997 ctx->qos_data.def_qos_parm.qos_flags |=
1998 QOS_PARAM_FLG_UPDATE_EDCA_MSK;
1999
2000 if (ctx->ht.enabled)
2001 ctx->qos_data.def_qos_parm.qos_flags |= QOS_PARAM_FLG_TGN_MSK;
2002
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01002003 D_QOS("send QoS cmd with Qos active=%d FLAGS=0x%X\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002004 ctx->qos_data.qos_active,
2005 ctx->qos_data.def_qos_parm.qos_flags);
2006
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002007 il_send_cmd_pdu_async(il, ctx->qos_cmd,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002008 sizeof(struct il_qosparam_cmd),
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002009 &ctx->qos_data.def_qos_parm, NULL);
2010}
2011
2012/**
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002013 * il_mac_config - mac80211 config callback
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002014 */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002015int il_mac_config(struct ieee80211_hw *hw, u32 changed)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002016{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002017 struct il_priv *il = hw->priv;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002018 const struct il_channel_info *ch_info;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002019 struct ieee80211_conf *conf = &hw->conf;
2020 struct ieee80211_channel *channel = conf->channel;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002021 struct il_ht_config *ht_conf = &il->current_ht_config;
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02002022 struct il_rxon_context *ctx = &il->ctx;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002023 unsigned long flags = 0;
2024 int ret = 0;
2025 u16 ch;
2026 int scan_active = 0;
Stanislaw Gruszka7c2cde22011-11-15 11:29:04 +01002027 bool ht_changed = false;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002028
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002029 if (WARN_ON(!il->cfg->ops->legacy))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002030 return -EOPNOTSUPP;
2031
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002032 mutex_lock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002033
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01002034 D_MAC80211("enter to channel %d changed 0x%X\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002035 channel->hw_value, changed);
2036
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01002037 if (unlikely(test_bit(S_SCANNING, &il->status))) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002038 scan_active = 1;
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01002039 D_MAC80211("scan active\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002040 }
2041
2042 if (changed & (IEEE80211_CONF_CHANGE_SMPS |
2043 IEEE80211_CONF_CHANGE_CHANNEL)) {
2044 /* mac80211 uses static for non-HT which is what we want */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002045 il->current_ht_config.smps = conf->smps_mode;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002046
2047 /*
2048 * Recalculate chain counts.
2049 *
2050 * If monitor mode is enabled then mac80211 will
2051 * set up the SM PS mode to OFF if an HT channel is
2052 * configured.
2053 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002054 if (il->cfg->ops->hcmd->set_rxon_chain)
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02002055 il->cfg->ops->hcmd->set_rxon_chain(il, &il->ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002056 }
2057
2058 /* during scanning mac80211 will delay channel setting until
2059 * scan finish with changed = 0
2060 */
2061 if (!changed || (changed & IEEE80211_CONF_CHANGE_CHANNEL)) {
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02002062
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002063 if (scan_active)
2064 goto set_ch_out;
2065
2066 ch = channel->hw_value;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002067 ch_info = il_get_channel_info(il, channel->band, ch);
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002068 if (!il_is_channel_valid(ch_info)) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01002069 D_MAC80211("leave - invalid channel\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002070 ret = -EINVAL;
2071 goto set_ch_out;
2072 }
2073
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002074 if (il->iw_mode == NL80211_IFTYPE_ADHOC &&
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002075 !il_is_channel_ibss(ch_info)) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01002076 D_MAC80211("leave - not IBSS channel\n");
Stanislaw Gruszkaeb85de32011-05-07 17:46:21 +02002077 ret = -EINVAL;
2078 goto set_ch_out;
2079 }
2080
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002081 spin_lock_irqsave(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002082
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02002083 /* Configure HT40 channels */
2084 if (ctx->ht.enabled != conf_is_ht(conf)) {
2085 ctx->ht.enabled = conf_is_ht(conf);
2086 ht_changed = true;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002087 }
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02002088 if (ctx->ht.enabled) {
2089 if (conf_is_ht40_minus(conf)) {
2090 ctx->ht.extension_chan_offset =
2091 IEEE80211_HT_PARAM_CHA_SEC_BELOW;
2092 ctx->ht.is_40mhz = true;
2093 } else if (conf_is_ht40_plus(conf)) {
2094 ctx->ht.extension_chan_offset =
2095 IEEE80211_HT_PARAM_CHA_SEC_ABOVE;
2096 ctx->ht.is_40mhz = true;
2097 } else {
2098 ctx->ht.extension_chan_offset =
2099 IEEE80211_HT_PARAM_CHA_SEC_NONE;
2100 ctx->ht.is_40mhz = false;
2101 }
2102 } else
2103 ctx->ht.is_40mhz = false;
2104
2105 /*
2106 * Default to no protection. Protection mode will
2107 * later be set from BSS config in il_ht_conf
2108 */
2109 ctx->ht.protection =
2110 IEEE80211_HT_OP_MODE_PROTECTION_NONE;
2111
2112 /* if we are switching from ht to 2.4 clear flags
2113 * from any ht related info since 2.4 does not
2114 * support ht */
2115 if ((le16_to_cpu(ctx->staging.channel) != ch))
2116 ctx->staging.flags = 0;
2117
2118 il_set_rxon_channel(il, channel, ctx);
2119 il_set_rxon_ht(il, ht_conf);
2120
2121 il_set_flags_for_band(il, ctx, channel->band,
2122 ctx->vif);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002123
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002124 spin_unlock_irqrestore(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002125
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002126 if (il->cfg->ops->legacy->update_bcast_stations)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002127 ret =
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002128 il->cfg->ops->legacy->update_bcast_stations(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002129
2130 set_ch_out:
2131 /* The list of supported rates and rate mask can be different
2132 * for each band; since the band may have changed, reset
2133 * the rate mask to what mac80211 lists */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002134 il_set_rate(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002135 }
2136
2137 if (changed & (IEEE80211_CONF_CHANGE_PS |
2138 IEEE80211_CONF_CHANGE_IDLE)) {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002139 ret = il_power_update_mode(il, false);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002140 if (ret)
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01002141 D_MAC80211("Error setting sleep level\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002142 }
2143
2144 if (changed & IEEE80211_CONF_CHANGE_POWER) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01002145 D_MAC80211("TX Power old=%d new=%d\n",
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002146 il->tx_power_user_lmt, conf->power_level);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002147
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002148 il_set_tx_power(il, conf->power_level, false);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002149 }
2150
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002151 if (!il_is_ready(il)) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01002152 D_MAC80211("leave - not ready\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002153 goto out;
2154 }
2155
2156 if (scan_active)
2157 goto out;
2158
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02002159 if (memcmp(&ctx->active, &ctx->staging, sizeof(ctx->staging)))
2160 il_commit_rxon(il, ctx);
2161 else
2162 D_INFO("Not re-sending same RXON configuration.\n");
2163 if (ht_changed)
2164 il_update_qos(il, ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002165
2166out:
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01002167 D_MAC80211("leave\n");
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002168 mutex_unlock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002169 return ret;
2170}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002171EXPORT_SYMBOL(il_mac_config);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002172
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002173void il_mac_reset_tsf(struct ieee80211_hw *hw,
Eliad Peller37a41b42011-09-21 14:06:11 +03002174 struct ieee80211_vif *vif)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002175{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002176 struct il_priv *il = hw->priv;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002177 unsigned long flags;
Stanislaw Gruszka7c2cde22011-11-15 11:29:04 +01002178 struct il_rxon_context *ctx = &il->ctx;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002179
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002180 if (WARN_ON(!il->cfg->ops->legacy))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002181 return;
2182
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002183 mutex_lock(&il->mutex);
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01002184 D_MAC80211("enter\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002185
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002186 spin_lock_irqsave(&il->lock, flags);
2187 memset(&il->current_ht_config, 0, sizeof(struct il_ht_config));
2188 spin_unlock_irqrestore(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002189
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002190 spin_lock_irqsave(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002191
2192 /* new association get rid of ibss beacon skb */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002193 if (il->beacon_skb)
2194 dev_kfree_skb(il->beacon_skb);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002195
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002196 il->beacon_skb = NULL;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002197
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002198 il->timestamp = 0;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002199
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002200 spin_unlock_irqrestore(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002201
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002202 il_scan_cancel_timeout(il, 100);
2203 if (!il_is_ready_rf(il)) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01002204 D_MAC80211("leave - not ready\n");
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002205 mutex_unlock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002206 return;
2207 }
2208
2209 /* we are restarting association process
2210 * clear RXON_FILTER_ASSOC_MSK bit
2211 */
2212 ctx->staging.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002213 il_commit_rxon(il, ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002214
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002215 il_set_rate(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002216
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002217 mutex_unlock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002218
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01002219 D_MAC80211("leave\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002220}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002221EXPORT_SYMBOL(il_mac_reset_tsf);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002222
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002223static void il_ht_conf(struct il_priv *il,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002224 struct ieee80211_vif *vif)
2225{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002226 struct il_ht_config *ht_conf = &il->current_ht_config;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002227 struct ieee80211_sta *sta;
2228 struct ieee80211_bss_conf *bss_conf = &vif->bss_conf;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002229 struct il_rxon_context *ctx = il_rxon_ctx_from_vif(vif);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002230
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01002231 D_ASSOC("enter:\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002232
2233 if (!ctx->ht.enabled)
2234 return;
2235
2236 ctx->ht.protection =
2237 bss_conf->ht_operation_mode & IEEE80211_HT_OP_MODE_PROTECTION;
2238 ctx->ht.non_gf_sta_present =
2239 !!(bss_conf->ht_operation_mode &
2240 IEEE80211_HT_OP_MODE_NON_GF_STA_PRSNT);
2241
2242 ht_conf->single_chain_sufficient = false;
2243
2244 switch (vif->type) {
2245 case NL80211_IFTYPE_STATION:
2246 rcu_read_lock();
2247 sta = ieee80211_find_sta(vif, bss_conf->bssid);
2248 if (sta) {
2249 struct ieee80211_sta_ht_cap *ht_cap = &sta->ht_cap;
2250 int maxstreams;
2251
2252 maxstreams = (ht_cap->mcs.tx_params &
2253 IEEE80211_HT_MCS_TX_MAX_STREAMS_MASK)
2254 >> IEEE80211_HT_MCS_TX_MAX_STREAMS_SHIFT;
2255 maxstreams += 1;
2256
Stanislaw Gruszka232913b2011-08-26 10:45:16 +02002257 if (ht_cap->mcs.rx_mask[1] == 0 &&
2258 ht_cap->mcs.rx_mask[2] == 0)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002259 ht_conf->single_chain_sufficient = true;
2260 if (maxstreams <= 1)
2261 ht_conf->single_chain_sufficient = true;
2262 } else {
2263 /*
2264 * If at all, this can only happen through a race
2265 * when the AP disconnects us while we're still
2266 * setting up the connection, in that case mac80211
2267 * will soon tell us about that.
2268 */
2269 ht_conf->single_chain_sufficient = true;
2270 }
2271 rcu_read_unlock();
2272 break;
2273 case NL80211_IFTYPE_ADHOC:
2274 ht_conf->single_chain_sufficient = true;
2275 break;
2276 default:
2277 break;
2278 }
2279
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01002280 D_ASSOC("leave\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002281}
2282
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002283static inline void il_set_no_assoc(struct il_priv *il,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002284 struct ieee80211_vif *vif)
2285{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002286 struct il_rxon_context *ctx = il_rxon_ctx_from_vif(vif);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002287
2288 /*
2289 * inform the ucode that there is no longer an
2290 * association and that no more packets should be
2291 * sent
2292 */
2293 ctx->staging.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
2294 ctx->staging.assoc_id = 0;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002295 il_commit_rxon(il, ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002296}
2297
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002298static void il_beacon_update(struct ieee80211_hw *hw,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002299 struct ieee80211_vif *vif)
2300{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002301 struct il_priv *il = hw->priv;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002302 unsigned long flags;
2303 __le64 timestamp;
2304 struct sk_buff *skb = ieee80211_beacon_get(hw, vif);
2305
2306 if (!skb)
2307 return;
2308
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01002309 D_MAC80211("enter\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002310
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002311 lockdep_assert_held(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002312
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002313 if (!il->beacon_ctx) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02002314 IL_ERR("update beacon but no beacon context!\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002315 dev_kfree_skb(skb);
2316 return;
2317 }
2318
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002319 spin_lock_irqsave(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002320
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002321 if (il->beacon_skb)
2322 dev_kfree_skb(il->beacon_skb);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002323
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002324 il->beacon_skb = skb;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002325
2326 timestamp = ((struct ieee80211_mgmt *)skb->data)->u.beacon.timestamp;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002327 il->timestamp = le64_to_cpu(timestamp);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002328
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01002329 D_MAC80211("leave\n");
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002330 spin_unlock_irqrestore(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002331
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002332 if (!il_is_ready_rf(il)) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01002333 D_MAC80211("leave - RF not ready\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002334 return;
2335 }
2336
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002337 il->cfg->ops->legacy->post_associate(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002338}
2339
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002340void il_mac_bss_info_changed(struct ieee80211_hw *hw,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002341 struct ieee80211_vif *vif,
2342 struct ieee80211_bss_conf *bss_conf,
2343 u32 changes)
2344{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002345 struct il_priv *il = hw->priv;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002346 struct il_rxon_context *ctx = il_rxon_ctx_from_vif(vif);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002347 int ret;
2348
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002349 if (WARN_ON(!il->cfg->ops->legacy))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002350 return;
2351
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01002352 D_MAC80211("changes = 0x%X\n", changes);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002353
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002354 mutex_lock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002355
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002356 if (!il_is_alive(il)) {
2357 mutex_unlock(&il->mutex);
Stanislaw Gruszka28a6e572011-04-28 11:51:32 +02002358 return;
2359 }
2360
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002361 if (changes & BSS_CHANGED_QOS) {
2362 unsigned long flags;
2363
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002364 spin_lock_irqsave(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002365 ctx->qos_data.qos_active = bss_conf->qos;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002366 il_update_qos(il, ctx);
2367 spin_unlock_irqrestore(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002368 }
2369
2370 if (changes & BSS_CHANGED_BEACON_ENABLED) {
2371 /*
2372 * the add_interface code must make sure we only ever
2373 * have a single interface that could be beaconing at
2374 * any time.
2375 */
2376 if (vif->bss_conf.enable_beacon)
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002377 il->beacon_ctx = ctx;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002378 else
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002379 il->beacon_ctx = NULL;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002380 }
2381
2382 if (changes & BSS_CHANGED_BSSID) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01002383 D_MAC80211("BSSID %pM\n", bss_conf->bssid);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002384
2385 /*
2386 * If there is currently a HW scan going on in the
2387 * background then we need to cancel it else the RXON
2388 * below/in post_associate will fail.
2389 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002390 if (il_scan_cancel_timeout(il, 100)) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02002391 IL_WARN(
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002392 "Aborted scan still in progress after 100ms\n");
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01002393 D_MAC80211(
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002394 "leaving - scan abort failed.\n");
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002395 mutex_unlock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002396 return;
2397 }
2398
2399 /* mac80211 only sets assoc when in STATION mode */
2400 if (vif->type == NL80211_IFTYPE_ADHOC || bss_conf->assoc) {
2401 memcpy(ctx->staging.bssid_addr,
2402 bss_conf->bssid, ETH_ALEN);
2403
2404 /* currently needed in a few places */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002405 memcpy(il->bssid, bss_conf->bssid, ETH_ALEN);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002406 } else {
2407 ctx->staging.filter_flags &=
2408 ~RXON_FILTER_ASSOC_MSK;
2409 }
2410
2411 }
2412
2413 /*
2414 * This needs to be after setting the BSSID in case
2415 * mac80211 decides to do both changes at once because
2416 * it will invoke post_associate.
2417 */
Stanislaw Gruszka232913b2011-08-26 10:45:16 +02002418 if (vif->type == NL80211_IFTYPE_ADHOC && (changes & BSS_CHANGED_BEACON))
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002419 il_beacon_update(hw, vif);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002420
2421 if (changes & BSS_CHANGED_ERP_PREAMBLE) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01002422 D_MAC80211("ERP_PREAMBLE %d\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002423 bss_conf->use_short_preamble);
2424 if (bss_conf->use_short_preamble)
2425 ctx->staging.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
2426 else
2427 ctx->staging.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
2428 }
2429
2430 if (changes & BSS_CHANGED_ERP_CTS_PROT) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01002431 D_MAC80211(
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002432 "ERP_CTS %d\n", bss_conf->use_cts_prot);
Stanislaw Gruszka232913b2011-08-26 10:45:16 +02002433 if (bss_conf->use_cts_prot && il->band != IEEE80211_BAND_5GHZ)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002434 ctx->staging.flags |= RXON_FLG_TGG_PROTECT_MSK;
2435 else
2436 ctx->staging.flags &= ~RXON_FLG_TGG_PROTECT_MSK;
2437 if (bss_conf->use_cts_prot)
2438 ctx->staging.flags |= RXON_FLG_SELF_CTS_EN;
2439 else
2440 ctx->staging.flags &= ~RXON_FLG_SELF_CTS_EN;
2441 }
2442
2443 if (changes & BSS_CHANGED_BASIC_RATES) {
2444 /* XXX use this information
2445 *
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002446 * To do that, remove code from il_set_rate() and put something
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002447 * like this here:
2448 *
2449 if (A-band)
2450 ctx->staging.ofdm_basic_rates =
2451 bss_conf->basic_rates;
2452 else
2453 ctx->staging.ofdm_basic_rates =
2454 bss_conf->basic_rates >> 4;
2455 ctx->staging.cck_basic_rates =
2456 bss_conf->basic_rates & 0xF;
2457 */
2458 }
2459
2460 if (changes & BSS_CHANGED_HT) {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002461 il_ht_conf(il, vif);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002462
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002463 if (il->cfg->ops->hcmd->set_rxon_chain)
2464 il->cfg->ops->hcmd->set_rxon_chain(il, ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002465 }
2466
2467 if (changes & BSS_CHANGED_ASSOC) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01002468 D_MAC80211("ASSOC %d\n", bss_conf->assoc);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002469 if (bss_conf->assoc) {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002470 il->timestamp = bss_conf->timestamp;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002471
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002472 if (!il_is_rfkill(il))
2473 il->cfg->ops->legacy->post_associate(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002474 } else
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002475 il_set_no_assoc(il, vif);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002476 }
2477
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002478 if (changes && il_is_associated_ctx(ctx) && bss_conf->aid) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01002479 D_MAC80211("Changes (%#x) while associated\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002480 changes);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002481 ret = il_send_rxon_assoc(il, ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002482 if (!ret) {
2483 /* Sync active_rxon with latest change. */
2484 memcpy((void *)&ctx->active,
2485 &ctx->staging,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002486 sizeof(struct il_rxon_cmd));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002487 }
2488 }
2489
2490 if (changes & BSS_CHANGED_BEACON_ENABLED) {
2491 if (vif->bss_conf.enable_beacon) {
2492 memcpy(ctx->staging.bssid_addr,
2493 bss_conf->bssid, ETH_ALEN);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002494 memcpy(il->bssid, bss_conf->bssid, ETH_ALEN);
2495 il->cfg->ops->legacy->config_ap(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002496 } else
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002497 il_set_no_assoc(il, vif);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002498 }
2499
2500 if (changes & BSS_CHANGED_IBSS) {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002501 ret = il->cfg->ops->legacy->manage_ibss_station(il, vif,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002502 bss_conf->ibss_joined);
2503 if (ret)
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02002504 IL_ERR("failed to %s IBSS station %pM\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002505 bss_conf->ibss_joined ? "add" : "remove",
2506 bss_conf->bssid);
2507 }
2508
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002509 mutex_unlock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002510
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01002511 D_MAC80211("leave\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002512}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002513EXPORT_SYMBOL(il_mac_bss_info_changed);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002514
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002515irqreturn_t il_isr(int irq, void *data)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002516{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002517 struct il_priv *il = data;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002518 u32 inta, inta_mask;
2519 u32 inta_fh;
2520 unsigned long flags;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002521 if (!il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002522 return IRQ_NONE;
2523
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002524 spin_lock_irqsave(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002525
2526 /* Disable (but don't clear!) interrupts here to avoid
2527 * back-to-back ISRs and sporadic interrupts from our NIC.
2528 * If we have something to service, the tasklet will re-enable ints.
2529 * If we *don't* have something, we'll re-enable before leaving here. */
Stanislaw Gruszka841b2cc2011-08-24 15:14:03 +02002530 inta_mask = _il_rd(il, CSR_INT_MASK); /* just for debug */
2531 _il_wr(il, CSR_INT_MASK, 0x00000000);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002532
2533 /* Discover which interrupts are active/pending */
Stanislaw Gruszka841b2cc2011-08-24 15:14:03 +02002534 inta = _il_rd(il, CSR_INT);
2535 inta_fh = _il_rd(il, CSR_FH_INT_STATUS);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002536
2537 /* Ignore interrupt if there's nothing in NIC to service.
2538 * This may be due to IRQ shared with another device,
2539 * or due to sporadic interrupts thrown from our NIC. */
2540 if (!inta && !inta_fh) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01002541 D_ISR(
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002542 "Ignore interrupt, inta == 0, inta_fh == 0\n");
2543 goto none;
2544 }
2545
Stanislaw Gruszka232913b2011-08-26 10:45:16 +02002546 if (inta == 0xFFFFFFFF || (inta & 0xFFFFFFF0) == 0xa5a5a5a0) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002547 /* Hardware disappeared. It might have already raised
2548 * an interrupt */
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02002549 IL_WARN("HARDWARE GONE?? INTA == 0x%08x\n", inta);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002550 goto unplugged;
2551 }
2552
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01002553 D_ISR("ISR inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002554 inta, inta_mask, inta_fh);
2555
2556 inta &= ~CSR_INT_BIT_SCD;
2557
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002558 /* il_irq_tasklet() will service interrupts and re-enable them */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002559 if (likely(inta || inta_fh))
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002560 tasklet_schedule(&il->irq_tasklet);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002561
2562unplugged:
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002563 spin_unlock_irqrestore(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002564 return IRQ_HANDLED;
2565
2566none:
2567 /* re-enable interrupts here since we don't have anything to service. */
Stanislaw Gruszka93fd74e2011-04-28 11:51:30 +02002568 /* only Re-enable if disabled by irq */
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01002569 if (test_bit(S_INT_ENABLED, &il->status))
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002570 il_enable_interrupts(il);
2571 spin_unlock_irqrestore(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002572 return IRQ_NONE;
2573}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002574EXPORT_SYMBOL(il_isr);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002575
2576/*
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002577 * il_tx_cmd_protection: Set rts/cts. 3945 and 4965 only share this
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002578 * function.
2579 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002580void il_tx_cmd_protection(struct il_priv *il,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002581 struct ieee80211_tx_info *info,
2582 __le16 fc, __le32 *tx_flags)
2583{
2584 if (info->control.rates[0].flags & IEEE80211_TX_RC_USE_RTS_CTS) {
2585 *tx_flags |= TX_CMD_FLG_RTS_MSK;
2586 *tx_flags &= ~TX_CMD_FLG_CTS_MSK;
2587 *tx_flags |= TX_CMD_FLG_FULL_TXOP_PROT_MSK;
2588
2589 if (!ieee80211_is_mgmt(fc))
2590 return;
2591
2592 switch (fc & cpu_to_le16(IEEE80211_FCTL_STYPE)) {
2593 case cpu_to_le16(IEEE80211_STYPE_AUTH):
2594 case cpu_to_le16(IEEE80211_STYPE_DEAUTH):
2595 case cpu_to_le16(IEEE80211_STYPE_ASSOC_REQ):
2596 case cpu_to_le16(IEEE80211_STYPE_REASSOC_REQ):
2597 *tx_flags &= ~TX_CMD_FLG_RTS_MSK;
2598 *tx_flags |= TX_CMD_FLG_CTS_MSK;
2599 break;
2600 }
2601 } else if (info->control.rates[0].flags &
2602 IEEE80211_TX_RC_USE_CTS_PROTECT) {
2603 *tx_flags &= ~TX_CMD_FLG_RTS_MSK;
2604 *tx_flags |= TX_CMD_FLG_CTS_MSK;
2605 *tx_flags |= TX_CMD_FLG_FULL_TXOP_PROT_MSK;
2606 }
2607}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002608EXPORT_SYMBOL(il_tx_cmd_protection);