blob: 79a24410dd0ae2aeb4ab47ce9dbe3f0eb1ae3c56 [file] [log] [blame]
Zhu Yib481de92007-09-25 17:54:57 -07001/******************************************************************************
2 *
Reinette Chatreeb7ae892008-03-11 16:17:17 -07003 * Copyright(c) 2003 - 2008 Intel Corporation. All rights reserved.
Zhu Yib481de92007-09-25 17:54:57 -07004 *
5 * Portions of this file are derived from the ipw3945 project, as well
6 * as portions of the ieee80211 subsystem header files.
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of version 2 of the GNU General Public License as
10 * published by the Free Software Foundation.
11 *
12 * This program is distributed in the hope that it will be useful, but WITHOUT
13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
15 * more details.
16 *
17 * You should have received a copy of the GNU General Public License along with
18 * this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
20 *
21 * The full GNU General Public License is included in this distribution in the
22 * file called LICENSE.
23 *
24 * Contact Information:
25 * James P. Ketrenos <ipw2100-admin@linux.intel.com>
26 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
27 *
28 *****************************************************************************/
29
Zhu Yib481de92007-09-25 17:54:57 -070030#include <linux/kernel.h>
31#include <linux/module.h>
Zhu Yib481de92007-09-25 17:54:57 -070032#include <linux/init.h>
33#include <linux/pci.h>
34#include <linux/dma-mapping.h>
35#include <linux/delay.h>
36#include <linux/skbuff.h>
37#include <linux/netdevice.h>
38#include <linux/wireless.h>
39#include <linux/firmware.h>
Zhu Yib481de92007-09-25 17:54:57 -070040#include <linux/etherdevice.h>
41#include <linux/if_arp.h>
42
Zhu Yib481de92007-09-25 17:54:57 -070043#include <net/mac80211.h>
44
45#include <asm/div64.h>
46
Assaf Krauss6bc913b2008-03-11 16:17:18 -070047#include "iwl-eeprom.h"
Tomas Winkler3e0d4cb2008-04-24 11:55:38 -070048#include "iwl-dev.h"
Tomas Winklerfee12472008-04-03 16:05:21 -070049#include "iwl-core.h"
Tomas Winkler3395f6e2008-03-25 16:33:37 -070050#include "iwl-io.h"
Zhu Yib481de92007-09-25 17:54:57 -070051#include "iwl-helpers.h"
Emmanuel Grumbach6974e362008-04-14 21:16:06 -070052#include "iwl-sta.h"
Emmanuel Grumbachf0832f12008-04-16 16:34:47 -070053#include "iwl-calib.h"
Zhu Yib481de92007-09-25 17:54:57 -070054
Christoph Hellwig416e1432007-10-25 17:15:49 +080055
Zhu Yib481de92007-09-25 17:54:57 -070056/******************************************************************************
57 *
58 * module boiler plate
59 *
60 ******************************************************************************/
61
Zhu Yib481de92007-09-25 17:54:57 -070062/*
63 * module name, copyright, version, etc.
64 * NOTE: DRV_NAME is defined in iwlwifi.h for use by iwl-debug.h and printk
65 */
66
Tomas Winklerd783b062008-07-18 13:53:02 +080067#define DRV_DESCRIPTION "Intel(R) Wireless WiFi Link AGN driver for Linux"
Zhu Yib481de92007-09-25 17:54:57 -070068
Tomas Winkler0a6857e2008-03-12 16:58:49 -070069#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -070070#define VD "d"
71#else
72#define VD
73#endif
74
Tomas Winkler4fc22b22008-07-21 18:54:42 +030075#ifdef CONFIG_IWLAGN_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -070076#define VS "s"
77#else
78#define VS
79#endif
80
Tomas Winklerdf48c322008-03-06 10:40:19 -080081#define DRV_VERSION IWLWIFI_VERSION VD VS
Zhu Yib481de92007-09-25 17:54:57 -070082
Zhu Yib481de92007-09-25 17:54:57 -070083
84MODULE_DESCRIPTION(DRV_DESCRIPTION);
85MODULE_VERSION(DRV_VERSION);
86MODULE_AUTHOR(DRV_COPYRIGHT);
87MODULE_LICENSE("GPL");
Tomas Winkler4fc22b22008-07-21 18:54:42 +030088MODULE_ALIAS("iwl4965");
Zhu Yib481de92007-09-25 17:54:57 -070089
Zhu Yib481de92007-09-25 17:54:57 -070090/*************** STATION TABLE MANAGEMENT ****
Ben Cahill9fbab512007-11-29 11:09:47 +080091 * mac80211 should be examined to determine if sta_info is duplicating
Zhu Yib481de92007-09-25 17:54:57 -070092 * the functionality provided here
93 */
94
95/**************************************************************/
96
Zhu Yib481de92007-09-25 17:54:57 -070097
Zhu Yib481de92007-09-25 17:54:57 -070098
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -070099static void iwl4965_set_rxon_hwcrypto(struct iwl_priv *priv, int hw_decrypt)
100{
Gregory Greenmanc1adf9f2008-05-15 13:53:59 +0800101 struct iwl_rxon_cmd *rxon = &priv->staging_rxon;
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -0700102
103 if (hw_decrypt)
104 rxon->filter_flags &= ~RXON_FILTER_DIS_DECRYPT_MSK;
105 else
106 rxon->filter_flags |= RXON_FILTER_DIS_DECRYPT_MSK;
107
108}
109
Zhu Yib481de92007-09-25 17:54:57 -0700110/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800111 * iwl4965_check_rxon_cmd - validate RXON structure is valid
Zhu Yib481de92007-09-25 17:54:57 -0700112 *
113 * NOTE: This is really only useful during development and can eventually
114 * be #ifdef'd out once the driver is stable and folks aren't actively
115 * making changes
116 */
Gregory Greenmanc1adf9f2008-05-15 13:53:59 +0800117static int iwl4965_check_rxon_cmd(struct iwl_rxon_cmd *rxon)
Zhu Yib481de92007-09-25 17:54:57 -0700118{
119 int error = 0;
120 int counter = 1;
121
122 if (rxon->flags & RXON_FLG_BAND_24G_MSK) {
123 error |= le32_to_cpu(rxon->flags &
124 (RXON_FLG_TGJ_NARROW_BAND_MSK |
125 RXON_FLG_RADAR_DETECT_MSK));
126 if (error)
127 IWL_WARNING("check 24G fields %d | %d\n",
128 counter++, error);
129 } else {
130 error |= (rxon->flags & RXON_FLG_SHORT_SLOT_MSK) ?
131 0 : le32_to_cpu(RXON_FLG_SHORT_SLOT_MSK);
132 if (error)
133 IWL_WARNING("check 52 fields %d | %d\n",
134 counter++, error);
135 error |= le32_to_cpu(rxon->flags & RXON_FLG_CCK_MSK);
136 if (error)
137 IWL_WARNING("check 52 CCK %d | %d\n",
138 counter++, error);
139 }
140 error |= (rxon->node_addr[0] | rxon->bssid_addr[0]) & 0x1;
141 if (error)
142 IWL_WARNING("check mac addr %d | %d\n", counter++, error);
143
144 /* make sure basic rates 6Mbps and 1Mbps are supported */
145 error |= (((rxon->ofdm_basic_rates & IWL_RATE_6M_MASK) == 0) &&
146 ((rxon->cck_basic_rates & IWL_RATE_1M_MASK) == 0));
147 if (error)
148 IWL_WARNING("check basic rate %d | %d\n", counter++, error);
149
150 error |= (le16_to_cpu(rxon->assoc_id) > 2007);
151 if (error)
152 IWL_WARNING("check assoc id %d | %d\n", counter++, error);
153
154 error |= ((rxon->flags & (RXON_FLG_CCK_MSK | RXON_FLG_SHORT_SLOT_MSK))
155 == (RXON_FLG_CCK_MSK | RXON_FLG_SHORT_SLOT_MSK));
156 if (error)
157 IWL_WARNING("check CCK and short slot %d | %d\n",
158 counter++, error);
159
160 error |= ((rxon->flags & (RXON_FLG_CCK_MSK | RXON_FLG_AUTO_DETECT_MSK))
161 == (RXON_FLG_CCK_MSK | RXON_FLG_AUTO_DETECT_MSK));
162 if (error)
163 IWL_WARNING("check CCK & auto detect %d | %d\n",
164 counter++, error);
165
166 error |= ((rxon->flags & (RXON_FLG_AUTO_DETECT_MSK |
167 RXON_FLG_TGG_PROTECT_MSK)) == RXON_FLG_TGG_PROTECT_MSK);
168 if (error)
169 IWL_WARNING("check TGG and auto detect %d | %d\n",
170 counter++, error);
171
172 if (error)
173 IWL_WARNING("Tuning to channel %d\n",
174 le16_to_cpu(rxon->channel));
175
176 if (error) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800177 IWL_ERROR("Not a valid iwl4965_rxon_assoc_cmd field values\n");
Zhu Yib481de92007-09-25 17:54:57 -0700178 return -1;
179 }
180 return 0;
181}
182
183/**
Mohamed Abbas54559702008-09-03 11:18:44 +0800184 * iwl_full_rxon_required - check if full RXON (vs RXON_ASSOC) cmd is needed
Ian Schram01ebd062007-10-25 17:15:22 +0800185 * @priv: staging_rxon is compared to active_rxon
Zhu Yib481de92007-09-25 17:54:57 -0700186 *
Ben Cahill9fbab512007-11-29 11:09:47 +0800187 * If the RXON structure is changing enough to require a new tune,
188 * or is clearing the RXON_FILTER_ASSOC_MSK, then return 1 to indicate that
189 * a new tune (full RXON command, rather than RXON_ASSOC cmd) is required.
Zhu Yib481de92007-09-25 17:54:57 -0700190 */
Mohamed Abbas54559702008-09-03 11:18:44 +0800191static int iwl_full_rxon_required(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700192{
193
194 /* These items are only settable from the full RXON command */
Ron Rindjunsky5d1e2322008-06-30 17:23:04 +0800195 if (!(iwl_is_associated(priv)) ||
Zhu Yib481de92007-09-25 17:54:57 -0700196 compare_ether_addr(priv->staging_rxon.bssid_addr,
197 priv->active_rxon.bssid_addr) ||
198 compare_ether_addr(priv->staging_rxon.node_addr,
199 priv->active_rxon.node_addr) ||
200 compare_ether_addr(priv->staging_rxon.wlap_bssid_addr,
201 priv->active_rxon.wlap_bssid_addr) ||
202 (priv->staging_rxon.dev_type != priv->active_rxon.dev_type) ||
203 (priv->staging_rxon.channel != priv->active_rxon.channel) ||
204 (priv->staging_rxon.air_propagation !=
205 priv->active_rxon.air_propagation) ||
206 (priv->staging_rxon.ofdm_ht_single_stream_basic_rates !=
207 priv->active_rxon.ofdm_ht_single_stream_basic_rates) ||
208 (priv->staging_rxon.ofdm_ht_dual_stream_basic_rates !=
209 priv->active_rxon.ofdm_ht_dual_stream_basic_rates) ||
Zhu Yib481de92007-09-25 17:54:57 -0700210 (priv->staging_rxon.assoc_id != priv->active_rxon.assoc_id))
211 return 1;
212
213 /* flags, filter_flags, ofdm_basic_rates, and cck_basic_rates can
214 * be updated with the RXON_ASSOC command -- however only some
215 * flag transitions are allowed using RXON_ASSOC */
216
217 /* Check if we are not switching bands */
218 if ((priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) !=
219 (priv->active_rxon.flags & RXON_FLG_BAND_24G_MSK))
220 return 1;
221
222 /* Check if we are switching association toggle */
223 if ((priv->staging_rxon.filter_flags & RXON_FILTER_ASSOC_MSK) !=
224 (priv->active_rxon.filter_flags & RXON_FILTER_ASSOC_MSK))
225 return 1;
226
227 return 0;
228}
229
Zhu Yib481de92007-09-25 17:54:57 -0700230/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800231 * iwl4965_commit_rxon - commit staging_rxon to hardware
Zhu Yib481de92007-09-25 17:54:57 -0700232 *
Ian Schram01ebd062007-10-25 17:15:22 +0800233 * The RXON command in staging_rxon is committed to the hardware and
Zhu Yib481de92007-09-25 17:54:57 -0700234 * the active_rxon structure is updated with the new data. This
235 * function correctly transitions out of the RXON_ASSOC_MSK state if
236 * a HW tune is required based on the RXON structure changes.
237 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700238static int iwl4965_commit_rxon(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700239{
240 /* cast away the const for active_rxon in this function */
Gregory Greenmanc1adf9f2008-05-15 13:53:59 +0800241 struct iwl_rxon_cmd *active_rxon = (void *)&priv->active_rxon;
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800242 int ret;
243 bool new_assoc =
244 !!(priv->staging_rxon.filter_flags & RXON_FILTER_ASSOC_MSK);
Zhu Yib481de92007-09-25 17:54:57 -0700245
Tomas Winklerfee12472008-04-03 16:05:21 -0700246 if (!iwl_is_alive(priv))
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800247 return -EBUSY;
Zhu Yib481de92007-09-25 17:54:57 -0700248
249 /* always get timestamp with Rx frame */
250 priv->staging_rxon.flags |= RXON_FLG_TSF2HOST_MSK;
Emmanuel Grumbacha326a5d2008-07-11 11:53:31 +0800251 /* allow CTS-to-self if possible. this is relevant only for
252 * 5000, but will not damage 4965 */
253 priv->staging_rxon.flags |= RXON_FLG_SELF_CTS_EN;
Zhu Yib481de92007-09-25 17:54:57 -0700254
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800255 ret = iwl4965_check_rxon_cmd(&priv->staging_rxon);
256 if (ret) {
Zhu Yib481de92007-09-25 17:54:57 -0700257 IWL_ERROR("Invalid RXON configuration. Not committing.\n");
258 return -EINVAL;
259 }
260
261 /* If we don't need to send a full RXON, we can use
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800262 * iwl4965_rxon_assoc_cmd which is used to reconfigure filter
Zhu Yib481de92007-09-25 17:54:57 -0700263 * and other flags for the current radio configuration. */
Mohamed Abbas54559702008-09-03 11:18:44 +0800264 if (!iwl_full_rxon_required(priv)) {
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800265 ret = iwl_send_rxon_assoc(priv);
266 if (ret) {
267 IWL_ERROR("Error setting RXON_ASSOC (%d)\n", ret);
268 return ret;
Zhu Yib481de92007-09-25 17:54:57 -0700269 }
270
271 memcpy(active_rxon, &priv->staging_rxon, sizeof(*active_rxon));
Zhu Yib481de92007-09-25 17:54:57 -0700272 return 0;
273 }
274
275 /* station table will be cleared */
276 priv->assoc_station_added = 0;
277
Zhu Yib481de92007-09-25 17:54:57 -0700278 /* If we are currently associated and the new config requires
279 * an RXON_ASSOC and the new config wants the associated mask enabled,
280 * we must clear the associated from the active configuration
281 * before we apply the new config */
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800282 if (iwl_is_associated(priv) && new_assoc) {
Zhu Yib481de92007-09-25 17:54:57 -0700283 IWL_DEBUG_INFO("Toggling associated bit on current RXON\n");
284 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
285
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800286 ret = iwl_send_cmd_pdu(priv, REPLY_RXON,
Gregory Greenmanc1adf9f2008-05-15 13:53:59 +0800287 sizeof(struct iwl_rxon_cmd),
Zhu Yib481de92007-09-25 17:54:57 -0700288 &priv->active_rxon);
289
290 /* If the mask clearing failed then we set
291 * active_rxon back to what it was previously */
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800292 if (ret) {
Zhu Yib481de92007-09-25 17:54:57 -0700293 active_rxon->filter_flags |= RXON_FILTER_ASSOC_MSK;
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800294 IWL_ERROR("Error clearing ASSOC_MSK (%d)\n", ret);
295 return ret;
Zhu Yib481de92007-09-25 17:54:57 -0700296 }
Zhu Yib481de92007-09-25 17:54:57 -0700297 }
298
299 IWL_DEBUG_INFO("Sending RXON\n"
300 "* with%s RXON_FILTER_ASSOC_MSK\n"
301 "* channel = %d\n"
Johannes Berge1749612008-10-27 15:59:26 -0700302 "* bssid = %pM\n",
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800303 (new_assoc ? "" : "out"),
Zhu Yib481de92007-09-25 17:54:57 -0700304 le16_to_cpu(priv->staging_rxon.channel),
Johannes Berge1749612008-10-27 15:59:26 -0700305 priv->staging_rxon.bssid_addr);
Zhu Yib481de92007-09-25 17:54:57 -0700306
Ron Rindjunsky099b40b2008-04-21 15:41:53 -0700307 iwl4965_set_rxon_hwcrypto(priv, !priv->hw_params.sw_crypto);
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800308
309 /* Apply the new configuration
310 * RXON unassoc clears the station table in uCode, send it before
311 * we add the bcast station. If assoc bit is set, we will send RXON
312 * after having added the bcast and bssid station.
313 */
314 if (!new_assoc) {
315 ret = iwl_send_cmd_pdu(priv, REPLY_RXON,
Gregory Greenmanc1adf9f2008-05-15 13:53:59 +0800316 sizeof(struct iwl_rxon_cmd), &priv->staging_rxon);
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800317 if (ret) {
318 IWL_ERROR("Error setting new RXON (%d)\n", ret);
319 return ret;
320 }
321 memcpy(active_rxon, &priv->staging_rxon, sizeof(*active_rxon));
Zhu Yib481de92007-09-25 17:54:57 -0700322 }
323
Emmanuel Grumbach37deb2a2008-06-30 17:23:08 +0800324 iwl_clear_stations_table(priv);
Zhu Yi556f8db2007-09-27 11:27:33 +0800325
Zhu Yib481de92007-09-25 17:54:57 -0700326 if (!priv->error_recovering)
327 priv->start_calib = 0;
328
Zhu Yib481de92007-09-25 17:54:57 -0700329 /* Add the broadcast address so we can send broadcast frames */
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800330 if (iwl_rxon_add_station(priv, iwl_bcast_addr, 0) ==
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800331 IWL_INVALID_STATION) {
Zhu Yib481de92007-09-25 17:54:57 -0700332 IWL_ERROR("Error adding BROADCAST address for transmit.\n");
333 return -EIO;
334 }
335
336 /* If we have set the ASSOC_MSK and we are in BSS mode then
337 * add the IWL_AP_ID to the station rate table */
Tomas Winkler91851592008-06-30 17:23:14 +0800338 if (new_assoc) {
Johannes Berg05c914f2008-09-11 00:01:58 +0200339 if (priv->iw_mode == NL80211_IFTYPE_STATION) {
Tomas Winkler91851592008-06-30 17:23:14 +0800340 ret = iwl_rxon_add_station(priv,
341 priv->active_rxon.bssid_addr, 1);
342 if (ret == IWL_INVALID_STATION) {
343 IWL_ERROR("Error adding AP address for TX.\n");
344 return -EIO;
345 }
346 priv->assoc_station_added = 1;
347 if (priv->default_wep_key &&
348 iwl_send_static_wepkey_cmd(priv, 0))
349 IWL_ERROR("Could not send WEP static key.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700350 }
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800351
352 /* Apply the new configuration
353 * RXON assoc doesn't clear the station table in uCode,
354 */
355 ret = iwl_send_cmd_pdu(priv, REPLY_RXON,
356 sizeof(struct iwl_rxon_cmd), &priv->staging_rxon);
357 if (ret) {
358 IWL_ERROR("Error setting new RXON (%d)\n", ret);
359 return ret;
360 }
361 memcpy(active_rxon, &priv->staging_rxon, sizeof(*active_rxon));
Zhu Yib481de92007-09-25 17:54:57 -0700362 }
363
Zhu Yi36da7d72008-07-11 11:53:40 +0800364 iwl_init_sensitivity(priv);
365
366 /* If we issue a new RXON command which required a tune then we must
367 * send a new TXPOWER command or we won't be able to Tx any frames */
368 ret = iwl_set_tx_power(priv, priv->tx_power_user_lmt, true);
369 if (ret) {
370 IWL_ERROR("Error sending TX power (%d)\n", ret);
371 return ret;
372 }
373
Zhu Yib481de92007-09-25 17:54:57 -0700374 return 0;
375}
376
Mohamed Abbas5da4b552008-04-21 15:41:51 -0700377void iwl4965_update_chain_flags(struct iwl_priv *priv)
378{
379
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -0700380 iwl_set_rxon_chain(priv);
Mohamed Abbas5da4b552008-04-21 15:41:51 -0700381 iwl4965_commit_rxon(priv);
382}
383
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700384static int iwl4965_send_bt_config(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700385{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800386 struct iwl4965_bt_cmd bt_cmd = {
Zhu Yib481de92007-09-25 17:54:57 -0700387 .flags = 3,
388 .lead_time = 0xAA,
389 .max_kill = 1,
390 .kill_ack_mask = 0,
391 .kill_cts_mask = 0,
392 };
393
Tomas Winkler857485c2008-03-21 13:53:44 -0700394 return iwl_send_cmd_pdu(priv, REPLY_BT_CONFIG,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800395 sizeof(struct iwl4965_bt_cmd), &bt_cmd);
Zhu Yib481de92007-09-25 17:54:57 -0700396}
397
Tomas Winklerfcab4232008-05-15 13:54:01 +0800398static void iwl_clear_free_frames(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700399{
400 struct list_head *element;
401
402 IWL_DEBUG_INFO("%d frames on pre-allocated heap on clear.\n",
403 priv->frames_count);
404
405 while (!list_empty(&priv->free_frames)) {
406 element = priv->free_frames.next;
407 list_del(element);
Tomas Winklerfcab4232008-05-15 13:54:01 +0800408 kfree(list_entry(element, struct iwl_frame, list));
Zhu Yib481de92007-09-25 17:54:57 -0700409 priv->frames_count--;
410 }
411
412 if (priv->frames_count) {
413 IWL_WARNING("%d frames still in use. Did we lose one?\n",
414 priv->frames_count);
415 priv->frames_count = 0;
416 }
417}
418
Tomas Winklerfcab4232008-05-15 13:54:01 +0800419static struct iwl_frame *iwl_get_free_frame(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700420{
Tomas Winklerfcab4232008-05-15 13:54:01 +0800421 struct iwl_frame *frame;
Zhu Yib481de92007-09-25 17:54:57 -0700422 struct list_head *element;
423 if (list_empty(&priv->free_frames)) {
424 frame = kzalloc(sizeof(*frame), GFP_KERNEL);
425 if (!frame) {
426 IWL_ERROR("Could not allocate frame!\n");
427 return NULL;
428 }
429
430 priv->frames_count++;
431 return frame;
432 }
433
434 element = priv->free_frames.next;
435 list_del(element);
Tomas Winklerfcab4232008-05-15 13:54:01 +0800436 return list_entry(element, struct iwl_frame, list);
Zhu Yib481de92007-09-25 17:54:57 -0700437}
438
Tomas Winklerfcab4232008-05-15 13:54:01 +0800439static void iwl_free_frame(struct iwl_priv *priv, struct iwl_frame *frame)
Zhu Yib481de92007-09-25 17:54:57 -0700440{
441 memset(frame, 0, sizeof(*frame));
442 list_add(&frame->list, &priv->free_frames);
443}
444
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800445static unsigned int iwl_fill_beacon_frame(struct iwl_priv *priv,
446 struct ieee80211_hdr *hdr,
447 const u8 *dest, int left)
Zhu Yib481de92007-09-25 17:54:57 -0700448{
Tomas Winkler3109ece2008-03-28 16:33:35 -0700449 if (!iwl_is_associated(priv) || !priv->ibss_beacon ||
Johannes Berg05c914f2008-09-11 00:01:58 +0200450 ((priv->iw_mode != NL80211_IFTYPE_ADHOC) &&
451 (priv->iw_mode != NL80211_IFTYPE_AP)))
Zhu Yib481de92007-09-25 17:54:57 -0700452 return 0;
453
454 if (priv->ibss_beacon->len > left)
455 return 0;
456
457 memcpy(hdr, priv->ibss_beacon->data, priv->ibss_beacon->len);
458
459 return priv->ibss_beacon->len;
460}
461
Guy Cohen39e88502008-04-23 17:14:57 -0700462static u8 iwl4965_rate_get_lowest_plcp(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700463{
Guy Cohen39e88502008-04-23 17:14:57 -0700464 int i;
465 int rate_mask;
Zhu Yib481de92007-09-25 17:54:57 -0700466
Guy Cohen39e88502008-04-23 17:14:57 -0700467 /* Set rate mask*/
468 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK)
469 rate_mask = priv->active_rate_basic & 0xF;
470 else
471 rate_mask = priv->active_rate_basic & 0xFF0;
472
473 /* Find lowest valid rate */
Zhu Yib481de92007-09-25 17:54:57 -0700474 for (i = IWL_RATE_1M_INDEX; i != IWL_RATE_INVALID;
Tomas Winkler1826dcc2008-05-15 13:54:02 +0800475 i = iwl_rates[i].next_ieee) {
Zhu Yib481de92007-09-25 17:54:57 -0700476 if (rate_mask & (1 << i))
Tomas Winkler1826dcc2008-05-15 13:54:02 +0800477 return iwl_rates[i].plcp;
Zhu Yib481de92007-09-25 17:54:57 -0700478 }
479
Guy Cohen39e88502008-04-23 17:14:57 -0700480 /* No valid rate was found. Assign the lowest one */
481 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK)
482 return IWL_RATE_1M_PLCP;
483 else
484 return IWL_RATE_6M_PLCP;
Zhu Yib481de92007-09-25 17:54:57 -0700485}
486
Emmanuel Grumbacha33c2f42008-09-03 11:26:56 +0800487static unsigned int iwl4965_hw_get_beacon_cmd(struct iwl_priv *priv,
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800488 struct iwl_frame *frame, u8 rate)
489{
490 struct iwl_tx_beacon_cmd *tx_beacon_cmd;
491 unsigned int frame_size;
492
493 tx_beacon_cmd = &frame->u.beacon;
494 memset(tx_beacon_cmd, 0, sizeof(*tx_beacon_cmd));
495
496 tx_beacon_cmd->tx.sta_id = priv->hw_params.bcast_sta_id;
497 tx_beacon_cmd->tx.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
498
499 frame_size = iwl_fill_beacon_frame(priv, tx_beacon_cmd->frame,
500 iwl_bcast_addr,
501 sizeof(frame->u) - sizeof(*tx_beacon_cmd));
502
503 BUG_ON(frame_size > MAX_MPDU_SIZE);
504 tx_beacon_cmd->tx.len = cpu_to_le16((u16)frame_size);
505
506 if ((rate == IWL_RATE_1M_PLCP) || (rate >= IWL_RATE_2M_PLCP))
507 tx_beacon_cmd->tx.rate_n_flags =
508 iwl_hw_set_rate_n_flags(rate, RATE_MCS_CCK_MSK);
509 else
510 tx_beacon_cmd->tx.rate_n_flags =
511 iwl_hw_set_rate_n_flags(rate, 0);
512
513 tx_beacon_cmd->tx.tx_flags = TX_CMD_FLG_SEQ_CTL_MSK |
514 TX_CMD_FLG_TSF_MSK |
515 TX_CMD_FLG_STA_RATE_MSK;
516
517 return sizeof(*tx_beacon_cmd) + frame_size;
518}
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700519static int iwl4965_send_beacon_cmd(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700520{
Tomas Winklerfcab4232008-05-15 13:54:01 +0800521 struct iwl_frame *frame;
Zhu Yib481de92007-09-25 17:54:57 -0700522 unsigned int frame_size;
523 int rc;
524 u8 rate;
525
Tomas Winklerfcab4232008-05-15 13:54:01 +0800526 frame = iwl_get_free_frame(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700527
528 if (!frame) {
529 IWL_ERROR("Could not obtain free frame buffer for beacon "
530 "command.\n");
531 return -ENOMEM;
532 }
533
Guy Cohen39e88502008-04-23 17:14:57 -0700534 rate = iwl4965_rate_get_lowest_plcp(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700535
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800536 frame_size = iwl4965_hw_get_beacon_cmd(priv, frame, rate);
Zhu Yib481de92007-09-25 17:54:57 -0700537
Tomas Winkler857485c2008-03-21 13:53:44 -0700538 rc = iwl_send_cmd_pdu(priv, REPLY_TX_BEACON, frame_size,
Zhu Yib481de92007-09-25 17:54:57 -0700539 &frame->u.cmd[0]);
540
Tomas Winklerfcab4232008-05-15 13:54:01 +0800541 iwl_free_frame(priv, frame);
Zhu Yib481de92007-09-25 17:54:57 -0700542
543 return rc;
544}
545
546/******************************************************************************
547 *
Zhu Yib481de92007-09-25 17:54:57 -0700548 * Misc. internal state and helper functions
549 *
550 ******************************************************************************/
Zhu Yib481de92007-09-25 17:54:57 -0700551
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700552static void iwl4965_ht_conf(struct iwl_priv *priv,
553 struct ieee80211_bss_conf *bss_conf)
554{
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200555 struct ieee80211_sta_ht_cap *ht_conf = bss_conf->ht_cap;
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700556 struct ieee80211_ht_bss_info *ht_bss_conf = bss_conf->ht_bss_conf;
557 struct iwl_ht_info *iwl_conf = &priv->current_ht_config;
558
559 IWL_DEBUG_MAC80211("enter: \n");
560
561 iwl_conf->is_ht = bss_conf->assoc_ht;
562
563 if (!iwl_conf->is_ht)
564 return;
565
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700566 if (ht_conf->cap & IEEE80211_HT_CAP_SGI_20)
Emmanuel Grumbacha9841012008-05-15 13:54:08 +0800567 iwl_conf->sgf |= HT_SHORT_GI_20MHZ;
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700568 if (ht_conf->cap & IEEE80211_HT_CAP_SGI_40)
Emmanuel Grumbacha9841012008-05-15 13:54:08 +0800569 iwl_conf->sgf |= HT_SHORT_GI_40MHZ;
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700570
571 iwl_conf->is_green_field = !!(ht_conf->cap & IEEE80211_HT_CAP_GRN_FLD);
572 iwl_conf->max_amsdu_size =
573 !!(ht_conf->cap & IEEE80211_HT_CAP_MAX_AMSDU);
574
575 iwl_conf->supported_chan_width =
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200576 !!(ht_conf->cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40);
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700577 iwl_conf->extension_chan_offset =
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200578 ht_bss_conf->bss_cap & IEEE80211_HT_PARAM_CHA_SEC_OFFSET;
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700579 /* If no above or below channel supplied disable FAT channel */
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200580 if (iwl_conf->extension_chan_offset != IEEE80211_HT_PARAM_CHA_SEC_ABOVE &&
581 iwl_conf->extension_chan_offset != IEEE80211_HT_PARAM_CHA_SEC_BELOW) {
582 iwl_conf->extension_chan_offset = IEEE80211_HT_PARAM_CHA_SEC_NONE;
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700583 iwl_conf->supported_chan_width = 0;
Emmanuel Grumbach963f5512008-06-12 09:47:00 +0800584 }
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700585
Ron Rindjunsky12837be2008-09-03 11:26:47 +0800586 iwl_conf->sm_ps = (u8)((ht_conf->cap & IEEE80211_HT_CAP_SM_PS) >> 2);
587
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200588 memcpy(&iwl_conf->mcs, &ht_conf->mcs, 16);
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700589
590 iwl_conf->control_channel = ht_bss_conf->primary_channel;
591 iwl_conf->tx_chan_width =
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200592 !!(ht_bss_conf->bss_cap & IEEE80211_HT_PARAM_CHAN_WIDTH_ANY);
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700593 iwl_conf->ht_protection =
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200594 ht_bss_conf->bss_op_mode & IEEE80211_HT_OP_MODE_PROTECTION;
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700595 iwl_conf->non_GF_STA_present =
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200596 !!(ht_bss_conf->bss_op_mode & IEEE80211_HT_OP_MODE_NON_GF_STA_PRSNT);
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700597
598 IWL_DEBUG_MAC80211("control channel %d\n", iwl_conf->control_channel);
599 IWL_DEBUG_MAC80211("leave\n");
600}
601
Zhu Yib481de92007-09-25 17:54:57 -0700602/*
603 * QoS support
604*/
Emmanuel Grumbach1ff50bd2008-07-11 11:53:34 +0800605static void iwl_activate_qos(struct iwl_priv *priv, u8 force)
Zhu Yib481de92007-09-25 17:54:57 -0700606{
Zhu Yib481de92007-09-25 17:54:57 -0700607 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
608 return;
609
610 if (!priv->qos_data.qos_enable)
611 return;
612
Zhu Yib481de92007-09-25 17:54:57 -0700613 priv->qos_data.def_qos_parm.qos_flags = 0;
614
615 if (priv->qos_data.qos_cap.q_AP.queue_request &&
616 !priv->qos_data.qos_cap.q_AP.txop_request)
617 priv->qos_data.def_qos_parm.qos_flags |=
618 QOS_PARAM_FLG_TXOP_TYPE_MSK;
Zhu Yib481de92007-09-25 17:54:57 -0700619 if (priv->qos_data.qos_active)
620 priv->qos_data.def_qos_parm.qos_flags |=
621 QOS_PARAM_FLG_UPDATE_EDCA_MSK;
622
Ron Rindjunskyfd105e72007-11-26 16:14:39 +0200623 if (priv->current_ht_config.is_ht)
Tomas Winklerf1f1f5c2007-10-25 17:15:26 +0800624 priv->qos_data.def_qos_parm.qos_flags |= QOS_PARAM_FLG_TGN_MSK;
Tomas Winklerf1f1f5c2007-10-25 17:15:26 +0800625
Tomas Winkler3109ece2008-03-28 16:33:35 -0700626 if (force || iwl_is_associated(priv)) {
Tomas Winklerf1f1f5c2007-10-25 17:15:26 +0800627 IWL_DEBUG_QOS("send QoS cmd with Qos active=%d FLAGS=0x%X\n",
628 priv->qos_data.qos_active,
629 priv->qos_data.def_qos_parm.qos_flags);
Zhu Yib481de92007-09-25 17:54:57 -0700630
Emmanuel Grumbach1ff50bd2008-07-11 11:53:34 +0800631 iwl_send_cmd_pdu_async(priv, REPLY_QOS_PARAM,
632 sizeof(struct iwl_qosparam_cmd),
633 &priv->qos_data.def_qos_parm, NULL);
Zhu Yib481de92007-09-25 17:54:57 -0700634 }
635}
636
Zhu Yib481de92007-09-25 17:54:57 -0700637#define MAX_UCODE_BEACON_INTERVAL 4096
Zhu Yib481de92007-09-25 17:54:57 -0700638
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800639static u16 iwl_adjust_beacon_interval(u16 beacon_val)
Zhu Yib481de92007-09-25 17:54:57 -0700640{
641 u16 new_val = 0;
642 u16 beacon_factor = 0;
643
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800644 beacon_factor = (beacon_val + MAX_UCODE_BEACON_INTERVAL)
645 / MAX_UCODE_BEACON_INTERVAL;
Zhu Yib481de92007-09-25 17:54:57 -0700646 new_val = beacon_val / beacon_factor;
647
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800648 return new_val;
Zhu Yib481de92007-09-25 17:54:57 -0700649}
650
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800651static void iwl_setup_rxon_timing(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700652{
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800653 u64 tsf;
654 s32 interval_tm, rem;
Zhu Yib481de92007-09-25 17:54:57 -0700655 unsigned long flags;
656 struct ieee80211_conf *conf = NULL;
657 u16 beacon_int = 0;
658
659 conf = ieee80211_get_hw_conf(priv->hw);
660
661 spin_lock_irqsave(&priv->lock, flags);
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800662 priv->rxon_timing.timestamp = cpu_to_le64(priv->timestamp);
Tomas Winklerb5d7be52008-07-19 04:41:24 +0300663 priv->rxon_timing.listen_interval = cpu_to_le16(conf->listen_interval);
Zhu Yib481de92007-09-25 17:54:57 -0700664
Johannes Berg05c914f2008-09-11 00:01:58 +0200665 if (priv->iw_mode == NL80211_IFTYPE_STATION) {
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800666 beacon_int = iwl_adjust_beacon_interval(priv->beacon_int);
Zhu Yib481de92007-09-25 17:54:57 -0700667 priv->rxon_timing.atim_window = 0;
668 } else {
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800669 beacon_int = iwl_adjust_beacon_interval(conf->beacon_int);
670
Zhu Yib481de92007-09-25 17:54:57 -0700671 /* TODO: we need to get atim_window from upper stack
672 * for now we set to 0 */
673 priv->rxon_timing.atim_window = 0;
674 }
675
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800676 priv->rxon_timing.beacon_interval = cpu_to_le16(beacon_int);
Zhu Yib481de92007-09-25 17:54:57 -0700677
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800678 tsf = priv->timestamp; /* tsf is modifed by do_div: copy it */
679 interval_tm = beacon_int * 1024;
680 rem = do_div(tsf, interval_tm);
681 priv->rxon_timing.beacon_init_val = cpu_to_le32(interval_tm - rem);
682
683 spin_unlock_irqrestore(&priv->lock, flags);
684 IWL_DEBUG_ASSOC("beacon interval %d beacon timer %d beacon tim %d\n",
685 le16_to_cpu(priv->rxon_timing.beacon_interval),
686 le32_to_cpu(priv->rxon_timing.beacon_init_val),
687 le16_to_cpu(priv->rxon_timing.atim_window));
Zhu Yib481de92007-09-25 17:54:57 -0700688}
689
Tomas Winkler82a66bb2008-05-29 16:35:28 +0800690static void iwl_set_flags_for_band(struct iwl_priv *priv,
691 enum ieee80211_band band)
Zhu Yib481de92007-09-25 17:54:57 -0700692{
Johannes Berg8318d782008-01-24 19:38:38 +0100693 if (band == IEEE80211_BAND_5GHZ) {
Zhu Yib481de92007-09-25 17:54:57 -0700694 priv->staging_rxon.flags &=
695 ~(RXON_FLG_BAND_24G_MSK | RXON_FLG_AUTO_DETECT_MSK
696 | RXON_FLG_CCK_MSK);
697 priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
698 } else {
Reinette Chatre508e32e2008-04-14 21:16:13 -0700699 /* Copied from iwl4965_post_associate() */
Zhu Yib481de92007-09-25 17:54:57 -0700700 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_SLOT_TIME)
701 priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
702 else
703 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
704
Johannes Berg05c914f2008-09-11 00:01:58 +0200705 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Zhu Yib481de92007-09-25 17:54:57 -0700706 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
707
708 priv->staging_rxon.flags |= RXON_FLG_BAND_24G_MSK;
709 priv->staging_rxon.flags |= RXON_FLG_AUTO_DETECT_MSK;
710 priv->staging_rxon.flags &= ~RXON_FLG_CCK_MSK;
711 }
712}
713
714/*
Ian Schram01ebd062007-10-25 17:15:22 +0800715 * initialize rxon structure with default values from eeprom
Zhu Yib481de92007-09-25 17:54:57 -0700716 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700717static void iwl4965_connection_init_rx_config(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700718{
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700719 const struct iwl_channel_info *ch_info;
Zhu Yib481de92007-09-25 17:54:57 -0700720
721 memset(&priv->staging_rxon, 0, sizeof(priv->staging_rxon));
722
723 switch (priv->iw_mode) {
Johannes Berg05c914f2008-09-11 00:01:58 +0200724 case NL80211_IFTYPE_AP:
Zhu Yib481de92007-09-25 17:54:57 -0700725 priv->staging_rxon.dev_type = RXON_DEV_TYPE_AP;
726 break;
727
Johannes Berg05c914f2008-09-11 00:01:58 +0200728 case NL80211_IFTYPE_STATION:
Zhu Yib481de92007-09-25 17:54:57 -0700729 priv->staging_rxon.dev_type = RXON_DEV_TYPE_ESS;
730 priv->staging_rxon.filter_flags = RXON_FILTER_ACCEPT_GRP_MSK;
731 break;
732
Johannes Berg05c914f2008-09-11 00:01:58 +0200733 case NL80211_IFTYPE_ADHOC:
Zhu Yib481de92007-09-25 17:54:57 -0700734 priv->staging_rxon.dev_type = RXON_DEV_TYPE_IBSS;
735 priv->staging_rxon.flags = RXON_FLG_SHORT_PREAMBLE_MSK;
736 priv->staging_rxon.filter_flags = RXON_FILTER_BCON_AWARE_MSK |
737 RXON_FILTER_ACCEPT_GRP_MSK;
738 break;
739
Johannes Berg05c914f2008-09-11 00:01:58 +0200740 case NL80211_IFTYPE_MONITOR:
Zhu Yib481de92007-09-25 17:54:57 -0700741 priv->staging_rxon.dev_type = RXON_DEV_TYPE_SNIFFER;
742 priv->staging_rxon.filter_flags = RXON_FILTER_PROMISC_MSK |
743 RXON_FILTER_CTL2HOST_MSK | RXON_FILTER_ACCEPT_GRP_MSK;
744 break;
Tomas Winkler69dc5d92008-03-25 16:33:41 -0700745 default:
746 IWL_ERROR("Unsupported interface type %d\n", priv->iw_mode);
747 break;
Zhu Yib481de92007-09-25 17:54:57 -0700748 }
749
750#if 0
751 /* TODO: Figure out when short_preamble would be set and cache from
752 * that */
753 if (!hw_to_local(priv->hw)->short_preamble)
754 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
755 else
756 priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
757#endif
758
Assaf Krauss8622e702008-03-21 13:53:43 -0700759 ch_info = iwl_get_channel_info(priv, priv->band,
Rick Farrington25b3f572008-06-30 17:23:28 +0800760 le16_to_cpu(priv->active_rxon.channel));
Zhu Yib481de92007-09-25 17:54:57 -0700761
762 if (!ch_info)
763 ch_info = &priv->channel_info[0];
764
765 /*
766 * in some case A channels are all non IBSS
767 * in this case force B/G channel
768 */
Johannes Berg05c914f2008-09-11 00:01:58 +0200769 if ((priv->iw_mode == NL80211_IFTYPE_ADHOC) &&
Zhu Yib481de92007-09-25 17:54:57 -0700770 !(is_channel_ibss(ch_info)))
771 ch_info = &priv->channel_info[0];
772
773 priv->staging_rxon.channel = cpu_to_le16(ch_info->channel);
Johannes Berg8318d782008-01-24 19:38:38 +0100774 priv->band = ch_info->band;
Zhu Yib481de92007-09-25 17:54:57 -0700775
Tomas Winkler82a66bb2008-05-29 16:35:28 +0800776 iwl_set_flags_for_band(priv, priv->band);
Zhu Yib481de92007-09-25 17:54:57 -0700777
778 priv->staging_rxon.ofdm_basic_rates =
779 (IWL_OFDM_RATES_MASK >> IWL_FIRST_OFDM_RATE) & 0xFF;
780 priv->staging_rxon.cck_basic_rates =
781 (IWL_CCK_RATES_MASK >> IWL_FIRST_CCK_RATE) & 0xF;
782
783 priv->staging_rxon.flags &= ~(RXON_FLG_CHANNEL_MODE_MIXED_MSK |
784 RXON_FLG_CHANNEL_MODE_PURE_40_MSK);
785 memcpy(priv->staging_rxon.node_addr, priv->mac_addr, ETH_ALEN);
786 memcpy(priv->staging_rxon.wlap_bssid_addr, priv->mac_addr, ETH_ALEN);
787 priv->staging_rxon.ofdm_ht_single_stream_basic_rates = 0xff;
788 priv->staging_rxon.ofdm_ht_dual_stream_basic_rates = 0xff;
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -0700789 iwl_set_rxon_chain(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700790}
791
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700792static int iwl4965_set_mode(struct iwl_priv *priv, int mode)
Zhu Yib481de92007-09-25 17:54:57 -0700793{
Zhu Yib481de92007-09-25 17:54:57 -0700794 priv->iw_mode = mode;
795
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800796 iwl4965_connection_init_rx_config(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700797 memcpy(priv->staging_rxon.node_addr, priv->mac_addr, ETH_ALEN);
798
Emmanuel Grumbach37deb2a2008-06-30 17:23:08 +0800799 iwl_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700800
Mohamed Abbasfde35712007-11-29 11:10:15 +0800801 /* dont commit rxon if rf-kill is on*/
Tomas Winklerfee12472008-04-03 16:05:21 -0700802 if (!iwl_is_ready_rf(priv))
Mohamed Abbasfde35712007-11-29 11:10:15 +0800803 return -EAGAIN;
804
805 cancel_delayed_work(&priv->scan_check);
Tomas Winkler2a421b92008-06-12 09:47:10 +0800806 if (iwl_scan_cancel_timeout(priv, 100)) {
Mohamed Abbasfde35712007-11-29 11:10:15 +0800807 IWL_WARNING("Aborted scan still in progress after 100ms\n");
808 IWL_DEBUG_MAC80211("leaving - scan abort failed.\n");
809 return -EAGAIN;
810 }
811
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800812 iwl4965_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700813
814 return 0;
815}
816
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700817static void iwl4965_set_rate(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700818{
Johannes Berg8318d782008-01-24 19:38:38 +0100819 const struct ieee80211_supported_band *hw = NULL;
Zhu Yib481de92007-09-25 17:54:57 -0700820 struct ieee80211_rate *rate;
821 int i;
822
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700823 hw = iwl_get_hw_mode(priv, priv->band);
Saleem Abdulrasoolc4ba9622007-11-18 23:59:08 -0800824 if (!hw) {
825 IWL_ERROR("Failed to set rate: unable to get hw mode\n");
826 return;
827 }
Zhu Yib481de92007-09-25 17:54:57 -0700828
829 priv->active_rate = 0;
830 priv->active_rate_basic = 0;
831
Johannes Berg8318d782008-01-24 19:38:38 +0100832 for (i = 0; i < hw->n_bitrates; i++) {
833 rate = &(hw->bitrates[i]);
834 if (rate->hw_value < IWL_RATE_COUNT)
835 priv->active_rate |= (1 << rate->hw_value);
Zhu Yib481de92007-09-25 17:54:57 -0700836 }
837
838 IWL_DEBUG_RATE("Set active_rate = %0x, active_rate_basic = %0x\n",
839 priv->active_rate, priv->active_rate_basic);
840
841 /*
842 * If a basic rate is configured, then use it (adding IWL_RATE_1M_MASK)
843 * otherwise set it to the default of all CCK rates and 6, 12, 24 for
844 * OFDM
845 */
846 if (priv->active_rate_basic & IWL_CCK_BASIC_RATES_MASK)
847 priv->staging_rxon.cck_basic_rates =
848 ((priv->active_rate_basic &
849 IWL_CCK_RATES_MASK) >> IWL_FIRST_CCK_RATE) & 0xF;
850 else
851 priv->staging_rxon.cck_basic_rates =
852 (IWL_CCK_BASIC_RATES_MASK >> IWL_FIRST_CCK_RATE) & 0xF;
853
854 if (priv->active_rate_basic & IWL_OFDM_BASIC_RATES_MASK)
855 priv->staging_rxon.ofdm_basic_rates =
856 ((priv->active_rate_basic &
857 (IWL_OFDM_BASIC_RATES_MASK | IWL_RATE_6M_MASK)) >>
858 IWL_FIRST_OFDM_RATE) & 0xFF;
859 else
860 priv->staging_rxon.ofdm_basic_rates =
861 (IWL_OFDM_BASIC_RATES_MASK >> IWL_FIRST_OFDM_RATE) & 0xFF;
862}
863
Tomas Winkler4fc22b22008-07-21 18:54:42 +0300864#ifdef CONFIG_IWLAGN_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -0700865
866#include "iwl-spectrum.h"
867
868#define BEACON_TIME_MASK_LOW 0x00FFFFFF
869#define BEACON_TIME_MASK_HIGH 0xFF000000
870#define TIME_UNIT 1024
871
872/*
873 * extended beacon time format
874 * time in usec will be changed into a 32-bit value in 8:24 format
875 * the high 1 byte is the beacon counts
876 * the lower 3 bytes is the time in usec within one beacon interval
877 */
878
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800879static u32 iwl4965_usecs_to_beacons(u32 usec, u32 beacon_interval)
Zhu Yib481de92007-09-25 17:54:57 -0700880{
881 u32 quot;
882 u32 rem;
883 u32 interval = beacon_interval * 1024;
884
885 if (!interval || !usec)
886 return 0;
887
888 quot = (usec / interval) & (BEACON_TIME_MASK_HIGH >> 24);
889 rem = (usec % interval) & BEACON_TIME_MASK_LOW;
890
891 return (quot << 24) + rem;
892}
893
894/* base is usually what we get from ucode with each received frame,
895 * the same as HW timer counter counting down
896 */
897
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800898static __le32 iwl4965_add_beacon_time(u32 base, u32 addon, u32 beacon_interval)
Zhu Yib481de92007-09-25 17:54:57 -0700899{
900 u32 base_low = base & BEACON_TIME_MASK_LOW;
901 u32 addon_low = addon & BEACON_TIME_MASK_LOW;
902 u32 interval = beacon_interval * TIME_UNIT;
903 u32 res = (base & BEACON_TIME_MASK_HIGH) +
904 (addon & BEACON_TIME_MASK_HIGH);
905
906 if (base_low > addon_low)
907 res += base_low - addon_low;
908 else if (base_low < addon_low) {
909 res += interval + base_low - addon_low;
910 res += (1 << 24);
911 } else
912 res += (1 << 24);
913
914 return cpu_to_le32(res);
915}
916
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700917static int iwl4965_get_measurement(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -0700918 struct ieee80211_measurement_params *params,
919 u8 type)
920{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800921 struct iwl4965_spectrum_cmd spectrum;
Tomas Winklerdb11d632008-05-05 10:22:33 +0800922 struct iwl_rx_packet *res;
Tomas Winkler857485c2008-03-21 13:53:44 -0700923 struct iwl_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -0700924 .id = REPLY_SPECTRUM_MEASUREMENT_CMD,
925 .data = (void *)&spectrum,
926 .meta.flags = CMD_WANT_SKB,
927 };
928 u32 add_time = le64_to_cpu(params->start_time);
929 int rc;
930 int spectrum_resp_status;
931 int duration = le16_to_cpu(params->duration);
932
Tomas Winkler3109ece2008-03-28 16:33:35 -0700933 if (iwl_is_associated(priv))
Zhu Yib481de92007-09-25 17:54:57 -0700934 add_time =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800935 iwl4965_usecs_to_beacons(
Zhu Yib481de92007-09-25 17:54:57 -0700936 le64_to_cpu(params->start_time) - priv->last_tsf,
937 le16_to_cpu(priv->rxon_timing.beacon_interval));
938
939 memset(&spectrum, 0, sizeof(spectrum));
940
941 spectrum.channel_count = cpu_to_le16(1);
942 spectrum.flags =
943 RXON_FLG_TSF2HOST_MSK | RXON_FLG_ANT_A_MSK | RXON_FLG_DIS_DIV_MSK;
944 spectrum.filter_flags = MEASUREMENT_FILTER_FLAG;
945 cmd.len = sizeof(spectrum);
946 spectrum.len = cpu_to_le16(cmd.len - sizeof(spectrum.len));
947
Tomas Winkler3109ece2008-03-28 16:33:35 -0700948 if (iwl_is_associated(priv))
Zhu Yib481de92007-09-25 17:54:57 -0700949 spectrum.start_time =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800950 iwl4965_add_beacon_time(priv->last_beacon_time,
Zhu Yib481de92007-09-25 17:54:57 -0700951 add_time,
952 le16_to_cpu(priv->rxon_timing.beacon_interval));
953 else
954 spectrum.start_time = 0;
955
956 spectrum.channels[0].duration = cpu_to_le32(duration * TIME_UNIT);
957 spectrum.channels[0].channel = params->channel;
958 spectrum.channels[0].type = type;
959 if (priv->active_rxon.flags & RXON_FLG_BAND_24G_MSK)
960 spectrum.flags |= RXON_FLG_BAND_24G_MSK |
961 RXON_FLG_AUTO_DETECT_MSK | RXON_FLG_TGG_PROTECT_MSK;
962
Tomas Winkler857485c2008-03-21 13:53:44 -0700963 rc = iwl_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -0700964 if (rc)
965 return rc;
966
Tomas Winklerdb11d632008-05-05 10:22:33 +0800967 res = (struct iwl_rx_packet *)cmd.meta.u.skb->data;
Zhu Yib481de92007-09-25 17:54:57 -0700968 if (res->hdr.flags & IWL_CMD_FAILED_MSK) {
969 IWL_ERROR("Bad return from REPLY_RX_ON_ASSOC command\n");
970 rc = -EIO;
971 }
972
973 spectrum_resp_status = le16_to_cpu(res->u.spectrum.status);
974 switch (spectrum_resp_status) {
975 case 0: /* Command will be handled */
976 if (res->u.spectrum.id != 0xff) {
977 IWL_DEBUG_INFO
978 ("Replaced existing measurement: %d\n",
979 res->u.spectrum.id);
980 priv->measurement_status &= ~MEASUREMENT_READY;
981 }
982 priv->measurement_status |= MEASUREMENT_ACTIVE;
983 rc = 0;
984 break;
985
986 case 1: /* Command will not be handled */
987 rc = -EAGAIN;
988 break;
989 }
990
991 dev_kfree_skb_any(cmd.meta.u.skb);
992
993 return rc;
994}
995#endif
996
Zhu Yib481de92007-09-25 17:54:57 -0700997/******************************************************************************
998 *
999 * Generic RX handler implementations
1000 *
1001 ******************************************************************************/
Tomas Winkler885ba202008-05-29 16:34:55 +08001002static void iwl_rx_reply_alive(struct iwl_priv *priv,
1003 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07001004{
Tomas Winklerdb11d632008-05-05 10:22:33 +08001005 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Tomas Winkler885ba202008-05-29 16:34:55 +08001006 struct iwl_alive_resp *palive;
Zhu Yib481de92007-09-25 17:54:57 -07001007 struct delayed_work *pwork;
1008
1009 palive = &pkt->u.alive_frame;
1010
1011 IWL_DEBUG_INFO("Alive ucode status 0x%08X revision "
1012 "0x%01X 0x%01X\n",
1013 palive->is_valid, palive->ver_type,
1014 palive->ver_subtype);
1015
1016 if (palive->ver_subtype == INITIALIZE_SUBTYPE) {
1017 IWL_DEBUG_INFO("Initialization Alive received.\n");
1018 memcpy(&priv->card_alive_init,
1019 &pkt->u.alive_frame,
Tomas Winkler885ba202008-05-29 16:34:55 +08001020 sizeof(struct iwl_init_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07001021 pwork = &priv->init_alive_start;
1022 } else {
1023 IWL_DEBUG_INFO("Runtime Alive received.\n");
1024 memcpy(&priv->card_alive, &pkt->u.alive_frame,
Tomas Winkler885ba202008-05-29 16:34:55 +08001025 sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07001026 pwork = &priv->alive_start;
1027 }
1028
1029 /* We delay the ALIVE response by 5ms to
1030 * give the HW RF Kill time to activate... */
1031 if (palive->is_valid == UCODE_VALID_OK)
1032 queue_delayed_work(priv->workqueue, pwork,
1033 msecs_to_jiffies(5));
1034 else
1035 IWL_WARNING("uCode did not respond OK.\n");
1036}
1037
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001038static void iwl4965_rx_reply_error(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +08001039 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07001040{
Tomas Winklerdb11d632008-05-05 10:22:33 +08001041 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07001042
1043 IWL_ERROR("Error Reply type 0x%08X cmd %s (0x%02X) "
1044 "seq 0x%04X ser 0x%08X\n",
1045 le32_to_cpu(pkt->u.err_resp.error_type),
1046 get_cmd_string(pkt->u.err_resp.cmd_id),
1047 pkt->u.err_resp.cmd_id,
1048 le16_to_cpu(pkt->u.err_resp.bad_cmd_seq_num),
1049 le32_to_cpu(pkt->u.err_resp.error_info));
1050}
1051
1052#define TX_STATUS_ENTRY(x) case TX_STATUS_FAIL_ ## x: return #x
1053
Tomas Winklera55360e2008-05-05 10:22:28 +08001054static void iwl4965_rx_csa(struct iwl_priv *priv, struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07001055{
Tomas Winklerdb11d632008-05-05 10:22:33 +08001056 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Gregory Greenmanc1adf9f2008-05-15 13:53:59 +08001057 struct iwl_rxon_cmd *rxon = (void *)&priv->active_rxon;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001058 struct iwl4965_csa_notification *csa = &(pkt->u.csa_notif);
Zhu Yib481de92007-09-25 17:54:57 -07001059 IWL_DEBUG_11H("CSA notif: channel %d, status %d\n",
1060 le16_to_cpu(csa->channel), le32_to_cpu(csa->status));
1061 rxon->channel = csa->channel;
1062 priv->staging_rxon.channel = csa->channel;
1063}
1064
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001065static void iwl4965_rx_spectrum_measure_notif(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +08001066 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07001067{
Tomas Winkler4fc22b22008-07-21 18:54:42 +03001068#ifdef CONFIG_IWLAGN_SPECTRUM_MEASUREMENT
Tomas Winklerdb11d632008-05-05 10:22:33 +08001069 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001070 struct iwl4965_spectrum_notification *report = &(pkt->u.spectrum_notif);
Zhu Yib481de92007-09-25 17:54:57 -07001071
1072 if (!report->state) {
Ester Kummerf3d67992008-05-06 11:05:12 +08001073 IWL_DEBUG(IWL_DL_11H,
1074 "Spectrum Measure Notification: Start\n");
Zhu Yib481de92007-09-25 17:54:57 -07001075 return;
1076 }
1077
1078 memcpy(&priv->measure_report, report, sizeof(*report));
1079 priv->measurement_status |= MEASUREMENT_READY;
1080#endif
1081}
1082
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001083static void iwl4965_rx_pm_sleep_notif(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +08001084 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07001085{
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001086#ifdef CONFIG_IWLWIFI_DEBUG
Tomas Winklerdb11d632008-05-05 10:22:33 +08001087 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001088 struct iwl4965_sleep_notification *sleep = &(pkt->u.sleep_notif);
Zhu Yib481de92007-09-25 17:54:57 -07001089 IWL_DEBUG_RX("sleep mode: %d, src: %d\n",
1090 sleep->pm_sleep_mode, sleep->pm_wakeup_src);
1091#endif
1092}
1093
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001094static void iwl4965_rx_pm_debug_statistics_notif(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +08001095 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07001096{
Tomas Winklerdb11d632008-05-05 10:22:33 +08001097 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07001098 IWL_DEBUG_RADIO("Dumping %d bytes of unhandled "
1099 "notification for %s:\n",
1100 le32_to_cpu(pkt->len), get_cmd_string(pkt->hdr.cmd));
Ester Kummerbf403db2008-05-05 10:22:40 +08001101 iwl_print_hex_dump(priv, IWL_DL_RADIO, pkt->u.raw, le32_to_cpu(pkt->len));
Zhu Yib481de92007-09-25 17:54:57 -07001102}
1103
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001104static void iwl4965_bg_beacon_update(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -07001105{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001106 struct iwl_priv *priv =
1107 container_of(work, struct iwl_priv, beacon_update);
Zhu Yib481de92007-09-25 17:54:57 -07001108 struct sk_buff *beacon;
1109
1110 /* Pull updated AP beacon from mac80211. will fail if not in AP mode */
Johannes Berge039fa42008-05-15 12:55:29 +02001111 beacon = ieee80211_beacon_get(priv->hw, priv->vif);
Zhu Yib481de92007-09-25 17:54:57 -07001112
1113 if (!beacon) {
1114 IWL_ERROR("update beacon failed\n");
1115 return;
1116 }
1117
1118 mutex_lock(&priv->mutex);
1119 /* new beacon skb is allocated every time; dispose previous.*/
1120 if (priv->ibss_beacon)
1121 dev_kfree_skb(priv->ibss_beacon);
1122
1123 priv->ibss_beacon = beacon;
1124 mutex_unlock(&priv->mutex);
1125
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001126 iwl4965_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001127}
1128
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08001129/**
1130 * iwl4965_bg_statistics_periodic - Timer callback to queue statistics
1131 *
1132 * This callback is provided in order to send a statistics request.
1133 *
1134 * This timer function is continually reset to execute within
1135 * REG_RECALIB_PERIOD seconds since the last STATISTICS_NOTIFICATION
1136 * was received. We need to ensure we receive the statistics in order
1137 * to update the temperature used for calibrating the TXPOWER.
1138 */
1139static void iwl4965_bg_statistics_periodic(unsigned long data)
1140{
1141 struct iwl_priv *priv = (struct iwl_priv *)data;
1142
1143 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
1144 return;
1145
1146 iwl_send_statistics_request(priv, CMD_ASYNC);
1147}
1148
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001149static void iwl4965_rx_beacon_notif(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +08001150 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07001151{
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001152#ifdef CONFIG_IWLWIFI_DEBUG
Tomas Winklerdb11d632008-05-05 10:22:33 +08001153 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001154 struct iwl4965_beacon_notif *beacon = &(pkt->u.beacon_status);
Tomas Winklere7d326ac2008-06-12 09:47:11 +08001155 u8 rate = iwl_hw_get_rate(beacon->beacon_notify_hdr.rate_n_flags);
Zhu Yib481de92007-09-25 17:54:57 -07001156
1157 IWL_DEBUG_RX("beacon status %x retries %d iss %d "
1158 "tsf %d %d rate %d\n",
Tomas Winkler25a65722008-06-12 09:47:07 +08001159 le32_to_cpu(beacon->beacon_notify_hdr.u.status) & TX_STATUS_MSK,
Zhu Yib481de92007-09-25 17:54:57 -07001160 beacon->beacon_notify_hdr.failure_frame,
1161 le32_to_cpu(beacon->ibss_mgr_status),
1162 le32_to_cpu(beacon->high_tsf),
1163 le32_to_cpu(beacon->low_tsf), rate);
1164#endif
1165
Johannes Berg05c914f2008-09-11 00:01:58 +02001166 if ((priv->iw_mode == NL80211_IFTYPE_AP) &&
Zhu Yib481de92007-09-25 17:54:57 -07001167 (!test_bit(STATUS_EXIT_PENDING, &priv->status)))
1168 queue_work(priv->workqueue, &priv->beacon_update);
1169}
1170
Zhu Yib481de92007-09-25 17:54:57 -07001171/* Handle notification from uCode that card's power state is changing
1172 * due to software, hardware, or critical temperature RFKILL */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001173static void iwl4965_rx_card_state_notif(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +08001174 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07001175{
Tomas Winklerdb11d632008-05-05 10:22:33 +08001176 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07001177 u32 flags = le32_to_cpu(pkt->u.card_state_notif.flags);
1178 unsigned long status = priv->status;
1179
1180 IWL_DEBUG_RF_KILL("Card state received: HW:%s SW:%s\n",
1181 (flags & HW_CARD_DISABLED) ? "Kill" : "On",
1182 (flags & SW_CARD_DISABLED) ? "Kill" : "On");
1183
1184 if (flags & (SW_CARD_DISABLED | HW_CARD_DISABLED |
1185 RF_CARD_DISABLED)) {
1186
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001187 iwl_write32(priv, CSR_UCODE_DRV_GP1_SET,
Zhu Yib481de92007-09-25 17:54:57 -07001188 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
1189
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001190 if (!iwl_grab_nic_access(priv)) {
1191 iwl_write_direct32(
Zhu Yib481de92007-09-25 17:54:57 -07001192 priv, HBUS_TARG_MBX_C,
1193 HBUS_TARG_MBX_C_REG_BIT_CMD_BLOCKED);
1194
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001195 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001196 }
1197
1198 if (!(flags & RXON_CARD_DISABLED)) {
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001199 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR,
Zhu Yib481de92007-09-25 17:54:57 -07001200 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001201 if (!iwl_grab_nic_access(priv)) {
1202 iwl_write_direct32(
Zhu Yib481de92007-09-25 17:54:57 -07001203 priv, HBUS_TARG_MBX_C,
1204 HBUS_TARG_MBX_C_REG_BIT_CMD_BLOCKED);
1205
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001206 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001207 }
1208 }
1209
1210 if (flags & RF_CARD_DISABLED) {
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001211 iwl_write32(priv, CSR_UCODE_DRV_GP1_SET,
Zhu Yib481de92007-09-25 17:54:57 -07001212 CSR_UCODE_DRV_GP1_REG_BIT_CT_KILL_EXIT);
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001213 iwl_read32(priv, CSR_UCODE_DRV_GP1);
1214 if (!iwl_grab_nic_access(priv))
1215 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001216 }
1217 }
1218
1219 if (flags & HW_CARD_DISABLED)
1220 set_bit(STATUS_RF_KILL_HW, &priv->status);
1221 else
1222 clear_bit(STATUS_RF_KILL_HW, &priv->status);
1223
1224
1225 if (flags & SW_CARD_DISABLED)
1226 set_bit(STATUS_RF_KILL_SW, &priv->status);
1227 else
1228 clear_bit(STATUS_RF_KILL_SW, &priv->status);
1229
1230 if (!(flags & RXON_CARD_DISABLED))
Tomas Winkler2a421b92008-06-12 09:47:10 +08001231 iwl_scan_cancel(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001232
1233 if ((test_bit(STATUS_RF_KILL_HW, &status) !=
1234 test_bit(STATUS_RF_KILL_HW, &priv->status)) ||
1235 (test_bit(STATUS_RF_KILL_SW, &status) !=
1236 test_bit(STATUS_RF_KILL_SW, &priv->status)))
1237 queue_work(priv->workqueue, &priv->rf_kill);
1238 else
1239 wake_up_interruptible(&priv->wait_command_queue);
1240}
1241
Tomas Winklere2e3c572008-07-18 13:53:04 +08001242int iwl4965_set_pwr_src(struct iwl_priv *priv, enum iwl_pwr_src src)
1243{
1244 int ret;
1245 unsigned long flags;
1246
1247 spin_lock_irqsave(&priv->lock, flags);
1248 ret = iwl_grab_nic_access(priv);
1249 if (ret)
1250 goto err;
1251
1252 if (src == IWL_PWR_SRC_VAUX) {
1253 u32 val;
Tomas Winklere7b63582008-09-03 11:26:49 +08001254 ret = pci_read_config_dword(priv->pci_dev, PCI_CFG_POWER_SOURCE,
Tomas Winklere2e3c572008-07-18 13:53:04 +08001255 &val);
1256
1257 if (val & PCI_CFG_PMC_PME_FROM_D3COLD_SUPPORT)
1258 iwl_set_bits_mask_prph(priv, APMG_PS_CTRL_REG,
1259 APMG_PS_CTRL_VAL_PWR_SRC_VAUX,
1260 ~APMG_PS_CTRL_MSK_PWR_SRC);
1261 } else {
1262 iwl_set_bits_mask_prph(priv, APMG_PS_CTRL_REG,
1263 APMG_PS_CTRL_VAL_PWR_SRC_VMAIN,
1264 ~APMG_PS_CTRL_MSK_PWR_SRC);
1265 }
1266
1267 iwl_release_nic_access(priv);
1268err:
1269 spin_unlock_irqrestore(&priv->lock, flags);
1270 return ret;
1271}
1272
Zhu Yib481de92007-09-25 17:54:57 -07001273/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001274 * iwl4965_setup_rx_handlers - Initialize Rx handler callbacks
Zhu Yib481de92007-09-25 17:54:57 -07001275 *
1276 * Setup the RX handlers for each of the reply types sent from the uCode
1277 * to the host.
1278 *
1279 * This function chains into the hardware specific files for them to setup
1280 * any hardware specific handlers as well.
1281 */
Emmanuel Grumbach653fa4a2008-06-30 17:23:11 +08001282static void iwl_setup_rx_handlers(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001283{
Tomas Winkler885ba202008-05-29 16:34:55 +08001284 priv->rx_handlers[REPLY_ALIVE] = iwl_rx_reply_alive;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001285 priv->rx_handlers[REPLY_ERROR] = iwl4965_rx_reply_error;
1286 priv->rx_handlers[CHANNEL_SWITCH_NOTIFICATION] = iwl4965_rx_csa;
Zhu Yib481de92007-09-25 17:54:57 -07001287 priv->rx_handlers[SPECTRUM_MEASURE_NOTIFICATION] =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001288 iwl4965_rx_spectrum_measure_notif;
1289 priv->rx_handlers[PM_SLEEP_NOTIFICATION] = iwl4965_rx_pm_sleep_notif;
Zhu Yib481de92007-09-25 17:54:57 -07001290 priv->rx_handlers[PM_DEBUG_STATISTIC_NOTIFIC] =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001291 iwl4965_rx_pm_debug_statistics_notif;
1292 priv->rx_handlers[BEACON_NOTIFICATION] = iwl4965_rx_beacon_notif;
Zhu Yib481de92007-09-25 17:54:57 -07001293
Ben Cahill9fbab512007-11-29 11:09:47 +08001294 /*
1295 * The same handler is used for both the REPLY to a discrete
1296 * statistics request from the host as well as for the periodic
1297 * statistics notifications (after received beacons) from the uCode.
Zhu Yib481de92007-09-25 17:54:57 -07001298 */
Emmanuel Grumbach8f91aec2008-06-30 17:23:07 +08001299 priv->rx_handlers[REPLY_STATISTICS_CMD] = iwl_rx_statistics;
1300 priv->rx_handlers[STATISTICS_NOTIFICATION] = iwl_rx_statistics;
Tomas Winkler2a421b92008-06-12 09:47:10 +08001301
1302 iwl_setup_rx_scan_handlers(priv);
1303
Ron Rindjunsky37a44212008-05-29 16:35:18 +08001304 /* status change handler */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001305 priv->rx_handlers[CARD_STATE_NOTIFICATION] = iwl4965_rx_card_state_notif;
Zhu Yib481de92007-09-25 17:54:57 -07001306
Tomas Winklerc1354752008-05-29 16:35:04 +08001307 priv->rx_handlers[MISSED_BEACONS_NOTIFICATION] =
1308 iwl_rx_missed_beacon_notif;
Ron Rindjunsky37a44212008-05-29 16:35:18 +08001309 /* Rx handlers */
Emmanuel Grumbach1781a072008-06-30 17:23:09 +08001310 priv->rx_handlers[REPLY_RX_PHY_CMD] = iwl_rx_reply_rx_phy;
1311 priv->rx_handlers[REPLY_RX_MPDU_CMD] = iwl_rx_reply_rx;
Emmanuel Grumbach653fa4a2008-06-30 17:23:11 +08001312 /* block ack */
1313 priv->rx_handlers[REPLY_COMPRESSED_BA] = iwl_rx_reply_compressed_ba;
Ben Cahill9fbab512007-11-29 11:09:47 +08001314 /* Set up hardware specific Rx handlers */
Emmanuel Grumbachd4789ef2008-04-24 11:55:20 -07001315 priv->cfg->ops->lib->rx_handler_setup(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001316}
1317
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001318/*
1319 * this should be called while priv->lock is locked
1320*/
Tomas Winklera55360e2008-05-05 10:22:28 +08001321static void __iwl_rx_replenish(struct iwl_priv *priv)
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001322{
Tomas Winklera55360e2008-05-05 10:22:28 +08001323 iwl_rx_allocate(priv);
1324 iwl_rx_queue_restock(priv);
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001325}
1326
1327
Zhu Yib481de92007-09-25 17:54:57 -07001328/**
Tomas Winklera55360e2008-05-05 10:22:28 +08001329 * iwl_rx_handle - Main entry function for receiving responses from uCode
Zhu Yib481de92007-09-25 17:54:57 -07001330 *
1331 * Uses the priv->rx_handlers callback function array to invoke
1332 * the appropriate handlers, including command responses,
1333 * frame-received notifications, and other notifications.
1334 */
Tomas Winklera55360e2008-05-05 10:22:28 +08001335void iwl_rx_handle(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001336{
Tomas Winklera55360e2008-05-05 10:22:28 +08001337 struct iwl_rx_mem_buffer *rxb;
Tomas Winklerdb11d632008-05-05 10:22:33 +08001338 struct iwl_rx_packet *pkt;
Tomas Winklera55360e2008-05-05 10:22:28 +08001339 struct iwl_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07001340 u32 r, i;
1341 int reclaim;
1342 unsigned long flags;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001343 u8 fill_rx = 0;
Mohamed Abbasd68ab682008-02-07 13:16:33 -08001344 u32 count = 8;
Zhu Yib481de92007-09-25 17:54:57 -07001345
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001346 /* uCode's read index (stored in shared DRAM) indicates the last Rx
1347 * buffer that the driver may process (last buffer filled by ucode). */
Ron Rindjunskyd67f5482008-05-05 10:22:49 +08001348 r = priv->cfg->ops->lib->shared_mem_rx_idx(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001349 i = rxq->read;
1350
1351 /* Rx interrupt, but nothing sent from uCode */
1352 if (i == r)
Ester Kummerf3d67992008-05-06 11:05:12 +08001353 IWL_DEBUG(IWL_DL_RX, "r = %d, i = %d\n", r, i);
Zhu Yib481de92007-09-25 17:54:57 -07001354
Tomas Winklera55360e2008-05-05 10:22:28 +08001355 if (iwl_rx_queue_space(rxq) > (RX_QUEUE_SIZE / 2))
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001356 fill_rx = 1;
1357
Zhu Yib481de92007-09-25 17:54:57 -07001358 while (i != r) {
1359 rxb = rxq->queue[i];
1360
Ben Cahill9fbab512007-11-29 11:09:47 +08001361 /* If an RXB doesn't have a Rx queue slot associated with it,
Zhu Yib481de92007-09-25 17:54:57 -07001362 * then a bug has been introduced in the queue refilling
1363 * routines -- catch it here */
1364 BUG_ON(rxb == NULL);
1365
1366 rxq->queue[i] = NULL;
1367
1368 pci_dma_sync_single_for_cpu(priv->pci_dev, rxb->dma_addr,
Tomas Winkler5425e492008-04-15 16:01:38 -07001369 priv->hw_params.rx_buf_size,
Zhu Yib481de92007-09-25 17:54:57 -07001370 PCI_DMA_FROMDEVICE);
Tomas Winklerdb11d632008-05-05 10:22:33 +08001371 pkt = (struct iwl_rx_packet *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07001372
1373 /* Reclaim a command buffer only if this packet is a response
1374 * to a (driver-originated) command.
1375 * If the packet (e.g. Rx frame) originated from uCode,
1376 * there is no command buffer to reclaim.
1377 * Ucode should set SEQ_RX_FRAME bit if ucode-originated,
1378 * but apparently a few don't get set; catch them here. */
1379 reclaim = !(pkt->hdr.sequence & SEQ_RX_FRAME) &&
1380 (pkt->hdr.cmd != REPLY_RX_PHY_CMD) &&
Tomas Winkler857485c2008-03-21 13:53:44 -07001381 (pkt->hdr.cmd != REPLY_RX) &&
Zhu Yicfe01702007-09-27 11:27:31 +08001382 (pkt->hdr.cmd != REPLY_COMPRESSED_BA) &&
Zhu Yib481de92007-09-25 17:54:57 -07001383 (pkt->hdr.cmd != STATISTICS_NOTIFICATION) &&
1384 (pkt->hdr.cmd != REPLY_TX);
1385
1386 /* Based on type of command response or notification,
1387 * handle those that need handling via function in
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001388 * rx_handlers table. See iwl4965_setup_rx_handlers() */
Zhu Yib481de92007-09-25 17:54:57 -07001389 if (priv->rx_handlers[pkt->hdr.cmd]) {
Ester Kummerf3d67992008-05-06 11:05:12 +08001390 IWL_DEBUG(IWL_DL_RX, "r = %d, i = %d, %s, 0x%02x\n", r,
1391 i, get_cmd_string(pkt->hdr.cmd), pkt->hdr.cmd);
Zhu Yib481de92007-09-25 17:54:57 -07001392 priv->rx_handlers[pkt->hdr.cmd] (priv, rxb);
1393 } else {
1394 /* No handling needed */
Ester Kummerf3d67992008-05-06 11:05:12 +08001395 IWL_DEBUG(IWL_DL_RX,
Zhu Yib481de92007-09-25 17:54:57 -07001396 "r %d i %d No handler needed for %s, 0x%02x\n",
1397 r, i, get_cmd_string(pkt->hdr.cmd),
1398 pkt->hdr.cmd);
1399 }
1400
1401 if (reclaim) {
Ben Cahill9fbab512007-11-29 11:09:47 +08001402 /* Invoke any callbacks, transfer the skb to caller, and
Tomas Winkler857485c2008-03-21 13:53:44 -07001403 * fire off the (possibly) blocking iwl_send_cmd()
Zhu Yib481de92007-09-25 17:54:57 -07001404 * as we reclaim the driver command queue */
1405 if (rxb && rxb->skb)
Tomas Winkler17b88922008-05-29 16:35:12 +08001406 iwl_tx_cmd_complete(priv, rxb);
Zhu Yib481de92007-09-25 17:54:57 -07001407 else
1408 IWL_WARNING("Claim null rxb?\n");
1409 }
1410
1411 /* For now we just don't re-use anything. We can tweak this
1412 * later to try and re-use notification packets and SKBs that
1413 * fail to Rx correctly */
1414 if (rxb->skb != NULL) {
1415 priv->alloc_rxb_skb--;
1416 dev_kfree_skb_any(rxb->skb);
1417 rxb->skb = NULL;
1418 }
1419
1420 pci_unmap_single(priv->pci_dev, rxb->dma_addr,
Tomas Winkler5425e492008-04-15 16:01:38 -07001421 priv->hw_params.rx_buf_size,
Ron Rindjunsky9ee1ba42007-11-26 16:14:42 +02001422 PCI_DMA_FROMDEVICE);
Zhu Yib481de92007-09-25 17:54:57 -07001423 spin_lock_irqsave(&rxq->lock, flags);
1424 list_add_tail(&rxb->list, &priv->rxq.rx_used);
1425 spin_unlock_irqrestore(&rxq->lock, flags);
1426 i = (i + 1) & RX_QUEUE_MASK;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001427 /* If there are a lot of unused frames,
1428 * restock the Rx queue so ucode wont assert. */
1429 if (fill_rx) {
1430 count++;
1431 if (count >= 8) {
1432 priv->rxq.read = i;
Tomas Winklera55360e2008-05-05 10:22:28 +08001433 __iwl_rx_replenish(priv);
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001434 count = 0;
1435 }
1436 }
Zhu Yib481de92007-09-25 17:54:57 -07001437 }
1438
1439 /* Backtrack one entry */
1440 priv->rxq.read = i;
Tomas Winklera55360e2008-05-05 10:22:28 +08001441 iwl_rx_queue_restock(priv);
1442}
Tomas Winklera55360e2008-05-05 10:22:28 +08001443
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001444#ifdef CONFIG_IWLWIFI_DEBUG
Ester Kummerbf403db2008-05-05 10:22:40 +08001445static void iwl4965_print_rx_config_cmd(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001446{
Gregory Greenmanc1adf9f2008-05-15 13:53:59 +08001447 struct iwl_rxon_cmd *rxon = &priv->staging_rxon;
Joe Perches0795af52007-10-03 17:59:30 -07001448
Zhu Yib481de92007-09-25 17:54:57 -07001449 IWL_DEBUG_RADIO("RX CONFIG:\n");
Ester Kummerbf403db2008-05-05 10:22:40 +08001450 iwl_print_hex_dump(priv, IWL_DL_RADIO, (u8 *) rxon, sizeof(*rxon));
Zhu Yib481de92007-09-25 17:54:57 -07001451 IWL_DEBUG_RADIO("u16 channel: 0x%x\n", le16_to_cpu(rxon->channel));
1452 IWL_DEBUG_RADIO("u32 flags: 0x%08X\n", le32_to_cpu(rxon->flags));
1453 IWL_DEBUG_RADIO("u32 filter_flags: 0x%08x\n",
1454 le32_to_cpu(rxon->filter_flags));
1455 IWL_DEBUG_RADIO("u8 dev_type: 0x%x\n", rxon->dev_type);
1456 IWL_DEBUG_RADIO("u8 ofdm_basic_rates: 0x%02x\n",
1457 rxon->ofdm_basic_rates);
1458 IWL_DEBUG_RADIO("u8 cck_basic_rates: 0x%02x\n", rxon->cck_basic_rates);
Johannes Berge1749612008-10-27 15:59:26 -07001459 IWL_DEBUG_RADIO("u8[6] node_addr: %pM\n", rxon->node_addr);
1460 IWL_DEBUG_RADIO("u8[6] bssid_addr: %pM\n", rxon->bssid_addr);
Zhu Yib481de92007-09-25 17:54:57 -07001461 IWL_DEBUG_RADIO("u16 assoc_id: 0x%x\n", le16_to_cpu(rxon->assoc_id));
1462}
1463#endif
1464
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001465static void iwl4965_enable_interrupts(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001466{
1467 IWL_DEBUG_ISR("Enabling interrupts\n");
1468 set_bit(STATUS_INT_ENABLED, &priv->status);
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001469 iwl_write32(priv, CSR_INT_MASK, CSR_INI_SET_MASK);
Zhu Yib481de92007-09-25 17:54:57 -07001470}
1471
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001472/* call this function to flush any scheduled tasklet */
1473static inline void iwl_synchronize_irq(struct iwl_priv *priv)
1474{
1475 /* wait to make sure we flush pedding tasklet*/
1476 synchronize_irq(priv->pci_dev->irq);
1477 tasklet_kill(&priv->irq_tasklet);
1478}
1479
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001480static inline void iwl4965_disable_interrupts(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001481{
1482 clear_bit(STATUS_INT_ENABLED, &priv->status);
1483
1484 /* disable interrupts from uCode/NIC to host */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001485 iwl_write32(priv, CSR_INT_MASK, 0x00000000);
Zhu Yib481de92007-09-25 17:54:57 -07001486
1487 /* acknowledge/clear/reset any interrupts still pending
1488 * from uCode or flow handler (Rx/Tx DMA) */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001489 iwl_write32(priv, CSR_INT, 0xffffffff);
1490 iwl_write32(priv, CSR_FH_INT_STATUS, 0xffffffff);
Zhu Yib481de92007-09-25 17:54:57 -07001491 IWL_DEBUG_ISR("Disabled interrupts\n");
1492}
1493
Zhu Yib481de92007-09-25 17:54:57 -07001494
Zhu Yib481de92007-09-25 17:54:57 -07001495/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001496 * iwl4965_irq_handle_error - called for HW or SW error interrupt from card
Zhu Yib481de92007-09-25 17:54:57 -07001497 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001498static void iwl4965_irq_handle_error(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001499{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001500 /* Set the FW error flag -- cleared on iwl4965_down */
Zhu Yib481de92007-09-25 17:54:57 -07001501 set_bit(STATUS_FW_ERROR, &priv->status);
1502
1503 /* Cancel currently queued command. */
1504 clear_bit(STATUS_HCMD_ACTIVE, &priv->status);
1505
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001506#ifdef CONFIG_IWLWIFI_DEBUG
Ester Kummerbf403db2008-05-05 10:22:40 +08001507 if (priv->debug_level & IWL_DL_FW_ERRORS) {
Ester Kummerede0cba2008-05-29 16:34:46 +08001508 iwl_dump_nic_error_log(priv);
Ester Kummer189a2b52008-05-15 13:54:18 +08001509 iwl_dump_nic_event_log(priv);
Ester Kummerbf403db2008-05-05 10:22:40 +08001510 iwl4965_print_rx_config_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001511 }
1512#endif
1513
1514 wake_up_interruptible(&priv->wait_command_queue);
1515
1516 /* Keep the restart process from trying to send host
1517 * commands by clearing the INIT status bit */
1518 clear_bit(STATUS_READY, &priv->status);
1519
1520 if (!test_bit(STATUS_EXIT_PENDING, &priv->status)) {
Ester Kummerf3d67992008-05-06 11:05:12 +08001521 IWL_DEBUG(IWL_DL_FW_ERRORS,
Zhu Yib481de92007-09-25 17:54:57 -07001522 "Restarting adapter due to uCode error.\n");
1523
Tomas Winkler3109ece2008-03-28 16:33:35 -07001524 if (iwl_is_associated(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07001525 memcpy(&priv->recovery_rxon, &priv->active_rxon,
1526 sizeof(priv->recovery_rxon));
1527 priv->error_recovering = 1;
1528 }
Ester Kummer3a1081e2008-05-06 11:05:14 +08001529 if (priv->cfg->mod_params->restart_fw)
1530 queue_work(priv->workqueue, &priv->restart);
Zhu Yib481de92007-09-25 17:54:57 -07001531 }
1532}
1533
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001534static void iwl4965_error_recovery(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001535{
1536 unsigned long flags;
1537
1538 memcpy(&priv->staging_rxon, &priv->recovery_rxon,
1539 sizeof(priv->staging_rxon));
1540 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001541 iwl4965_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001542
Tomas Winkler4f40e4d2008-05-15 13:54:04 +08001543 iwl_rxon_add_station(priv, priv->bssid, 1);
Zhu Yib481de92007-09-25 17:54:57 -07001544
1545 spin_lock_irqsave(&priv->lock, flags);
1546 priv->assoc_id = le16_to_cpu(priv->staging_rxon.assoc_id);
1547 priv->error_recovering = 0;
1548 spin_unlock_irqrestore(&priv->lock, flags);
1549}
1550
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001551static void iwl4965_irq_tasklet(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001552{
1553 u32 inta, handled = 0;
1554 u32 inta_fh;
1555 unsigned long flags;
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001556#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07001557 u32 inta_mask;
1558#endif
1559
1560 spin_lock_irqsave(&priv->lock, flags);
1561
1562 /* Ack/clear/reset pending uCode interrupts.
1563 * Note: Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS,
1564 * and will clear only when CSR_FH_INT_STATUS gets cleared. */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001565 inta = iwl_read32(priv, CSR_INT);
1566 iwl_write32(priv, CSR_INT, inta);
Zhu Yib481de92007-09-25 17:54:57 -07001567
1568 /* Ack/clear/reset pending flow-handler (DMA) interrupts.
1569 * Any new interrupts that happen after this, either while we're
1570 * in this tasklet, or later, will show up in next ISR/tasklet. */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001571 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
1572 iwl_write32(priv, CSR_FH_INT_STATUS, inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -07001573
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001574#ifdef CONFIG_IWLWIFI_DEBUG
Ester Kummerbf403db2008-05-05 10:22:40 +08001575 if (priv->debug_level & IWL_DL_ISR) {
Ben Cahill9fbab512007-11-29 11:09:47 +08001576 /* just for debug */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001577 inta_mask = iwl_read32(priv, CSR_INT_MASK);
Zhu Yib481de92007-09-25 17:54:57 -07001578 IWL_DEBUG_ISR("inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
1579 inta, inta_mask, inta_fh);
1580 }
1581#endif
1582
1583 /* Since CSR_INT and CSR_FH_INT_STATUS reads and clears are not
1584 * atomic, make sure that inta covers all the interrupts that
1585 * we've discovered, even if FH interrupt came in just after
1586 * reading CSR_INT. */
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08001587 if (inta_fh & CSR49_FH_INT_RX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07001588 inta |= CSR_INT_BIT_FH_RX;
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08001589 if (inta_fh & CSR49_FH_INT_TX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07001590 inta |= CSR_INT_BIT_FH_TX;
1591
1592 /* Now service all interrupt bits discovered above. */
1593 if (inta & CSR_INT_BIT_HW_ERR) {
1594 IWL_ERROR("Microcode HW error detected. Restarting.\n");
1595
1596 /* Tell the device to stop sending interrupts */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001597 iwl4965_disable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001598
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001599 iwl4965_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001600
1601 handled |= CSR_INT_BIT_HW_ERR;
1602
1603 spin_unlock_irqrestore(&priv->lock, flags);
1604
1605 return;
1606 }
1607
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001608#ifdef CONFIG_IWLWIFI_DEBUG
Ester Kummerbf403db2008-05-05 10:22:40 +08001609 if (priv->debug_level & (IWL_DL_ISR)) {
Zhu Yib481de92007-09-25 17:54:57 -07001610 /* NIC fires this, but we don't use it, redundant with WAKEUP */
Joonwoo Park25c03d82008-01-23 10:15:20 -08001611 if (inta & CSR_INT_BIT_SCD)
1612 IWL_DEBUG_ISR("Scheduler finished to transmit "
1613 "the frame/frames.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001614
1615 /* Alive notification via Rx interrupt will do the real work */
1616 if (inta & CSR_INT_BIT_ALIVE)
1617 IWL_DEBUG_ISR("Alive interrupt\n");
1618 }
1619#endif
1620 /* Safely ignore these bits for debug checks below */
Joonwoo Park25c03d82008-01-23 10:15:20 -08001621 inta &= ~(CSR_INT_BIT_SCD | CSR_INT_BIT_ALIVE);
Zhu Yib481de92007-09-25 17:54:57 -07001622
Ben Cahill9fbab512007-11-29 11:09:47 +08001623 /* HW RF KILL switch toggled */
Zhu Yib481de92007-09-25 17:54:57 -07001624 if (inta & CSR_INT_BIT_RF_KILL) {
1625 int hw_rf_kill = 0;
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001626 if (!(iwl_read32(priv, CSR_GP_CNTRL) &
Zhu Yib481de92007-09-25 17:54:57 -07001627 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW))
1628 hw_rf_kill = 1;
1629
Ester Kummerf3d67992008-05-06 11:05:12 +08001630 IWL_DEBUG(IWL_DL_RF_KILL, "RF_KILL bit toggled to %s.\n",
Zhu Yib481de92007-09-25 17:54:57 -07001631 hw_rf_kill ? "disable radio":"enable radio");
1632
Emmanuel Grumbacha9efa652008-06-30 17:23:25 +08001633 /* driver only loads ucode once setting the interface up.
1634 * the driver as well won't allow loading if RFKILL is set
1635 * therefore no need to restart the driver from this handler
1636 */
1637 if (!hw_rf_kill && !test_bit(STATUS_ALIVE, &priv->status))
Zhu Yi53e49092007-12-06 16:08:44 +08001638 clear_bit(STATUS_RF_KILL_HW, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07001639
1640 handled |= CSR_INT_BIT_RF_KILL;
1641 }
1642
Ben Cahill9fbab512007-11-29 11:09:47 +08001643 /* Chip got too hot and stopped itself */
Zhu Yib481de92007-09-25 17:54:57 -07001644 if (inta & CSR_INT_BIT_CT_KILL) {
1645 IWL_ERROR("Microcode CT kill error detected.\n");
1646 handled |= CSR_INT_BIT_CT_KILL;
1647 }
1648
1649 /* Error detected by uCode */
1650 if (inta & CSR_INT_BIT_SW_ERR) {
1651 IWL_ERROR("Microcode SW error detected. Restarting 0x%X.\n",
1652 inta);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001653 iwl4965_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001654 handled |= CSR_INT_BIT_SW_ERR;
1655 }
1656
1657 /* uCode wakes up after power-down sleep */
1658 if (inta & CSR_INT_BIT_WAKEUP) {
1659 IWL_DEBUG_ISR("Wakeup interrupt\n");
Tomas Winklera55360e2008-05-05 10:22:28 +08001660 iwl_rx_queue_update_write_ptr(priv, &priv->rxq);
Tomas Winklerbabcebf2008-05-15 13:54:00 +08001661 iwl_txq_update_write_ptr(priv, &priv->txq[0]);
1662 iwl_txq_update_write_ptr(priv, &priv->txq[1]);
1663 iwl_txq_update_write_ptr(priv, &priv->txq[2]);
1664 iwl_txq_update_write_ptr(priv, &priv->txq[3]);
1665 iwl_txq_update_write_ptr(priv, &priv->txq[4]);
1666 iwl_txq_update_write_ptr(priv, &priv->txq[5]);
Zhu Yib481de92007-09-25 17:54:57 -07001667
1668 handled |= CSR_INT_BIT_WAKEUP;
1669 }
1670
1671 /* All uCode command responses, including Tx command responses,
1672 * Rx "responses" (frame-received notification), and other
1673 * notifications from uCode come through here*/
1674 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) {
Tomas Winklera55360e2008-05-05 10:22:28 +08001675 iwl_rx_handle(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001676 handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX);
1677 }
1678
1679 if (inta & CSR_INT_BIT_FH_TX) {
1680 IWL_DEBUG_ISR("Tx interrupt\n");
1681 handled |= CSR_INT_BIT_FH_TX;
Ron Rindjunskydbb983b2008-05-15 13:54:12 +08001682 /* FH finished to write, send event */
1683 priv->ucode_write_complete = 1;
1684 wake_up_interruptible(&priv->wait_command_queue);
Zhu Yib481de92007-09-25 17:54:57 -07001685 }
1686
1687 if (inta & ~handled)
1688 IWL_ERROR("Unhandled INTA bits 0x%08x\n", inta & ~handled);
1689
1690 if (inta & ~CSR_INI_SET_MASK) {
1691 IWL_WARNING("Disabled INTA bits 0x%08x were pending\n",
1692 inta & ~CSR_INI_SET_MASK);
1693 IWL_WARNING(" with FH_INT = 0x%08x\n", inta_fh);
1694 }
1695
1696 /* Re-enable all interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001697 /* only Re-enable if diabled by irq */
1698 if (test_bit(STATUS_INT_ENABLED, &priv->status))
1699 iwl4965_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001700
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001701#ifdef CONFIG_IWLWIFI_DEBUG
Ester Kummerbf403db2008-05-05 10:22:40 +08001702 if (priv->debug_level & (IWL_DL_ISR)) {
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001703 inta = iwl_read32(priv, CSR_INT);
1704 inta_mask = iwl_read32(priv, CSR_INT_MASK);
1705 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
Zhu Yib481de92007-09-25 17:54:57 -07001706 IWL_DEBUG_ISR("End inta 0x%08x, enabled 0x%08x, fh 0x%08x, "
1707 "flags 0x%08lx\n", inta, inta_mask, inta_fh, flags);
1708 }
1709#endif
1710 spin_unlock_irqrestore(&priv->lock, flags);
1711}
1712
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001713static irqreturn_t iwl4965_isr(int irq, void *data)
Zhu Yib481de92007-09-25 17:54:57 -07001714{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001715 struct iwl_priv *priv = data;
Zhu Yib481de92007-09-25 17:54:57 -07001716 u32 inta, inta_mask;
1717 u32 inta_fh;
1718 if (!priv)
1719 return IRQ_NONE;
1720
1721 spin_lock(&priv->lock);
1722
1723 /* Disable (but don't clear!) interrupts here to avoid
1724 * back-to-back ISRs and sporadic interrupts from our NIC.
1725 * If we have something to service, the tasklet will re-enable ints.
1726 * If we *don't* have something, we'll re-enable before leaving here. */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001727 inta_mask = iwl_read32(priv, CSR_INT_MASK); /* just for debug */
1728 iwl_write32(priv, CSR_INT_MASK, 0x00000000);
Zhu Yib481de92007-09-25 17:54:57 -07001729
1730 /* Discover which interrupts are active/pending */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001731 inta = iwl_read32(priv, CSR_INT);
1732 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
Zhu Yib481de92007-09-25 17:54:57 -07001733
1734 /* Ignore interrupt if there's nothing in NIC to service.
1735 * This may be due to IRQ shared with another device,
1736 * or due to sporadic interrupts thrown from our NIC. */
1737 if (!inta && !inta_fh) {
1738 IWL_DEBUG_ISR("Ignore interrupt, inta == 0, inta_fh == 0\n");
1739 goto none;
1740 }
1741
1742 if ((inta == 0xFFFFFFFF) || ((inta & 0xFFFFFFF0) == 0xa5a5a5a0)) {
Oliver Neukum66fbb542007-11-15 09:31:10 +08001743 /* Hardware disappeared. It might have already raised
1744 * an interrupt */
Zhu Yib481de92007-09-25 17:54:57 -07001745 IWL_WARNING("HARDWARE GONE?? INTA == 0x%080x\n", inta);
Oliver Neukum66fbb542007-11-15 09:31:10 +08001746 goto unplugged;
Zhu Yib481de92007-09-25 17:54:57 -07001747 }
1748
1749 IWL_DEBUG_ISR("ISR inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
1750 inta, inta_mask, inta_fh);
1751
Joonwoo Park25c03d82008-01-23 10:15:20 -08001752 inta &= ~CSR_INT_BIT_SCD;
1753
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001754 /* iwl4965_irq_tasklet() will service interrupts and re-enable them */
Joonwoo Park25c03d82008-01-23 10:15:20 -08001755 if (likely(inta || inta_fh))
1756 tasklet_schedule(&priv->irq_tasklet);
Zhu Yib481de92007-09-25 17:54:57 -07001757
Oliver Neukum66fbb542007-11-15 09:31:10 +08001758 unplugged:
1759 spin_unlock(&priv->lock);
Zhu Yib481de92007-09-25 17:54:57 -07001760 return IRQ_HANDLED;
1761
1762 none:
1763 /* re-enable interrupts here since we don't have anything to service. */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001764 /* only Re-enable if diabled by irq */
1765 if (test_bit(STATUS_INT_ENABLED, &priv->status))
1766 iwl4965_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001767 spin_unlock(&priv->lock);
1768 return IRQ_NONE;
1769}
1770
Zhu Yib481de92007-09-25 17:54:57 -07001771/******************************************************************************
1772 *
1773 * uCode download functions
1774 *
1775 ******************************************************************************/
1776
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001777static void iwl4965_dealloc_ucode_pci(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001778{
Tomas Winkler98c92212008-01-14 17:46:20 -08001779 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_code);
1780 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data);
1781 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
1782 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init);
1783 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init_data);
1784 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_boot);
Zhu Yib481de92007-09-25 17:54:57 -07001785}
1786
Ron Rindjunskyedcdf8b2008-05-15 13:53:55 +08001787static void iwl4965_nic_start(struct iwl_priv *priv)
1788{
1789 /* Remove all resets to allow NIC to operate */
1790 iwl_write32(priv, CSR_RESET, 0);
1791}
1792
1793
Zhu Yib481de92007-09-25 17:54:57 -07001794/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001795 * iwl4965_read_ucode - Read uCode images from disk file.
Zhu Yib481de92007-09-25 17:54:57 -07001796 *
1797 * Copy into buffers for card to fetch via bus-mastering
1798 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001799static int iwl4965_read_ucode(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001800{
Ron Rindjunsky14b3d332008-06-13 15:44:54 +08001801 struct iwl_ucode *ucode;
Tomas Winkler90e759d2007-11-29 11:09:41 +08001802 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07001803 const struct firmware *ucode_raw;
Tomas Winkler4bf775c2008-03-04 18:09:31 -08001804 const char *name = priv->cfg->fw_name;
Zhu Yib481de92007-09-25 17:54:57 -07001805 u8 *src;
1806 size_t len;
1807 u32 ver, inst_size, data_size, init_size, init_data_size, boot_size;
1808
1809 /* Ask kernel firmware_class module to get the boot firmware off disk.
1810 * request_firmware() is synchronous, file is in memory on return. */
Tomas Winkler90e759d2007-11-29 11:09:41 +08001811 ret = request_firmware(&ucode_raw, name, &priv->pci_dev->dev);
1812 if (ret < 0) {
1813 IWL_ERROR("%s firmware file req failed: Reason %d\n",
1814 name, ret);
Zhu Yib481de92007-09-25 17:54:57 -07001815 goto error;
1816 }
1817
1818 IWL_DEBUG_INFO("Got firmware '%s' file (%zd bytes) from disk\n",
1819 name, ucode_raw->size);
1820
1821 /* Make sure that we got at least our header! */
1822 if (ucode_raw->size < sizeof(*ucode)) {
1823 IWL_ERROR("File size way too small!\n");
Tomas Winkler90e759d2007-11-29 11:09:41 +08001824 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07001825 goto err_release;
1826 }
1827
1828 /* Data from ucode file: header followed by uCode images */
1829 ucode = (void *)ucode_raw->data;
1830
1831 ver = le32_to_cpu(ucode->ver);
1832 inst_size = le32_to_cpu(ucode->inst_size);
1833 data_size = le32_to_cpu(ucode->data_size);
1834 init_size = le32_to_cpu(ucode->init_size);
1835 init_data_size = le32_to_cpu(ucode->init_data_size);
1836 boot_size = le32_to_cpu(ucode->boot_size);
1837
1838 IWL_DEBUG_INFO("f/w package hdr ucode version = 0x%x\n", ver);
1839 IWL_DEBUG_INFO("f/w package hdr runtime inst size = %u\n",
1840 inst_size);
1841 IWL_DEBUG_INFO("f/w package hdr runtime data size = %u\n",
1842 data_size);
1843 IWL_DEBUG_INFO("f/w package hdr init inst size = %u\n",
1844 init_size);
1845 IWL_DEBUG_INFO("f/w package hdr init data size = %u\n",
1846 init_data_size);
1847 IWL_DEBUG_INFO("f/w package hdr boot inst size = %u\n",
1848 boot_size);
1849
1850 /* Verify size of file vs. image size info in file's header */
1851 if (ucode_raw->size < sizeof(*ucode) +
1852 inst_size + data_size + init_size +
1853 init_data_size + boot_size) {
1854
1855 IWL_DEBUG_INFO("uCode file size %d too small\n",
1856 (int)ucode_raw->size);
Tomas Winkler90e759d2007-11-29 11:09:41 +08001857 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07001858 goto err_release;
1859 }
1860
1861 /* Verify that uCode images will fit in card's SRAM */
Ron Rindjunsky099b40b2008-04-21 15:41:53 -07001862 if (inst_size > priv->hw_params.max_inst_size) {
Tomas Winkler90e759d2007-11-29 11:09:41 +08001863 IWL_DEBUG_INFO("uCode instr len %d too large to fit in\n",
1864 inst_size);
1865 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07001866 goto err_release;
1867 }
1868
Ron Rindjunsky099b40b2008-04-21 15:41:53 -07001869 if (data_size > priv->hw_params.max_data_size) {
Tomas Winkler90e759d2007-11-29 11:09:41 +08001870 IWL_DEBUG_INFO("uCode data len %d too large to fit in\n",
1871 data_size);
1872 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07001873 goto err_release;
1874 }
Ron Rindjunsky099b40b2008-04-21 15:41:53 -07001875 if (init_size > priv->hw_params.max_inst_size) {
Zhu Yib481de92007-09-25 17:54:57 -07001876 IWL_DEBUG_INFO
Tomas Winkler90e759d2007-11-29 11:09:41 +08001877 ("uCode init instr len %d too large to fit in\n",
1878 init_size);
1879 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07001880 goto err_release;
1881 }
Ron Rindjunsky099b40b2008-04-21 15:41:53 -07001882 if (init_data_size > priv->hw_params.max_data_size) {
Zhu Yib481de92007-09-25 17:54:57 -07001883 IWL_DEBUG_INFO
Tomas Winkler90e759d2007-11-29 11:09:41 +08001884 ("uCode init data len %d too large to fit in\n",
1885 init_data_size);
1886 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07001887 goto err_release;
1888 }
Ron Rindjunsky099b40b2008-04-21 15:41:53 -07001889 if (boot_size > priv->hw_params.max_bsm_size) {
Zhu Yib481de92007-09-25 17:54:57 -07001890 IWL_DEBUG_INFO
Tomas Winkler90e759d2007-11-29 11:09:41 +08001891 ("uCode boot instr len %d too large to fit in\n",
1892 boot_size);
1893 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07001894 goto err_release;
1895 }
1896
1897 /* Allocate ucode buffers for card's bus-master loading ... */
1898
1899 /* Runtime instructions and 2 copies of data:
1900 * 1) unmodified from disk
1901 * 2) backup cache for save/restore during power-downs */
1902 priv->ucode_code.len = inst_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08001903 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_code);
Zhu Yib481de92007-09-25 17:54:57 -07001904
1905 priv->ucode_data.len = data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08001906 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data);
Zhu Yib481de92007-09-25 17:54:57 -07001907
1908 priv->ucode_data_backup.len = data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08001909 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
Zhu Yib481de92007-09-25 17:54:57 -07001910
1911 /* Initialization instructions and data */
Tomas Winkler90e759d2007-11-29 11:09:41 +08001912 if (init_size && init_data_size) {
1913 priv->ucode_init.len = init_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08001914 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init);
Zhu Yib481de92007-09-25 17:54:57 -07001915
Tomas Winkler90e759d2007-11-29 11:09:41 +08001916 priv->ucode_init_data.len = init_data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08001917 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init_data);
Tomas Winkler90e759d2007-11-29 11:09:41 +08001918
1919 if (!priv->ucode_init.v_addr || !priv->ucode_init_data.v_addr)
1920 goto err_pci_alloc;
1921 }
Zhu Yib481de92007-09-25 17:54:57 -07001922
1923 /* Bootstrap (instructions only, no data) */
Tomas Winkler90e759d2007-11-29 11:09:41 +08001924 if (boot_size) {
1925 priv->ucode_boot.len = boot_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08001926 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_boot);
Zhu Yib481de92007-09-25 17:54:57 -07001927
Tomas Winkler90e759d2007-11-29 11:09:41 +08001928 if (!priv->ucode_boot.v_addr)
1929 goto err_pci_alloc;
1930 }
Zhu Yib481de92007-09-25 17:54:57 -07001931
1932 /* Copy images into buffers for card's bus-master reads ... */
1933
1934 /* Runtime instructions (first block of data in file) */
1935 src = &ucode->data[0];
1936 len = priv->ucode_code.len;
Tomas Winkler90e759d2007-11-29 11:09:41 +08001937 IWL_DEBUG_INFO("Copying (but not loading) uCode instr len %Zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07001938 memcpy(priv->ucode_code.v_addr, src, len);
1939 IWL_DEBUG_INFO("uCode instr buf vaddr = 0x%p, paddr = 0x%08x\n",
1940 priv->ucode_code.v_addr, (u32)priv->ucode_code.p_addr);
1941
1942 /* Runtime data (2nd block)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001943 * NOTE: Copy into backup buffer will be done in iwl4965_up() */
Zhu Yib481de92007-09-25 17:54:57 -07001944 src = &ucode->data[inst_size];
1945 len = priv->ucode_data.len;
Tomas Winkler90e759d2007-11-29 11:09:41 +08001946 IWL_DEBUG_INFO("Copying (but not loading) uCode data len %Zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07001947 memcpy(priv->ucode_data.v_addr, src, len);
1948 memcpy(priv->ucode_data_backup.v_addr, src, len);
1949
1950 /* Initialization instructions (3rd block) */
1951 if (init_size) {
1952 src = &ucode->data[inst_size + data_size];
1953 len = priv->ucode_init.len;
Tomas Winkler90e759d2007-11-29 11:09:41 +08001954 IWL_DEBUG_INFO("Copying (but not loading) init instr len %Zd\n",
1955 len);
Zhu Yib481de92007-09-25 17:54:57 -07001956 memcpy(priv->ucode_init.v_addr, src, len);
1957 }
1958
1959 /* Initialization data (4th block) */
1960 if (init_data_size) {
1961 src = &ucode->data[inst_size + data_size + init_size];
1962 len = priv->ucode_init_data.len;
Tomas Winkler90e759d2007-11-29 11:09:41 +08001963 IWL_DEBUG_INFO("Copying (but not loading) init data len %Zd\n",
1964 len);
Zhu Yib481de92007-09-25 17:54:57 -07001965 memcpy(priv->ucode_init_data.v_addr, src, len);
1966 }
1967
1968 /* Bootstrap instructions (5th block) */
1969 src = &ucode->data[inst_size + data_size + init_size + init_data_size];
1970 len = priv->ucode_boot.len;
Tomas Winkler90e759d2007-11-29 11:09:41 +08001971 IWL_DEBUG_INFO("Copying (but not loading) boot instr len %Zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07001972 memcpy(priv->ucode_boot.v_addr, src, len);
1973
1974 /* We have our copies now, allow OS release its copies */
1975 release_firmware(ucode_raw);
1976 return 0;
1977
1978 err_pci_alloc:
1979 IWL_ERROR("failed to allocate pci memory\n");
Tomas Winkler90e759d2007-11-29 11:09:41 +08001980 ret = -ENOMEM;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001981 iwl4965_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001982
1983 err_release:
1984 release_firmware(ucode_raw);
1985
1986 error:
Tomas Winkler90e759d2007-11-29 11:09:41 +08001987 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07001988}
1989
Zhu Yib481de92007-09-25 17:54:57 -07001990/**
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08001991 * iwl_alive_start - called after REPLY_ALIVE notification received
Zhu Yib481de92007-09-25 17:54:57 -07001992 * from protocol/runtime uCode (initialization uCode's
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08001993 * Alive gets handled by iwl_init_alive_start()).
Zhu Yib481de92007-09-25 17:54:57 -07001994 */
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08001995static void iwl_alive_start(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001996{
Tomas Winkler57aab752008-04-14 21:16:03 -07001997 int ret = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001998
1999 IWL_DEBUG_INFO("Runtime Alive received.\n");
2000
2001 if (priv->card_alive.is_valid != UCODE_VALID_OK) {
2002 /* We had an error bringing up the hardware, so take it
2003 * all the way back down so we can try again */
2004 IWL_DEBUG_INFO("Alive failed.\n");
2005 goto restart;
2006 }
2007
2008 /* Initialize uCode has loaded Runtime uCode ... verify inst image.
2009 * This is a paranoid check, because we would not have gotten the
2010 * "runtime" alive if code weren't properly loaded. */
Emmanuel Grumbachb0692f22008-04-24 11:55:18 -07002011 if (iwl_verify_ucode(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002012 /* Runtime instruction load was bad;
2013 * take it all the way back down so we can try again */
2014 IWL_DEBUG_INFO("Bad runtime uCode load.\n");
2015 goto restart;
2016 }
2017
Emmanuel Grumbach37deb2a2008-06-30 17:23:08 +08002018 iwl_clear_stations_table(priv);
Tomas Winkler57aab752008-04-14 21:16:03 -07002019 ret = priv->cfg->ops->lib->alive_notify(priv);
2020 if (ret) {
Zhu Yib481de92007-09-25 17:54:57 -07002021 IWL_WARNING("Could not complete ALIVE transition [ntf]: %d\n",
Tomas Winkler57aab752008-04-14 21:16:03 -07002022 ret);
Zhu Yib481de92007-09-25 17:54:57 -07002023 goto restart;
2024 }
2025
Ben Cahill9fbab512007-11-29 11:09:47 +08002026 /* After the ALIVE response, we can send host commands to 4965 uCode */
Zhu Yib481de92007-09-25 17:54:57 -07002027 set_bit(STATUS_ALIVE, &priv->status);
2028
Tomas Winklerfee12472008-04-03 16:05:21 -07002029 if (iwl_is_rfkill(priv))
Zhu Yib481de92007-09-25 17:54:57 -07002030 return;
2031
Johannes Berg36d68252008-05-15 12:55:26 +02002032 ieee80211_wake_queues(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07002033
2034 priv->active_rate = priv->rates_mask;
2035 priv->active_rate_basic = priv->rates_mask & IWL_BASIC_RATES_MASK;
2036
Tomas Winkler3109ece2008-03-28 16:33:35 -07002037 if (iwl_is_associated(priv)) {
Gregory Greenmanc1adf9f2008-05-15 13:53:59 +08002038 struct iwl_rxon_cmd *active_rxon =
2039 (struct iwl_rxon_cmd *)&priv->active_rxon;
Zhu Yib481de92007-09-25 17:54:57 -07002040
2041 memcpy(&priv->staging_rxon, &priv->active_rxon,
2042 sizeof(priv->staging_rxon));
2043 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
2044 } else {
2045 /* Initialize our rx_config data */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002046 iwl4965_connection_init_rx_config(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002047 memcpy(priv->staging_rxon.node_addr, priv->mac_addr, ETH_ALEN);
2048 }
2049
Ben Cahill9fbab512007-11-29 11:09:47 +08002050 /* Configure Bluetooth device coexistence support */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002051 iwl4965_send_bt_config(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002052
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08002053 iwl_reset_run_time_calib(priv);
2054
Zhu Yib481de92007-09-25 17:54:57 -07002055 /* Configure the adapter for unassociated operation */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002056 iwl4965_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002057
2058 /* At this point, the NIC is initialized and operational */
Emmanuel Grumbach47f4a582008-06-12 09:47:13 +08002059 iwl_rf_kill_ct_config(priv);
Zhu Yi5a66926a2008-01-14 17:46:18 -08002060
Reinette Chatrefe00b5a2008-04-03 16:05:23 -07002061 iwl_leds_register(priv);
2062
Zhu Yib481de92007-09-25 17:54:57 -07002063 IWL_DEBUG_INFO("ALIVE processing complete.\n");
Rick Farringtona9f46782008-03-18 14:57:49 -07002064 set_bit(STATUS_READY, &priv->status);
Zhu Yi5a66926a2008-01-14 17:46:18 -08002065 wake_up_interruptible(&priv->wait_command_queue);
Zhu Yib481de92007-09-25 17:54:57 -07002066
2067 if (priv->error_recovering)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002068 iwl4965_error_recovery(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002069
Emmanuel Grumbach58d0f362008-06-12 09:47:19 +08002070 iwl_power_update_mode(priv, 1);
Assaf Kraussc46fbef2008-06-12 09:47:05 +08002071
2072 if (test_and_clear_bit(STATUS_MODE_PENDING, &priv->status))
2073 iwl4965_set_mode(priv, priv->iw_mode);
2074
Zhu Yib481de92007-09-25 17:54:57 -07002075 return;
2076
2077 restart:
2078 queue_work(priv->workqueue, &priv->restart);
2079}
2080
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08002081static void iwl_cancel_deferred_work(struct iwl_priv *priv);
Zhu Yib481de92007-09-25 17:54:57 -07002082
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002083static void __iwl4965_down(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002084{
2085 unsigned long flags;
2086 int exit_pending = test_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07002087
2088 IWL_DEBUG_INFO(DRV_NAME " is going down\n");
2089
Zhu Yib481de92007-09-25 17:54:57 -07002090 if (!exit_pending)
2091 set_bit(STATUS_EXIT_PENDING, &priv->status);
2092
Mohamed Abbasab53d8a2008-03-25 16:33:36 -07002093 iwl_leds_unregister(priv);
2094
Emmanuel Grumbach37deb2a2008-06-30 17:23:08 +08002095 iwl_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002096
2097 /* Unblock any waiting calls */
2098 wake_up_interruptible_all(&priv->wait_command_queue);
2099
Zhu Yib481de92007-09-25 17:54:57 -07002100 /* Wipe out the EXIT_PENDING status bit if we are not actually
2101 * exiting the module */
2102 if (!exit_pending)
2103 clear_bit(STATUS_EXIT_PENDING, &priv->status);
2104
2105 /* stop and reset the on-board processor */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07002106 iwl_write32(priv, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET);
Zhu Yib481de92007-09-25 17:54:57 -07002107
2108 /* tell the device to stop sending interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07002109 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002110 iwl4965_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07002111 spin_unlock_irqrestore(&priv->lock, flags);
2112 iwl_synchronize_irq(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002113
2114 if (priv->mac80211_registered)
2115 ieee80211_stop_queues(priv->hw);
2116
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002117 /* If we have not previously called iwl4965_init() then
Zhu Yib481de92007-09-25 17:54:57 -07002118 * clear all bits but the RF Kill and SUSPEND bits and return */
Tomas Winklerfee12472008-04-03 16:05:21 -07002119 if (!iwl_is_init(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002120 priv->status = test_bit(STATUS_RF_KILL_HW, &priv->status) <<
2121 STATUS_RF_KILL_HW |
2122 test_bit(STATUS_RF_KILL_SW, &priv->status) <<
2123 STATUS_RF_KILL_SW |
Reinette Chatre97888642008-02-06 11:20:38 -08002124 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
2125 STATUS_GEO_CONFIGURED |
Zhu Yib481de92007-09-25 17:54:57 -07002126 test_bit(STATUS_IN_SUSPEND, &priv->status) <<
Mohamed Abbas052ec3f2008-06-30 17:23:15 +08002127 STATUS_IN_SUSPEND |
2128 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
2129 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07002130 goto exit;
2131 }
2132
2133 /* ...otherwise clear out all the status bits but the RF Kill and
2134 * SUSPEND bits and continue taking the NIC down. */
2135 priv->status &= test_bit(STATUS_RF_KILL_HW, &priv->status) <<
2136 STATUS_RF_KILL_HW |
2137 test_bit(STATUS_RF_KILL_SW, &priv->status) <<
2138 STATUS_RF_KILL_SW |
Reinette Chatre97888642008-02-06 11:20:38 -08002139 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
2140 STATUS_GEO_CONFIGURED |
Zhu Yib481de92007-09-25 17:54:57 -07002141 test_bit(STATUS_IN_SUSPEND, &priv->status) <<
2142 STATUS_IN_SUSPEND |
2143 test_bit(STATUS_FW_ERROR, &priv->status) <<
Mohamed Abbas052ec3f2008-06-30 17:23:15 +08002144 STATUS_FW_ERROR |
2145 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
2146 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07002147
2148 spin_lock_irqsave(&priv->lock, flags);
Tomas Winkler3395f6e2008-03-25 16:33:37 -07002149 iwl_clear_bit(priv, CSR_GP_CNTRL,
Ben Cahill9fbab512007-11-29 11:09:47 +08002150 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
Zhu Yib481de92007-09-25 17:54:57 -07002151 spin_unlock_irqrestore(&priv->lock, flags);
2152
Tomas Winklerda1bc452008-05-29 16:35:00 +08002153 iwl_txq_ctx_stop(priv);
Tomas Winklerb3bbacb2008-05-29 16:35:01 +08002154 iwl_rxq_stop(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002155
2156 spin_lock_irqsave(&priv->lock, flags);
Tomas Winkler3395f6e2008-03-25 16:33:37 -07002157 if (!iwl_grab_nic_access(priv)) {
2158 iwl_write_prph(priv, APMG_CLK_DIS_REG,
Zhu Yib481de92007-09-25 17:54:57 -07002159 APMG_CLK_VAL_DMA_CLK_RQT);
Tomas Winkler3395f6e2008-03-25 16:33:37 -07002160 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002161 }
2162 spin_unlock_irqrestore(&priv->lock, flags);
2163
2164 udelay(5);
2165
Tomas Winkler7f066102008-05-29 16:34:57 +08002166 /* FIXME: apm_ops.suspend(priv) */
Gregory Greenmand5353112008-09-03 11:18:49 +08002167 if (exit_pending || test_bit(STATUS_IN_SUSPEND, &priv->status))
2168 priv->cfg->ops->lib->apm_ops.stop(priv);
2169 else
2170 priv->cfg->ops->lib->apm_ops.reset(priv);
Ron Rindjunsky399f4902008-04-23 17:14:56 -07002171 priv->cfg->ops->lib->free_shared_mem(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002172
2173 exit:
Tomas Winkler885ba202008-05-29 16:34:55 +08002174 memset(&priv->card_alive, 0, sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07002175
2176 if (priv->ibss_beacon)
2177 dev_kfree_skb(priv->ibss_beacon);
2178 priv->ibss_beacon = NULL;
2179
2180 /* clear out any free frames */
Tomas Winklerfcab4232008-05-15 13:54:01 +08002181 iwl_clear_free_frames(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002182}
2183
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002184static void iwl4965_down(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002185{
2186 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002187 __iwl4965_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002188 mutex_unlock(&priv->mutex);
Zhu Yib24d22b2007-12-19 13:59:52 +08002189
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08002190 iwl_cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002191}
2192
2193#define MAX_HW_RESTARTS 5
2194
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002195static int __iwl4965_up(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002196{
Tomas Winkler57aab752008-04-14 21:16:03 -07002197 int i;
2198 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07002199
2200 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
2201 IWL_WARNING("Exit pending; will not bring the NIC up\n");
2202 return -EIO;
2203 }
2204
Reinette Chatree903fbd2008-01-30 22:05:15 -08002205 if (!priv->ucode_data_backup.v_addr || !priv->ucode_data.v_addr) {
2206 IWL_ERROR("ucode not available for device bringup\n");
2207 return -EIO;
2208 }
2209
Zhu Yie655b9f2008-01-24 02:19:38 -08002210 /* If platform's RF_KILL switch is NOT set to KILL */
Tomas Winklerc1842d62008-08-04 16:00:43 +08002211 if (iwl_read32(priv, CSR_GP_CNTRL) & CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
Zhu Yie655b9f2008-01-24 02:19:38 -08002212 clear_bit(STATUS_RF_KILL_HW, &priv->status);
Emmanuel Grumbach3bff19c2008-06-30 17:23:19 +08002213 else
Zhu Yie655b9f2008-01-24 02:19:38 -08002214 set_bit(STATUS_RF_KILL_HW, &priv->status);
Emmanuel Grumbach3bff19c2008-06-30 17:23:19 +08002215
Tomas Winklerc1842d62008-08-04 16:00:43 +08002216 if (iwl_is_rfkill(priv)) {
2217 iwl4965_enable_interrupts(priv);
Emmanuel Grumbach3bff19c2008-06-30 17:23:19 +08002218 IWL_WARNING("Radio disabled by %s RF Kill switch\n",
2219 test_bit(STATUS_RF_KILL_HW, &priv->status) ? "HW" : "SW");
Tomas Winklerc1842d62008-08-04 16:00:43 +08002220 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07002221 }
2222
Tomas Winkler3395f6e2008-03-25 16:33:37 -07002223 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
Zhu Yib481de92007-09-25 17:54:57 -07002224
Ron Rindjunsky399f4902008-04-23 17:14:56 -07002225 ret = priv->cfg->ops->lib->alloc_shared_mem(priv);
2226 if (ret) {
2227 IWL_ERROR("Unable to allocate shared memory\n");
2228 return ret;
2229 }
2230
Ron Rindjunsky1053d352008-05-05 10:22:43 +08002231 ret = iwl_hw_nic_init(priv);
Tomas Winkler57aab752008-04-14 21:16:03 -07002232 if (ret) {
2233 IWL_ERROR("Unable to init nic\n");
2234 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07002235 }
2236
2237 /* make sure rfkill handshake bits are cleared */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07002238 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
2239 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR,
Zhu Yib481de92007-09-25 17:54:57 -07002240 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
2241
2242 /* clear (again), then enable host interrupts */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07002243 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002244 iwl4965_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002245
2246 /* really make sure rfkill handshake bits are cleared */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07002247 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
2248 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
Zhu Yib481de92007-09-25 17:54:57 -07002249
2250 /* Copy original ucode data image from disk into backup cache.
2251 * This will be used to initialize the on-board processor's
2252 * data SRAM for a clean start when the runtime program first loads. */
2253 memcpy(priv->ucode_data_backup.v_addr, priv->ucode_data.v_addr,
Zhu Yi5a66926a2008-01-14 17:46:18 -08002254 priv->ucode_data.len);
Zhu Yib481de92007-09-25 17:54:57 -07002255
Zhu Yib481de92007-09-25 17:54:57 -07002256 for (i = 0; i < MAX_HW_RESTARTS; i++) {
2257
Emmanuel Grumbach37deb2a2008-06-30 17:23:08 +08002258 iwl_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002259
2260 /* load bootstrap state machine,
2261 * load bootstrap program into processor's memory,
2262 * prepare to load the "initialize" uCode */
Tomas Winkler57aab752008-04-14 21:16:03 -07002263 ret = priv->cfg->ops->lib->load_ucode(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002264
Tomas Winkler57aab752008-04-14 21:16:03 -07002265 if (ret) {
2266 IWL_ERROR("Unable to set up bootstrap uCode: %d\n", ret);
Zhu Yib481de92007-09-25 17:54:57 -07002267 continue;
2268 }
2269
Emmanuel Grumbachf3d5b452008-06-12 09:47:04 +08002270 /* Clear out the uCode error bit if it is set */
2271 clear_bit(STATUS_FW_ERROR, &priv->status);
2272
Zhu Yib481de92007-09-25 17:54:57 -07002273 /* start card; "initialize" will load runtime ucode */
Ron Rindjunskyedcdf8b2008-05-15 13:53:55 +08002274 iwl4965_nic_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002275
Zhu Yib481de92007-09-25 17:54:57 -07002276 IWL_DEBUG_INFO(DRV_NAME " is coming up\n");
2277
2278 return 0;
2279 }
2280
2281 set_bit(STATUS_EXIT_PENDING, &priv->status);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002282 __iwl4965_down(priv);
Mohamed Abbas64e72c3e2008-06-12 09:47:03 +08002283 clear_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07002284
2285 /* tried to restart and config the device for as long as our
2286 * patience could withstand */
2287 IWL_ERROR("Unable to initialize device after %d attempts.\n", i);
2288 return -EIO;
2289}
2290
2291
2292/*****************************************************************************
2293 *
2294 * Workqueue callbacks
2295 *
2296 *****************************************************************************/
2297
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08002298static void iwl_bg_init_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07002299{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002300 struct iwl_priv *priv =
2301 container_of(data, struct iwl_priv, init_alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07002302
2303 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2304 return;
2305
2306 mutex_lock(&priv->mutex);
Emmanuel Grumbachf3ccc082008-05-05 10:22:45 +08002307 priv->cfg->ops->lib->init_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002308 mutex_unlock(&priv->mutex);
2309}
2310
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08002311static void iwl_bg_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07002312{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002313 struct iwl_priv *priv =
2314 container_of(data, struct iwl_priv, alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07002315
2316 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2317 return;
2318
2319 mutex_lock(&priv->mutex);
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08002320 iwl_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002321 mutex_unlock(&priv->mutex);
Tomas Winkler10d0bd52008-10-29 01:03:01 +02002322 ieee80211_notify_mac(priv->hw, IEEE80211_NOTIFY_RE_ASSOC);
Zhu Yib481de92007-09-25 17:54:57 -07002323}
2324
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002325static void iwl4965_bg_rf_kill(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -07002326{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002327 struct iwl_priv *priv = container_of(work, struct iwl_priv, rf_kill);
Zhu Yib481de92007-09-25 17:54:57 -07002328
2329 wake_up_interruptible(&priv->wait_command_queue);
2330
2331 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2332 return;
2333
2334 mutex_lock(&priv->mutex);
2335
Tomas Winklerfee12472008-04-03 16:05:21 -07002336 if (!iwl_is_rfkill(priv)) {
Ester Kummerf3d67992008-05-06 11:05:12 +08002337 IWL_DEBUG(IWL_DL_RF_KILL,
Zhu Yib481de92007-09-25 17:54:57 -07002338 "HW and/or SW RF Kill no longer active, restarting "
2339 "device\n");
2340 if (!test_bit(STATUS_EXIT_PENDING, &priv->status))
2341 queue_work(priv->workqueue, &priv->restart);
2342 } else {
Mohamed Abbasad97edd2008-03-28 16:21:06 -07002343 /* make sure mac80211 stop sending Tx frame */
2344 if (priv->mac80211_registered)
2345 ieee80211_stop_queues(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07002346
2347 if (!test_bit(STATUS_RF_KILL_HW, &priv->status))
2348 IWL_DEBUG_RF_KILL("Can not turn radio back on - "
2349 "disabled by SW switch\n");
2350 else
2351 IWL_WARNING("Radio Frequency Kill Switch is On:\n"
2352 "Kill switch must be turned off for "
2353 "wireless networking to work.\n");
2354 }
2355 mutex_unlock(&priv->mutex);
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02002356 iwl_rfkill_set_hw_state(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002357}
2358
Abhijeet Kolekar4419e392008-05-05 10:22:47 +08002359static void iwl4965_bg_set_monitor(struct work_struct *work)
2360{
2361 struct iwl_priv *priv = container_of(work,
2362 struct iwl_priv, set_monitor);
Assaf Kraussc46fbef2008-06-12 09:47:05 +08002363 int ret;
Abhijeet Kolekar4419e392008-05-05 10:22:47 +08002364
2365 IWL_DEBUG(IWL_DL_STATE, "setting monitor mode\n");
2366
2367 mutex_lock(&priv->mutex);
2368
Johannes Berg05c914f2008-09-11 00:01:58 +02002369 ret = iwl4965_set_mode(priv, NL80211_IFTYPE_MONITOR);
Assaf Kraussc46fbef2008-06-12 09:47:05 +08002370
2371 if (ret) {
2372 if (ret == -EAGAIN)
2373 IWL_DEBUG(IWL_DL_STATE, "leave - not ready\n");
2374 else
2375 IWL_ERROR("iwl4965_set_mode() failed ret = %d\n", ret);
2376 }
Abhijeet Kolekar4419e392008-05-05 10:22:47 +08002377
2378 mutex_unlock(&priv->mutex);
2379}
2380
Emmanuel Grumbach16e727e2008-06-12 09:46:52 +08002381static void iwl_bg_run_time_calib_work(struct work_struct *work)
2382{
2383 struct iwl_priv *priv = container_of(work, struct iwl_priv,
2384 run_time_calib_work);
2385
2386 mutex_lock(&priv->mutex);
2387
2388 if (test_bit(STATUS_EXIT_PENDING, &priv->status) ||
2389 test_bit(STATUS_SCANNING, &priv->status)) {
2390 mutex_unlock(&priv->mutex);
2391 return;
2392 }
2393
2394 if (priv->start_calib) {
2395 iwl_chain_noise_calibration(priv, &priv->statistics);
2396
2397 iwl_sensitivity_calibration(priv, &priv->statistics);
2398 }
2399
2400 mutex_unlock(&priv->mutex);
2401 return;
2402}
2403
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002404static void iwl4965_bg_up(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07002405{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002406 struct iwl_priv *priv = container_of(data, struct iwl_priv, up);
Zhu Yib481de92007-09-25 17:54:57 -07002407
2408 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2409 return;
2410
2411 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002412 __iwl4965_up(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002413 mutex_unlock(&priv->mutex);
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02002414 iwl_rfkill_set_hw_state(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002415}
2416
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002417static void iwl4965_bg_restart(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07002418{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002419 struct iwl_priv *priv = container_of(data, struct iwl_priv, restart);
Zhu Yib481de92007-09-25 17:54:57 -07002420
2421 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2422 return;
2423
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002424 iwl4965_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002425 queue_work(priv->workqueue, &priv->up);
2426}
2427
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002428static void iwl4965_bg_rx_replenish(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07002429{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002430 struct iwl_priv *priv =
2431 container_of(data, struct iwl_priv, rx_replenish);
Zhu Yib481de92007-09-25 17:54:57 -07002432
2433 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2434 return;
2435
2436 mutex_lock(&priv->mutex);
Tomas Winklera55360e2008-05-05 10:22:28 +08002437 iwl_rx_replenish(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002438 mutex_unlock(&priv->mutex);
2439}
2440
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08002441#define IWL_DELAY_NEXT_SCAN (HZ*2)
2442
Reinette Chatre508e32e2008-04-14 21:16:13 -07002443static void iwl4965_post_associate(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002444{
Zhu Yib481de92007-09-25 17:54:57 -07002445 struct ieee80211_conf *conf = NULL;
Tomas Winkler857485c2008-03-21 13:53:44 -07002446 int ret = 0;
Emmanuel Grumbach1ff50bd2008-07-11 11:53:34 +08002447 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07002448
Johannes Berg05c914f2008-09-11 00:01:58 +02002449 if (priv->iw_mode == NL80211_IFTYPE_AP) {
Tomas Winkler3ac7f142008-07-21 02:40:14 +03002450 IWL_ERROR("%s Should not be called in AP mode\n", __func__);
Zhu Yib481de92007-09-25 17:54:57 -07002451 return;
2452 }
2453
Johannes Berge1749612008-10-27 15:59:26 -07002454 IWL_DEBUG_ASSOC("Associated as %d to: %pM\n",
2455 priv->assoc_id, priv->active_rxon.bssid_addr);
Zhu Yib481de92007-09-25 17:54:57 -07002456
2457
2458 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2459 return;
2460
Zhu Yib481de92007-09-25 17:54:57 -07002461
Reinette Chatre508e32e2008-04-14 21:16:13 -07002462 if (!priv->vif || !priv->is_open)
Mohamed Abbas948c1712007-10-25 17:15:45 +08002463 return;
Reinette Chatre508e32e2008-04-14 21:16:13 -07002464
Emmanuel Grumbachc90a74ba2008-09-03 11:26:50 +08002465 iwl_power_cancel_timeout(priv);
Tomas Winkler2a421b92008-06-12 09:47:10 +08002466 iwl_scan_cancel_timeout(priv, 200);
mabbas052c4b92007-10-25 17:15:43 +08002467
Zhu Yib481de92007-09-25 17:54:57 -07002468 conf = ieee80211_get_hw_conf(priv->hw);
2469
2470 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002471 iwl4965_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002472
Tomas Winkler3195c1f2008-10-08 09:37:30 +08002473 iwl_setup_rxon_timing(priv);
Tomas Winkler857485c2008-03-21 13:53:44 -07002474 ret = iwl_send_cmd_pdu(priv, REPLY_RXON_TIMING,
Zhu Yib481de92007-09-25 17:54:57 -07002475 sizeof(priv->rxon_timing), &priv->rxon_timing);
Tomas Winkler857485c2008-03-21 13:53:44 -07002476 if (ret)
Zhu Yib481de92007-09-25 17:54:57 -07002477 IWL_WARNING("REPLY_RXON_TIMING failed - "
2478 "Attempting to continue.\n");
2479
2480 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
2481
Emmanuel Grumbach42eb7c62008-09-17 10:10:05 +08002482 iwl_set_rxon_ht(priv, &priv->current_ht_config);
Ron Rindjunsky4f85f5b2008-06-09 22:54:35 +03002483
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -07002484 iwl_set_rxon_chain(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002485 priv->staging_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
2486
2487 IWL_DEBUG_ASSOC("assoc id %d beacon interval %d\n",
2488 priv->assoc_id, priv->beacon_int);
2489
2490 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
2491 priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
2492 else
2493 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
2494
2495 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) {
2496 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_SLOT_TIME)
2497 priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
2498 else
2499 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
2500
Johannes Berg05c914f2008-09-11 00:01:58 +02002501 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Zhu Yib481de92007-09-25 17:54:57 -07002502 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
2503
2504 }
2505
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002506 iwl4965_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002507
2508 switch (priv->iw_mode) {
Johannes Berg05c914f2008-09-11 00:01:58 +02002509 case NL80211_IFTYPE_STATION:
Zhu Yib481de92007-09-25 17:54:57 -07002510 break;
2511
Johannes Berg05c914f2008-09-11 00:01:58 +02002512 case NL80211_IFTYPE_ADHOC:
Zhu Yib481de92007-09-25 17:54:57 -07002513
Assaf Kraussc46fbef2008-06-12 09:47:05 +08002514 /* assume default assoc id */
2515 priv->assoc_id = 1;
Zhu Yib481de92007-09-25 17:54:57 -07002516
Tomas Winkler4f40e4d2008-05-15 13:54:04 +08002517 iwl_rxon_add_station(priv, priv->bssid, 0);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002518 iwl4965_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002519
2520 break;
2521
2522 default:
2523 IWL_ERROR("%s Should not be called in %d mode\n",
Tomas Winkler3ac7f142008-07-21 02:40:14 +03002524 __func__, priv->iw_mode);
Zhu Yib481de92007-09-25 17:54:57 -07002525 break;
2526 }
2527
Johannes Berg05c914f2008-09-11 00:01:58 +02002528 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Zhu Yib481de92007-09-25 17:54:57 -07002529 priv->assoc_station_added = 1;
2530
Emmanuel Grumbach1ff50bd2008-07-11 11:53:34 +08002531 spin_lock_irqsave(&priv->lock, flags);
2532 iwl_activate_qos(priv, 0);
2533 spin_unlock_irqrestore(&priv->lock, flags);
Ron Rindjunsky292ae172008-02-06 11:20:39 -08002534
Grumbach, Emmanuel04816442008-09-03 11:26:53 +08002535 /* the chain noise calibration will enabled PM upon completion
2536 * If chain noise has already been run, then we need to enable
2537 * power management here */
2538 if (priv->chain_noise_data.state == IWL_CHAIN_NOISE_DONE)
2539 iwl_power_enable_management(priv);
Emmanuel Grumbachc90a74ba2008-09-03 11:26:50 +08002540
2541 /* Enable Rx differential gain and sensitivity calibrations */
2542 iwl_chain_noise_reset(priv);
2543 priv->start_calib = 1;
2544
Reinette Chatre508e32e2008-04-14 21:16:13 -07002545}
2546
Zhu Yib481de92007-09-25 17:54:57 -07002547/*****************************************************************************
2548 *
2549 * mac80211 entry point functions
2550 *
2551 *****************************************************************************/
2552
Emmanuel Grumbach154b25c2008-06-30 17:23:24 +08002553#define UCODE_READY_TIMEOUT (4 * HZ)
Zhu Yi5a66926a2008-01-14 17:46:18 -08002554
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002555static int iwl4965_mac_start(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07002556{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002557 struct iwl_priv *priv = hw->priv;
Zhu Yi5a66926a2008-01-14 17:46:18 -08002558 int ret;
Tomas Winklercf88c432008-08-28 17:25:04 +08002559 u16 pci_cmd;
Zhu Yib481de92007-09-25 17:54:57 -07002560
2561 IWL_DEBUG_MAC80211("enter\n");
2562
Zhu Yi5a66926a2008-01-14 17:46:18 -08002563 if (pci_enable_device(priv->pci_dev)) {
2564 IWL_ERROR("Fail to pci_enable_device\n");
2565 return -ENODEV;
2566 }
2567 pci_restore_state(priv->pci_dev);
2568 pci_enable_msi(priv->pci_dev);
2569
Tomas Winklercf88c432008-08-28 17:25:04 +08002570 /* enable interrupts if needed: hw bug w/a */
2571 pci_read_config_word(priv->pci_dev, PCI_COMMAND, &pci_cmd);
2572 if (pci_cmd & PCI_COMMAND_INTX_DISABLE) {
2573 pci_cmd &= ~PCI_COMMAND_INTX_DISABLE;
2574 pci_write_config_word(priv->pci_dev, PCI_COMMAND, pci_cmd);
2575 }
2576
Zhu Yi5a66926a2008-01-14 17:46:18 -08002577 ret = request_irq(priv->pci_dev->irq, iwl4965_isr, IRQF_SHARED,
2578 DRV_NAME, priv);
2579 if (ret) {
2580 IWL_ERROR("Error allocating IRQ %d\n", priv->pci_dev->irq);
2581 goto out_disable_msi;
2582 }
2583
Zhu Yib481de92007-09-25 17:54:57 -07002584 /* we should be verifying the device is ready to be opened */
2585 mutex_lock(&priv->mutex);
2586
Gregory Greenmanc1adf9f2008-05-15 13:53:59 +08002587 memset(&priv->staging_rxon, 0, sizeof(struct iwl_rxon_cmd));
Zhu Yi5a66926a2008-01-14 17:46:18 -08002588 /* fetch ucode file from disk, alloc and copy to bus-master buffers ...
2589 * ucode filename and max sizes are card-specific. */
2590
2591 if (!priv->ucode_code.len) {
2592 ret = iwl4965_read_ucode(priv);
2593 if (ret) {
2594 IWL_ERROR("Could not read microcode: %d\n", ret);
2595 mutex_unlock(&priv->mutex);
2596 goto out_release_irq;
2597 }
2598 }
2599
Zhu Yie655b9f2008-01-24 02:19:38 -08002600 ret = __iwl4965_up(priv);
Zhu Yi5a66926a2008-01-14 17:46:18 -08002601
Zhu Yib481de92007-09-25 17:54:57 -07002602 mutex_unlock(&priv->mutex);
Zhu Yi5a66926a2008-01-14 17:46:18 -08002603
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02002604 iwl_rfkill_set_hw_state(priv);
2605
Zhu Yie655b9f2008-01-24 02:19:38 -08002606 if (ret)
2607 goto out_release_irq;
2608
Tomas Winklerc1842d62008-08-04 16:00:43 +08002609 if (iwl_is_rfkill(priv))
2610 goto out;
2611
Zhu Yie655b9f2008-01-24 02:19:38 -08002612 IWL_DEBUG_INFO("Start UP work done.\n");
2613
2614 if (test_bit(STATUS_IN_SUSPEND, &priv->status))
2615 return 0;
2616
Ron Rindjunskyfe9b6b72008-05-29 16:35:06 +08002617 /* Wait for START_ALIVE from Run Time ucode. Otherwise callbacks from
Zhu Yi5a66926a2008-01-14 17:46:18 -08002618 * mac80211 will not be run successfully. */
Emmanuel Grumbach154b25c2008-06-30 17:23:24 +08002619 ret = wait_event_interruptible_timeout(priv->wait_command_queue,
2620 test_bit(STATUS_READY, &priv->status),
2621 UCODE_READY_TIMEOUT);
2622 if (!ret) {
2623 if (!test_bit(STATUS_READY, &priv->status)) {
2624 IWL_ERROR("START_ALIVE timeout after %dms.\n",
2625 jiffies_to_msecs(UCODE_READY_TIMEOUT));
2626 ret = -ETIMEDOUT;
2627 goto out_release_irq;
Zhu Yi5a66926a2008-01-14 17:46:18 -08002628 }
Ron Rindjunskyfe9b6b72008-05-29 16:35:06 +08002629 }
Tomas Winkler0a078ff2008-06-30 17:23:26 +08002630
Tomas Winklerc1842d62008-08-04 16:00:43 +08002631out:
Tomas Winkler0a078ff2008-06-30 17:23:26 +08002632 priv->is_open = 1;
Zhu Yib481de92007-09-25 17:54:57 -07002633 IWL_DEBUG_MAC80211("leave\n");
2634 return 0;
Zhu Yi5a66926a2008-01-14 17:46:18 -08002635
2636out_release_irq:
2637 free_irq(priv->pci_dev->irq, priv);
2638out_disable_msi:
2639 pci_disable_msi(priv->pci_dev);
Zhu Yie655b9f2008-01-24 02:19:38 -08002640 pci_disable_device(priv->pci_dev);
2641 priv->is_open = 0;
2642 IWL_DEBUG_MAC80211("leave - failed\n");
Zhu Yi5a66926a2008-01-14 17:46:18 -08002643 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07002644}
2645
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002646static void iwl4965_mac_stop(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07002647{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002648 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07002649
2650 IWL_DEBUG_MAC80211("enter\n");
Mohamed Abbas948c1712007-10-25 17:15:45 +08002651
Zhu Yie655b9f2008-01-24 02:19:38 -08002652 if (!priv->is_open) {
2653 IWL_DEBUG_MAC80211("leave - skip\n");
2654 return;
2655 }
2656
Zhu Yib481de92007-09-25 17:54:57 -07002657 priv->is_open = 0;
Zhu Yi5a66926a2008-01-14 17:46:18 -08002658
Tomas Winklerfee12472008-04-03 16:05:21 -07002659 if (iwl_is_ready_rf(priv)) {
Zhu Yie655b9f2008-01-24 02:19:38 -08002660 /* stop mac, cancel any scan request and clear
2661 * RXON_FILTER_ASSOC_MSK BIT
2662 */
Zhu Yi5a66926a2008-01-14 17:46:18 -08002663 mutex_lock(&priv->mutex);
Tomas Winkler2a421b92008-06-12 09:47:10 +08002664 iwl_scan_cancel_timeout(priv, 100);
Mohamed Abbasfde35712007-11-29 11:10:15 +08002665 mutex_unlock(&priv->mutex);
Mohamed Abbasfde35712007-11-29 11:10:15 +08002666 }
2667
Zhu Yi5a66926a2008-01-14 17:46:18 -08002668 iwl4965_down(priv);
2669
2670 flush_workqueue(priv->workqueue);
2671 free_irq(priv->pci_dev->irq, priv);
2672 pci_disable_msi(priv->pci_dev);
2673 pci_save_state(priv->pci_dev);
2674 pci_disable_device(priv->pci_dev);
Mohamed Abbas948c1712007-10-25 17:15:45 +08002675
Zhu Yib481de92007-09-25 17:54:57 -07002676 IWL_DEBUG_MAC80211("leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002677}
2678
Johannes Berge039fa42008-05-15 12:55:29 +02002679static int iwl4965_mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07002680{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002681 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07002682
Tomas Winklerf3674222008-08-04 16:00:44 +08002683 IWL_DEBUG_MACDUMP("enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07002684
Zhu Yib481de92007-09-25 17:54:57 -07002685 IWL_DEBUG_TX("dev->xmit(%d bytes) at rate 0x%02x\n", skb->len,
Johannes Berge039fa42008-05-15 12:55:29 +02002686 ieee80211_get_tx_rate(hw, IEEE80211_SKB_CB(skb))->bitrate);
Zhu Yib481de92007-09-25 17:54:57 -07002687
Johannes Berge039fa42008-05-15 12:55:29 +02002688 if (iwl_tx_skb(priv, skb))
Zhu Yib481de92007-09-25 17:54:57 -07002689 dev_kfree_skb_any(skb);
2690
Tomas Winklerf3674222008-08-04 16:00:44 +08002691 IWL_DEBUG_MACDUMP("leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002692 return 0;
2693}
2694
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002695static int iwl4965_mac_add_interface(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07002696 struct ieee80211_if_init_conf *conf)
2697{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002698 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07002699 unsigned long flags;
2700
Johannes Berg32bfd352007-12-19 01:31:26 +01002701 IWL_DEBUG_MAC80211("enter: type %d\n", conf->type);
Zhu Yib481de92007-09-25 17:54:57 -07002702
Johannes Berg32bfd352007-12-19 01:31:26 +01002703 if (priv->vif) {
2704 IWL_DEBUG_MAC80211("leave - vif != NULL\n");
Reinette Chatre75849d22008-01-23 10:15:17 -08002705 return -EOPNOTSUPP;
Zhu Yib481de92007-09-25 17:54:57 -07002706 }
2707
2708 spin_lock_irqsave(&priv->lock, flags);
Johannes Berg32bfd352007-12-19 01:31:26 +01002709 priv->vif = conf->vif;
Zhu Yib481de92007-09-25 17:54:57 -07002710
2711 spin_unlock_irqrestore(&priv->lock, flags);
2712
2713 mutex_lock(&priv->mutex);
Tomas Winkler864792e2007-11-27 21:00:52 +02002714
2715 if (conf->mac_addr) {
Johannes Berge1749612008-10-27 15:59:26 -07002716 IWL_DEBUG_MAC80211("Set %pM\n", conf->mac_addr);
Tomas Winkler864792e2007-11-27 21:00:52 +02002717 memcpy(priv->mac_addr, conf->mac_addr, ETH_ALEN);
2718 }
Zhu Yib481de92007-09-25 17:54:57 -07002719
Assaf Kraussc46fbef2008-06-12 09:47:05 +08002720 if (iwl4965_set_mode(priv, conf->type) == -EAGAIN)
2721 /* we are not ready, will run again when ready */
2722 set_bit(STATUS_MODE_PENDING, &priv->status);
Zhu Yi5a66926a2008-01-14 17:46:18 -08002723
Zhu Yib481de92007-09-25 17:54:57 -07002724 mutex_unlock(&priv->mutex);
2725
Zhu Yi5a66926a2008-01-14 17:46:18 -08002726 IWL_DEBUG_MAC80211("leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002727 return 0;
2728}
2729
2730/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002731 * iwl4965_mac_config - mac80211 config callback
Zhu Yib481de92007-09-25 17:54:57 -07002732 *
2733 * We ignore conf->flags & IEEE80211_CONF_SHORT_SLOT_TIME since it seems to
2734 * be set inappropriately and the driver currently sets the hardware up to
2735 * use it whenever needed.
2736 */
Johannes Berge8975582008-10-09 12:18:51 +02002737static int iwl4965_mac_config(struct ieee80211_hw *hw, u32 changed)
Zhu Yib481de92007-09-25 17:54:57 -07002738{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002739 struct iwl_priv *priv = hw->priv;
Assaf Kraussbf85ea42008-03-14 10:38:49 -07002740 const struct iwl_channel_info *ch_info;
Johannes Berge8975582008-10-09 12:18:51 +02002741 struct ieee80211_conf *conf = &hw->conf;
Zhu Yib481de92007-09-25 17:54:57 -07002742 unsigned long flags;
Zhu Yi76bb77e2007-11-22 10:53:22 +08002743 int ret = 0;
Tomas Winkler82a66bb2008-05-29 16:35:28 +08002744 u16 channel;
Zhu Yib481de92007-09-25 17:54:57 -07002745
2746 mutex_lock(&priv->mutex);
Johannes Berg8318d782008-01-24 19:38:38 +01002747 IWL_DEBUG_MAC80211("enter to channel %d\n", conf->channel->hw_value);
Zhu Yib481de92007-09-25 17:54:57 -07002748
Emmanuel Grumbach14a08a72008-06-13 15:44:55 +08002749 if (conf->radio_enabled && iwl_radio_kill_sw_enable_radio(priv)) {
Mohamed Abbas64e72c3e2008-06-12 09:47:03 +08002750 IWL_DEBUG_MAC80211("leave - RF-KILL - waiting for uCode\n");
Emmanuel Grumbach14a08a72008-06-13 15:44:55 +08002751 goto out;
Mohamed Abbas64e72c3e2008-06-12 09:47:03 +08002752 }
2753
Emmanuel Grumbach14a08a72008-06-13 15:44:55 +08002754 if (!conf->radio_enabled)
2755 iwl_radio_kill_sw_disable_radio(priv);
2756
Tomas Winklerfee12472008-04-03 16:05:21 -07002757 if (!iwl_is_ready(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002758 IWL_DEBUG_MAC80211("leave - not ready\n");
Zhu Yi76bb77e2007-11-22 10:53:22 +08002759 ret = -EIO;
2760 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07002761 }
2762
Assaf Krauss1ea87392008-03-18 14:57:50 -07002763 if (unlikely(!priv->cfg->mod_params->disable_hw_scan &&
Zhu Yib481de92007-09-25 17:54:57 -07002764 test_bit(STATUS_SCANNING, &priv->status))) {
Zhu Yia0646472007-12-20 14:10:01 +08002765 IWL_DEBUG_MAC80211("leave - scanning\n");
Zhu Yib481de92007-09-25 17:54:57 -07002766 mutex_unlock(&priv->mutex);
Zhu Yia0646472007-12-20 14:10:01 +08002767 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07002768 }
2769
Tomas Winkler82a66bb2008-05-29 16:35:28 +08002770 channel = ieee80211_frequency_to_channel(conf->channel->center_freq);
2771 ch_info = iwl_get_channel_info(priv, conf->channel->band, channel);
Zhu Yib481de92007-09-25 17:54:57 -07002772 if (!is_channel_valid(ch_info)) {
Zhu Yib481de92007-09-25 17:54:57 -07002773 IWL_DEBUG_MAC80211("leave - invalid channel\n");
Zhu Yi76bb77e2007-11-22 10:53:22 +08002774 ret = -EINVAL;
2775 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07002776 }
2777
Johannes Berg05c914f2008-09-11 00:01:58 +02002778 if (priv->iw_mode == NL80211_IFTYPE_ADHOC &&
Assaf Krauss398f9e72008-06-12 09:47:06 +08002779 !is_channel_ibss(ch_info)) {
2780 IWL_ERROR("channel %d in band %d not IBSS channel\n",
2781 conf->channel->hw_value, conf->channel->band);
2782 ret = -EINVAL;
2783 goto out;
2784 }
2785
Tomas Winkler82a66bb2008-05-29 16:35:28 +08002786 spin_lock_irqsave(&priv->lock, flags);
2787
Tomas Winklerb5d7be52008-07-19 04:41:24 +03002788
Tomas Winkler78330fd2008-02-06 02:37:18 +02002789 /* if we are switching from ht to 2.4 clear flags
Zhu Yib481de92007-09-25 17:54:57 -07002790 * from any ht related info since 2.4 does not
2791 * support ht */
Tomas Winkler82a66bb2008-05-29 16:35:28 +08002792 if ((le16_to_cpu(priv->staging_rxon.channel) != channel)
Zhu Yib481de92007-09-25 17:54:57 -07002793#ifdef IEEE80211_CONF_CHANNEL_SWITCH
2794 && !(conf->flags & IEEE80211_CONF_CHANNEL_SWITCH)
2795#endif
2796 )
2797 priv->staging_rxon.flags = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002798
Tomas Winkler17e72782008-09-03 11:26:26 +08002799 iwl_set_rxon_channel(priv, conf->channel);
Zhu Yib481de92007-09-25 17:54:57 -07002800
Tomas Winkler82a66bb2008-05-29 16:35:28 +08002801 iwl_set_flags_for_band(priv, conf->channel->band);
Zhu Yib481de92007-09-25 17:54:57 -07002802
2803 /* The list of supported rates and rate mask can be different
Johannes Berg8318d782008-01-24 19:38:38 +01002804 * for each band; since the band may have changed, reset
Zhu Yib481de92007-09-25 17:54:57 -07002805 * the rate mask to what mac80211 lists */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002806 iwl4965_set_rate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002807
2808 spin_unlock_irqrestore(&priv->lock, flags);
2809
2810#ifdef IEEE80211_CONF_CHANNEL_SWITCH
2811 if (conf->flags & IEEE80211_CONF_CHANNEL_SWITCH) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002812 iwl4965_hw_channel_switch(priv, conf->channel);
Zhu Yi76bb77e2007-11-22 10:53:22 +08002813 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07002814 }
2815#endif
2816
Zhu Yib481de92007-09-25 17:54:57 -07002817 if (!conf->radio_enabled) {
2818 IWL_DEBUG_MAC80211("leave - radio disabled\n");
Zhu Yi76bb77e2007-11-22 10:53:22 +08002819 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07002820 }
2821
Tomas Winklerfee12472008-04-03 16:05:21 -07002822 if (iwl_is_rfkill(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002823 IWL_DEBUG_MAC80211("leave - RF kill\n");
Zhu Yi76bb77e2007-11-22 10:53:22 +08002824 ret = -EIO;
2825 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07002826 }
2827
Ester Kummere602cb12008-09-26 15:09:33 +08002828 if (conf->flags & IEEE80211_CONF_PS)
2829 ret = iwl_power_set_user_mode(priv, IWL_POWER_INDEX_3);
2830 else
2831 ret = iwl_power_set_user_mode(priv, IWL_POWER_MODE_CAM);
2832 if (ret)
2833 IWL_DEBUG_MAC80211("Error setting power level\n");
2834
Tomas Winkler630fe9b2008-06-12 09:47:08 +08002835 IWL_DEBUG_MAC80211("TX Power old=%d new=%d\n",
2836 priv->tx_power_user_lmt, conf->power_level);
2837
2838 iwl_set_tx_power(priv, conf->power_level, false);
2839
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002840 iwl4965_set_rate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002841
2842 if (memcmp(&priv->active_rxon,
2843 &priv->staging_rxon, sizeof(priv->staging_rxon)))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002844 iwl4965_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002845 else
2846 IWL_DEBUG_INFO("No re-sending same RXON configuration.\n");
2847
2848 IWL_DEBUG_MAC80211("leave\n");
2849
Zhu Yia0646472007-12-20 14:10:01 +08002850out:
Zhu Yi5a66926a2008-01-14 17:46:18 -08002851 mutex_unlock(&priv->mutex);
Zhu Yi76bb77e2007-11-22 10:53:22 +08002852 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07002853}
2854
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002855static void iwl4965_config_ap(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002856{
Tomas Winkler857485c2008-03-21 13:53:44 -07002857 int ret = 0;
Emmanuel Grumbach1ff50bd2008-07-11 11:53:34 +08002858 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07002859
Maarten Lankhorstd986bcd2008-01-23 10:15:16 -08002860 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
Zhu Yib481de92007-09-25 17:54:57 -07002861 return;
2862
2863 /* The following should be done only at AP bring up */
Tomas Winkler3195c1f2008-10-08 09:37:30 +08002864 if (!iwl_is_associated(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002865
2866 /* RXON - unassoc (to set timing command) */
2867 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002868 iwl4965_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002869
2870 /* RXON Timing */
Tomas Winkler3195c1f2008-10-08 09:37:30 +08002871 iwl_setup_rxon_timing(priv);
Tomas Winkler857485c2008-03-21 13:53:44 -07002872 ret = iwl_send_cmd_pdu(priv, REPLY_RXON_TIMING,
Zhu Yib481de92007-09-25 17:54:57 -07002873 sizeof(priv->rxon_timing), &priv->rxon_timing);
Tomas Winkler857485c2008-03-21 13:53:44 -07002874 if (ret)
Zhu Yib481de92007-09-25 17:54:57 -07002875 IWL_WARNING("REPLY_RXON_TIMING failed - "
2876 "Attempting to continue.\n");
2877
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -07002878 iwl_set_rxon_chain(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002879
2880 /* FIXME: what should be the assoc_id for AP? */
2881 priv->staging_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
2882 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
2883 priv->staging_rxon.flags |=
2884 RXON_FLG_SHORT_PREAMBLE_MSK;
2885 else
2886 priv->staging_rxon.flags &=
2887 ~RXON_FLG_SHORT_PREAMBLE_MSK;
2888
2889 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) {
2890 if (priv->assoc_capability &
2891 WLAN_CAPABILITY_SHORT_SLOT_TIME)
2892 priv->staging_rxon.flags |=
2893 RXON_FLG_SHORT_SLOT_MSK;
2894 else
2895 priv->staging_rxon.flags &=
2896 ~RXON_FLG_SHORT_SLOT_MSK;
2897
Johannes Berg05c914f2008-09-11 00:01:58 +02002898 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Zhu Yib481de92007-09-25 17:54:57 -07002899 priv->staging_rxon.flags &=
2900 ~RXON_FLG_SHORT_SLOT_MSK;
2901 }
2902 /* restore RXON assoc */
2903 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002904 iwl4965_commit_rxon(priv);
Emmanuel Grumbach1ff50bd2008-07-11 11:53:34 +08002905 spin_lock_irqsave(&priv->lock, flags);
2906 iwl_activate_qos(priv, 1);
2907 spin_unlock_irqrestore(&priv->lock, flags);
Tomas Winkler4f40e4d2008-05-15 13:54:04 +08002908 iwl_rxon_add_station(priv, iwl_bcast_addr, 0);
Zhu Yie1493de2007-09-27 11:27:32 +08002909 }
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002910 iwl4965_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002911
2912 /* FIXME - we need to add code here to detect a totally new
2913 * configuration, reset the AP, unassoc, rxon timing, assoc,
2914 * clear sta table, add BCAST sta... */
2915}
2916
Johannes Berg9d139c82008-07-09 14:40:37 +02002917/* temporary */
2918static int iwl4965_mac_beacon_update(struct ieee80211_hw *hw, struct sk_buff *skb);
2919
Johannes Berg32bfd352007-12-19 01:31:26 +01002920static int iwl4965_mac_config_interface(struct ieee80211_hw *hw,
2921 struct ieee80211_vif *vif,
Zhu Yib481de92007-09-25 17:54:57 -07002922 struct ieee80211_if_conf *conf)
2923{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002924 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07002925 unsigned long flags;
2926 int rc;
2927
2928 if (conf == NULL)
2929 return -EIO;
2930
Emmanuel Grumbachb716bb92008-03-04 18:09:32 -08002931 if (priv->vif != vif) {
2932 IWL_DEBUG_MAC80211("leave - priv->vif != vif\n");
Emmanuel Grumbachb716bb92008-03-04 18:09:32 -08002933 return 0;
2934 }
2935
Johannes Berg05c914f2008-09-11 00:01:58 +02002936 if (priv->iw_mode == NL80211_IFTYPE_ADHOC &&
Johannes Berg9d139c82008-07-09 14:40:37 +02002937 conf->changed & IEEE80211_IFCC_BEACON) {
2938 struct sk_buff *beacon = ieee80211_beacon_get(hw, vif);
2939 if (!beacon)
2940 return -ENOMEM;
2941 rc = iwl4965_mac_beacon_update(hw, beacon);
2942 if (rc)
2943 return rc;
2944 }
2945
Johannes Berg05c914f2008-09-11 00:01:58 +02002946 if ((priv->iw_mode == NL80211_IFTYPE_AP) &&
Johannes Berg9d139c82008-07-09 14:40:37 +02002947 (!conf->ssid_len)) {
Zhu Yib481de92007-09-25 17:54:57 -07002948 IWL_DEBUG_MAC80211
2949 ("Leaving in AP mode because HostAPD is not ready.\n");
2950 return 0;
2951 }
2952
Tomas Winklerfee12472008-04-03 16:05:21 -07002953 if (!iwl_is_alive(priv))
Zhu Yi5a66926a2008-01-14 17:46:18 -08002954 return -EAGAIN;
2955
Zhu Yib481de92007-09-25 17:54:57 -07002956 mutex_lock(&priv->mutex);
2957
Zhu Yib481de92007-09-25 17:54:57 -07002958 if (conf->bssid)
Johannes Berge1749612008-10-27 15:59:26 -07002959 IWL_DEBUG_MAC80211("bssid: %pM\n", conf->bssid);
Zhu Yib481de92007-09-25 17:54:57 -07002960
Johannes Berg4150c572007-09-17 01:29:23 -04002961/*
2962 * very dubious code was here; the probe filtering flag is never set:
2963 *
Zhu Yib481de92007-09-25 17:54:57 -07002964 if (unlikely(test_bit(STATUS_SCANNING, &priv->status)) &&
2965 !(priv->hw->flags & IEEE80211_HW_NO_PROBE_FILTERING)) {
Johannes Berg4150c572007-09-17 01:29:23 -04002966 */
Zhu Yib481de92007-09-25 17:54:57 -07002967
Johannes Berg05c914f2008-09-11 00:01:58 +02002968 if (priv->iw_mode == NL80211_IFTYPE_AP) {
Zhu Yib481de92007-09-25 17:54:57 -07002969 if (!conf->bssid) {
2970 conf->bssid = priv->mac_addr;
2971 memcpy(priv->bssid, priv->mac_addr, ETH_ALEN);
Johannes Berge1749612008-10-27 15:59:26 -07002972 IWL_DEBUG_MAC80211("bssid was set to: %pM\n",
2973 conf->bssid);
Zhu Yib481de92007-09-25 17:54:57 -07002974 }
2975 if (priv->ibss_beacon)
2976 dev_kfree_skb(priv->ibss_beacon);
2977
Johannes Berg9d139c82008-07-09 14:40:37 +02002978 priv->ibss_beacon = ieee80211_beacon_get(hw, vif);
Zhu Yib481de92007-09-25 17:54:57 -07002979 }
2980
Tomas Winklerfee12472008-04-03 16:05:21 -07002981 if (iwl_is_rfkill(priv))
Mohamed Abbasfde35712007-11-29 11:10:15 +08002982 goto done;
2983
Zhu Yib481de92007-09-25 17:54:57 -07002984 if (conf->bssid && !is_zero_ether_addr(conf->bssid) &&
2985 !is_multicast_ether_addr(conf->bssid)) {
2986 /* If there is currently a HW scan going on in the background
2987 * then we need to cancel it else the RXON below will fail. */
Tomas Winkler2a421b92008-06-12 09:47:10 +08002988 if (iwl_scan_cancel_timeout(priv, 100)) {
Zhu Yib481de92007-09-25 17:54:57 -07002989 IWL_WARNING("Aborted scan still in progress "
2990 "after 100ms\n");
2991 IWL_DEBUG_MAC80211("leaving - scan abort failed.\n");
2992 mutex_unlock(&priv->mutex);
2993 return -EAGAIN;
2994 }
2995 memcpy(priv->staging_rxon.bssid_addr, conf->bssid, ETH_ALEN);
2996
2997 /* TODO: Audit driver for usage of these members and see
2998 * if mac80211 deprecates them (priv->bssid looks like it
2999 * shouldn't be there, but I haven't scanned the IBSS code
3000 * to verify) - jpk */
3001 memcpy(priv->bssid, conf->bssid, ETH_ALEN);
3002
Johannes Berg05c914f2008-09-11 00:01:58 +02003003 if (priv->iw_mode == NL80211_IFTYPE_AP)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003004 iwl4965_config_ap(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003005 else {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003006 rc = iwl4965_commit_rxon(priv);
Johannes Berg05c914f2008-09-11 00:01:58 +02003007 if ((priv->iw_mode == NL80211_IFTYPE_STATION) && rc)
Tomas Winkler4f40e4d2008-05-15 13:54:04 +08003008 iwl_rxon_add_station(
Zhu Yib481de92007-09-25 17:54:57 -07003009 priv, priv->active_rxon.bssid_addr, 1);
3010 }
3011
3012 } else {
Tomas Winkler2a421b92008-06-12 09:47:10 +08003013 iwl_scan_cancel_timeout(priv, 100);
Zhu Yib481de92007-09-25 17:54:57 -07003014 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003015 iwl4965_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003016 }
3017
Mohamed Abbasfde35712007-11-29 11:10:15 +08003018 done:
Zhu Yib481de92007-09-25 17:54:57 -07003019 spin_lock_irqsave(&priv->lock, flags);
3020 if (!conf->ssid_len)
3021 memset(priv->essid, 0, IW_ESSID_MAX_SIZE);
3022 else
3023 memcpy(priv->essid, conf->ssid, conf->ssid_len);
3024
3025 priv->essid_len = conf->ssid_len;
3026 spin_unlock_irqrestore(&priv->lock, flags);
3027
3028 IWL_DEBUG_MAC80211("leave\n");
3029 mutex_unlock(&priv->mutex);
3030
3031 return 0;
3032}
3033
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003034static void iwl4965_configure_filter(struct ieee80211_hw *hw,
Johannes Berg4150c572007-09-17 01:29:23 -04003035 unsigned int changed_flags,
3036 unsigned int *total_flags,
3037 int mc_count, struct dev_addr_list *mc_list)
3038{
Abhijeet Kolekar4419e392008-05-05 10:22:47 +08003039 struct iwl_priv *priv = hw->priv;
Rick Farrington25b3f572008-06-30 17:23:28 +08003040
3041 if (changed_flags & (*total_flags) & FIF_OTHER_BSS) {
3042 IWL_DEBUG_MAC80211("Enter: type %d (0x%x, 0x%x)\n",
Johannes Berg05c914f2008-09-11 00:01:58 +02003043 NL80211_IFTYPE_MONITOR,
Rick Farrington25b3f572008-06-30 17:23:28 +08003044 changed_flags, *total_flags);
3045 /* queue work 'cuz mac80211 is holding a lock which
3046 * prevents us from issuing (synchronous) f/w cmds */
3047 queue_work(priv->workqueue, &priv->set_monitor);
Abhijeet Kolekar4419e392008-05-05 10:22:47 +08003048 }
Rick Farrington25b3f572008-06-30 17:23:28 +08003049 *total_flags &= FIF_OTHER_BSS | FIF_ALLMULTI |
3050 FIF_BCN_PRBRESP_PROMISC | FIF_CONTROL;
Johannes Berg4150c572007-09-17 01:29:23 -04003051}
3052
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003053static void iwl4965_mac_remove_interface(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07003054 struct ieee80211_if_init_conf *conf)
3055{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003056 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07003057
3058 IWL_DEBUG_MAC80211("enter\n");
3059
3060 mutex_lock(&priv->mutex);
Mohamed Abbas948c1712007-10-25 17:15:45 +08003061
Tomas Winklerfee12472008-04-03 16:05:21 -07003062 if (iwl_is_ready_rf(priv)) {
Tomas Winkler2a421b92008-06-12 09:47:10 +08003063 iwl_scan_cancel_timeout(priv, 100);
Mohamed Abbasfde35712007-11-29 11:10:15 +08003064 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
3065 iwl4965_commit_rxon(priv);
3066 }
Johannes Berg32bfd352007-12-19 01:31:26 +01003067 if (priv->vif == conf->vif) {
3068 priv->vif = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07003069 memset(priv->bssid, 0, ETH_ALEN);
3070 memset(priv->essid, 0, IW_ESSID_MAX_SIZE);
3071 priv->essid_len = 0;
3072 }
3073 mutex_unlock(&priv->mutex);
3074
3075 IWL_DEBUG_MAC80211("leave\n");
3076
3077}
Johannes Berg471b3ef2007-12-28 14:32:58 +01003078
Tomas Winkler3109ece2008-03-28 16:33:35 -07003079#define IWL_DELAY_NEXT_SCAN_AFTER_ASSOC (HZ*6)
Johannes Berg471b3ef2007-12-28 14:32:58 +01003080static void iwl4965_bss_info_changed(struct ieee80211_hw *hw,
3081 struct ieee80211_vif *vif,
3082 struct ieee80211_bss_conf *bss_conf,
3083 u32 changes)
Tomas Winkler220173b2007-10-16 00:50:25 +02003084{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003085 struct iwl_priv *priv = hw->priv;
Tomas Winkler220173b2007-10-16 00:50:25 +02003086
Tomas Winkler3109ece2008-03-28 16:33:35 -07003087 IWL_DEBUG_MAC80211("changes = 0x%X\n", changes);
3088
Johannes Berg471b3ef2007-12-28 14:32:58 +01003089 if (changes & BSS_CHANGED_ERP_PREAMBLE) {
Tomas Winkler3109ece2008-03-28 16:33:35 -07003090 IWL_DEBUG_MAC80211("ERP_PREAMBLE %d\n",
3091 bss_conf->use_short_preamble);
Johannes Berg471b3ef2007-12-28 14:32:58 +01003092 if (bss_conf->use_short_preamble)
Tomas Winkler220173b2007-10-16 00:50:25 +02003093 priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
3094 else
3095 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
3096 }
3097
Johannes Berg471b3ef2007-12-28 14:32:58 +01003098 if (changes & BSS_CHANGED_ERP_CTS_PROT) {
Tomas Winkler3109ece2008-03-28 16:33:35 -07003099 IWL_DEBUG_MAC80211("ERP_CTS %d\n", bss_conf->use_cts_prot);
Johannes Berg8318d782008-01-24 19:38:38 +01003100 if (bss_conf->use_cts_prot && (priv->band != IEEE80211_BAND_5GHZ))
Tomas Winkler220173b2007-10-16 00:50:25 +02003101 priv->staging_rxon.flags |= RXON_FLG_TGG_PROTECT_MSK;
3102 else
3103 priv->staging_rxon.flags &= ~RXON_FLG_TGG_PROTECT_MSK;
3104 }
3105
Tomas Winkler98952d52008-03-28 16:33:33 -07003106 if (changes & BSS_CHANGED_HT) {
Tomas Winkler3109ece2008-03-28 16:33:35 -07003107 IWL_DEBUG_MAC80211("HT %d\n", bss_conf->assoc_ht);
Tomas Winkler98952d52008-03-28 16:33:33 -07003108 iwl4965_ht_conf(priv, bss_conf);
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -07003109 iwl_set_rxon_chain(priv);
Tomas Winkler98952d52008-03-28 16:33:33 -07003110 }
3111
Johannes Berg471b3ef2007-12-28 14:32:58 +01003112 if (changes & BSS_CHANGED_ASSOC) {
Tomas Winkler3109ece2008-03-28 16:33:35 -07003113 IWL_DEBUG_MAC80211("ASSOC %d\n", bss_conf->assoc);
Reinette Chatre508e32e2008-04-14 21:16:13 -07003114 /* This should never happen as this function should
3115 * never be called from interrupt context. */
3116 if (WARN_ON_ONCE(in_interrupt()))
3117 return;
Tomas Winkler3109ece2008-03-28 16:33:35 -07003118 if (bss_conf->assoc) {
3119 priv->assoc_id = bss_conf->aid;
3120 priv->beacon_int = bss_conf->beacon_int;
Tomas Winklerb5d7be52008-07-19 04:41:24 +03003121 priv->power_data.dtim_period = bss_conf->dtim_period;
Tomas Winkler3109ece2008-03-28 16:33:35 -07003122 priv->timestamp = bss_conf->timestamp;
3123 priv->assoc_capability = bss_conf->assoc_capability;
Tomas Winkler9ccacb82008-09-16 14:01:03 +08003124
3125 /* we have just associated, don't start scan too early
3126 * leave time for EAPOL exchange to complete
3127 */
Tomas Winkler3109ece2008-03-28 16:33:35 -07003128 priv->next_scan_jiffies = jiffies +
3129 IWL_DELAY_NEXT_SCAN_AFTER_ASSOC;
Reinette Chatre508e32e2008-04-14 21:16:13 -07003130 mutex_lock(&priv->mutex);
3131 iwl4965_post_associate(priv);
3132 mutex_unlock(&priv->mutex);
Tomas Winkler3109ece2008-03-28 16:33:35 -07003133 } else {
3134 priv->assoc_id = 0;
3135 IWL_DEBUG_MAC80211("DISASSOC %d\n", bss_conf->assoc);
3136 }
3137 } else if (changes && iwl_is_associated(priv) && priv->assoc_id) {
3138 IWL_DEBUG_MAC80211("Associated Changes %d\n", changes);
Tomas Winkler7e8c5192008-04-15 16:01:43 -07003139 iwl_send_rxon_assoc(priv);
Johannes Berg471b3ef2007-12-28 14:32:58 +01003140 }
3141
Tomas Winkler220173b2007-10-16 00:50:25 +02003142}
Zhu Yib481de92007-09-25 17:54:57 -07003143
Tomas Winklercb43dc22008-09-03 11:26:23 +08003144static int iwl_mac_hw_scan(struct ieee80211_hw *hw, u8 *ssid, size_t ssid_len)
Zhu Yib481de92007-09-25 17:54:57 -07003145{
Zhu Yib481de92007-09-25 17:54:57 -07003146 unsigned long flags;
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003147 struct iwl_priv *priv = hw->priv;
Tomas Winkler8d09a5e2008-09-24 13:57:46 +08003148 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07003149
3150 IWL_DEBUG_MAC80211("enter\n");
3151
mabbas052c4b92007-10-25 17:15:43 +08003152 mutex_lock(&priv->mutex);
Zhu Yib481de92007-09-25 17:54:57 -07003153 spin_lock_irqsave(&priv->lock, flags);
3154
Tomas Winklerfee12472008-04-03 16:05:21 -07003155 if (!iwl_is_ready_rf(priv)) {
Tomas Winklercb43dc22008-09-03 11:26:23 +08003156 ret = -EIO;
Zhu Yib481de92007-09-25 17:54:57 -07003157 IWL_DEBUG_MAC80211("leave - not ready or exit pending\n");
3158 goto out_unlock;
3159 }
3160
Johannes Berg05c914f2008-09-11 00:01:58 +02003161 if (priv->iw_mode == NL80211_IFTYPE_AP) { /* APs don't scan */
Tomas Winklercb43dc22008-09-03 11:26:23 +08003162 ret = -EIO;
Zhu Yib481de92007-09-25 17:54:57 -07003163 IWL_ERROR("ERROR: APs don't scan\n");
3164 goto out_unlock;
3165 }
3166
Tomas Winkler8d09a5e2008-09-24 13:57:46 +08003167 /* We don't schedule scan within next_scan_jiffies period.
3168 * Avoid scanning during possible EAPOL exchange, return
3169 * success immediately.
3170 */
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08003171 if (priv->next_scan_jiffies &&
Tomas Winklercb43dc22008-09-03 11:26:23 +08003172 time_after(priv->next_scan_jiffies, jiffies)) {
Ron Rindjunsky681c0052008-09-03 11:26:25 +08003173 IWL_DEBUG_SCAN("scan rejected: within next scan period\n");
Tomas Winkler8d09a5e2008-09-24 13:57:46 +08003174 queue_work(priv->workqueue, &priv->scan_completed);
3175 ret = 0;
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08003176 goto out_unlock;
3177 }
Tomas Winkler8d09a5e2008-09-24 13:57:46 +08003178
Zhu Yib481de92007-09-25 17:54:57 -07003179 /* if we just finished scan ask for delay */
Ron Rindjunsky681c0052008-09-03 11:26:25 +08003180 if (iwl_is_associated(priv) && priv->last_scan_jiffies &&
Tomas Winklercb43dc22008-09-03 11:26:23 +08003181 time_after(priv->last_scan_jiffies + IWL_DELAY_NEXT_SCAN, jiffies)) {
Ron Rindjunsky681c0052008-09-03 11:26:25 +08003182 IWL_DEBUG_SCAN("scan rejected: within previous scan period\n");
Tomas Winkler8d09a5e2008-09-24 13:57:46 +08003183 queue_work(priv->workqueue, &priv->scan_completed);
3184 ret = 0;
Zhu Yib481de92007-09-25 17:54:57 -07003185 goto out_unlock;
3186 }
Tomas Winkler8d09a5e2008-09-24 13:57:46 +08003187
Tomas Winklercb43dc22008-09-03 11:26:23 +08003188 if (ssid_len) {
Zhu Yib481de92007-09-25 17:54:57 -07003189 priv->one_direct_scan = 1;
Tomas Winklercb43dc22008-09-03 11:26:23 +08003190 priv->direct_ssid_len = min_t(u8, ssid_len, IW_ESSID_MAX_SIZE);
Zhu Yib481de92007-09-25 17:54:57 -07003191 memcpy(priv->direct_ssid, ssid, priv->direct_ssid_len);
Tomas Winklercb43dc22008-09-03 11:26:23 +08003192 } else {
Mohamed Abbas948c1712007-10-25 17:15:45 +08003193 priv->one_direct_scan = 0;
Tomas Winklercb43dc22008-09-03 11:26:23 +08003194 }
Zhu Yib481de92007-09-25 17:54:57 -07003195
Tomas Winklercb43dc22008-09-03 11:26:23 +08003196 ret = iwl_scan_initiate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003197
3198 IWL_DEBUG_MAC80211("leave\n");
3199
3200out_unlock:
3201 spin_unlock_irqrestore(&priv->lock, flags);
mabbas052c4b92007-10-25 17:15:43 +08003202 mutex_unlock(&priv->mutex);
Zhu Yib481de92007-09-25 17:54:57 -07003203
Tomas Winklercb43dc22008-09-03 11:26:23 +08003204 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07003205}
3206
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02003207static void iwl4965_mac_update_tkip_key(struct ieee80211_hw *hw,
3208 struct ieee80211_key_conf *keyconf, const u8 *addr,
3209 u32 iv32, u16 *phase1key)
3210{
3211 struct iwl_priv *priv = hw->priv;
3212 u8 sta_id = IWL_INVALID_STATION;
3213 unsigned long flags;
3214 __le16 key_flags = 0;
3215 int i;
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02003216
3217 IWL_DEBUG_MAC80211("enter\n");
3218
Tomas Winkler947b13a2008-04-16 16:34:48 -07003219 sta_id = iwl_find_station(priv, addr);
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02003220 if (sta_id == IWL_INVALID_STATION) {
Johannes Berge1749612008-10-27 15:59:26 -07003221 IWL_DEBUG_MAC80211("leave - %pM not in station map.\n",
3222 addr);
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02003223 return;
3224 }
3225
Tomas Winkler2a421b92008-06-12 09:47:10 +08003226 iwl_scan_cancel_timeout(priv, 100);
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02003227
3228 key_flags |= (STA_KEY_FLG_TKIP | STA_KEY_FLG_MAP_KEY_MSK);
3229 key_flags |= cpu_to_le16(keyconf->keyidx << STA_KEY_FLG_KEYID_POS);
3230 key_flags &= ~STA_KEY_FLG_INVALID;
3231
Tomas Winkler5425e492008-04-15 16:01:38 -07003232 if (sta_id == priv->hw_params.bcast_sta_id)
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02003233 key_flags |= STA_KEY_MULTICAST_MSK;
3234
3235 spin_lock_irqsave(&priv->sta_lock, flags);
3236
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02003237 priv->stations[sta_id].sta.key.key_flags = key_flags;
3238 priv->stations[sta_id].sta.key.tkip_rx_tsc_byte2 = (u8) iv32;
3239
3240 for (i = 0; i < 5; i++)
3241 priv->stations[sta_id].sta.key.tkip_rx_ttak[i] =
3242 cpu_to_le16(phase1key[i]);
3243
3244 priv->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
3245 priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
3246
Tomas Winkler133636d2008-05-05 10:22:34 +08003247 iwl_send_add_sta(priv, &priv->stations[sta_id].sta, CMD_ASYNC);
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02003248
3249 spin_unlock_irqrestore(&priv->sta_lock, flags);
3250
3251 IWL_DEBUG_MAC80211("leave\n");
3252}
3253
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003254static int iwl4965_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
Zhu Yib481de92007-09-25 17:54:57 -07003255 const u8 *local_addr, const u8 *addr,
3256 struct ieee80211_key_conf *key)
3257{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003258 struct iwl_priv *priv = hw->priv;
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07003259 int ret = 0;
3260 u8 sta_id = IWL_INVALID_STATION;
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07003261 u8 is_default_wep_key = 0;
Zhu Yib481de92007-09-25 17:54:57 -07003262
3263 IWL_DEBUG_MAC80211("enter\n");
3264
Ron Rindjunsky099b40b2008-04-21 15:41:53 -07003265 if (priv->hw_params.sw_crypto) {
Zhu Yib481de92007-09-25 17:54:57 -07003266 IWL_DEBUG_MAC80211("leave - hwcrypto disabled\n");
3267 return -EOPNOTSUPP;
3268 }
3269
3270 if (is_zero_ether_addr(addr))
3271 /* only support pairwise keys */
3272 return -EOPNOTSUPP;
3273
Tomas Winkler947b13a2008-04-16 16:34:48 -07003274 sta_id = iwl_find_station(priv, addr);
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07003275 if (sta_id == IWL_INVALID_STATION) {
Johannes Berge1749612008-10-27 15:59:26 -07003276 IWL_DEBUG_MAC80211("leave - %pM not in station map.\n",
3277 addr);
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07003278 return -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07003279
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07003280 }
Zhu Yib481de92007-09-25 17:54:57 -07003281
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07003282 mutex_lock(&priv->mutex);
Tomas Winkler2a421b92008-06-12 09:47:10 +08003283 iwl_scan_cancel_timeout(priv, 100);
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07003284 mutex_unlock(&priv->mutex);
3285
3286 /* If we are getting WEP group key and we didn't receive any key mapping
3287 * so far, we are in legacy wep mode (group key only), otherwise we are
3288 * in 1X mode.
3289 * In legacy wep mode, we use another host command to the uCode */
Tomas Winkler5425e492008-04-15 16:01:38 -07003290 if (key->alg == ALG_WEP && sta_id == priv->hw_params.bcast_sta_id &&
Johannes Berg05c914f2008-09-11 00:01:58 +02003291 priv->iw_mode != NL80211_IFTYPE_AP) {
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07003292 if (cmd == SET_KEY)
3293 is_default_wep_key = !priv->key_mapping_key;
3294 else
Emmanuel Grumbachccc038a2008-05-15 13:54:09 +08003295 is_default_wep_key =
3296 (key->hw_key_idx == HW_KEY_DEFAULT);
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07003297 }
mabbas052c4b92007-10-25 17:15:43 +08003298
Zhu Yib481de92007-09-25 17:54:57 -07003299 switch (cmd) {
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07003300 case SET_KEY:
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07003301 if (is_default_wep_key)
3302 ret = iwl_set_default_wep_key(priv, key);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07003303 else
Emmanuel Grumbach74805132008-04-14 21:16:09 -07003304 ret = iwl_set_dynamic_key(priv, key, sta_id);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07003305
3306 IWL_DEBUG_MAC80211("enable hwcrypto key\n");
Zhu Yib481de92007-09-25 17:54:57 -07003307 break;
3308 case DISABLE_KEY:
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07003309 if (is_default_wep_key)
3310 ret = iwl_remove_default_wep_key(priv, key);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07003311 else
Emmanuel Grumbach3ec47732008-04-17 16:03:36 -07003312 ret = iwl_remove_dynamic_key(priv, key, sta_id);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07003313
3314 IWL_DEBUG_MAC80211("disable hwcrypto key\n");
Zhu Yib481de92007-09-25 17:54:57 -07003315 break;
3316 default:
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07003317 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07003318 }
3319
3320 IWL_DEBUG_MAC80211("leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07003321
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07003322 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07003323}
3324
Johannes Berge100bb62008-04-30 18:51:21 +02003325static int iwl4965_mac_conf_tx(struct ieee80211_hw *hw, u16 queue,
Zhu Yib481de92007-09-25 17:54:57 -07003326 const struct ieee80211_tx_queue_params *params)
3327{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003328 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07003329 unsigned long flags;
3330 int q;
Zhu Yib481de92007-09-25 17:54:57 -07003331
3332 IWL_DEBUG_MAC80211("enter\n");
3333
Tomas Winklerfee12472008-04-03 16:05:21 -07003334 if (!iwl_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07003335 IWL_DEBUG_MAC80211("leave - RF not ready\n");
3336 return -EIO;
3337 }
3338
3339 if (queue >= AC_NUM) {
3340 IWL_DEBUG_MAC80211("leave - queue >= AC_NUM %d\n", queue);
3341 return 0;
3342 }
3343
Zhu Yib481de92007-09-25 17:54:57 -07003344 if (!priv->qos_data.qos_enable) {
3345 priv->qos_data.qos_active = 0;
3346 IWL_DEBUG_MAC80211("leave - qos not enabled\n");
3347 return 0;
3348 }
3349 q = AC_NUM - 1 - queue;
3350
3351 spin_lock_irqsave(&priv->lock, flags);
3352
3353 priv->qos_data.def_qos_parm.ac[q].cw_min = cpu_to_le16(params->cw_min);
3354 priv->qos_data.def_qos_parm.ac[q].cw_max = cpu_to_le16(params->cw_max);
3355 priv->qos_data.def_qos_parm.ac[q].aifsn = params->aifs;
3356 priv->qos_data.def_qos_parm.ac[q].edca_txop =
Johannes Berg3330d7b2008-02-10 16:49:38 +01003357 cpu_to_le16((params->txop * 32));
Zhu Yib481de92007-09-25 17:54:57 -07003358
3359 priv->qos_data.def_qos_parm.ac[q].reserved1 = 0;
3360 priv->qos_data.qos_active = 1;
3361
Johannes Berg05c914f2008-09-11 00:01:58 +02003362 if (priv->iw_mode == NL80211_IFTYPE_AP)
Emmanuel Grumbach1ff50bd2008-07-11 11:53:34 +08003363 iwl_activate_qos(priv, 1);
Tomas Winkler3109ece2008-03-28 16:33:35 -07003364 else if (priv->assoc_id && iwl_is_associated(priv))
Emmanuel Grumbach1ff50bd2008-07-11 11:53:34 +08003365 iwl_activate_qos(priv, 0);
Zhu Yib481de92007-09-25 17:54:57 -07003366
Emmanuel Grumbach1ff50bd2008-07-11 11:53:34 +08003367 spin_unlock_irqrestore(&priv->lock, flags);
Zhu Yib481de92007-09-25 17:54:57 -07003368
Zhu Yib481de92007-09-25 17:54:57 -07003369 IWL_DEBUG_MAC80211("leave\n");
3370 return 0;
3371}
3372
Tomas Winklerd783b062008-07-18 13:53:02 +08003373static int iwl4965_mac_ampdu_action(struct ieee80211_hw *hw,
3374 enum ieee80211_ampdu_mlme_action action,
Johannes Berg17741cd2008-09-11 00:02:02 +02003375 struct ieee80211_sta *sta, u16 tid, u16 *ssn)
Tomas Winklerd783b062008-07-18 13:53:02 +08003376{
3377 struct iwl_priv *priv = hw->priv;
Tomas Winklerd783b062008-07-18 13:53:02 +08003378
Johannes Berge1749612008-10-27 15:59:26 -07003379 IWL_DEBUG_HT("A-MPDU action on addr %pM tid %d\n",
3380 sta->addr, tid);
Tomas Winklerd783b062008-07-18 13:53:02 +08003381
3382 if (!(priv->cfg->sku & IWL_SKU_N))
3383 return -EACCES;
3384
3385 switch (action) {
3386 case IEEE80211_AMPDU_RX_START:
3387 IWL_DEBUG_HT("start Rx\n");
Johannes Berg17741cd2008-09-11 00:02:02 +02003388 return iwl_rx_agg_start(priv, sta->addr, tid, *ssn);
Tomas Winklerd783b062008-07-18 13:53:02 +08003389 case IEEE80211_AMPDU_RX_STOP:
3390 IWL_DEBUG_HT("stop Rx\n");
Johannes Berg17741cd2008-09-11 00:02:02 +02003391 return iwl_rx_agg_stop(priv, sta->addr, tid);
Tomas Winklerd783b062008-07-18 13:53:02 +08003392 case IEEE80211_AMPDU_TX_START:
3393 IWL_DEBUG_HT("start Tx\n");
Johannes Berg17741cd2008-09-11 00:02:02 +02003394 return iwl_tx_agg_start(priv, sta->addr, tid, ssn);
Tomas Winklerd783b062008-07-18 13:53:02 +08003395 case IEEE80211_AMPDU_TX_STOP:
3396 IWL_DEBUG_HT("stop Tx\n");
Johannes Berg17741cd2008-09-11 00:02:02 +02003397 return iwl_tx_agg_stop(priv, sta->addr, tid);
Tomas Winklerd783b062008-07-18 13:53:02 +08003398 default:
3399 IWL_DEBUG_HT("unknown\n");
3400 return -EINVAL;
3401 break;
3402 }
3403 return 0;
3404}
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003405static int iwl4965_mac_get_tx_stats(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07003406 struct ieee80211_tx_queue_stats *stats)
3407{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003408 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07003409 int i, avail;
Ron Rindjunsky16466902008-05-05 10:22:50 +08003410 struct iwl_tx_queue *txq;
Tomas Winkler443cfd42008-05-15 13:53:57 +08003411 struct iwl_queue *q;
Zhu Yib481de92007-09-25 17:54:57 -07003412 unsigned long flags;
3413
3414 IWL_DEBUG_MAC80211("enter\n");
3415
Tomas Winklerfee12472008-04-03 16:05:21 -07003416 if (!iwl_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07003417 IWL_DEBUG_MAC80211("leave - RF not ready\n");
3418 return -EIO;
3419 }
3420
3421 spin_lock_irqsave(&priv->lock, flags);
3422
3423 for (i = 0; i < AC_NUM; i++) {
3424 txq = &priv->txq[i];
3425 q = &txq->q;
Tomas Winkler443cfd42008-05-15 13:53:57 +08003426 avail = iwl_queue_space(q);
Zhu Yib481de92007-09-25 17:54:57 -07003427
Johannes Berg57ffc582008-04-29 17:18:59 +02003428 stats[i].len = q->n_window - avail;
3429 stats[i].limit = q->n_window - q->high_mark;
3430 stats[i].count = q->n_window;
Zhu Yib481de92007-09-25 17:54:57 -07003431
3432 }
3433 spin_unlock_irqrestore(&priv->lock, flags);
3434
3435 IWL_DEBUG_MAC80211("leave\n");
3436
3437 return 0;
3438}
3439
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003440static int iwl4965_mac_get_stats(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07003441 struct ieee80211_low_level_stats *stats)
3442{
Ester Kummerbf403db2008-05-05 10:22:40 +08003443 struct iwl_priv *priv = hw->priv;
3444
3445 priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07003446 IWL_DEBUG_MAC80211("enter\n");
3447 IWL_DEBUG_MAC80211("leave\n");
3448
3449 return 0;
3450}
3451
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003452static void iwl4965_mac_reset_tsf(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07003453{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003454 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07003455 unsigned long flags;
3456
3457 mutex_lock(&priv->mutex);
3458 IWL_DEBUG_MAC80211("enter\n");
3459
Zhu Yib481de92007-09-25 17:54:57 -07003460 spin_lock_irqsave(&priv->lock, flags);
Ron Rindjunskyfd105e72007-11-26 16:14:39 +02003461 memset(&priv->current_ht_config, 0, sizeof(struct iwl_ht_info));
Zhu Yib481de92007-09-25 17:54:57 -07003462 spin_unlock_irqrestore(&priv->lock, flags);
Zhu Yib481de92007-09-25 17:54:57 -07003463
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -07003464 iwl_reset_qos(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003465
Zhu Yib481de92007-09-25 17:54:57 -07003466 spin_lock_irqsave(&priv->lock, flags);
3467 priv->assoc_id = 0;
3468 priv->assoc_capability = 0;
Zhu Yib481de92007-09-25 17:54:57 -07003469 priv->assoc_station_added = 0;
3470
3471 /* new association get rid of ibss beacon skb */
3472 if (priv->ibss_beacon)
3473 dev_kfree_skb(priv->ibss_beacon);
3474
3475 priv->ibss_beacon = NULL;
3476
3477 priv->beacon_int = priv->hw->conf.beacon_int;
Tomas Winkler3109ece2008-03-28 16:33:35 -07003478 priv->timestamp = 0;
Johannes Berg05c914f2008-09-11 00:01:58 +02003479 if ((priv->iw_mode == NL80211_IFTYPE_STATION))
Zhu Yib481de92007-09-25 17:54:57 -07003480 priv->beacon_int = 0;
3481
3482 spin_unlock_irqrestore(&priv->lock, flags);
3483
Tomas Winklerfee12472008-04-03 16:05:21 -07003484 if (!iwl_is_ready_rf(priv)) {
Mohamed Abbasfde35712007-11-29 11:10:15 +08003485 IWL_DEBUG_MAC80211("leave - not ready\n");
3486 mutex_unlock(&priv->mutex);
3487 return;
3488 }
3489
mabbas052c4b92007-10-25 17:15:43 +08003490 /* we are restarting association process
3491 * clear RXON_FILTER_ASSOC_MSK bit
3492 */
Johannes Berg05c914f2008-09-11 00:01:58 +02003493 if (priv->iw_mode != NL80211_IFTYPE_AP) {
Tomas Winkler2a421b92008-06-12 09:47:10 +08003494 iwl_scan_cancel_timeout(priv, 100);
mabbas052c4b92007-10-25 17:15:43 +08003495 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003496 iwl4965_commit_rxon(priv);
mabbas052c4b92007-10-25 17:15:43 +08003497 }
3498
Mohamed Abbas5da4b552008-04-21 15:41:51 -07003499 iwl_power_update_mode(priv, 0);
3500
Zhu Yib481de92007-09-25 17:54:57 -07003501 /* Per mac80211.h: This is only used in IBSS mode... */
Johannes Berg05c914f2008-09-11 00:01:58 +02003502 if (priv->iw_mode != NL80211_IFTYPE_ADHOC) {
mabbas052c4b92007-10-25 17:15:43 +08003503
Emmanuel Grumbachc90a74ba2008-09-03 11:26:50 +08003504 /* switch to CAM during association period.
3505 * the ucode will block any association/authentication
3506 * frome during assiciation period if it can not hear
3507 * the AP because of PM. the timer enable PM back is
3508 * association do not complete
3509 */
3510 if (priv->hw->conf.channel->flags & (IEEE80211_CHAN_PASSIVE_SCAN |
3511 IEEE80211_CHAN_RADAR))
3512 iwl_power_disable_management(priv, 3000);
3513
Zhu Yib481de92007-09-25 17:54:57 -07003514 IWL_DEBUG_MAC80211("leave - not in IBSS\n");
3515 mutex_unlock(&priv->mutex);
3516 return;
3517 }
3518
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003519 iwl4965_set_rate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003520
3521 mutex_unlock(&priv->mutex);
3522
3523 IWL_DEBUG_MAC80211("leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07003524}
3525
Johannes Berge039fa42008-05-15 12:55:29 +02003526static int iwl4965_mac_beacon_update(struct ieee80211_hw *hw, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07003527{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003528 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07003529 unsigned long flags;
Assaf Krauss2ff75b72008-06-30 17:23:17 +08003530 __le64 timestamp;
Zhu Yib481de92007-09-25 17:54:57 -07003531
3532 mutex_lock(&priv->mutex);
3533 IWL_DEBUG_MAC80211("enter\n");
3534
Tomas Winklerfee12472008-04-03 16:05:21 -07003535 if (!iwl_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07003536 IWL_DEBUG_MAC80211("leave - RF not ready\n");
3537 mutex_unlock(&priv->mutex);
3538 return -EIO;
3539 }
3540
Johannes Berg05c914f2008-09-11 00:01:58 +02003541 if (priv->iw_mode != NL80211_IFTYPE_ADHOC) {
Zhu Yib481de92007-09-25 17:54:57 -07003542 IWL_DEBUG_MAC80211("leave - not IBSS\n");
3543 mutex_unlock(&priv->mutex);
3544 return -EIO;
3545 }
3546
3547 spin_lock_irqsave(&priv->lock, flags);
3548
3549 if (priv->ibss_beacon)
3550 dev_kfree_skb(priv->ibss_beacon);
3551
3552 priv->ibss_beacon = skb;
3553
3554 priv->assoc_id = 0;
Assaf Krauss2ff75b72008-06-30 17:23:17 +08003555 timestamp = ((struct ieee80211_mgmt *)skb->data)->u.beacon.timestamp;
Assaf Kraussb94d8ee2008-09-03 11:18:42 +08003556 priv->timestamp = le64_to_cpu(timestamp);
Zhu Yib481de92007-09-25 17:54:57 -07003557
3558 IWL_DEBUG_MAC80211("leave\n");
3559 spin_unlock_irqrestore(&priv->lock, flags);
3560
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -07003561 iwl_reset_qos(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003562
Assaf Kraussc46fbef2008-06-12 09:47:05 +08003563 iwl4965_post_associate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003564
3565 mutex_unlock(&priv->mutex);
3566
3567 return 0;
3568}
3569
Zhu Yib481de92007-09-25 17:54:57 -07003570/*****************************************************************************
3571 *
3572 * sysfs attributes
3573 *
3574 *****************************************************************************/
3575
Tomas Winkler0a6857e2008-03-12 16:58:49 -07003576#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07003577
3578/*
3579 * The following adds a new attribute to the sysfs representation
3580 * of this device driver (i.e. a new file in /sys/bus/pci/drivers/iwl/)
3581 * used for controlling the debug level.
3582 *
3583 * See the level definitions in iwl for details.
3584 */
3585
Ester Kummer8cf769c2008-05-06 11:05:11 +08003586static ssize_t show_debug_level(struct device *d,
3587 struct device_attribute *attr, char *buf)
Zhu Yib481de92007-09-25 17:54:57 -07003588{
Ester Kummer8cf769c2008-05-06 11:05:11 +08003589 struct iwl_priv *priv = d->driver_data;
3590
3591 return sprintf(buf, "0x%08X\n", priv->debug_level);
Zhu Yib481de92007-09-25 17:54:57 -07003592}
Ester Kummer8cf769c2008-05-06 11:05:11 +08003593static ssize_t store_debug_level(struct device *d,
3594 struct device_attribute *attr,
Zhu Yib481de92007-09-25 17:54:57 -07003595 const char *buf, size_t count)
3596{
Ester Kummer8cf769c2008-05-06 11:05:11 +08003597 struct iwl_priv *priv = d->driver_data;
Tomas Winkler9257746f2008-09-03 11:26:32 +08003598 unsigned long val;
3599 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07003600
Tomas Winkler9257746f2008-09-03 11:26:32 +08003601 ret = strict_strtoul(buf, 0, &val);
3602 if (ret)
Zhu Yib481de92007-09-25 17:54:57 -07003603 printk(KERN_INFO DRV_NAME
3604 ": %s is not in hex or decimal form.\n", buf);
3605 else
Ester Kummer8cf769c2008-05-06 11:05:11 +08003606 priv->debug_level = val;
Zhu Yib481de92007-09-25 17:54:57 -07003607
3608 return strnlen(buf, count);
3609}
3610
Ester Kummer8cf769c2008-05-06 11:05:11 +08003611static DEVICE_ATTR(debug_level, S_IWUSR | S_IRUGO,
3612 show_debug_level, store_debug_level);
3613
Zhu Yib481de92007-09-25 17:54:57 -07003614
Tomas Winkler0a6857e2008-03-12 16:58:49 -07003615#endif /* CONFIG_IWLWIFI_DEBUG */
Zhu Yib481de92007-09-25 17:54:57 -07003616
Zhu Yib481de92007-09-25 17:54:57 -07003617
Tomas Winklerbc6f59b2008-05-06 11:05:13 +08003618static ssize_t show_version(struct device *d,
3619 struct device_attribute *attr, char *buf)
3620{
3621 struct iwl_priv *priv = d->driver_data;
Tomas Winkler885ba202008-05-29 16:34:55 +08003622 struct iwl_alive_resp *palive = &priv->card_alive;
Tomas Winklerf236a262008-06-30 17:23:02 +08003623 ssize_t pos = 0;
3624 u16 eeprom_ver;
Tomas Winklerbc6f59b2008-05-06 11:05:13 +08003625
3626 if (palive->is_valid)
Tomas Winklerf236a262008-06-30 17:23:02 +08003627 pos += sprintf(buf + pos,
3628 "fw version: 0x%01X.0x%01X.0x%01X.0x%01X\n"
3629 "fw type: 0x%01X 0x%01X\n",
Tomas Winklerbc6f59b2008-05-06 11:05:13 +08003630 palive->ucode_major, palive->ucode_minor,
3631 palive->sw_rev[0], palive->sw_rev[1],
3632 palive->ver_type, palive->ver_subtype);
Tomas Winklerbc6f59b2008-05-06 11:05:13 +08003633 else
Tomas Winklerf236a262008-06-30 17:23:02 +08003634 pos += sprintf(buf + pos, "fw not loaded\n");
3635
3636 if (priv->eeprom) {
3637 eeprom_ver = iwl_eeprom_query16(priv, EEPROM_VERSION);
3638 pos += sprintf(buf + pos, "EEPROM version: 0x%x\n",
3639 eeprom_ver);
3640 } else {
3641 pos += sprintf(buf + pos, "EEPROM not initialzed\n");
3642 }
3643
3644 return pos;
Tomas Winklerbc6f59b2008-05-06 11:05:13 +08003645}
3646
3647static DEVICE_ATTR(version, S_IWUSR | S_IRUGO, show_version, NULL);
3648
Zhu Yib481de92007-09-25 17:54:57 -07003649static ssize_t show_temperature(struct device *d,
3650 struct device_attribute *attr, char *buf)
3651{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003652 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07003653
Tomas Winklerfee12472008-04-03 16:05:21 -07003654 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07003655 return -EAGAIN;
3656
Emmanuel Grumbach91dbc5b2008-06-12 09:47:14 +08003657 return sprintf(buf, "%d\n", priv->temperature);
Zhu Yib481de92007-09-25 17:54:57 -07003658}
3659
3660static DEVICE_ATTR(temperature, S_IRUGO, show_temperature, NULL);
3661
Zhu Yib481de92007-09-25 17:54:57 -07003662static ssize_t show_tx_power(struct device *d,
3663 struct device_attribute *attr, char *buf)
3664{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003665 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Tomas Winkler630fe9b2008-06-12 09:47:08 +08003666 return sprintf(buf, "%d\n", priv->tx_power_user_lmt);
Zhu Yib481de92007-09-25 17:54:57 -07003667}
3668
3669static ssize_t store_tx_power(struct device *d,
3670 struct device_attribute *attr,
3671 const char *buf, size_t count)
3672{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003673 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Tomas Winkler9257746f2008-09-03 11:26:32 +08003674 unsigned long val;
3675 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07003676
Tomas Winkler9257746f2008-09-03 11:26:32 +08003677 ret = strict_strtoul(buf, 10, &val);
3678 if (ret)
Zhu Yib481de92007-09-25 17:54:57 -07003679 printk(KERN_INFO DRV_NAME
3680 ": %s is not in decimal form.\n", buf);
3681 else
Tomas Winkler630fe9b2008-06-12 09:47:08 +08003682 iwl_set_tx_power(priv, val, false);
Zhu Yib481de92007-09-25 17:54:57 -07003683
3684 return count;
3685}
3686
3687static DEVICE_ATTR(tx_power, S_IWUSR | S_IRUGO, show_tx_power, store_tx_power);
3688
3689static ssize_t show_flags(struct device *d,
3690 struct device_attribute *attr, char *buf)
3691{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003692 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07003693
3694 return sprintf(buf, "0x%04X\n", priv->active_rxon.flags);
3695}
3696
3697static ssize_t store_flags(struct device *d,
3698 struct device_attribute *attr,
3699 const char *buf, size_t count)
3700{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003701 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Tomas Winkler9257746f2008-09-03 11:26:32 +08003702 unsigned long val;
3703 u32 flags;
3704 int ret = strict_strtoul(buf, 0, &val);
Emmanuel Grumbach926f0b22008-09-03 11:26:39 +08003705 if (ret)
Tomas Winkler9257746f2008-09-03 11:26:32 +08003706 return ret;
3707 flags = (u32)val;
Zhu Yib481de92007-09-25 17:54:57 -07003708
3709 mutex_lock(&priv->mutex);
3710 if (le32_to_cpu(priv->staging_rxon.flags) != flags) {
3711 /* Cancel any currently running scans... */
Tomas Winkler2a421b92008-06-12 09:47:10 +08003712 if (iwl_scan_cancel_timeout(priv, 100))
Zhu Yib481de92007-09-25 17:54:57 -07003713 IWL_WARNING("Could not cancel scan.\n");
3714 else {
Tomas Winkler9257746f2008-09-03 11:26:32 +08003715 IWL_DEBUG_INFO("Commit rxon.flags = 0x%04X\n", flags);
Zhu Yib481de92007-09-25 17:54:57 -07003716 priv->staging_rxon.flags = cpu_to_le32(flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003717 iwl4965_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003718 }
3719 }
3720 mutex_unlock(&priv->mutex);
3721
3722 return count;
3723}
3724
3725static DEVICE_ATTR(flags, S_IWUSR | S_IRUGO, show_flags, store_flags);
3726
3727static ssize_t show_filter_flags(struct device *d,
3728 struct device_attribute *attr, char *buf)
3729{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003730 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07003731
3732 return sprintf(buf, "0x%04X\n",
3733 le32_to_cpu(priv->active_rxon.filter_flags));
3734}
3735
3736static ssize_t store_filter_flags(struct device *d,
3737 struct device_attribute *attr,
3738 const char *buf, size_t count)
3739{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003740 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Tomas Winkler9257746f2008-09-03 11:26:32 +08003741 unsigned long val;
3742 u32 filter_flags;
3743 int ret = strict_strtoul(buf, 0, &val);
Emmanuel Grumbach926f0b22008-09-03 11:26:39 +08003744 if (ret)
Tomas Winkler9257746f2008-09-03 11:26:32 +08003745 return ret;
3746 filter_flags = (u32)val;
Zhu Yib481de92007-09-25 17:54:57 -07003747
3748 mutex_lock(&priv->mutex);
3749 if (le32_to_cpu(priv->staging_rxon.filter_flags) != filter_flags) {
3750 /* Cancel any currently running scans... */
Tomas Winkler2a421b92008-06-12 09:47:10 +08003751 if (iwl_scan_cancel_timeout(priv, 100))
Zhu Yib481de92007-09-25 17:54:57 -07003752 IWL_WARNING("Could not cancel scan.\n");
3753 else {
3754 IWL_DEBUG_INFO("Committing rxon.filter_flags = "
3755 "0x%04X\n", filter_flags);
3756 priv->staging_rxon.filter_flags =
3757 cpu_to_le32(filter_flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003758 iwl4965_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003759 }
3760 }
3761 mutex_unlock(&priv->mutex);
3762
3763 return count;
3764}
3765
3766static DEVICE_ATTR(filter_flags, S_IWUSR | S_IRUGO, show_filter_flags,
3767 store_filter_flags);
3768
Tomas Winkler4fc22b22008-07-21 18:54:42 +03003769#ifdef CONFIG_IWLAGN_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -07003770
3771static ssize_t show_measurement(struct device *d,
3772 struct device_attribute *attr, char *buf)
3773{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003774 struct iwl_priv *priv = dev_get_drvdata(d);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003775 struct iwl4965_spectrum_notification measure_report;
Zhu Yib481de92007-09-25 17:54:57 -07003776 u32 size = sizeof(measure_report), len = 0, ofs = 0;
Tomas Winkler3ac7f142008-07-21 02:40:14 +03003777 u8 *data = (u8 *)&measure_report;
Zhu Yib481de92007-09-25 17:54:57 -07003778 unsigned long flags;
3779
3780 spin_lock_irqsave(&priv->lock, flags);
3781 if (!(priv->measurement_status & MEASUREMENT_READY)) {
3782 spin_unlock_irqrestore(&priv->lock, flags);
3783 return 0;
3784 }
3785 memcpy(&measure_report, &priv->measure_report, size);
3786 priv->measurement_status = 0;
3787 spin_unlock_irqrestore(&priv->lock, flags);
3788
3789 while (size && (PAGE_SIZE - len)) {
3790 hex_dump_to_buffer(data + ofs, size, 16, 1, buf + len,
3791 PAGE_SIZE - len, 1);
3792 len = strlen(buf);
3793 if (PAGE_SIZE - len)
3794 buf[len++] = '\n';
3795
3796 ofs += 16;
3797 size -= min(size, 16U);
3798 }
3799
3800 return len;
3801}
3802
3803static ssize_t store_measurement(struct device *d,
3804 struct device_attribute *attr,
3805 const char *buf, size_t count)
3806{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003807 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003808 struct ieee80211_measurement_params params = {
3809 .channel = le16_to_cpu(priv->active_rxon.channel),
3810 .start_time = cpu_to_le64(priv->last_tsf),
3811 .duration = cpu_to_le16(1),
3812 };
3813 u8 type = IWL_MEASURE_BASIC;
3814 u8 buffer[32];
3815 u8 channel;
3816
3817 if (count) {
3818 char *p = buffer;
3819 strncpy(buffer, buf, min(sizeof(buffer), count));
3820 channel = simple_strtoul(p, NULL, 0);
3821 if (channel)
3822 params.channel = channel;
3823
3824 p = buffer;
3825 while (*p && *p != ' ')
3826 p++;
3827 if (*p)
3828 type = simple_strtoul(p + 1, NULL, 0);
3829 }
3830
3831 IWL_DEBUG_INFO("Invoking measurement of type %d on "
3832 "channel %d (for '%s')\n", type, params.channel, buf);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003833 iwl4965_get_measurement(priv, &params, type);
Zhu Yib481de92007-09-25 17:54:57 -07003834
3835 return count;
3836}
3837
3838static DEVICE_ATTR(measurement, S_IRUSR | S_IWUSR,
3839 show_measurement, store_measurement);
Tomas Winkler4fc22b22008-07-21 18:54:42 +03003840#endif /* CONFIG_IWLAGN_SPECTRUM_MEASUREMENT */
Zhu Yib481de92007-09-25 17:54:57 -07003841
3842static ssize_t store_retry_rate(struct device *d,
3843 struct device_attribute *attr,
3844 const char *buf, size_t count)
3845{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003846 struct iwl_priv *priv = dev_get_drvdata(d);
Tomas Winkler9257746f2008-09-03 11:26:32 +08003847 long val;
3848 int ret = strict_strtol(buf, 10, &val);
3849 if (!ret)
3850 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07003851
Tomas Winkler9257746f2008-09-03 11:26:32 +08003852 priv->retry_rate = (val > 0) ? val : 1;
Zhu Yib481de92007-09-25 17:54:57 -07003853
3854 return count;
3855}
3856
3857static ssize_t show_retry_rate(struct device *d,
3858 struct device_attribute *attr, char *buf)
3859{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003860 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07003861 return sprintf(buf, "%d", priv->retry_rate);
3862}
3863
3864static DEVICE_ATTR(retry_rate, S_IWUSR | S_IRUSR, show_retry_rate,
3865 store_retry_rate);
3866
3867static ssize_t store_power_level(struct device *d,
3868 struct device_attribute *attr,
3869 const char *buf, size_t count)
3870{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003871 struct iwl_priv *priv = dev_get_drvdata(d);
Esti Kummer298df1f2008-07-18 13:52:58 +08003872 int ret;
Tomas Winkler9257746f2008-09-03 11:26:32 +08003873 unsigned long mode;
Zhu Yib481de92007-09-25 17:54:57 -07003874
Tomas Winkler9257746f2008-09-03 11:26:32 +08003875
Zhu Yib481de92007-09-25 17:54:57 -07003876 mutex_lock(&priv->mutex);
3877
Tomas Winklerfee12472008-04-03 16:05:21 -07003878 if (!iwl_is_ready(priv)) {
Esti Kummer298df1f2008-07-18 13:52:58 +08003879 ret = -EAGAIN;
Zhu Yib481de92007-09-25 17:54:57 -07003880 goto out;
3881 }
3882
Tomas Winkler9257746f2008-09-03 11:26:32 +08003883 ret = strict_strtoul(buf, 10, &mode);
Emmanuel Grumbach926f0b22008-09-03 11:26:39 +08003884 if (ret)
Tomas Winkler9257746f2008-09-03 11:26:32 +08003885 goto out;
3886
Esti Kummer298df1f2008-07-18 13:52:58 +08003887 ret = iwl_power_set_user_mode(priv, mode);
3888 if (ret) {
Mohamed Abbas5da4b552008-04-21 15:41:51 -07003889 IWL_DEBUG_MAC80211("failed setting power mode.\n");
3890 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07003891 }
Esti Kummer298df1f2008-07-18 13:52:58 +08003892 ret = count;
Zhu Yib481de92007-09-25 17:54:57 -07003893
3894 out:
3895 mutex_unlock(&priv->mutex);
Esti Kummer298df1f2008-07-18 13:52:58 +08003896 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07003897}
3898
Zhu Yib481de92007-09-25 17:54:57 -07003899static ssize_t show_power_level(struct device *d,
3900 struct device_attribute *attr, char *buf)
3901{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003902 struct iwl_priv *priv = dev_get_drvdata(d);
Esti Kummer298df1f2008-07-18 13:52:58 +08003903 int mode = priv->power_data.user_power_setting;
3904 int system = priv->power_data.system_power_setting;
Mohamed Abbas5da4b552008-04-21 15:41:51 -07003905 int level = priv->power_data.power_mode;
Zhu Yib481de92007-09-25 17:54:57 -07003906 char *p = buf;
3907
Esti Kummer298df1f2008-07-18 13:52:58 +08003908 switch (system) {
3909 case IWL_POWER_SYS_AUTO:
3910 p += sprintf(p, "SYSTEM:auto");
Zhu Yib481de92007-09-25 17:54:57 -07003911 break;
Esti Kummer298df1f2008-07-18 13:52:58 +08003912 case IWL_POWER_SYS_AC:
3913 p += sprintf(p, "SYSTEM:ac");
Zhu Yib481de92007-09-25 17:54:57 -07003914 break;
Esti Kummer298df1f2008-07-18 13:52:58 +08003915 case IWL_POWER_SYS_BATTERY:
3916 p += sprintf(p, "SYSTEM:battery");
3917 break;
Zhu Yib481de92007-09-25 17:54:57 -07003918 }
Esti Kummer298df1f2008-07-18 13:52:58 +08003919
3920 p += sprintf(p, "\tMODE:%s", (mode < IWL_POWER_AUTO)?"fixed":"auto");
3921 p += sprintf(p, "\tINDEX:%d", level);
3922 p += sprintf(p, "\n");
Tomas Winkler3ac7f142008-07-21 02:40:14 +03003923 return p - buf + 1;
Zhu Yib481de92007-09-25 17:54:57 -07003924}
3925
3926static DEVICE_ATTR(power_level, S_IWUSR | S_IRUSR, show_power_level,
3927 store_power_level);
3928
3929static ssize_t show_channels(struct device *d,
3930 struct device_attribute *attr, char *buf)
3931{
Ester Kummer5d72a1f2008-06-13 15:44:53 +08003932
3933 struct iwl_priv *priv = dev_get_drvdata(d);
3934 struct ieee80211_channel *channels = NULL;
3935 const struct ieee80211_supported_band *supp_band = NULL;
3936 int len = 0, i;
3937 int count = 0;
3938
3939 if (!test_bit(STATUS_GEO_CONFIGURED, &priv->status))
3940 return -EAGAIN;
3941
3942 supp_band = iwl_get_hw_mode(priv, IEEE80211_BAND_2GHZ);
3943 channels = supp_band->channels;
3944 count = supp_band->n_channels;
3945
3946 len += sprintf(&buf[len],
3947 "Displaying %d channels in 2.4GHz band "
3948 "(802.11bg):\n", count);
3949
3950 for (i = 0; i < count; i++)
3951 len += sprintf(&buf[len], "%d: %ddBm: BSS%s%s, %s.\n",
3952 ieee80211_frequency_to_channel(
3953 channels[i].center_freq),
3954 channels[i].max_power,
3955 channels[i].flags & IEEE80211_CHAN_RADAR ?
3956 " (IEEE 802.11h required)" : "",
3957 (!(channels[i].flags & IEEE80211_CHAN_NO_IBSS)
3958 || (channels[i].flags &
3959 IEEE80211_CHAN_RADAR)) ? "" :
3960 ", IBSS",
3961 channels[i].flags &
3962 IEEE80211_CHAN_PASSIVE_SCAN ?
3963 "passive only" : "active/passive");
3964
3965 supp_band = iwl_get_hw_mode(priv, IEEE80211_BAND_5GHZ);
3966 channels = supp_band->channels;
3967 count = supp_band->n_channels;
3968
3969 len += sprintf(&buf[len], "Displaying %d channels in 5.2GHz band "
3970 "(802.11a):\n", count);
3971
3972 for (i = 0; i < count; i++)
3973 len += sprintf(&buf[len], "%d: %ddBm: BSS%s%s, %s.\n",
3974 ieee80211_frequency_to_channel(
3975 channels[i].center_freq),
3976 channels[i].max_power,
3977 channels[i].flags & IEEE80211_CHAN_RADAR ?
3978 " (IEEE 802.11h required)" : "",
3979 ((channels[i].flags & IEEE80211_CHAN_NO_IBSS)
3980 || (channels[i].flags &
3981 IEEE80211_CHAN_RADAR)) ? "" :
3982 ", IBSS",
3983 channels[i].flags &
3984 IEEE80211_CHAN_PASSIVE_SCAN ?
3985 "passive only" : "active/passive");
3986
3987 return len;
Zhu Yib481de92007-09-25 17:54:57 -07003988}
3989
3990static DEVICE_ATTR(channels, S_IRUSR, show_channels, NULL);
3991
3992static ssize_t show_statistics(struct device *d,
3993 struct device_attribute *attr, char *buf)
3994{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003995 struct iwl_priv *priv = dev_get_drvdata(d);
Emmanuel Grumbach8f91aec2008-06-30 17:23:07 +08003996 u32 size = sizeof(struct iwl_notif_statistics);
Zhu Yib481de92007-09-25 17:54:57 -07003997 u32 len = 0, ofs = 0;
Tomas Winkler3ac7f142008-07-21 02:40:14 +03003998 u8 *data = (u8 *)&priv->statistics;
Zhu Yib481de92007-09-25 17:54:57 -07003999 int rc = 0;
4000
Tomas Winklerfee12472008-04-03 16:05:21 -07004001 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07004002 return -EAGAIN;
4003
4004 mutex_lock(&priv->mutex);
Emmanuel Grumbach49ea8592008-04-15 16:01:37 -07004005 rc = iwl_send_statistics_request(priv, 0);
Zhu Yib481de92007-09-25 17:54:57 -07004006 mutex_unlock(&priv->mutex);
4007
4008 if (rc) {
4009 len = sprintf(buf,
4010 "Error sending statistics request: 0x%08X\n", rc);
4011 return len;
4012 }
4013
4014 while (size && (PAGE_SIZE - len)) {
4015 hex_dump_to_buffer(data + ofs, size, 16, 1, buf + len,
4016 PAGE_SIZE - len, 1);
4017 len = strlen(buf);
4018 if (PAGE_SIZE - len)
4019 buf[len++] = '\n';
4020
4021 ofs += 16;
4022 size -= min(size, 16U);
4023 }
4024
4025 return len;
4026}
4027
4028static DEVICE_ATTR(statistics, S_IRUGO, show_statistics, NULL);
4029
Zhu Yib481de92007-09-25 17:54:57 -07004030static ssize_t show_status(struct device *d,
4031 struct device_attribute *attr, char *buf)
4032{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004033 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Tomas Winklerfee12472008-04-03 16:05:21 -07004034 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07004035 return -EAGAIN;
4036 return sprintf(buf, "0x%08x\n", (int)priv->status);
4037}
4038
4039static DEVICE_ATTR(status, S_IRUGO, show_status, NULL);
4040
Zhu Yib481de92007-09-25 17:54:57 -07004041/*****************************************************************************
4042 *
4043 * driver setup and teardown
4044 *
4045 *****************************************************************************/
4046
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08004047static void iwl_setup_deferred_work(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004048{
4049 priv->workqueue = create_workqueue(DRV_NAME);
4050
4051 init_waitqueue_head(&priv->wait_command_queue);
4052
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004053 INIT_WORK(&priv->up, iwl4965_bg_up);
4054 INIT_WORK(&priv->restart, iwl4965_bg_restart);
4055 INIT_WORK(&priv->rx_replenish, iwl4965_bg_rx_replenish);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004056 INIT_WORK(&priv->rf_kill, iwl4965_bg_rf_kill);
4057 INIT_WORK(&priv->beacon_update, iwl4965_bg_beacon_update);
Abhijeet Kolekar4419e392008-05-05 10:22:47 +08004058 INIT_WORK(&priv->set_monitor, iwl4965_bg_set_monitor);
Emmanuel Grumbach16e727e2008-06-12 09:46:52 +08004059 INIT_WORK(&priv->run_time_calib_work, iwl_bg_run_time_calib_work);
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08004060 INIT_DELAYED_WORK(&priv->init_alive_start, iwl_bg_init_alive_start);
4061 INIT_DELAYED_WORK(&priv->alive_start, iwl_bg_alive_start);
Tomas Winkler2a421b92008-06-12 09:47:10 +08004062
Tomas Winkler2a421b92008-06-12 09:47:10 +08004063 iwl_setup_scan_deferred_work(priv);
Emmanuel Grumbachc90a74ba2008-09-03 11:26:50 +08004064 iwl_setup_power_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004065
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08004066 if (priv->cfg->ops->lib->setup_deferred_work)
4067 priv->cfg->ops->lib->setup_deferred_work(priv);
4068
4069 init_timer(&priv->statistics_periodic);
4070 priv->statistics_periodic.data = (unsigned long)priv;
4071 priv->statistics_periodic.function = iwl4965_bg_statistics_periodic;
Zhu Yib481de92007-09-25 17:54:57 -07004072
4073 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004074 iwl4965_irq_tasklet, (unsigned long)priv);
Zhu Yib481de92007-09-25 17:54:57 -07004075}
4076
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08004077static void iwl_cancel_deferred_work(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004078{
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08004079 if (priv->cfg->ops->lib->cancel_deferred_work)
4080 priv->cfg->ops->lib->cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004081
Joonwoo Park3ae6a052007-11-29 10:43:16 +09004082 cancel_delayed_work_sync(&priv->init_alive_start);
Zhu Yib481de92007-09-25 17:54:57 -07004083 cancel_delayed_work(&priv->scan_check);
Emmanuel Grumbachc90a74ba2008-09-03 11:26:50 +08004084 cancel_delayed_work_sync(&priv->set_power_save);
Zhu Yib481de92007-09-25 17:54:57 -07004085 cancel_delayed_work(&priv->alive_start);
Zhu Yib481de92007-09-25 17:54:57 -07004086 cancel_work_sync(&priv->beacon_update);
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08004087 del_timer_sync(&priv->statistics_periodic);
Zhu Yib481de92007-09-25 17:54:57 -07004088}
4089
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004090static struct attribute *iwl4965_sysfs_entries[] = {
Zhu Yib481de92007-09-25 17:54:57 -07004091 &dev_attr_channels.attr,
Zhu Yib481de92007-09-25 17:54:57 -07004092 &dev_attr_flags.attr,
4093 &dev_attr_filter_flags.attr,
Tomas Winkler4fc22b22008-07-21 18:54:42 +03004094#ifdef CONFIG_IWLAGN_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -07004095 &dev_attr_measurement.attr,
4096#endif
4097 &dev_attr_power_level.attr,
4098 &dev_attr_retry_rate.attr,
Zhu Yib481de92007-09-25 17:54:57 -07004099 &dev_attr_statistics.attr,
4100 &dev_attr_status.attr,
4101 &dev_attr_temperature.attr,
Zhu Yib481de92007-09-25 17:54:57 -07004102 &dev_attr_tx_power.attr,
Ester Kummer8cf769c2008-05-06 11:05:11 +08004103#ifdef CONFIG_IWLWIFI_DEBUG
4104 &dev_attr_debug_level.attr,
4105#endif
Tomas Winklerbc6f59b2008-05-06 11:05:13 +08004106 &dev_attr_version.attr,
Zhu Yib481de92007-09-25 17:54:57 -07004107
4108 NULL
4109};
4110
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004111static struct attribute_group iwl4965_attribute_group = {
Zhu Yib481de92007-09-25 17:54:57 -07004112 .name = NULL, /* put in device directory */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004113 .attrs = iwl4965_sysfs_entries,
Zhu Yib481de92007-09-25 17:54:57 -07004114};
4115
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004116static struct ieee80211_ops iwl4965_hw_ops = {
4117 .tx = iwl4965_mac_tx,
4118 .start = iwl4965_mac_start,
4119 .stop = iwl4965_mac_stop,
4120 .add_interface = iwl4965_mac_add_interface,
4121 .remove_interface = iwl4965_mac_remove_interface,
4122 .config = iwl4965_mac_config,
4123 .config_interface = iwl4965_mac_config_interface,
4124 .configure_filter = iwl4965_configure_filter,
4125 .set_key = iwl4965_mac_set_key,
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02004126 .update_tkip_key = iwl4965_mac_update_tkip_key,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004127 .get_stats = iwl4965_mac_get_stats,
4128 .get_tx_stats = iwl4965_mac_get_tx_stats,
4129 .conf_tx = iwl4965_mac_conf_tx,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004130 .reset_tsf = iwl4965_mac_reset_tsf,
Johannes Berg471b3ef2007-12-28 14:32:58 +01004131 .bss_info_changed = iwl4965_bss_info_changed,
Ron Rindjunsky9ab46172007-12-25 17:00:38 +02004132 .ampdu_action = iwl4965_mac_ampdu_action,
Tomas Winklercb43dc22008-09-03 11:26:23 +08004133 .hw_scan = iwl_mac_hw_scan
Zhu Yib481de92007-09-25 17:54:57 -07004134};
4135
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004136static int iwl4965_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
Zhu Yib481de92007-09-25 17:54:57 -07004137{
4138 int err = 0;
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004139 struct iwl_priv *priv;
Zhu Yib481de92007-09-25 17:54:57 -07004140 struct ieee80211_hw *hw;
Tomas Winkler82b9a122008-03-04 18:09:30 -08004141 struct iwl_cfg *cfg = (struct iwl_cfg *)(ent->driver_data);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004142 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07004143
Assaf Krauss316c30d2008-03-14 10:38:46 -07004144 /************************
4145 * 1. Allocating HW data
4146 ************************/
4147
Cahill, Ben M6440adb2007-11-29 11:09:55 +08004148 /* Disabling hardware scan means that mac80211 will perform scans
4149 * "the hard way", rather than using device's scan. */
Assaf Krauss1ea87392008-03-18 14:57:50 -07004150 if (cfg->mod_params->disable_hw_scan) {
Ester Kummerbf403db2008-05-05 10:22:40 +08004151 if (cfg->mod_params->debug & IWL_DL_INFO)
4152 dev_printk(KERN_DEBUG, &(pdev->dev),
4153 "Disabling hw_scan\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004154 iwl4965_hw_ops.hw_scan = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07004155 }
4156
Assaf Krauss1d0a0822008-03-14 10:38:48 -07004157 hw = iwl_alloc_all(cfg, &iwl4965_hw_ops);
4158 if (!hw) {
Zhu Yib481de92007-09-25 17:54:57 -07004159 err = -ENOMEM;
4160 goto out;
4161 }
Assaf Krauss1d0a0822008-03-14 10:38:48 -07004162 priv = hw->priv;
4163 /* At this point both hw and priv are allocated. */
4164
Zhu Yib481de92007-09-25 17:54:57 -07004165 SET_IEEE80211_DEV(hw, &pdev->dev);
4166
4167 IWL_DEBUG_INFO("*** LOAD DRIVER ***\n");
Tomas Winkler82b9a122008-03-04 18:09:30 -08004168 priv->cfg = cfg;
Zhu Yib481de92007-09-25 17:54:57 -07004169 priv->pci_dev = pdev;
Assaf Krauss316c30d2008-03-14 10:38:46 -07004170
Tomas Winkler0a6857e2008-03-12 16:58:49 -07004171#ifdef CONFIG_IWLWIFI_DEBUG
Ester Kummerbf403db2008-05-05 10:22:40 +08004172 priv->debug_level = priv->cfg->mod_params->debug;
Zhu Yib481de92007-09-25 17:54:57 -07004173 atomic_set(&priv->restrict_refcnt, 0);
4174#endif
Zhu Yib481de92007-09-25 17:54:57 -07004175
Assaf Krauss316c30d2008-03-14 10:38:46 -07004176 /**************************
4177 * 2. Initializing PCI bus
4178 **************************/
4179 if (pci_enable_device(pdev)) {
4180 err = -ENODEV;
4181 goto out_ieee80211_free_hw;
4182 }
4183
4184 pci_set_master(pdev);
4185
Winkler, Tomas093d874c2008-09-26 15:09:34 +08004186 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(36));
Assaf Krauss316c30d2008-03-14 10:38:46 -07004187 if (!err)
Winkler, Tomas093d874c2008-09-26 15:09:34 +08004188 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(36));
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07004189 if (err) {
Winkler, Tomas093d874c2008-09-26 15:09:34 +08004190 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07004191 if (!err)
Winkler, Tomas093d874c2008-09-26 15:09:34 +08004192 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07004193 /* both attempts failed: */
Assaf Krauss316c30d2008-03-14 10:38:46 -07004194 if (err) {
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07004195 printk(KERN_WARNING "%s: No suitable DMA available.\n",
4196 DRV_NAME);
Assaf Krauss316c30d2008-03-14 10:38:46 -07004197 goto out_pci_disable_device;
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07004198 }
Assaf Krauss316c30d2008-03-14 10:38:46 -07004199 }
4200
4201 err = pci_request_regions(pdev, DRV_NAME);
4202 if (err)
4203 goto out_pci_disable_device;
4204
4205 pci_set_drvdata(pdev, priv);
4206
Assaf Krauss316c30d2008-03-14 10:38:46 -07004207
4208 /***********************
4209 * 3. Read REV register
4210 ***********************/
4211 priv->hw_base = pci_iomap(pdev, 0, 0);
4212 if (!priv->hw_base) {
4213 err = -ENODEV;
4214 goto out_pci_release_regions;
4215 }
4216
4217 IWL_DEBUG_INFO("pci_resource_len = 0x%08llx\n",
4218 (unsigned long long) pci_resource_len(pdev, 0));
4219 IWL_DEBUG_INFO("pci_resource_base = %p\n", priv->hw_base);
4220
Tomas Winklerb661c812008-04-23 17:14:54 -07004221 iwl_hw_detect(priv);
Assaf Krauss316c30d2008-03-14 10:38:46 -07004222 printk(KERN_INFO DRV_NAME
Tomas Winklerb661c812008-04-23 17:14:54 -07004223 ": Detected Intel Wireless WiFi Link %s REV=0x%X\n",
4224 priv->cfg->name, priv->hw_rev);
Assaf Krauss316c30d2008-03-14 10:38:46 -07004225
Tomas Winklere7b63582008-09-03 11:26:49 +08004226 /* We disable the RETRY_TIMEOUT register (0x41) to keep
4227 * PCI Tx retries from interfering with C3 CPU state */
4228 pci_write_config_byte(pdev, PCI_CFG_RETRY_TIMEOUT, 0x00);
4229
Tomas Winkler91238712008-04-23 17:14:53 -07004230 /* amp init */
4231 err = priv->cfg->ops->lib->apm_ops.init(priv);
4232 if (err < 0) {
4233 IWL_DEBUG_INFO("Failed to init APMG\n");
4234 goto out_iounmap;
4235 }
Assaf Krauss316c30d2008-03-14 10:38:46 -07004236 /*****************
4237 * 4. Read EEPROM
4238 *****************/
Assaf Krauss316c30d2008-03-14 10:38:46 -07004239 /* Read the EEPROM */
4240 err = iwl_eeprom_init(priv);
4241 if (err) {
4242 IWL_ERROR("Unable to init EEPROM\n");
4243 goto out_iounmap;
4244 }
Tomas Winkler8614f362008-04-23 17:14:55 -07004245 err = iwl_eeprom_check_version(priv);
4246 if (err)
4247 goto out_iounmap;
4248
Ron Rindjunsky02883012008-05-15 13:53:53 +08004249 /* extract MAC Address */
Assaf Krauss316c30d2008-03-14 10:38:46 -07004250 iwl_eeprom_get_mac(priv, priv->mac_addr);
Johannes Berge1749612008-10-27 15:59:26 -07004251 IWL_DEBUG_INFO("MAC address: %pM\n", priv->mac_addr);
Assaf Krauss316c30d2008-03-14 10:38:46 -07004252 SET_IEEE80211_PERM_ADDR(priv->hw, priv->mac_addr);
4253
4254 /************************
4255 * 5. Setup HW constants
4256 ************************/
Ron Rindjunskyda154e302008-06-30 17:23:20 +08004257 if (iwl_set_hw_params(priv)) {
Tomas Winkler5425e492008-04-15 16:01:38 -07004258 IWL_ERROR("failed to set hw parameters\n");
Tomas Winkler073d3f52008-04-21 15:41:52 -07004259 goto out_free_eeprom;
Assaf Krauss316c30d2008-03-14 10:38:46 -07004260 }
4261
4262 /*******************
Tomas Winkler6ba87952008-05-15 13:54:17 +08004263 * 6. Setup priv
Assaf Krauss316c30d2008-03-14 10:38:46 -07004264 *******************/
Zhu Yib481de92007-09-25 17:54:57 -07004265
Tomas Winkler6ba87952008-05-15 13:54:17 +08004266 err = iwl_init_drv(priv);
Assaf Kraussbf85ea42008-03-14 10:38:49 -07004267 if (err)
Ron Rindjunsky399f4902008-04-23 17:14:56 -07004268 goto out_free_eeprom;
Assaf Kraussbf85ea42008-03-14 10:38:49 -07004269 /* At this point both hw and priv are initialized. */
Assaf Krauss316c30d2008-03-14 10:38:46 -07004270
4271 /**********************************
4272 * 7. Initialize module parameters
4273 **********************************/
4274
4275 /* Disable radio (SW RF KILL) via parameter when loading driver */
Assaf Krauss1ea87392008-03-18 14:57:50 -07004276 if (priv->cfg->mod_params->disable) {
Assaf Krauss316c30d2008-03-14 10:38:46 -07004277 set_bit(STATUS_RF_KILL_SW, &priv->status);
4278 IWL_DEBUG_INFO("Radio disabled.\n");
4279 }
4280
Assaf Krauss316c30d2008-03-14 10:38:46 -07004281 /********************
4282 * 8. Setup services
4283 ********************/
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004284 spin_lock_irqsave(&priv->lock, flags);
Assaf Krauss316c30d2008-03-14 10:38:46 -07004285 iwl4965_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004286 spin_unlock_irqrestore(&priv->lock, flags);
Assaf Krauss316c30d2008-03-14 10:38:46 -07004287
4288 err = sysfs_create_group(&pdev->dev.kobj, &iwl4965_attribute_group);
4289 if (err) {
4290 IWL_ERROR("failed to create sysfs device attributes\n");
Tomas Winkler6ba87952008-05-15 13:54:17 +08004291 goto out_uninit_drv;
Assaf Krauss316c30d2008-03-14 10:38:46 -07004292 }
4293
Assaf Krauss316c30d2008-03-14 10:38:46 -07004294
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08004295 iwl_setup_deferred_work(priv);
Emmanuel Grumbach653fa4a2008-06-30 17:23:11 +08004296 iwl_setup_rx_handlers(priv);
Assaf Krauss316c30d2008-03-14 10:38:46 -07004297
4298 /********************
4299 * 9. Conclude
4300 ********************/
Zhu Yi5a66926a2008-01-14 17:46:18 -08004301 pci_save_state(pdev);
4302 pci_disable_device(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07004303
Tomas Winkler6ba87952008-05-15 13:54:17 +08004304 /**********************************
4305 * 10. Setup and register mac80211
4306 **********************************/
4307
4308 err = iwl_setup_mac(priv);
4309 if (err)
4310 goto out_remove_sysfs;
4311
4312 err = iwl_dbgfs_register(priv, DRV_NAME);
4313 if (err)
4314 IWL_ERROR("failed to create debugfs files\n");
4315
Emmanuel Grumbach58d0f362008-06-12 09:47:19 +08004316 err = iwl_rfkill_init(priv);
4317 if (err)
4318 IWL_ERROR("Unable to initialize RFKILL system. "
4319 "Ignoring error: %d\n", err);
4320 iwl_power_initialize(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004321 return 0;
4322
Assaf Krauss316c30d2008-03-14 10:38:46 -07004323 out_remove_sysfs:
4324 sysfs_remove_group(&pdev->dev.kobj, &iwl4965_attribute_group);
Tomas Winkler6ba87952008-05-15 13:54:17 +08004325 out_uninit_drv:
4326 iwl_uninit_drv(priv);
Tomas Winkler073d3f52008-04-21 15:41:52 -07004327 out_free_eeprom:
4328 iwl_eeprom_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004329 out_iounmap:
4330 pci_iounmap(pdev, priv->hw_base);
4331 out_pci_release_regions:
4332 pci_release_regions(pdev);
Assaf Krauss316c30d2008-03-14 10:38:46 -07004333 pci_set_drvdata(pdev, NULL);
Zhu Yib481de92007-09-25 17:54:57 -07004334 out_pci_disable_device:
4335 pci_disable_device(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07004336 out_ieee80211_free_hw:
4337 ieee80211_free_hw(priv->hw);
4338 out:
4339 return err;
4340}
4341
Reinette Chatrec83dbf62008-03-21 13:53:41 -07004342static void __devexit iwl4965_pci_remove(struct pci_dev *pdev)
Zhu Yib481de92007-09-25 17:54:57 -07004343{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004344 struct iwl_priv *priv = pci_get_drvdata(pdev);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004345 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07004346
4347 if (!priv)
4348 return;
4349
4350 IWL_DEBUG_INFO("*** UNLOAD DRIVER ***\n");
4351
Emmanuel Grumbach67249622008-05-29 16:35:26 +08004352 iwl_dbgfs_unregister(priv);
4353 sysfs_remove_group(&pdev->dev.kobj, &iwl4965_attribute_group);
4354
Gregory Greenman0b124c32008-09-03 11:18:50 +08004355 /* ieee80211_unregister_hw call wil cause iwl4965_mac_stop to
4356 * to be called and iwl4965_down since we are removing the device
4357 * we need to set STATUS_EXIT_PENDING bit.
4358 */
4359 set_bit(STATUS_EXIT_PENDING, &priv->status);
Ron Rindjunskyc4f55232008-03-28 16:21:10 -07004360 if (priv->mac80211_registered) {
4361 ieee80211_unregister_hw(priv->hw);
4362 priv->mac80211_registered = 0;
Gregory Greenman0b124c32008-09-03 11:18:50 +08004363 } else {
4364 iwl4965_down(priv);
Ron Rindjunskyc4f55232008-03-28 16:21:10 -07004365 }
4366
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004367 /* make sure we flush any pending irq or
4368 * tasklet for the driver
4369 */
4370 spin_lock_irqsave(&priv->lock, flags);
4371 iwl4965_disable_interrupts(priv);
4372 spin_unlock_irqrestore(&priv->lock, flags);
4373
4374 iwl_synchronize_irq(priv);
4375
Emmanuel Grumbach58d0f362008-06-12 09:47:19 +08004376 iwl_rfkill_unregister(priv);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004377 iwl4965_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004378
4379 if (priv->rxq.bd)
Tomas Winklera55360e2008-05-05 10:22:28 +08004380 iwl_rx_queue_free(priv, &priv->rxq);
Ron Rindjunsky1053d352008-05-05 10:22:43 +08004381 iwl_hw_txq_ctx_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004382
Emmanuel Grumbach37deb2a2008-06-30 17:23:08 +08004383 iwl_clear_stations_table(priv);
Tomas Winkler073d3f52008-04-21 15:41:52 -07004384 iwl_eeprom_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004385
Zhu Yib481de92007-09-25 17:54:57 -07004386
Mohamed Abbas948c1712007-10-25 17:15:45 +08004387 /*netif_stop_queue(dev); */
4388 flush_workqueue(priv->workqueue);
4389
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004390 /* ieee80211_unregister_hw calls iwl4965_mac_stop, which flushes
Zhu Yib481de92007-09-25 17:54:57 -07004391 * priv->workqueue... so we can't take down the workqueue
4392 * until now... */
4393 destroy_workqueue(priv->workqueue);
4394 priv->workqueue = NULL;
4395
Zhu Yib481de92007-09-25 17:54:57 -07004396 pci_iounmap(pdev, priv->hw_base);
4397 pci_release_regions(pdev);
4398 pci_disable_device(pdev);
4399 pci_set_drvdata(pdev, NULL);
4400
Tomas Winkler6ba87952008-05-15 13:54:17 +08004401 iwl_uninit_drv(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004402
4403 if (priv->ibss_beacon)
4404 dev_kfree_skb(priv->ibss_beacon);
4405
4406 ieee80211_free_hw(priv->hw);
4407}
4408
4409#ifdef CONFIG_PM
4410
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004411static int iwl4965_pci_suspend(struct pci_dev *pdev, pm_message_t state)
Zhu Yib481de92007-09-25 17:54:57 -07004412{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004413 struct iwl_priv *priv = pci_get_drvdata(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07004414
Zhu Yie655b9f2008-01-24 02:19:38 -08004415 if (priv->is_open) {
4416 set_bit(STATUS_IN_SUSPEND, &priv->status);
4417 iwl4965_mac_stop(priv->hw);
4418 priv->is_open = 1;
4419 }
Zhu Yib481de92007-09-25 17:54:57 -07004420
Zhu Yib481de92007-09-25 17:54:57 -07004421 pci_set_power_state(pdev, PCI_D3hot);
4422
Zhu Yib481de92007-09-25 17:54:57 -07004423 return 0;
4424}
4425
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004426static int iwl4965_pci_resume(struct pci_dev *pdev)
Zhu Yib481de92007-09-25 17:54:57 -07004427{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004428 struct iwl_priv *priv = pci_get_drvdata(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07004429
Zhu Yib481de92007-09-25 17:54:57 -07004430 pci_set_power_state(pdev, PCI_D0);
Zhu Yib481de92007-09-25 17:54:57 -07004431
Zhu Yie655b9f2008-01-24 02:19:38 -08004432 if (priv->is_open)
4433 iwl4965_mac_start(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07004434
Zhu Yie655b9f2008-01-24 02:19:38 -08004435 clear_bit(STATUS_IN_SUSPEND, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07004436 return 0;
4437}
4438
4439#endif /* CONFIG_PM */
4440
4441/*****************************************************************************
4442 *
4443 * driver and module entry point
4444 *
4445 *****************************************************************************/
4446
Ron Rindjunskyfed90172008-04-15 16:01:41 -07004447/* Hardware specific file defines the PCI IDs table for that hardware module */
4448static struct pci_device_id iwl_hw_card_ids[] = {
Tomas Winkler4fc22b22008-07-21 18:54:42 +03004449#ifdef CONFIG_IWL4965
Ron Rindjunskyfed90172008-04-15 16:01:41 -07004450 {IWL_PCI_DEVICE(0x4229, PCI_ANY_ID, iwl4965_agn_cfg)},
4451 {IWL_PCI_DEVICE(0x4230, PCI_ANY_ID, iwl4965_agn_cfg)},
Tomas Winkler4fc22b22008-07-21 18:54:42 +03004452#endif /* CONFIG_IWL4965 */
Tomas Winkler5a6a2562008-04-24 11:55:23 -07004453#ifdef CONFIG_IWL5000
Esti Kummer47408632008-07-11 11:53:30 +08004454 {IWL_PCI_DEVICE(0x4232, 0x1205, iwl5100_bg_cfg)},
4455 {IWL_PCI_DEVICE(0x4232, 0x1305, iwl5100_bg_cfg)},
4456 {IWL_PCI_DEVICE(0x4232, 0x1206, iwl5100_abg_cfg)},
4457 {IWL_PCI_DEVICE(0x4232, 0x1306, iwl5100_abg_cfg)},
4458 {IWL_PCI_DEVICE(0x4232, 0x1326, iwl5100_abg_cfg)},
4459 {IWL_PCI_DEVICE(0x4237, 0x1216, iwl5100_abg_cfg)},
Tomas Winkler5a6a2562008-04-24 11:55:23 -07004460 {IWL_PCI_DEVICE(0x4232, PCI_ANY_ID, iwl5100_agn_cfg)},
Esti Kummer47408632008-07-11 11:53:30 +08004461 {IWL_PCI_DEVICE(0x4235, PCI_ANY_ID, iwl5300_agn_cfg)},
4462 {IWL_PCI_DEVICE(0x4236, PCI_ANY_ID, iwl5300_agn_cfg)},
4463 {IWL_PCI_DEVICE(0x4237, PCI_ANY_ID, iwl5100_agn_cfg)},
Tomas Winklere96a8492008-09-11 11:45:20 +08004464/* 5350 WiFi/WiMax */
4465 {IWL_PCI_DEVICE(0x423A, 0x1001, iwl5350_agn_cfg)},
4466 {IWL_PCI_DEVICE(0x423A, 0x1021, iwl5350_agn_cfg)},
4467 {IWL_PCI_DEVICE(0x423B, 0x1011, iwl5350_agn_cfg)},
Tomas Winkler5a6a2562008-04-24 11:55:23 -07004468#endif /* CONFIG_IWL5000 */
Ron Rindjunskyfed90172008-04-15 16:01:41 -07004469 {0}
4470};
4471MODULE_DEVICE_TABLE(pci, iwl_hw_card_ids);
4472
4473static struct pci_driver iwl_driver = {
Zhu Yib481de92007-09-25 17:54:57 -07004474 .name = DRV_NAME,
Ron Rindjunskyfed90172008-04-15 16:01:41 -07004475 .id_table = iwl_hw_card_ids,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004476 .probe = iwl4965_pci_probe,
4477 .remove = __devexit_p(iwl4965_pci_remove),
Zhu Yib481de92007-09-25 17:54:57 -07004478#ifdef CONFIG_PM
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004479 .suspend = iwl4965_pci_suspend,
4480 .resume = iwl4965_pci_resume,
Zhu Yib481de92007-09-25 17:54:57 -07004481#endif
4482};
4483
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004484static int __init iwl4965_init(void)
Zhu Yib481de92007-09-25 17:54:57 -07004485{
4486
4487 int ret;
4488 printk(KERN_INFO DRV_NAME ": " DRV_DESCRIPTION ", " DRV_VERSION "\n");
4489 printk(KERN_INFO DRV_NAME ": " DRV_COPYRIGHT "\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004490
Tomas Winklere227cea2008-07-18 13:53:05 +08004491 ret = iwlagn_rate_control_register();
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004492 if (ret) {
4493 IWL_ERROR("Unable to register rate control algorithm: %d\n", ret);
4494 return ret;
4495 }
4496
Ron Rindjunskyfed90172008-04-15 16:01:41 -07004497 ret = pci_register_driver(&iwl_driver);
Zhu Yib481de92007-09-25 17:54:57 -07004498 if (ret) {
4499 IWL_ERROR("Unable to initialize PCI module\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004500 goto error_register;
Zhu Yib481de92007-09-25 17:54:57 -07004501 }
Zhu Yib481de92007-09-25 17:54:57 -07004502
4503 return ret;
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004504
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004505error_register:
Tomas Winklere227cea2008-07-18 13:53:05 +08004506 iwlagn_rate_control_unregister();
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004507 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07004508}
4509
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004510static void __exit iwl4965_exit(void)
Zhu Yib481de92007-09-25 17:54:57 -07004511{
Ron Rindjunskyfed90172008-04-15 16:01:41 -07004512 pci_unregister_driver(&iwl_driver);
Tomas Winklere227cea2008-07-18 13:53:05 +08004513 iwlagn_rate_control_unregister();
Zhu Yib481de92007-09-25 17:54:57 -07004514}
4515
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004516module_exit(iwl4965_exit);
4517module_init(iwl4965_init);