blob: 5f0e07c0b50ccd18991f04beccd175f8341019bd [file] [log] [blame]
Tomas Winklerdf48c322008-03-06 10:40:19 -08001/******************************************************************************
2 *
Tomas Winklerdf48c322008-03-06 10:40:19 -08003 * GPL LICENSE SUMMARY
4 *
Wey-Yi Guy4e318262011-12-27 11:21:32 -08005 * Copyright(c) 2008 - 2012 Intel Corporation. All rights reserved.
Tomas Winklerdf48c322008-03-06 10:40:19 -08006 *
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:
Winkler, Tomas759ef892008-12-09 11:28:58 -080025 * Intel Linux Wireless <ilw@linux.intel.com>
Tomas Winklerdf48c322008-03-06 10:40:19 -080026 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
27 *****************************************************************************/
28
29#include <linux/kernel.h>
30#include <linux/module.h>
Samuel Ortiz8ccde882009-01-27 14:27:52 -080031#include <linux/etherdevice.h>
Alexey Dobriyand43c36d2009-10-07 17:09:06 +040032#include <linux/sched.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090033#include <linux/slab.h>
Assaf Krauss1d0a0822008-03-14 10:38:48 -070034#include <net/mac80211.h>
Tomas Winklerdf48c322008-03-06 10:40:19 -080035
Assaf Krauss6bc913b2008-03-11 16:17:18 -070036#include "iwl-eeprom.h"
Winkler, Tomas193357742008-11-07 09:58:36 -080037#include "iwl-debug.h"
Tomas Winklerdf48c322008-03-06 10:40:19 -080038#include "iwl-core.h"
Tomas Winklerb661c812008-04-23 17:14:54 -070039#include "iwl-io.h"
Mohamed Abbas5da4b552008-04-21 15:41:51 -070040#include "iwl-power.h"
Emmanuel Grumbach48f20d32011-08-25 23:10:36 -070041#include "iwl-shared.h"
Don Fry9d143e92011-04-20 15:23:57 -070042#include "iwl-agn.h"
Emmanuel Grumbachbdfbf092011-07-08 08:46:16 -070043#include "iwl-trans.h"
Tomas Winklerdf48c322008-03-06 10:40:19 -080044
Tomas Winkler57bd1be2008-05-15 13:54:03 +080045const u8 iwl_bcast_addr[ETH_ALEN] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF };
Tomas Winkler57bd1be2008-05-15 13:54:03 +080046
Johannes Bergd9fe60d2008-10-09 12:13:49 +020047#define MAX_BIT_RATE_40_MHZ 150 /* Mbps */
48#define MAX_BIT_RATE_20_MHZ 72 /* Mbps */
Wey-Yi Guyb39488a2011-08-25 23:10:33 -070049static void iwl_init_ht_hw_capab(const struct iwl_priv *priv,
Johannes Bergd9fe60d2008-10-09 12:13:49 +020050 struct ieee80211_sta_ht_cap *ht_info,
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -070051 enum ieee80211_band band)
52{
Ron Rindjunsky39130df2008-05-15 13:53:56 +080053 u16 max_bit_rate = 0;
Emmanuel Grumbachd6189122011-08-25 23:10:39 -070054 u8 rx_chains_num = hw_params(priv).rx_chains_num;
55 u8 tx_chains_num = hw_params(priv).tx_chains_num;
Ron Rindjunsky39130df2008-05-15 13:53:56 +080056
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -070057 ht_info->cap = 0;
Johannes Bergd9fe60d2008-10-09 12:13:49 +020058 memset(&ht_info->mcs, 0, sizeof(ht_info->mcs));
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -070059
Johannes Bergd9fe60d2008-10-09 12:13:49 +020060 ht_info->ht_supported = true;
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -070061
Don Fry38622412011-12-16 07:07:36 -080062 if (cfg(priv)->ht_params &&
63 cfg(priv)->ht_params->ht_greenfield_support)
Daniel C Halperinb2617932009-08-13 13:30:59 -070064 ht_info->cap |= IEEE80211_HT_CAP_GRN_FLD;
Johannes Bergd9fe60d2008-10-09 12:13:49 +020065 ht_info->cap |= IEEE80211_HT_CAP_SGI_20;
Ron Rindjunsky39130df2008-05-15 13:53:56 +080066 max_bit_rate = MAX_BIT_RATE_20_MHZ;
Emmanuel Grumbachd6189122011-08-25 23:10:39 -070067 if (hw_params(priv).ht40_channel & BIT(band)) {
Johannes Bergd9fe60d2008-10-09 12:13:49 +020068 ht_info->cap |= IEEE80211_HT_CAP_SUP_WIDTH_20_40;
69 ht_info->cap |= IEEE80211_HT_CAP_SGI_40;
70 ht_info->mcs.rx_mask[4] = 0x01;
Ron Rindjunsky39130df2008-05-15 13:53:56 +080071 max_bit_rate = MAX_BIT_RATE_40_MHZ;
72 }
73
Don Fry9d143e92011-04-20 15:23:57 -070074 if (iwlagn_mod_params.amsdu_size_8K)
Johannes Bergd9fe60d2008-10-09 12:13:49 +020075 ht_info->cap |= IEEE80211_HT_CAP_MAX_AMSDU;
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -070076
77 ht_info->ampdu_factor = CFG_HT_RX_AMPDU_FACTOR_DEF;
78 ht_info->ampdu_density = CFG_HT_MPDU_DENSITY_DEF;
79
Johannes Bergd9fe60d2008-10-09 12:13:49 +020080 ht_info->mcs.rx_mask[0] = 0xFF;
Ron Rindjunsky39130df2008-05-15 13:53:56 +080081 if (rx_chains_num >= 2)
Johannes Bergd9fe60d2008-10-09 12:13:49 +020082 ht_info->mcs.rx_mask[1] = 0xFF;
Ron Rindjunsky39130df2008-05-15 13:53:56 +080083 if (rx_chains_num >= 3)
Johannes Bergd9fe60d2008-10-09 12:13:49 +020084 ht_info->mcs.rx_mask[2] = 0xFF;
Ron Rindjunsky39130df2008-05-15 13:53:56 +080085
86 /* Highest supported Rx data rate */
87 max_bit_rate *= rx_chains_num;
Johannes Bergd9fe60d2008-10-09 12:13:49 +020088 WARN_ON(max_bit_rate & ~IEEE80211_HT_MCS_RX_HIGHEST_MASK);
89 ht_info->mcs.rx_highest = cpu_to_le16(max_bit_rate);
Ron Rindjunsky39130df2008-05-15 13:53:56 +080090
91 /* Tx MCS capabilities */
Johannes Bergd9fe60d2008-10-09 12:13:49 +020092 ht_info->mcs.tx_params = IEEE80211_HT_MCS_TX_DEFINED;
Ron Rindjunsky39130df2008-05-15 13:53:56 +080093 if (tx_chains_num != rx_chains_num) {
Johannes Bergd9fe60d2008-10-09 12:13:49 +020094 ht_info->mcs.tx_params |= IEEE80211_HT_MCS_TX_RX_DIFF;
95 ht_info->mcs.tx_params |= ((tx_chains_num - 1) <<
96 IEEE80211_HT_MCS_TX_MAX_STREAMS_SHIFT);
Ron Rindjunsky39130df2008-05-15 13:53:56 +080097 }
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -070098}
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -070099
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -0700100/**
Wey-Yi Guyb39488a2011-08-25 23:10:33 -0700101 * iwl_init_geos - Initialize mac80211's geo/channel info based from eeprom
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -0700102 */
Wey-Yi Guyb39488a2011-08-25 23:10:33 -0700103int iwl_init_geos(struct iwl_priv *priv)
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -0700104{
105 struct iwl_channel_info *ch;
106 struct ieee80211_supported_band *sband;
107 struct ieee80211_channel *channels;
108 struct ieee80211_channel *geo_ch;
109 struct ieee80211_rate *rates;
110 int i = 0;
Stanislaw Gruszka75d80ca2011-04-28 11:12:10 +0200111 s8 max_tx_power = IWLAGN_TX_POWER_TARGET_POWER_MIN;
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -0700112
113 if (priv->bands[IEEE80211_BAND_2GHZ].n_bitrates ||
114 priv->bands[IEEE80211_BAND_5GHZ].n_bitrates) {
Tomas Winklere1623442009-01-27 14:27:56 -0800115 IWL_DEBUG_INFO(priv, "Geography modes already initialized.\n");
Emmanuel Grumbach63013ae2011-08-25 23:10:42 -0700116 set_bit(STATUS_GEO_CONFIGURED, &priv->shrd->status);
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -0700117 return 0;
118 }
119
Emmanuel Grumbach7f90dce2011-09-22 15:14:53 -0700120 channels = kcalloc(priv->channel_count,
121 sizeof(struct ieee80211_channel), GFP_KERNEL);
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -0700122 if (!channels)
123 return -ENOMEM;
124
Emmanuel Grumbach7f90dce2011-09-22 15:14:53 -0700125 rates = kcalloc(IWL_RATE_COUNT_LEGACY, sizeof(struct ieee80211_rate),
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -0700126 GFP_KERNEL);
127 if (!rates) {
128 kfree(channels);
129 return -ENOMEM;
130 }
131
132 /* 5.2GHz channels start after the 2.4GHz channels */
133 sband = &priv->bands[IEEE80211_BAND_5GHZ];
134 sband->channels = &channels[ARRAY_SIZE(iwl_eeprom_band_1)];
135 /* just OFDM */
136 sband->bitrates = &rates[IWL_FIRST_OFDM_RATE];
Daniel C Halperin50273092009-08-28 09:44:45 -0700137 sband->n_bitrates = IWL_RATE_COUNT_LEGACY - IWL_FIRST_OFDM_RATE;
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -0700138
Johannes Berg54708d82012-03-05 11:24:31 -0800139 if (hw_params(priv).sku & EEPROM_SKU_CAP_11N_ENABLE)
Wey-Yi Guyb39488a2011-08-25 23:10:33 -0700140 iwl_init_ht_hw_capab(priv, &sband->ht_cap,
Ron Rindjunsky49779292008-06-30 17:23:21 +0800141 IEEE80211_BAND_5GHZ);
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -0700142
143 sband = &priv->bands[IEEE80211_BAND_2GHZ];
144 sband->channels = channels;
145 /* OFDM & CCK */
146 sband->bitrates = rates;
Daniel C Halperin50273092009-08-28 09:44:45 -0700147 sband->n_bitrates = IWL_RATE_COUNT_LEGACY;
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -0700148
Johannes Berg54708d82012-03-05 11:24:31 -0800149 if (hw_params(priv).sku & EEPROM_SKU_CAP_11N_ENABLE)
Wey-Yi Guyb39488a2011-08-25 23:10:33 -0700150 iwl_init_ht_hw_capab(priv, &sband->ht_cap,
Ron Rindjunsky49779292008-06-30 17:23:21 +0800151 IEEE80211_BAND_2GHZ);
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -0700152
153 priv->ieee_channels = channels;
154 priv->ieee_rates = rates;
155
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -0700156 for (i = 0; i < priv->channel_count; i++) {
157 ch = &priv->channel_info[i];
158
159 /* FIXME: might be removed if scan is OK */
160 if (!is_channel_valid(ch))
161 continue;
162
Stanislaw Gruszka5a3a0352011-01-31 13:01:35 +0100163 sband = &priv->bands[ch->band];
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -0700164
165 geo_ch = &sband->channels[sband->n_channels++];
166
167 geo_ch->center_freq =
Stanislaw Gruszka5a3a0352011-01-31 13:01:35 +0100168 ieee80211_channel_to_frequency(ch->channel, ch->band);
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -0700169 geo_ch->max_power = ch->max_power_avg;
170 geo_ch->max_antenna_gain = 0xff;
171 geo_ch->hw_value = ch->channel;
172
173 if (is_channel_valid(ch)) {
174 if (!(ch->flags & EEPROM_CHANNEL_IBSS))
175 geo_ch->flags |= IEEE80211_CHAN_NO_IBSS;
176
177 if (!(ch->flags & EEPROM_CHANNEL_ACTIVE))
178 geo_ch->flags |= IEEE80211_CHAN_PASSIVE_SCAN;
179
180 if (ch->flags & EEPROM_CHANNEL_RADAR)
181 geo_ch->flags |= IEEE80211_CHAN_RADAR;
182
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700183 geo_ch->flags |= ch->ht40_extension_channel;
Emmanuel Grumbach4d38c2e2008-05-29 16:35:24 +0800184
Stanislaw Gruszka75d80ca2011-04-28 11:12:10 +0200185 if (ch->max_power_avg > max_tx_power)
186 max_tx_power = ch->max_power_avg;
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -0700187 } else {
188 geo_ch->flags |= IEEE80211_CHAN_DISABLED;
189 }
190
Tomas Winklere1623442009-01-27 14:27:56 -0800191 IWL_DEBUG_INFO(priv, "Channel %d Freq=%d[%sGHz] %s flag=0x%X\n",
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -0700192 ch->channel, geo_ch->center_freq,
193 is_channel_a_band(ch) ? "5.2" : "2.4",
194 geo_ch->flags & IEEE80211_CHAN_DISABLED ?
195 "restricted" : "valid",
196 geo_ch->flags);
197 }
198
Stanislaw Gruszka75d80ca2011-04-28 11:12:10 +0200199 priv->tx_power_device_lmt = max_tx_power;
200 priv->tx_power_user_lmt = max_tx_power;
201 priv->tx_power_next = max_tx_power;
202
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -0700203 if ((priv->bands[IEEE80211_BAND_5GHZ].n_channels == 0) &&
Johannes Berg54708d82012-03-05 11:24:31 -0800204 hw_params(priv).sku & EEPROM_SKU_CAP_BAND_52GHZ) {
Tomas Winkler978785a2008-12-19 10:37:31 +0800205 IWL_INFO(priv, "Incorrectly detected BG card as ABG. "
Emmanuel Grumbach9ca85962012-01-08 21:19:45 +0200206 "Please send your %s to maintainer.\n",
207 trans(priv)->hw_id_str);
Johannes Berg54708d82012-03-05 11:24:31 -0800208 hw_params(priv).sku &= ~EEPROM_SKU_CAP_BAND_52GHZ;
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -0700209 }
210
Tomas Winkler978785a2008-12-19 10:37:31 +0800211 IWL_INFO(priv, "Tunable channels: %d 802.11bg, %d 802.11a channels\n",
Samuel Ortiza3139c52008-12-19 10:37:09 +0800212 priv->bands[IEEE80211_BAND_2GHZ].n_channels,
213 priv->bands[IEEE80211_BAND_5GHZ].n_channels);
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -0700214
Emmanuel Grumbach63013ae2011-08-25 23:10:42 -0700215 set_bit(STATUS_GEO_CONFIGURED, &priv->shrd->status);
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -0700216
217 return 0;
218}
219
220/*
Wey-Yi Guyb39488a2011-08-25 23:10:33 -0700221 * iwl_free_geos - undo allocations in iwl_init_geos
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -0700222 */
Wey-Yi Guyb39488a2011-08-25 23:10:33 -0700223void iwl_free_geos(struct iwl_priv *priv)
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -0700224{
225 kfree(priv->ieee_channels);
226 kfree(priv->ieee_rates);
Emmanuel Grumbach63013ae2011-08-25 23:10:42 -0700227 clear_bit(STATUS_GEO_CONFIGURED, &priv->shrd->status);
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -0700228}
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -0700229
Johannes Berg7e6a5882010-08-23 10:46:46 +0200230static bool iwl_is_channel_extension(struct iwl_priv *priv,
231 enum ieee80211_band band,
232 u16 channel, u8 extension_chan_offset)
Tomas Winkler47c51962008-05-05 10:22:41 +0800233{
234 const struct iwl_channel_info *ch_info;
235
236 ch_info = iwl_get_channel_info(priv, band, channel);
237 if (!is_channel_valid(ch_info))
Johannes Berg7e6a5882010-08-23 10:46:46 +0200238 return false;
Tomas Winkler47c51962008-05-05 10:22:41 +0800239
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200240 if (extension_chan_offset == IEEE80211_HT_PARAM_CHA_SEC_ABOVE)
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700241 return !(ch_info->ht40_extension_channel &
Luis R. Rodriguez689da1b2009-05-02 00:37:18 -0400242 IEEE80211_CHAN_NO_HT40PLUS);
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200243 else if (extension_chan_offset == IEEE80211_HT_PARAM_CHA_SEC_BELOW)
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700244 return !(ch_info->ht40_extension_channel &
Luis R. Rodriguez689da1b2009-05-02 00:37:18 -0400245 IEEE80211_CHAN_NO_HT40MINUS);
Tomas Winkler47c51962008-05-05 10:22:41 +0800246
Johannes Berg7e6a5882010-08-23 10:46:46 +0200247 return false;
Tomas Winkler47c51962008-05-05 10:22:41 +0800248}
249
Johannes Berg7e6a5882010-08-23 10:46:46 +0200250bool iwl_is_ht40_tx_allowed(struct iwl_priv *priv,
251 struct iwl_rxon_context *ctx,
252 struct ieee80211_sta_ht_cap *ht_cap)
Tomas Winkler47c51962008-05-05 10:22:41 +0800253{
Johannes Berg7e6a5882010-08-23 10:46:46 +0200254 if (!ctx->ht.enabled || !ctx->ht.is_40mhz)
255 return false;
Tomas Winkler47c51962008-05-05 10:22:41 +0800256
Johannes Berg7e6a5882010-08-23 10:46:46 +0200257 /*
258 * We do not check for IEEE80211_HT_CAP_SUP_WIDTH_20_40
Wey-Yi Guya2b0f022009-05-22 11:01:49 -0700259 * the bit will not set if it is pure 40MHz case
260 */
Johannes Berg7e6a5882010-08-23 10:46:46 +0200261 if (ht_cap && !ht_cap->ht_supported)
262 return false;
263
Johannes Bergd73e4922010-05-06 12:18:41 -0700264#ifdef CONFIG_IWLWIFI_DEBUGFS
Wey-Yi Guy1e4247d2009-07-27 13:50:15 -0700265 if (priv->disable_ht40)
Johannes Berg7e6a5882010-08-23 10:46:46 +0200266 return false;
Wey-Yi Guy1e4247d2009-07-27 13:50:15 -0700267#endif
Johannes Berg7e6a5882010-08-23 10:46:46 +0200268
Wey-Yi Guy611d3eb2009-06-12 13:22:51 -0700269 return iwl_is_channel_extension(priv, priv->band,
Johannes Berg246ed352010-08-23 10:46:32 +0200270 le16_to_cpu(ctx->staging.channel),
Johannes Berg7e6a5882010-08-23 10:46:46 +0200271 ctx->ht.extension_chan_offset);
Tomas Winkler47c51962008-05-05 10:22:41 +0800272}
Tomas Winkler47c51962008-05-05 10:22:41 +0800273
Tomas Winkler2c2f3b32009-06-19 13:52:45 -0700274static u16 iwl_adjust_beacon_interval(u16 beacon_val, u16 max_beacon_val)
275{
Johannes Bergea196fd2010-09-03 06:30:55 -0700276 u16 new_val;
277 u16 beacon_factor;
278
279 /*
280 * If mac80211 hasn't given us a beacon interval, program
281 * the default into the device (not checking this here
282 * would cause the adjustment below to return the maximum
283 * value, which may break PAN.)
284 */
285 if (!beacon_val)
286 return DEFAULT_BEACON_INTERVAL;
287
288 /*
289 * If the beacon interval we obtained from the peer
290 * is too large, we'll have to wake up more often
291 * (and in IBSS case, we'll beacon too much)
292 *
293 * For example, if max_beacon_val is 4096, and the
294 * requested beacon interval is 7000, we'll have to
295 * use 3500 to be able to wake up on the beacons.
296 *
297 * This could badly influence beacon detection stats.
298 */
Tomas Winkler2c2f3b32009-06-19 13:52:45 -0700299
300 beacon_factor = (beacon_val + max_beacon_val) / max_beacon_val;
301 new_val = beacon_val / beacon_factor;
302
303 if (!new_val)
304 new_val = max_beacon_val;
305
306 return new_val;
307}
308
Johannes Berg47313e32010-08-23 10:46:55 +0200309int iwl_send_rxon_timing(struct iwl_priv *priv, struct iwl_rxon_context *ctx)
Tomas Winkler2c2f3b32009-06-19 13:52:45 -0700310{
311 u64 tsf;
312 s32 interval_tm, rem;
Tomas Winkler2c2f3b32009-06-19 13:52:45 -0700313 struct ieee80211_conf *conf = NULL;
314 u16 beacon_int;
Johannes Berg47313e32010-08-23 10:46:55 +0200315 struct ieee80211_vif *vif = ctx->vif;
Tomas Winkler2c2f3b32009-06-19 13:52:45 -0700316
Emmanuel Grumbach8c222542011-10-10 07:27:16 -0700317 conf = &priv->hw->conf;
Tomas Winkler2c2f3b32009-06-19 13:52:45 -0700318
Johannes Bergb1eea292012-03-06 13:30:42 -0800319 lockdep_assert_held(&priv->mutex);
Johannes Berg948f5a22010-07-29 07:07:51 -0700320
Johannes Berg246ed352010-08-23 10:46:32 +0200321 memset(&ctx->timing, 0, sizeof(struct iwl_rxon_time_cmd));
Johannes Berg948f5a22010-07-29 07:07:51 -0700322
Johannes Berg246ed352010-08-23 10:46:32 +0200323 ctx->timing.timestamp = cpu_to_le64(priv->timestamp);
324 ctx->timing.listen_interval = cpu_to_le16(conf->listen_interval);
Tomas Winkler2c2f3b32009-06-19 13:52:45 -0700325
Johannes Berg47313e32010-08-23 10:46:55 +0200326 beacon_int = vif ? vif->bss_conf.beacon_int : 0;
Tomas Winkler2c2f3b32009-06-19 13:52:45 -0700327
Johannes Berg47313e32010-08-23 10:46:55 +0200328 /*
329 * TODO: For IBSS we need to get atim_window from mac80211,
330 * for now just always use 0
331 */
332 ctx->timing.atim_window = 0;
Tomas Winkler2c2f3b32009-06-19 13:52:45 -0700333
Johannes Bergbde45302010-08-23 10:46:57 +0200334 if (ctx->ctxid == IWL_RXON_CTX_PAN &&
Johannes Bergf1f270b2010-09-03 06:31:26 -0700335 (!ctx->vif || ctx->vif->type != NL80211_IFTYPE_STATION) &&
336 iwl_is_associated(priv, IWL_RXON_CTX_BSS) &&
337 priv->contexts[IWL_RXON_CTX_BSS].vif &&
338 priv->contexts[IWL_RXON_CTX_BSS].vif->bss_conf.beacon_int) {
Johannes Bergbde45302010-08-23 10:46:57 +0200339 ctx->timing.beacon_interval =
340 priv->contexts[IWL_RXON_CTX_BSS].timing.beacon_interval;
341 beacon_int = le16_to_cpu(ctx->timing.beacon_interval);
Johannes Bergf1f270b2010-09-03 06:31:26 -0700342 } else if (ctx->ctxid == IWL_RXON_CTX_BSS &&
343 iwl_is_associated(priv, IWL_RXON_CTX_PAN) &&
344 priv->contexts[IWL_RXON_CTX_PAN].vif &&
345 priv->contexts[IWL_RXON_CTX_PAN].vif->bss_conf.beacon_int &&
346 (!iwl_is_associated_ctx(ctx) || !ctx->vif ||
347 !ctx->vif->bss_conf.beacon_int)) {
348 ctx->timing.beacon_interval =
349 priv->contexts[IWL_RXON_CTX_PAN].timing.beacon_interval;
350 beacon_int = le16_to_cpu(ctx->timing.beacon_interval);
Johannes Bergbde45302010-08-23 10:46:57 +0200351 } else {
352 beacon_int = iwl_adjust_beacon_interval(beacon_int,
Emmanuel Grumbachab9e2122011-08-25 23:11:10 -0700353 IWL_MAX_UCODE_BEACON_INTERVAL * TIME_UNIT);
Johannes Bergbde45302010-08-23 10:46:57 +0200354 ctx->timing.beacon_interval = cpu_to_le16(beacon_int);
355 }
Tomas Winkler2c2f3b32009-06-19 13:52:45 -0700356
Johannes Bergbbb05cb2011-07-18 01:59:22 -0700357 ctx->beacon_int = beacon_int;
358
Tomas Winkler2c2f3b32009-06-19 13:52:45 -0700359 tsf = priv->timestamp; /* tsf is modifed by do_div: copy it */
Wey-Yi Guyf8525e52010-05-05 11:31:38 -0700360 interval_tm = beacon_int * TIME_UNIT;
Tomas Winkler2c2f3b32009-06-19 13:52:45 -0700361 rem = do_div(tsf, interval_tm);
Johannes Berg246ed352010-08-23 10:46:32 +0200362 ctx->timing.beacon_init_val = cpu_to_le32(interval_tm - rem);
Tomas Winkler2c2f3b32009-06-19 13:52:45 -0700363
Johannes Berg47313e32010-08-23 10:46:55 +0200364 ctx->timing.dtim_period = vif ? (vif->bss_conf.dtim_period ?: 1) : 1;
Johannes Berg2491fa42010-08-23 10:46:52 +0200365
Tomas Winkler2c2f3b32009-06-19 13:52:45 -0700366 IWL_DEBUG_ASSOC(priv,
367 "beacon interval %d beacon timer %d beacon tim %d\n",
Johannes Berg246ed352010-08-23 10:46:32 +0200368 le16_to_cpu(ctx->timing.beacon_interval),
369 le32_to_cpu(ctx->timing.beacon_init_val),
370 le16_to_cpu(ctx->timing.atim_window));
Johannes Berg948f5a22010-07-29 07:07:51 -0700371
Johannes Berge10a0532012-03-06 13:30:39 -0800372 return iwl_dvm_send_cmd_pdu(priv, ctx->rxon_timing_cmd,
Emmanuel Grumbache419d622011-07-08 08:46:14 -0700373 CMD_SYNC, sizeof(ctx->timing), &ctx->timing);
Tomas Winkler2c2f3b32009-06-19 13:52:45 -0700374}
Tomas Winkler2c2f3b32009-06-19 13:52:45 -0700375
Johannes Berg246ed352010-08-23 10:46:32 +0200376void iwl_set_rxon_hwcrypto(struct iwl_priv *priv, struct iwl_rxon_context *ctx,
377 int hw_decrypt)
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800378{
Johannes Berg246ed352010-08-23 10:46:32 +0200379 struct iwl_rxon_cmd *rxon = &ctx->staging;
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800380
381 if (hw_decrypt)
382 rxon->filter_flags &= ~RXON_FILTER_DIS_DECRYPT_MSK;
383 else
384 rxon->filter_flags |= RXON_FILTER_DIS_DECRYPT_MSK;
385
386}
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800387
Johannes Bergdacefed2010-10-07 04:02:03 -0700388/* validate RXON structure is valid */
Johannes Berg246ed352010-08-23 10:46:32 +0200389int iwl_check_rxon_cmd(struct iwl_priv *priv, struct iwl_rxon_context *ctx)
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800390{
Johannes Berg246ed352010-08-23 10:46:32 +0200391 struct iwl_rxon_cmd *rxon = &ctx->staging;
Johannes Bergc914ac22011-04-21 10:57:23 -0700392 u32 errors = 0;
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800393
394 if (rxon->flags & RXON_FLG_BAND_24G_MSK) {
Johannes Bergdacefed2010-10-07 04:02:03 -0700395 if (rxon->flags & RXON_FLG_TGJ_NARROW_BAND_MSK) {
396 IWL_WARN(priv, "check 2.4G: wrong narrow\n");
Johannes Bergc914ac22011-04-21 10:57:23 -0700397 errors |= BIT(0);
Johannes Bergdacefed2010-10-07 04:02:03 -0700398 }
399 if (rxon->flags & RXON_FLG_RADAR_DETECT_MSK) {
400 IWL_WARN(priv, "check 2.4G: wrong radar\n");
Johannes Bergc914ac22011-04-21 10:57:23 -0700401 errors |= BIT(1);
Johannes Bergdacefed2010-10-07 04:02:03 -0700402 }
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800403 } else {
Johannes Bergdacefed2010-10-07 04:02:03 -0700404 if (!(rxon->flags & RXON_FLG_SHORT_SLOT_MSK)) {
405 IWL_WARN(priv, "check 5.2G: not short slot!\n");
Johannes Bergc914ac22011-04-21 10:57:23 -0700406 errors |= BIT(2);
Johannes Bergdacefed2010-10-07 04:02:03 -0700407 }
408 if (rxon->flags & RXON_FLG_CCK_MSK) {
409 IWL_WARN(priv, "check 5.2G: CCK!\n");
Johannes Bergc914ac22011-04-21 10:57:23 -0700410 errors |= BIT(3);
Johannes Bergdacefed2010-10-07 04:02:03 -0700411 }
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800412 }
Johannes Bergdacefed2010-10-07 04:02:03 -0700413 if ((rxon->node_addr[0] | rxon->bssid_addr[0]) & 0x1) {
414 IWL_WARN(priv, "mac/bssid mcast!\n");
Johannes Bergc914ac22011-04-21 10:57:23 -0700415 errors |= BIT(4);
Johannes Bergdacefed2010-10-07 04:02:03 -0700416 }
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800417
418 /* make sure basic rates 6Mbps and 1Mbps are supported */
Johannes Bergdacefed2010-10-07 04:02:03 -0700419 if ((rxon->ofdm_basic_rates & IWL_RATE_6M_MASK) == 0 &&
420 (rxon->cck_basic_rates & IWL_RATE_1M_MASK) == 0) {
421 IWL_WARN(priv, "neither 1 nor 6 are basic\n");
Johannes Bergc914ac22011-04-21 10:57:23 -0700422 errors |= BIT(5);
Johannes Bergdacefed2010-10-07 04:02:03 -0700423 }
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800424
Johannes Bergdacefed2010-10-07 04:02:03 -0700425 if (le16_to_cpu(rxon->assoc_id) > 2007) {
426 IWL_WARN(priv, "aid > 2007\n");
Johannes Bergc914ac22011-04-21 10:57:23 -0700427 errors |= BIT(6);
Johannes Bergdacefed2010-10-07 04:02:03 -0700428 }
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800429
Johannes Bergdacefed2010-10-07 04:02:03 -0700430 if ((rxon->flags & (RXON_FLG_CCK_MSK | RXON_FLG_SHORT_SLOT_MSK))
431 == (RXON_FLG_CCK_MSK | RXON_FLG_SHORT_SLOT_MSK)) {
432 IWL_WARN(priv, "CCK and short slot\n");
Johannes Bergc914ac22011-04-21 10:57:23 -0700433 errors |= BIT(7);
Johannes Bergdacefed2010-10-07 04:02:03 -0700434 }
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800435
Johannes Bergdacefed2010-10-07 04:02:03 -0700436 if ((rxon->flags & (RXON_FLG_CCK_MSK | RXON_FLG_AUTO_DETECT_MSK))
437 == (RXON_FLG_CCK_MSK | RXON_FLG_AUTO_DETECT_MSK)) {
438 IWL_WARN(priv, "CCK and auto detect");
Johannes Bergc914ac22011-04-21 10:57:23 -0700439 errors |= BIT(8);
Johannes Bergdacefed2010-10-07 04:02:03 -0700440 }
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800441
Johannes Bergdacefed2010-10-07 04:02:03 -0700442 if ((rxon->flags & (RXON_FLG_AUTO_DETECT_MSK |
443 RXON_FLG_TGG_PROTECT_MSK)) ==
444 RXON_FLG_TGG_PROTECT_MSK) {
445 IWL_WARN(priv, "TGg but no auto-detect\n");
Johannes Bergc914ac22011-04-21 10:57:23 -0700446 errors |= BIT(9);
Johannes Bergdacefed2010-10-07 04:02:03 -0700447 }
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800448
Johannes Bergc914ac22011-04-21 10:57:23 -0700449 if (rxon->channel == 0) {
450 IWL_WARN(priv, "zero channel is invalid\n");
451 errors |= BIT(10);
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800452 }
Johannes Bergc914ac22011-04-21 10:57:23 -0700453
454 WARN(errors, "Invalid RXON (%#x), channel %d",
455 errors, le16_to_cpu(rxon->channel));
456
457 return errors ? -EINVAL : 0;
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800458}
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800459
460/**
461 * iwl_full_rxon_required - check if full RXON (vs RXON_ASSOC) cmd is needed
462 * @priv: staging_rxon is compared to active_rxon
463 *
464 * If the RXON structure is changing enough to require a new tune,
465 * or is clearing the RXON_FILTER_ASSOC_MSK, then return 1 to indicate that
466 * a new tune (full RXON command, rather than RXON_ASSOC cmd) is required.
467 */
Johannes Berg246ed352010-08-23 10:46:32 +0200468int iwl_full_rxon_required(struct iwl_priv *priv,
469 struct iwl_rxon_context *ctx)
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800470{
Johannes Berg246ed352010-08-23 10:46:32 +0200471 const struct iwl_rxon_cmd *staging = &ctx->staging;
472 const struct iwl_rxon_cmd *active = &ctx->active;
473
474#define CHK(cond) \
475 if ((cond)) { \
476 IWL_DEBUG_INFO(priv, "need full RXON - " #cond "\n"); \
477 return 1; \
478 }
479
480#define CHK_NEQ(c1, c2) \
481 if ((c1) != (c2)) { \
482 IWL_DEBUG_INFO(priv, "need full RXON - " \
483 #c1 " != " #c2 " - %d != %d\n", \
484 (c1), (c2)); \
485 return 1; \
486 }
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800487
488 /* These items are only settable from the full RXON command */
Johannes Berg246ed352010-08-23 10:46:32 +0200489 CHK(!iwl_is_associated_ctx(ctx));
490 CHK(compare_ether_addr(staging->bssid_addr, active->bssid_addr));
491 CHK(compare_ether_addr(staging->node_addr, active->node_addr));
492 CHK(compare_ether_addr(staging->wlap_bssid_addr,
493 active->wlap_bssid_addr));
494 CHK_NEQ(staging->dev_type, active->dev_type);
495 CHK_NEQ(staging->channel, active->channel);
496 CHK_NEQ(staging->air_propagation, active->air_propagation);
497 CHK_NEQ(staging->ofdm_ht_single_stream_basic_rates,
498 active->ofdm_ht_single_stream_basic_rates);
499 CHK_NEQ(staging->ofdm_ht_dual_stream_basic_rates,
500 active->ofdm_ht_dual_stream_basic_rates);
501 CHK_NEQ(staging->ofdm_ht_triple_stream_basic_rates,
502 active->ofdm_ht_triple_stream_basic_rates);
503 CHK_NEQ(staging->assoc_id, active->assoc_id);
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800504
505 /* flags, filter_flags, ofdm_basic_rates, and cck_basic_rates can
506 * be updated with the RXON_ASSOC command -- however only some
507 * flag transitions are allowed using RXON_ASSOC */
508
509 /* Check if we are not switching bands */
Johannes Berg246ed352010-08-23 10:46:32 +0200510 CHK_NEQ(staging->flags & RXON_FLG_BAND_24G_MSK,
511 active->flags & RXON_FLG_BAND_24G_MSK);
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800512
513 /* Check if we are switching association toggle */
Johannes Berg246ed352010-08-23 10:46:32 +0200514 CHK_NEQ(staging->filter_flags & RXON_FILTER_ASSOC_MSK,
515 active->filter_flags & RXON_FILTER_ASSOC_MSK);
516
517#undef CHK
518#undef CHK_NEQ
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800519
520 return 0;
521}
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800522
Johannes Berg246ed352010-08-23 10:46:32 +0200523static void _iwl_set_rxon_ht(struct iwl_priv *priv,
524 struct iwl_ht_config *ht_conf,
525 struct iwl_rxon_context *ctx)
Tomas Winkler47c51962008-05-05 10:22:41 +0800526{
Johannes Berg246ed352010-08-23 10:46:32 +0200527 struct iwl_rxon_cmd *rxon = &ctx->staging;
Tomas Winkler47c51962008-05-05 10:22:41 +0800528
Johannes Berg7e6a5882010-08-23 10:46:46 +0200529 if (!ctx->ht.enabled) {
Wey-Yi Guya2b0f022009-05-22 11:01:49 -0700530 rxon->flags &= ~(RXON_FLG_CHANNEL_MODE_MSK |
Emmanuel Grumbach42eb7c62008-09-17 10:10:05 +0800531 RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK |
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700532 RXON_FLG_HT40_PROT_MSK |
Emmanuel Grumbach42eb7c62008-09-17 10:10:05 +0800533 RXON_FLG_HT_PROT_MSK);
Tomas Winkler47c51962008-05-05 10:22:41 +0800534 return;
Emmanuel Grumbach42eb7c62008-09-17 10:10:05 +0800535 }
Tomas Winkler47c51962008-05-05 10:22:41 +0800536
Johannes Berg7e6a5882010-08-23 10:46:46 +0200537 /* FIXME: if the definition of ht.protection changed, the "translation"
Wey-Yi Guya2b0f022009-05-22 11:01:49 -0700538 * will be needed for rxon->flags
539 */
Johannes Berg7e6a5882010-08-23 10:46:46 +0200540 rxon->flags |= cpu_to_le32(ctx->ht.protection << RXON_FLG_HT_OPERATING_MODE_POS);
Tomas Winkler47c51962008-05-05 10:22:41 +0800541
Wey-Yi Guya2b0f022009-05-22 11:01:49 -0700542 /* Set up channel bandwidth:
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700543 * 20 MHz only, 20/40 mixed or pure 40 if ht40 ok */
Wey-Yi Guya2b0f022009-05-22 11:01:49 -0700544 /* clear the HT channel mode before set the mode */
545 rxon->flags &= ~(RXON_FLG_CHANNEL_MODE_MSK |
546 RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK);
Johannes Berg7e6a5882010-08-23 10:46:46 +0200547 if (iwl_is_ht40_tx_allowed(priv, ctx, NULL)) {
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700548 /* pure ht40 */
Johannes Berg7e6a5882010-08-23 10:46:46 +0200549 if (ctx->ht.protection == IEEE80211_HT_OP_MODE_PROTECTION_20MHZ) {
Wey-Yi Guya2b0f022009-05-22 11:01:49 -0700550 rxon->flags |= RXON_FLG_CHANNEL_MODE_PURE_40;
Wey-Yi Guy508b08e2009-06-12 13:22:50 -0700551 /* Note: control channel is opposite of extension channel */
Johannes Berg7e6a5882010-08-23 10:46:46 +0200552 switch (ctx->ht.extension_chan_offset) {
Wey-Yi Guy508b08e2009-06-12 13:22:50 -0700553 case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
554 rxon->flags &= ~RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK;
555 break;
556 case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
557 rxon->flags |= RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK;
558 break;
559 }
560 } else {
Wey-Yi Guya2b0f022009-05-22 11:01:49 -0700561 /* Note: control channel is opposite of extension channel */
Johannes Berg7e6a5882010-08-23 10:46:46 +0200562 switch (ctx->ht.extension_chan_offset) {
Wey-Yi Guya2b0f022009-05-22 11:01:49 -0700563 case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
564 rxon->flags &= ~(RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK);
565 rxon->flags |= RXON_FLG_CHANNEL_MODE_MIXED;
566 break;
567 case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
568 rxon->flags |= RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK;
569 rxon->flags |= RXON_FLG_CHANNEL_MODE_MIXED;
570 break;
571 case IEEE80211_HT_PARAM_CHA_SEC_NONE:
572 default:
573 /* channel location only valid if in Mixed mode */
574 IWL_ERR(priv, "invalid extension channel offset\n");
575 break;
576 }
577 }
578 } else {
579 rxon->flags |= RXON_FLG_CHANNEL_MODE_LEGACY;
Tomas Winkler47c51962008-05-05 10:22:41 +0800580 }
581
Wey-Yi Guye3f10ce2011-07-01 07:59:26 -0700582 iwlagn_set_rxon_chain(priv, ctx);
Tomas Winkler47c51962008-05-05 10:22:41 +0800583
Johannes Berg02bb1be2009-09-11 10:38:17 -0700584 IWL_DEBUG_ASSOC(priv, "rxon flags 0x%X operation mode :0x%X "
Johannes Bergae5eb022008-10-14 16:58:37 +0200585 "extension channel offset 0x%x\n",
Johannes Berg7e6a5882010-08-23 10:46:46 +0200586 le32_to_cpu(rxon->flags), ctx->ht.protection,
587 ctx->ht.extension_chan_offset);
Tomas Winkler47c51962008-05-05 10:22:41 +0800588}
Johannes Berg246ed352010-08-23 10:46:32 +0200589
590void iwl_set_rxon_ht(struct iwl_priv *priv, struct iwl_ht_config *ht_conf)
591{
592 struct iwl_rxon_context *ctx;
593
594 for_each_context(priv, ctx)
595 _iwl_set_rxon_ht(priv, ht_conf, ctx);
596}
Tomas Winkler47c51962008-05-05 10:22:41 +0800597
Johannes Berg246ed352010-08-23 10:46:32 +0200598/* Return valid, unused, channel for a passive scan to reset the RF */
Abhijeet Kolekar14023642010-06-02 21:15:10 -0700599u8 iwl_get_single_channel_number(struct iwl_priv *priv,
Johannes Berg246ed352010-08-23 10:46:32 +0200600 enum ieee80211_band band)
Abhijeet Kolekar14023642010-06-02 21:15:10 -0700601{
602 const struct iwl_channel_info *ch_info;
603 int i;
604 u8 channel = 0;
Johannes Berg246ed352010-08-23 10:46:32 +0200605 u8 min, max;
606 struct iwl_rxon_context *ctx;
Abhijeet Kolekar14023642010-06-02 21:15:10 -0700607
Abhijeet Kolekar14023642010-06-02 21:15:10 -0700608 if (band == IEEE80211_BAND_5GHZ) {
Johannes Berg246ed352010-08-23 10:46:32 +0200609 min = 14;
610 max = priv->channel_count;
Abhijeet Kolekar14023642010-06-02 21:15:10 -0700611 } else {
Johannes Berg246ed352010-08-23 10:46:32 +0200612 min = 0;
613 max = 14;
614 }
615
616 for (i = min; i < max; i++) {
617 bool busy = false;
618
619 for_each_context(priv, ctx) {
620 busy = priv->channel_info[i].channel ==
621 le16_to_cpu(ctx->staging.channel);
622 if (busy)
623 break;
Abhijeet Kolekar14023642010-06-02 21:15:10 -0700624 }
Johannes Berg246ed352010-08-23 10:46:32 +0200625
626 if (busy)
627 continue;
628
629 channel = priv->channel_info[i].channel;
630 ch_info = iwl_get_channel_info(priv, band, channel);
631 if (is_channel_valid(ch_info))
632 break;
Abhijeet Kolekar14023642010-06-02 21:15:10 -0700633 }
634
635 return channel;
636}
Abhijeet Kolekar14023642010-06-02 21:15:10 -0700637
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700638/**
Shanyu Zhao3edb5fd2010-07-27 20:45:15 -0700639 * iwl_set_rxon_channel - Set the band and channel values in staging RXON
640 * @ch: requested channel as a pointer to struct ieee80211_channel
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700641
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700642 * NOTE: Does not commit to the hardware; it sets appropriate bit fields
Shanyu Zhao3edb5fd2010-07-27 20:45:15 -0700643 * in the staging RXON flag structure based on the ch->band
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700644 */
Wey-Yi Guydd63b842012-02-08 15:57:39 -0800645void iwl_set_rxon_channel(struct iwl_priv *priv, struct ieee80211_channel *ch,
Johannes Berg246ed352010-08-23 10:46:32 +0200646 struct iwl_rxon_context *ctx)
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700647{
Tomas Winkler17e72782008-09-03 11:26:26 +0800648 enum ieee80211_band band = ch->band;
Shanyu Zhao81e95432010-07-28 13:40:27 -0700649 u16 channel = ch->hw_value;
Tomas Winkler17e72782008-09-03 11:26:26 +0800650
Johannes Berg246ed352010-08-23 10:46:32 +0200651 if ((le16_to_cpu(ctx->staging.channel) == channel) &&
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700652 (priv->band == band))
Wey-Yi Guydd63b842012-02-08 15:57:39 -0800653 return;
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700654
Johannes Berg246ed352010-08-23 10:46:32 +0200655 ctx->staging.channel = cpu_to_le16(channel);
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700656 if (band == IEEE80211_BAND_5GHZ)
Johannes Berg246ed352010-08-23 10:46:32 +0200657 ctx->staging.flags &= ~RXON_FLG_BAND_24G_MSK;
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700658 else
Johannes Berg246ed352010-08-23 10:46:32 +0200659 ctx->staging.flags |= RXON_FLG_BAND_24G_MSK;
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700660
661 priv->band = band;
662
Tomas Winklere1623442009-01-27 14:27:56 -0800663 IWL_DEBUG_INFO(priv, "Staging channel set to %d [%d]\n", channel, band);
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700664
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700665}
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700666
Wey-Yi Guy79d07322010-05-06 08:54:11 -0700667void iwl_set_flags_for_band(struct iwl_priv *priv,
Johannes Berg246ed352010-08-23 10:46:32 +0200668 struct iwl_rxon_context *ctx,
Wey-Yi Guy79d07322010-05-06 08:54:11 -0700669 enum ieee80211_band band,
670 struct ieee80211_vif *vif)
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800671{
672 if (band == IEEE80211_BAND_5GHZ) {
Johannes Berg246ed352010-08-23 10:46:32 +0200673 ctx->staging.flags &=
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800674 ~(RXON_FLG_BAND_24G_MSK | RXON_FLG_AUTO_DETECT_MSK
675 | RXON_FLG_CCK_MSK);
Johannes Berg246ed352010-08-23 10:46:32 +0200676 ctx->staging.flags |= RXON_FLG_SHORT_SLOT_MSK;
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800677 } else {
678 /* Copied from iwl_post_associate() */
Johannes Bergc213d742010-05-06 12:21:40 -0700679 if (vif && vif->bss_conf.use_short_slot)
Johannes Berg246ed352010-08-23 10:46:32 +0200680 ctx->staging.flags |= RXON_FLG_SHORT_SLOT_MSK;
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800681 else
Johannes Berg246ed352010-08-23 10:46:32 +0200682 ctx->staging.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800683
Johannes Berg246ed352010-08-23 10:46:32 +0200684 ctx->staging.flags |= RXON_FLG_BAND_24G_MSK;
685 ctx->staging.flags |= RXON_FLG_AUTO_DETECT_MSK;
686 ctx->staging.flags &= ~RXON_FLG_CCK_MSK;
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800687 }
688}
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800689
690/*
691 * initialize rxon structure with default values from eeprom
692 */
Johannes Berg1dda6d22010-04-29 04:43:06 -0700693void iwl_connection_init_rx_config(struct iwl_priv *priv,
Johannes Bergd0fe4782010-08-23 10:46:58 +0200694 struct iwl_rxon_context *ctx)
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800695{
696 const struct iwl_channel_info *ch_info;
697
Johannes Berg246ed352010-08-23 10:46:32 +0200698 memset(&ctx->staging, 0, sizeof(ctx->staging));
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800699
Johannes Bergd0fe4782010-08-23 10:46:58 +0200700 if (!ctx->vif) {
701 ctx->staging.dev_type = ctx->unused_devtype;
702 } else switch (ctx->vif->type) {
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800703 case NL80211_IFTYPE_AP:
Johannes Bergd0fe4782010-08-23 10:46:58 +0200704 ctx->staging.dev_type = ctx->ap_devtype;
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800705 break;
706
707 case NL80211_IFTYPE_STATION:
Johannes Bergd0fe4782010-08-23 10:46:58 +0200708 ctx->staging.dev_type = ctx->station_devtype;
Johannes Berg246ed352010-08-23 10:46:32 +0200709 ctx->staging.filter_flags = RXON_FILTER_ACCEPT_GRP_MSK;
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800710 break;
711
712 case NL80211_IFTYPE_ADHOC:
Johannes Bergd0fe4782010-08-23 10:46:58 +0200713 ctx->staging.dev_type = ctx->ibss_devtype;
Johannes Berg246ed352010-08-23 10:46:32 +0200714 ctx->staging.flags = RXON_FLG_SHORT_PREAMBLE_MSK;
715 ctx->staging.filter_flags = RXON_FILTER_BCON_AWARE_MSK |
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800716 RXON_FILTER_ACCEPT_GRP_MSK;
717 break;
718
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800719 default:
Johannes Bergd0fe4782010-08-23 10:46:58 +0200720 IWL_ERR(priv, "Unsupported interface type %d\n",
721 ctx->vif->type);
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800722 break;
723 }
724
725#if 0
726 /* TODO: Figure out when short_preamble would be set and cache from
727 * that */
728 if (!hw_to_local(priv->hw)->short_preamble)
Johannes Berg246ed352010-08-23 10:46:32 +0200729 ctx->staging.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800730 else
Johannes Berg246ed352010-08-23 10:46:32 +0200731 ctx->staging.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800732#endif
733
734 ch_info = iwl_get_channel_info(priv, priv->band,
Johannes Berg246ed352010-08-23 10:46:32 +0200735 le16_to_cpu(ctx->active.channel));
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800736
737 if (!ch_info)
738 ch_info = &priv->channel_info[0];
739
Johannes Berg246ed352010-08-23 10:46:32 +0200740 ctx->staging.channel = cpu_to_le16(ch_info->channel);
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800741 priv->band = ch_info->band;
742
Johannes Bergd0fe4782010-08-23 10:46:58 +0200743 iwl_set_flags_for_band(priv, ctx, priv->band, ctx->vif);
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800744
Johannes Berg246ed352010-08-23 10:46:32 +0200745 ctx->staging.ofdm_basic_rates =
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800746 (IWL_OFDM_RATES_MASK >> IWL_FIRST_OFDM_RATE) & 0xFF;
Johannes Berg246ed352010-08-23 10:46:32 +0200747 ctx->staging.cck_basic_rates =
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800748 (IWL_CCK_RATES_MASK >> IWL_FIRST_CCK_RATE) & 0xF;
749
Wey-Yi Guya2b0f022009-05-22 11:01:49 -0700750 /* clear both MIX and PURE40 mode flag */
Johannes Berg246ed352010-08-23 10:46:32 +0200751 ctx->staging.flags &= ~(RXON_FLG_CHANNEL_MODE_MIXED |
Wey-Yi Guya2b0f022009-05-22 11:01:49 -0700752 RXON_FLG_CHANNEL_MODE_PURE_40);
Johannes Bergd0fe4782010-08-23 10:46:58 +0200753 if (ctx->vif)
754 memcpy(ctx->staging.node_addr, ctx->vif->addr, ETH_ALEN);
Johannes Berg7684c402010-05-12 03:33:11 -0700755
Johannes Berg246ed352010-08-23 10:46:32 +0200756 ctx->staging.ofdm_ht_single_stream_basic_rates = 0xff;
757 ctx->staging.ofdm_ht_dual_stream_basic_rates = 0xff;
758 ctx->staging.ofdm_ht_triple_stream_basic_rates = 0xff;
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800759}
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800760
Wey-Yi Guy79d07322010-05-06 08:54:11 -0700761void iwl_set_rate(struct iwl_priv *priv)
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800762{
763 const struct ieee80211_supported_band *hw = NULL;
764 struct ieee80211_rate *rate;
Johannes Berg246ed352010-08-23 10:46:32 +0200765 struct iwl_rxon_context *ctx;
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800766 int i;
767
768 hw = iwl_get_hw_mode(priv, priv->band);
769 if (!hw) {
770 IWL_ERR(priv, "Failed to set rate: unable to get hw mode\n");
771 return;
772 }
773
774 priv->active_rate = 0;
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800775
776 for (i = 0; i < hw->n_bitrates; i++) {
777 rate = &(hw->bitrates[i]);
Daniel C Halperin50273092009-08-28 09:44:45 -0700778 if (rate->hw_value < IWL_RATE_COUNT_LEGACY)
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800779 priv->active_rate |= (1 << rate->hw_value);
780 }
781
Johannes Berg4a028862010-01-21 11:33:19 -0800782 IWL_DEBUG_RATE(priv, "Set active_rate = %0x\n", priv->active_rate);
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800783
Johannes Berg246ed352010-08-23 10:46:32 +0200784 for_each_context(priv, ctx) {
785 ctx->staging.cck_basic_rates =
786 (IWL_CCK_BASIC_RATES_MASK >> IWL_FIRST_CCK_RATE) & 0xF;
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800787
Johannes Berg246ed352010-08-23 10:46:32 +0200788 ctx->staging.ofdm_basic_rates =
789 (IWL_OFDM_BASIC_RATES_MASK >> IWL_FIRST_OFDM_RATE) & 0xFF;
790 }
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800791}
Wey-Yi Guy79d07322010-05-06 08:54:11 -0700792
793void iwl_chswitch_done(struct iwl_priv *priv, bool is_success)
794{
Johannes Berg8bd413e2010-08-23 10:46:40 +0200795 /*
796 * MULTI-FIXME
Wey-Yi Guyade4c642011-10-10 07:27:11 -0700797 * See iwlagn_mac_channel_switch.
Johannes Berg8bd413e2010-08-23 10:46:40 +0200798 */
799 struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS];
800
Emmanuel Grumbach63013ae2011-08-25 23:10:42 -0700801 if (test_bit(STATUS_EXIT_PENDING, &priv->shrd->status))
Wey-Yi Guy79d07322010-05-06 08:54:11 -0700802 return;
803
Emmanuel Grumbach63013ae2011-08-25 23:10:42 -0700804 if (test_and_clear_bit(STATUS_CHANNEL_SWITCH_PENDING,
805 &priv->shrd->status))
Johannes Berg8bd413e2010-08-23 10:46:40 +0200806 ieee80211_chswitch_done(ctx->vif, is_success);
Wey-Yi Guy79d07322010-05-06 08:54:11 -0700807}
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800808
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800809#ifdef CONFIG_IWLWIFI_DEBUG
Emmanuel Grumbach14991a92011-09-15 11:46:32 -0700810void iwl_print_rx_config_cmd(struct iwl_priv *priv,
811 enum iwl_rxon_context_id ctxid)
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800812{
Emmanuel Grumbach522376d2011-09-06 09:31:19 -0700813 struct iwl_rxon_context *ctx = &priv->contexts[ctxid];
Johannes Berg246ed352010-08-23 10:46:32 +0200814 struct iwl_rxon_cmd *rxon = &ctx->staging;
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800815
Tomas Winklere1623442009-01-27 14:27:56 -0800816 IWL_DEBUG_RADIO(priv, "RX CONFIG:\n");
Reinette Chatre3d816c72009-08-07 15:41:37 -0700817 iwl_print_hex_dump(priv, IWL_DL_RADIO, (u8 *) rxon, sizeof(*rxon));
Tomas Winklere1623442009-01-27 14:27:56 -0800818 IWL_DEBUG_RADIO(priv, "u16 channel: 0x%x\n", le16_to_cpu(rxon->channel));
819 IWL_DEBUG_RADIO(priv, "u32 flags: 0x%08X\n", le32_to_cpu(rxon->flags));
820 IWL_DEBUG_RADIO(priv, "u32 filter_flags: 0x%08x\n",
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800821 le32_to_cpu(rxon->filter_flags));
Tomas Winklere1623442009-01-27 14:27:56 -0800822 IWL_DEBUG_RADIO(priv, "u8 dev_type: 0x%x\n", rxon->dev_type);
823 IWL_DEBUG_RADIO(priv, "u8 ofdm_basic_rates: 0x%02x\n",
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800824 rxon->ofdm_basic_rates);
Tomas Winklere1623442009-01-27 14:27:56 -0800825 IWL_DEBUG_RADIO(priv, "u8 cck_basic_rates: 0x%02x\n", rxon->cck_basic_rates);
826 IWL_DEBUG_RADIO(priv, "u8[6] node_addr: %pM\n", rxon->node_addr);
827 IWL_DEBUG_RADIO(priv, "u8[6] bssid_addr: %pM\n", rxon->bssid_addr);
828 IWL_DEBUG_RADIO(priv, "u16 assoc_id: 0x%x\n", le16_to_cpu(rxon->assoc_id));
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800829}
Reinette Chatre6686d172009-07-24 11:13:13 -0700830#endif
Johannes Berge6494372011-04-05 09:41:58 -0700831
Emmanuel Grumbachbcb93212012-02-09 16:08:15 +0200832static void iwlagn_fw_error(struct iwl_priv *priv, bool ondemand)
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800833{
Wey-Yi Guy491bc292011-02-09 09:37:46 -0800834 unsigned int reload_msec;
835 unsigned long reload_jiffies;
836
Emmanuel Grumbach3e6895c2012-02-15 12:48:04 +0200837#ifdef CONFIG_IWLWIFI_DEBUG
Johannes Berga8bceb32012-03-05 11:24:30 -0800838 if (iwl_have_debug_level(IWL_DL_FW_ERRORS))
Emmanuel Grumbach3e6895c2012-02-15 12:48:04 +0200839 iwl_print_rx_config_cmd(priv, IWL_RXON_CTX_BSS);
840#endif
841
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800842 /* Set the FW error flag -- cleared on iwl_down */
Emmanuel Grumbach63013ae2011-08-25 23:10:42 -0700843 set_bit(STATUS_FW_ERROR, &priv->shrd->status);
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800844
845 /* Cancel currently queued command. */
Emmanuel Grumbach63013ae2011-08-25 23:10:42 -0700846 clear_bit(STATUS_HCMD_ACTIVE, &priv->shrd->status);
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800847
Johannes Berg4bd14dd2012-03-06 13:30:58 -0800848 iwl_abort_notification_waits(&priv->notif_wait);
Johannes Berge74fe232011-04-13 03:14:49 -0700849
Johannes Berge6494372011-04-05 09:41:58 -0700850 /* Keep the restart process from trying to send host
851 * commands by clearing the ready bit */
Emmanuel Grumbach63013ae2011-08-25 23:10:42 -0700852 clear_bit(STATUS_READY, &priv->shrd->status);
Johannes Berge6494372011-04-05 09:41:58 -0700853
Johannes Bergeffd4d92011-09-15 11:46:52 -0700854 wake_up(&priv->shrd->wait_command_queue);
Johannes Berge6494372011-04-05 09:41:58 -0700855
856 if (!ondemand) {
857 /*
858 * If firmware keep reloading, then it indicate something
859 * serious wrong and firmware having problem to recover
860 * from it. Instead of keep trying which will fill the syslog
861 * and hang the system, let's just stop it
862 */
863 reload_jiffies = jiffies;
864 reload_msec = jiffies_to_msecs((long) reload_jiffies -
865 (long) priv->reload_jiffies);
866 priv->reload_jiffies = reload_jiffies;
867 if (reload_msec <= IWL_MIN_RELOAD_DURATION) {
868 priv->reload_count++;
869 if (priv->reload_count >= IWL_MAX_CONTINUE_RELOAD_CNT) {
870 IWL_ERR(priv, "BUG_ON, Stop restarting\n");
871 return;
872 }
873 } else
874 priv->reload_count = 0;
875 }
876
Emmanuel Grumbach63013ae2011-08-25 23:10:42 -0700877 if (!test_bit(STATUS_EXIT_PENDING, &priv->shrd->status)) {
Don Fry9d143e92011-04-20 15:23:57 -0700878 if (iwlagn_mod_params.restart_fw) {
Emmanuel Grumbach9ca06f02011-08-25 23:10:46 -0700879 IWL_DEBUG_FW_ERRORS(priv,
Johannes Berge6494372011-04-05 09:41:58 -0700880 "Restarting adapter due to uCode error.\n");
Johannes Berg1ee158d2012-02-17 10:07:44 -0800881 queue_work(priv->workqueue, &priv->restart);
Johannes Berge6494372011-04-05 09:41:58 -0700882 } else
Emmanuel Grumbach9ca06f02011-08-25 23:10:46 -0700883 IWL_DEBUG_FW_ERRORS(priv,
Johannes Berge6494372011-04-05 09:41:58 -0700884 "Detected FW error, but not restarting\n");
885 }
886}
887
Tomas Winkler630fe9b2008-06-12 09:47:08 +0800888int iwl_set_tx_power(struct iwl_priv *priv, s8 tx_power, bool force)
889{
Stanislaw Gruszkaa25a66a2010-10-22 17:04:26 +0200890 int ret;
891 s8 prev_tx_power;
Stanislaw Gruszkaf844a702011-01-28 16:47:44 +0100892 bool defer;
893 struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS];
Stanislaw Gruszkaa25a66a2010-10-22 17:04:26 +0200894
Johannes Bergb1eea292012-03-06 13:30:42 -0800895 lockdep_assert_held(&priv->mutex);
Stanislaw Gruszkaa25a66a2010-10-22 17:04:26 +0200896
897 if (priv->tx_power_user_lmt == tx_power && !force)
898 return 0;
899
Wey-Yi Guyb744cb72010-03-23 11:37:59 -0700900 if (tx_power < IWLAGN_TX_POWER_TARGET_POWER_MIN) {
901 IWL_WARN(priv,
902 "Requested user TXPOWER %d below lower limit %d.\n",
Wu, Fengguangdaf518d2009-02-13 11:51:17 -0800903 tx_power,
Wey-Yi Guyb744cb72010-03-23 11:37:59 -0700904 IWLAGN_TX_POWER_TARGET_POWER_MIN);
Tomas Winkler630fe9b2008-06-12 09:47:08 +0800905 return -EINVAL;
906 }
907
Wey-Yi Guydc1b0972009-08-21 13:34:16 -0700908 if (tx_power > priv->tx_power_device_lmt) {
Wey-Yi Guy08f2d582009-08-21 13:34:15 -0700909 IWL_WARN(priv,
910 "Requested user TXPOWER %d above upper limit %d.\n",
Wey-Yi Guydc1b0972009-08-21 13:34:16 -0700911 tx_power, priv->tx_power_device_lmt);
Tomas Winkler630fe9b2008-06-12 09:47:08 +0800912 return -EINVAL;
913 }
914
Emmanuel Grumbach845a9c02011-08-25 23:11:04 -0700915 if (!iwl_is_ready_rf(priv->shrd))
Stanislaw Gruszkaa25a66a2010-10-22 17:04:26 +0200916 return -EIO;
Tomas Winkler630fe9b2008-06-12 09:47:08 +0800917
Stanislaw Gruszkaf844a702011-01-28 16:47:44 +0100918 /* scan complete and commit_rxon use tx_power_next value,
919 * it always need to be updated for newest request */
Stanislaw Gruszkaa25a66a2010-10-22 17:04:26 +0200920 priv->tx_power_next = tx_power;
Stanislaw Gruszkaf844a702011-01-28 16:47:44 +0100921
922 /* do not set tx power when scanning or channel changing */
Emmanuel Grumbach63013ae2011-08-25 23:10:42 -0700923 defer = test_bit(STATUS_SCANNING, &priv->shrd->status) ||
Stanislaw Gruszkaf844a702011-01-28 16:47:44 +0100924 memcmp(&ctx->active, &ctx->staging, sizeof(ctx->staging));
925 if (defer && !force) {
926 IWL_DEBUG_INFO(priv, "Deferring tx power set\n");
Stanislaw Gruszkaa25a66a2010-10-22 17:04:26 +0200927 return 0;
Wey-Yi Guy5eadd942009-08-21 13:34:17 -0700928 }
Mohamed Abbas019fb972009-03-17 21:59:18 -0700929
Stanislaw Gruszkaa25a66a2010-10-22 17:04:26 +0200930 prev_tx_power = priv->tx_power_user_lmt;
931 priv->tx_power_user_lmt = tx_power;
932
Wey-Yi Guy5beaaf32011-05-27 08:40:25 -0700933 ret = iwlagn_send_tx_power(priv);
Stanislaw Gruszkaa25a66a2010-10-22 17:04:26 +0200934
935 /* if fail to set tx_power, restore the orig. tx power */
936 if (ret) {
937 priv->tx_power_user_lmt = prev_tx_power;
938 priv->tx_power_next = prev_tx_power;
939 }
Tomas Winkler630fe9b2008-06-12 09:47:08 +0800940 return ret;
941}
Tomas Winkler630fe9b2008-06-12 09:47:08 +0800942
Johannes Berg65b52bd2010-04-13 01:04:31 -0700943void iwl_send_bt_config(struct iwl_priv *priv)
Samuel Ortiz17f841c2009-01-23 13:45:20 -0800944{
945 struct iwl_bt_cmd bt_cmd = {
Wey-Yi Guy456d0f72009-10-23 13:42:23 -0700946 .lead_time = BT_LEAD_TIME_DEF,
947 .max_kill = BT_MAX_KILL_DEF,
Samuel Ortiz17f841c2009-01-23 13:45:20 -0800948 .kill_ack_mask = 0,
949 .kill_cts_mask = 0,
950 };
951
Wey-Yi Guyb60eec92011-06-03 13:52:38 -0700952 if (!iwlagn_mod_params.bt_coex_active)
Wey-Yi Guy06702a72010-01-22 14:22:51 -0800953 bt_cmd.flags = BT_COEX_DISABLE;
954 else
955 bt_cmd.flags = BT_COEX_ENABLE;
956
Wey-Yi Guyf21dd002010-12-08 15:34:52 -0800957 priv->bt_enable_flag = bt_cmd.flags;
Wey-Yi Guy06702a72010-01-22 14:22:51 -0800958 IWL_DEBUG_INFO(priv, "BT coex %s\n",
959 (bt_cmd.flags == BT_COEX_DISABLE) ? "disable" : "active");
960
Johannes Berge10a0532012-03-06 13:30:39 -0800961 if (iwl_dvm_send_cmd_pdu(priv, REPLY_BT_CONFIG,
Emmanuel Grumbache419d622011-07-08 08:46:14 -0700962 CMD_SYNC, sizeof(struct iwl_bt_cmd), &bt_cmd))
Johannes Berg65b52bd2010-04-13 01:04:31 -0700963 IWL_ERR(priv, "failed to send BT Coex Config\n");
Samuel Ortiz17f841c2009-01-23 13:45:20 -0800964}
Samuel Ortiz17f841c2009-01-23 13:45:20 -0800965
Wey-Yi Guyef8d5522009-11-13 11:56:28 -0800966int iwl_send_statistics_request(struct iwl_priv *priv, u8 flags, bool clear)
Emmanuel Grumbach49ea8592008-04-15 16:01:37 -0700967{
Wey-Yi Guyef8d5522009-11-13 11:56:28 -0800968 struct iwl_statistics_cmd statistics_cmd = {
969 .configuration_flags =
970 clear ? IWL_STATS_CONF_CLEAR_STATS : 0,
Emmanuel Grumbach49ea8592008-04-15 16:01:37 -0700971 };
Wey-Yi Guyef8d5522009-11-13 11:56:28 -0800972
973 if (flags & CMD_ASYNC)
Johannes Berge10a0532012-03-06 13:30:39 -0800974 return iwl_dvm_send_cmd_pdu(priv, REPLY_STATISTICS_CMD,
Emmanuel Grumbache419d622011-07-08 08:46:14 -0700975 CMD_ASYNC,
Wey-Yi Guyef8d5522009-11-13 11:56:28 -0800976 sizeof(struct iwl_statistics_cmd),
Emmanuel Grumbache419d622011-07-08 08:46:14 -0700977 &statistics_cmd);
Wey-Yi Guyef8d5522009-11-13 11:56:28 -0800978 else
Johannes Berge10a0532012-03-06 13:30:39 -0800979 return iwl_dvm_send_cmd_pdu(priv, REPLY_STATISTICS_CMD,
Emmanuel Grumbache419d622011-07-08 08:46:14 -0700980 CMD_SYNC,
Wey-Yi Guyef8d5522009-11-13 11:56:28 -0800981 sizeof(struct iwl_statistics_cmd),
982 &statistics_cmd);
Emmanuel Grumbach49ea8592008-04-15 16:01:37 -0700983}
Tomas Winkler7e8c5192008-04-15 16:01:43 -0700984
Abhijeet Kolekar488829f2009-03-26 10:14:10 -0700985
Johannes Bergdf912e52011-11-10 06:55:12 -0800986
Abhijeet Kolekard8052312009-04-08 11:26:47 -0700987
Wey-Yi Guy20594eb2009-08-07 15:41:39 -0700988#ifdef CONFIG_IWLWIFI_DEBUGFS
989
990#define IWL_TRAFFIC_DUMP_SIZE (IWL_TRAFFIC_ENTRY_SIZE * IWL_TRAFFIC_ENTRIES)
991
992void iwl_reset_traffic_log(struct iwl_priv *priv)
993{
994 priv->tx_traffic_idx = 0;
995 priv->rx_traffic_idx = 0;
996 if (priv->tx_traffic)
997 memset(priv->tx_traffic, 0, IWL_TRAFFIC_DUMP_SIZE);
998 if (priv->rx_traffic)
999 memset(priv->rx_traffic, 0, IWL_TRAFFIC_DUMP_SIZE);
1000}
1001
1002int iwl_alloc_traffic_mem(struct iwl_priv *priv)
1003{
1004 u32 traffic_size = IWL_TRAFFIC_DUMP_SIZE;
1005
Johannes Berga8bceb32012-03-05 11:24:30 -08001006 if (iwl_have_debug_level(IWL_DL_TX)) {
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07001007 if (!priv->tx_traffic) {
1008 priv->tx_traffic =
1009 kzalloc(traffic_size, GFP_KERNEL);
1010 if (!priv->tx_traffic)
1011 return -ENOMEM;
1012 }
1013 }
Johannes Berga8bceb32012-03-05 11:24:30 -08001014 if (iwl_have_debug_level(IWL_DL_RX)) {
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07001015 if (!priv->rx_traffic) {
1016 priv->rx_traffic =
1017 kzalloc(traffic_size, GFP_KERNEL);
1018 if (!priv->rx_traffic)
1019 return -ENOMEM;
1020 }
1021 }
1022 iwl_reset_traffic_log(priv);
1023 return 0;
1024}
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07001025
1026void iwl_free_traffic_mem(struct iwl_priv *priv)
1027{
1028 kfree(priv->tx_traffic);
1029 priv->tx_traffic = NULL;
1030
1031 kfree(priv->rx_traffic);
1032 priv->rx_traffic = NULL;
1033}
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07001034
1035void iwl_dbg_log_tx_data_frame(struct iwl_priv *priv,
1036 u16 length, struct ieee80211_hdr *header)
1037{
1038 __le16 fc;
1039 u16 len;
1040
Johannes Berga8bceb32012-03-05 11:24:30 -08001041 if (likely(!iwl_have_debug_level(IWL_DL_TX)))
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07001042 return;
1043
1044 if (!priv->tx_traffic)
1045 return;
1046
1047 fc = header->frame_control;
1048 if (ieee80211_is_data(fc)) {
1049 len = (length > IWL_TRAFFIC_ENTRY_SIZE)
1050 ? IWL_TRAFFIC_ENTRY_SIZE : length;
1051 memcpy((priv->tx_traffic +
1052 (priv->tx_traffic_idx * IWL_TRAFFIC_ENTRY_SIZE)),
1053 header, len);
1054 priv->tx_traffic_idx =
1055 (priv->tx_traffic_idx + 1) % IWL_TRAFFIC_ENTRIES;
1056 }
1057}
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07001058
1059void iwl_dbg_log_rx_data_frame(struct iwl_priv *priv,
1060 u16 length, struct ieee80211_hdr *header)
1061{
1062 __le16 fc;
1063 u16 len;
1064
Johannes Berga8bceb32012-03-05 11:24:30 -08001065 if (likely(!iwl_have_debug_level(IWL_DL_RX)))
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07001066 return;
1067
1068 if (!priv->rx_traffic)
1069 return;
1070
1071 fc = header->frame_control;
1072 if (ieee80211_is_data(fc)) {
1073 len = (length > IWL_TRAFFIC_ENTRY_SIZE)
1074 ? IWL_TRAFFIC_ENTRY_SIZE : length;
1075 memcpy((priv->rx_traffic +
1076 (priv->rx_traffic_idx * IWL_TRAFFIC_ENTRY_SIZE)),
1077 header, len);
1078 priv->rx_traffic_idx =
1079 (priv->rx_traffic_idx + 1) % IWL_TRAFFIC_ENTRIES;
1080 }
1081}
Wey-Yi Guy22fdf3c2009-08-07 15:41:40 -07001082
1083const char *get_mgmt_string(int cmd)
1084{
1085 switch (cmd) {
1086 IWL_CMD(MANAGEMENT_ASSOC_REQ);
1087 IWL_CMD(MANAGEMENT_ASSOC_RESP);
1088 IWL_CMD(MANAGEMENT_REASSOC_REQ);
1089 IWL_CMD(MANAGEMENT_REASSOC_RESP);
1090 IWL_CMD(MANAGEMENT_PROBE_REQ);
1091 IWL_CMD(MANAGEMENT_PROBE_RESP);
1092 IWL_CMD(MANAGEMENT_BEACON);
1093 IWL_CMD(MANAGEMENT_ATIM);
1094 IWL_CMD(MANAGEMENT_DISASSOC);
1095 IWL_CMD(MANAGEMENT_AUTH);
1096 IWL_CMD(MANAGEMENT_DEAUTH);
1097 IWL_CMD(MANAGEMENT_ACTION);
1098 default:
1099 return "UNKNOWN";
1100
1101 }
1102}
1103
1104const char *get_ctrl_string(int cmd)
1105{
1106 switch (cmd) {
1107 IWL_CMD(CONTROL_BACK_REQ);
1108 IWL_CMD(CONTROL_BACK);
1109 IWL_CMD(CONTROL_PSPOLL);
1110 IWL_CMD(CONTROL_RTS);
1111 IWL_CMD(CONTROL_CTS);
1112 IWL_CMD(CONTROL_ACK);
1113 IWL_CMD(CONTROL_CFEND);
1114 IWL_CMD(CONTROL_CFENDACK);
1115 default:
1116 return "UNKNOWN";
1117
1118 }
1119}
1120
Wey-Yi Guy7163b8a2009-11-20 12:04:56 -08001121void iwl_clear_traffic_stats(struct iwl_priv *priv)
Wey-Yi Guy22fdf3c2009-08-07 15:41:40 -07001122{
1123 memset(&priv->tx_stats, 0, sizeof(struct traffic_stats));
Wey-Yi Guy22fdf3c2009-08-07 15:41:40 -07001124 memset(&priv->rx_stats, 0, sizeof(struct traffic_stats));
1125}
1126
1127/*
1128 * if CONFIG_IWLWIFI_DEBUGFS defined, iwl_update_stats function will
1129 * record all the MGMT, CTRL and DATA pkt for both TX and Rx pass.
1130 * Use debugFs to display the rx/rx_statistics
1131 * if CONFIG_IWLWIFI_DEBUGFS not being defined, then no MGMT and CTRL
1132 * information will be recorded, but DATA pkt still will be recorded
1133 * for the reason of iwl_led.c need to control the led blinking based on
1134 * number of tx and rx data.
1135 *
1136 */
1137void iwl_update_stats(struct iwl_priv *priv, bool is_tx, __le16 fc, u16 len)
1138{
1139 struct traffic_stats *stats;
1140
1141 if (is_tx)
1142 stats = &priv->tx_stats;
1143 else
1144 stats = &priv->rx_stats;
1145
1146 if (ieee80211_is_mgmt(fc)) {
1147 switch (fc & cpu_to_le16(IEEE80211_FCTL_STYPE)) {
1148 case cpu_to_le16(IEEE80211_STYPE_ASSOC_REQ):
1149 stats->mgmt[MANAGEMENT_ASSOC_REQ]++;
1150 break;
1151 case cpu_to_le16(IEEE80211_STYPE_ASSOC_RESP):
1152 stats->mgmt[MANAGEMENT_ASSOC_RESP]++;
1153 break;
1154 case cpu_to_le16(IEEE80211_STYPE_REASSOC_REQ):
1155 stats->mgmt[MANAGEMENT_REASSOC_REQ]++;
1156 break;
1157 case cpu_to_le16(IEEE80211_STYPE_REASSOC_RESP):
1158 stats->mgmt[MANAGEMENT_REASSOC_RESP]++;
1159 break;
1160 case cpu_to_le16(IEEE80211_STYPE_PROBE_REQ):
1161 stats->mgmt[MANAGEMENT_PROBE_REQ]++;
1162 break;
1163 case cpu_to_le16(IEEE80211_STYPE_PROBE_RESP):
1164 stats->mgmt[MANAGEMENT_PROBE_RESP]++;
1165 break;
1166 case cpu_to_le16(IEEE80211_STYPE_BEACON):
1167 stats->mgmt[MANAGEMENT_BEACON]++;
1168 break;
1169 case cpu_to_le16(IEEE80211_STYPE_ATIM):
1170 stats->mgmt[MANAGEMENT_ATIM]++;
1171 break;
1172 case cpu_to_le16(IEEE80211_STYPE_DISASSOC):
1173 stats->mgmt[MANAGEMENT_DISASSOC]++;
1174 break;
1175 case cpu_to_le16(IEEE80211_STYPE_AUTH):
1176 stats->mgmt[MANAGEMENT_AUTH]++;
1177 break;
1178 case cpu_to_le16(IEEE80211_STYPE_DEAUTH):
1179 stats->mgmt[MANAGEMENT_DEAUTH]++;
1180 break;
1181 case cpu_to_le16(IEEE80211_STYPE_ACTION):
1182 stats->mgmt[MANAGEMENT_ACTION]++;
1183 break;
1184 }
1185 } else if (ieee80211_is_ctl(fc)) {
1186 switch (fc & cpu_to_le16(IEEE80211_FCTL_STYPE)) {
1187 case cpu_to_le16(IEEE80211_STYPE_BACK_REQ):
1188 stats->ctrl[CONTROL_BACK_REQ]++;
1189 break;
1190 case cpu_to_le16(IEEE80211_STYPE_BACK):
1191 stats->ctrl[CONTROL_BACK]++;
1192 break;
1193 case cpu_to_le16(IEEE80211_STYPE_PSPOLL):
1194 stats->ctrl[CONTROL_PSPOLL]++;
1195 break;
1196 case cpu_to_le16(IEEE80211_STYPE_RTS):
1197 stats->ctrl[CONTROL_RTS]++;
1198 break;
1199 case cpu_to_le16(IEEE80211_STYPE_CTS):
1200 stats->ctrl[CONTROL_CTS]++;
1201 break;
1202 case cpu_to_le16(IEEE80211_STYPE_ACK):
1203 stats->ctrl[CONTROL_ACK]++;
1204 break;
1205 case cpu_to_le16(IEEE80211_STYPE_CFEND):
1206 stats->ctrl[CONTROL_CFEND]++;
1207 break;
1208 case cpu_to_le16(IEEE80211_STYPE_CFENDACK):
1209 stats->ctrl[CONTROL_CFENDACK]++;
1210 break;
1211 }
1212 } else {
1213 /* data */
1214 stats->data_cnt++;
1215 stats->data_bytes += len;
1216 }
1217}
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07001218#endif
1219
Wey-Yi Guya93e7972010-02-03 11:47:19 -08001220static void iwl_force_rf_reset(struct iwl_priv *priv)
Wey-Yi Guyafbdd692010-01-22 14:22:43 -08001221{
Emmanuel Grumbach63013ae2011-08-25 23:10:42 -07001222 if (test_bit(STATUS_EXIT_PENDING, &priv->shrd->status))
Wey-Yi Guyafbdd692010-01-22 14:22:43 -08001223 return;
1224
Johannes Berg246ed352010-08-23 10:46:32 +02001225 if (!iwl_is_any_associated(priv)) {
Wey-Yi Guyafbdd692010-01-22 14:22:43 -08001226 IWL_DEBUG_SCAN(priv, "force reset rejected: not associated\n");
1227 return;
1228 }
1229 /*
1230 * There is no easy and better way to force reset the radio,
1231 * the only known method is switching channel which will force to
1232 * reset and tune the radio.
1233 * Use internal short scan (single channel) operation to should
1234 * achieve this objective.
1235 * Driver should reset the radio when number of consecutive missed
1236 * beacon, or any other uCode error condition detected.
1237 */
1238 IWL_DEBUG_INFO(priv, "perform radio reset.\n");
1239 iwl_internal_short_hw_scan(priv);
Wey-Yi Guyafbdd692010-01-22 14:22:43 -08001240}
Wey-Yi Guya93e7972010-02-03 11:47:19 -08001241
Wey-Yi Guya93e7972010-02-03 11:47:19 -08001242
Wey-Yi Guyc04f9f22010-06-21 16:52:55 -07001243int iwl_force_reset(struct iwl_priv *priv, int mode, bool external)
Wey-Yi Guya93e7972010-02-03 11:47:19 -08001244{
Wey-Yi Guy8a472da2010-02-18 22:03:06 -08001245 struct iwl_force_reset *force_reset;
1246
Emmanuel Grumbach63013ae2011-08-25 23:10:42 -07001247 if (test_bit(STATUS_EXIT_PENDING, &priv->shrd->status))
Wey-Yi Guya93e7972010-02-03 11:47:19 -08001248 return -EINVAL;
1249
Wey-Yi Guy8a472da2010-02-18 22:03:06 -08001250 if (mode >= IWL_MAX_FORCE_RESET) {
1251 IWL_DEBUG_INFO(priv, "invalid reset request.\n");
1252 return -EINVAL;
1253 }
1254 force_reset = &priv->force_reset[mode];
1255 force_reset->reset_request_count++;
Wey-Yi Guyc04f9f22010-06-21 16:52:55 -07001256 if (!external) {
1257 if (force_reset->last_force_reset_jiffies &&
1258 time_after(force_reset->last_force_reset_jiffies +
1259 force_reset->reset_duration, jiffies)) {
1260 IWL_DEBUG_INFO(priv, "force reset rejected\n");
1261 force_reset->reset_reject_count++;
1262 return -EAGAIN;
1263 }
Wey-Yi Guya93e7972010-02-03 11:47:19 -08001264 }
Wey-Yi Guy8a472da2010-02-18 22:03:06 -08001265 force_reset->reset_success_count++;
1266 force_reset->last_force_reset_jiffies = jiffies;
Wey-Yi Guya93e7972010-02-03 11:47:19 -08001267 IWL_DEBUG_INFO(priv, "perform force reset (%d)\n", mode);
Wey-Yi Guya93e7972010-02-03 11:47:19 -08001268 switch (mode) {
1269 case IWL_RF_RESET:
1270 iwl_force_rf_reset(priv);
1271 break;
1272 case IWL_FW_RESET:
Wey-Yi Guyc04f9f22010-06-21 16:52:55 -07001273 /*
1274 * if the request is from external(ex: debugfs),
1275 * then always perform the request in regardless the module
1276 * parameter setting
1277 * if the request is from internal (uCode error or driver
1278 * detect failure), then fw_restart module parameter
1279 * need to be check before performing firmware reload
1280 */
Don Fry9d143e92011-04-20 15:23:57 -07001281 if (!external && !iwlagn_mod_params.restart_fw) {
Wey-Yi Guyc04f9f22010-06-21 16:52:55 -07001282 IWL_DEBUG_INFO(priv, "Cancel firmware reload based on "
1283 "module parameter setting\n");
1284 break;
1285 }
Wey-Yi Guya93e7972010-02-03 11:47:19 -08001286 IWL_ERR(priv, "On demand firmware reload\n");
Johannes Berge6494372011-04-05 09:41:58 -07001287 iwlagn_fw_error(priv, true);
Wey-Yi Guya93e7972010-02-03 11:47:19 -08001288 break;
Wey-Yi Guya93e7972010-02-03 11:47:19 -08001289 }
Wey-Yi Guya93e7972010-02-03 11:47:19 -08001290 return 0;
1291}
Wey-Yi Guyb74e31a2010-03-01 17:23:50 -08001292
Johannes Bergd4daaea2010-10-23 09:15:43 -07001293
Wey-Yi Guy317d09f2011-10-10 07:26:49 -07001294int iwl_cmd_echo_test(struct iwl_priv *priv)
1295{
Wey-Yi Guy7e4005c2011-10-10 07:26:51 -07001296 int ret;
Wey-Yi Guy317d09f2011-10-10 07:26:49 -07001297 struct iwl_host_cmd cmd = {
1298 .id = REPLY_ECHO,
Wey-Yi Guy89db3b92011-11-10 06:55:18 -08001299 .len = { 0 },
Wey-Yi Guy317d09f2011-10-10 07:26:49 -07001300 .flags = CMD_SYNC,
1301 };
1302
Johannes Berge10a0532012-03-06 13:30:39 -08001303 ret = iwl_dvm_send_cmd(priv, &cmd);
Wey-Yi Guy7e4005c2011-10-10 07:26:51 -07001304 if (ret)
1305 IWL_ERR(priv, "echo testing fail: 0X%x\n", ret);
1306 else
1307 IWL_DEBUG_INFO(priv, "echo testing pass\n");
1308 return ret;
Wey-Yi Guy317d09f2011-10-10 07:26:49 -07001309}
1310
Emmanuel Grumbachf22be622011-08-25 23:11:30 -07001311static inline int iwl_check_stuck_queue(struct iwl_priv *priv, int txq)
Wey-Yi Guyb74e31a2010-03-01 17:23:50 -08001312{
Emmanuel Grumbachf22be622011-08-25 23:11:30 -07001313 if (iwl_trans_check_stuck_queue(trans(priv), txq)) {
Wey-Yi Guy317d09f2011-10-10 07:26:49 -07001314 int ret;
Wey-Yi Guy317d09f2011-10-10 07:26:49 -07001315 ret = iwl_force_reset(priv, IWL_FW_RESET, false);
Stanislaw Gruszka22de94d2010-12-03 15:41:48 +01001316 return (ret == -EAGAIN) ? 0 : 1;
1317 }
Wey-Yi Guyb74e31a2010-03-01 17:23:50 -08001318 return 0;
1319}
1320
Stanislaw Gruszka22de94d2010-12-03 15:41:48 +01001321/*
1322 * Making watchdog tick be a quarter of timeout assure we will
1323 * discover the queue hung between timeout and 1.25*timeout
1324 */
1325#define IWL_WD_TICK(timeout) ((timeout) / 4)
1326
1327/*
1328 * Watchdog timer callback, we check each tx queue for stuck, if if hung
1329 * we reset the firmware. If everything is fine just rearm the timer.
1330 */
1331void iwl_bg_watchdog(unsigned long data)
Wey-Yi Guyb74e31a2010-03-01 17:23:50 -08001332{
1333 struct iwl_priv *priv = (struct iwl_priv *)data;
1334 int cnt;
Stanislaw Gruszka22de94d2010-12-03 15:41:48 +01001335 unsigned long timeout;
Wey-Yi Guyb74e31a2010-03-01 17:23:50 -08001336
Emmanuel Grumbach63013ae2011-08-25 23:10:42 -07001337 if (test_bit(STATUS_EXIT_PENDING, &priv->shrd->status))
Wey-Yi Guyb74e31a2010-03-01 17:23:50 -08001338 return;
1339
Wey-Yi Guy46e77412011-10-10 07:26:50 -07001340 if (iwl_is_rfkill(priv->shrd))
1341 return;
1342
Johannes Berge7a09432012-03-06 13:30:54 -08001343 timeout = hw_params(priv).wd_timeout;
Stanislaw Gruszka22de94d2010-12-03 15:41:48 +01001344 if (timeout == 0)
1345 return;
1346
Johannes Berg342bbf32012-03-04 08:50:46 -08001347 /* monitor and check for stuck queues */
Johannes Berg3cc241a2012-03-06 13:30:52 -08001348 for (cnt = 0; cnt < cfg(priv)->base_params->num_of_queues; cnt++)
Johannes Berg342bbf32012-03-04 08:50:46 -08001349 if (iwl_check_stuck_queue(priv, cnt))
1350 return;
Wey-Yi Guyafbdd692010-01-22 14:22:43 -08001351
Stanislaw Gruszka22de94d2010-12-03 15:41:48 +01001352 mod_timer(&priv->watchdog, jiffies +
1353 msecs_to_jiffies(IWL_WD_TICK(timeout)));
1354}
Stanislaw Gruszka22de94d2010-12-03 15:41:48 +01001355
1356void iwl_setup_watchdog(struct iwl_priv *priv)
1357{
Johannes Berge7a09432012-03-06 13:30:54 -08001358 unsigned int timeout = hw_params(priv).wd_timeout;
Stanislaw Gruszka22de94d2010-12-03 15:41:48 +01001359
Wey-Yi Guy9995ffe2011-12-02 08:19:19 -08001360 if (!iwlagn_mod_params.wd_disable) {
1361 /* use system default */
Don Fry38622412011-12-16 07:07:36 -08001362 if (timeout && !cfg(priv)->base_params->wd_disable)
Wey-Yi Guy9995ffe2011-12-02 08:19:19 -08001363 mod_timer(&priv->watchdog,
1364 jiffies +
1365 msecs_to_jiffies(IWL_WD_TICK(timeout)));
1366 else
1367 del_timer(&priv->watchdog);
1368 } else {
1369 /* module parameter overwrite default configuration */
1370 if (timeout && iwlagn_mod_params.wd_disable == 2)
1371 mod_timer(&priv->watchdog,
1372 jiffies +
1373 msecs_to_jiffies(IWL_WD_TICK(timeout)));
1374 else
1375 del_timer(&priv->watchdog);
1376 }
Stanislaw Gruszka22de94d2010-12-03 15:41:48 +01001377}
Wey-Yi Guya0ee74c2010-05-06 08:54:10 -07001378
Emmanuel Grumbach8c222542011-10-10 07:27:16 -07001379/**
1380 * iwl_beacon_time_mask_low - mask of lower 32 bit of beacon time
1381 * @priv -- pointer to iwl_priv data structure
1382 * @tsf_bits -- number of bits need to shift for masking)
1383 */
1384static inline u32 iwl_beacon_time_mask_low(struct iwl_priv *priv,
1385 u16 tsf_bits)
1386{
1387 return (1 << tsf_bits) - 1;
1388}
1389
1390/**
1391 * iwl_beacon_time_mask_high - mask of higher 32 bit of beacon time
1392 * @priv -- pointer to iwl_priv data structure
1393 * @tsf_bits -- number of bits need to shift for masking)
1394 */
1395static inline u32 iwl_beacon_time_mask_high(struct iwl_priv *priv,
1396 u16 tsf_bits)
1397{
1398 return ((1 << (32 - tsf_bits)) - 1) << tsf_bits;
1399}
1400
Wey-Yi Guya0ee74c2010-05-06 08:54:10 -07001401/*
1402 * extended beacon time format
1403 * time in usec will be changed into a 32-bit value in extended:internal format
1404 * the extended part is the beacon counts
1405 * the internal part is the time in usec within one beacon interval
1406 */
1407u32 iwl_usecs_to_beacons(struct iwl_priv *priv, u32 usec, u32 beacon_interval)
1408{
1409 u32 quot;
1410 u32 rem;
1411 u32 interval = beacon_interval * TIME_UNIT;
1412
1413 if (!interval || !usec)
1414 return 0;
1415
1416 quot = (usec / interval) &
Don Fry403ba562011-09-15 11:46:39 -07001417 (iwl_beacon_time_mask_high(priv, IWLAGN_EXT_BEACON_TIME_POS) >>
1418 IWLAGN_EXT_BEACON_TIME_POS);
Wey-Yi Guya0ee74c2010-05-06 08:54:10 -07001419 rem = (usec % interval) & iwl_beacon_time_mask_low(priv,
Don Fry403ba562011-09-15 11:46:39 -07001420 IWLAGN_EXT_BEACON_TIME_POS);
Wey-Yi Guya0ee74c2010-05-06 08:54:10 -07001421
Don Fry403ba562011-09-15 11:46:39 -07001422 return (quot << IWLAGN_EXT_BEACON_TIME_POS) + rem;
Wey-Yi Guya0ee74c2010-05-06 08:54:10 -07001423}
Wey-Yi Guya0ee74c2010-05-06 08:54:10 -07001424
1425/* base is usually what we get from ucode with each received frame,
1426 * the same as HW timer counter counting down
1427 */
1428__le32 iwl_add_beacon_time(struct iwl_priv *priv, u32 base,
1429 u32 addon, u32 beacon_interval)
1430{
1431 u32 base_low = base & iwl_beacon_time_mask_low(priv,
Don Fry403ba562011-09-15 11:46:39 -07001432 IWLAGN_EXT_BEACON_TIME_POS);
Wey-Yi Guya0ee74c2010-05-06 08:54:10 -07001433 u32 addon_low = addon & iwl_beacon_time_mask_low(priv,
Don Fry403ba562011-09-15 11:46:39 -07001434 IWLAGN_EXT_BEACON_TIME_POS);
Wey-Yi Guya0ee74c2010-05-06 08:54:10 -07001435 u32 interval = beacon_interval * TIME_UNIT;
1436 u32 res = (base & iwl_beacon_time_mask_high(priv,
Don Fry403ba562011-09-15 11:46:39 -07001437 IWLAGN_EXT_BEACON_TIME_POS)) +
Wey-Yi Guya0ee74c2010-05-06 08:54:10 -07001438 (addon & iwl_beacon_time_mask_high(priv,
Don Fry403ba562011-09-15 11:46:39 -07001439 IWLAGN_EXT_BEACON_TIME_POS));
Wey-Yi Guya0ee74c2010-05-06 08:54:10 -07001440
1441 if (base_low > addon_low)
1442 res += base_low - addon_low;
1443 else if (base_low < addon_low) {
1444 res += interval + base_low - addon_low;
Don Fry403ba562011-09-15 11:46:39 -07001445 res += (1 << IWLAGN_EXT_BEACON_TIME_POS);
Wey-Yi Guya0ee74c2010-05-06 08:54:10 -07001446 } else
Don Fry403ba562011-09-15 11:46:39 -07001447 res += (1 << IWLAGN_EXT_BEACON_TIME_POS);
Wey-Yi Guya0ee74c2010-05-06 08:54:10 -07001448
1449 return cpu_to_le32(res);
1450}
Wey-Yi Guya0ee74c2010-05-06 08:54:10 -07001451
Emmanuel Grumbachbcb93212012-02-09 16:08:15 +02001452void iwl_nic_error(struct iwl_op_mode *op_mode)
1453{
1454 struct iwl_priv *priv = IWL_OP_MODE_GET_DVM(op_mode);
1455
1456 iwlagn_fw_error(priv, false);
1457}
1458
Emmanuel Grumbach7120d982012-02-09 16:08:15 +02001459void iwl_set_hw_rfkill_state(struct iwl_op_mode *op_mode, bool state)
Emmanuel Grumbach3e10cae2011-09-06 09:31:18 -07001460{
Emmanuel Grumbach7120d982012-02-09 16:08:15 +02001461 struct iwl_priv *priv = IWL_OP_MODE_GET_DVM(op_mode);
1462
Johannes Bergc9eec952012-03-06 13:30:43 -08001463 if (state)
1464 set_bit(STATUS_RF_KILL_HW, &priv->shrd->status);
1465 else
1466 clear_bit(STATUS_RF_KILL_HW, &priv->shrd->status);
1467
Emmanuel Grumbach3e10cae2011-09-06 09:31:18 -07001468 wiphy_rfkill_set_hw_state(priv->hw->wiphy, state);
1469}
Emmanuel Grumbach7a10e3e42011-09-06 09:31:21 -07001470
1471void iwl_nic_config(struct iwl_priv *priv)
1472{
Don Fry38622412011-12-16 07:07:36 -08001473 cfg(priv)->lib->nic_config(priv);
Emmanuel Grumbach7a10e3e42011-09-06 09:31:21 -07001474}
Emmanuel Grumbach909e9b22011-09-15 11:46:30 -07001475
Emmanuel Grumbached277c92012-02-09 16:08:15 +02001476void iwl_free_skb(struct iwl_op_mode *op_mode, struct sk_buff *skb)
Emmanuel Grumbach909e9b22011-09-15 11:46:30 -07001477{
Emmanuel Grumbached277c92012-02-09 16:08:15 +02001478 struct iwl_priv *priv = IWL_OP_MODE_GET_DVM(op_mode);
Emmanuel Grumbach909e9b22011-09-15 11:46:30 -07001479 struct ieee80211_tx_info *info;
1480
1481 info = IEEE80211_SKB_CB(skb);
1482 kmem_cache_free(priv->tx_cmd_pool, (info->driver_data[1]));
1483 dev_kfree_skb_any(skb);
1484}
Emmanuel Grumbach859cfb02011-09-15 11:46:31 -07001485
Emmanuel Grumbach02e38352012-02-09 16:08:15 +02001486void iwl_stop_sw_queue(struct iwl_op_mode *op_mode, u8 ac)
Emmanuel Grumbach859cfb02011-09-15 11:46:31 -07001487{
Emmanuel Grumbach02e38352012-02-09 16:08:15 +02001488 struct iwl_priv *priv = IWL_OP_MODE_GET_DVM(op_mode);
1489
Emmanuel Grumbach859cfb02011-09-15 11:46:31 -07001490 ieee80211_stop_queue(priv->hw, ac);
1491}
1492
Emmanuel Grumbach02e38352012-02-09 16:08:15 +02001493void iwl_wake_sw_queue(struct iwl_op_mode *op_mode, u8 ac)
Emmanuel Grumbach859cfb02011-09-15 11:46:31 -07001494{
Emmanuel Grumbach02e38352012-02-09 16:08:15 +02001495 struct iwl_priv *priv = IWL_OP_MODE_GET_DVM(op_mode);
1496
Emmanuel Grumbach859cfb02011-09-15 11:46:31 -07001497 ieee80211_wake_queue(priv->hw, ac);
1498}