blob: e5e8ad829a9239d05729ff78b55ca58c26652989 [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>
32#include <linux/version.h>
33#include <linux/init.h>
34#include <linux/pci.h>
35#include <linux/dma-mapping.h>
36#include <linux/delay.h>
37#include <linux/skbuff.h>
38#include <linux/netdevice.h>
39#include <linux/wireless.h>
40#include <linux/firmware.h>
Zhu Yib481de92007-09-25 17:54:57 -070041#include <linux/etherdevice.h>
42#include <linux/if_arp.h>
43
Zhu Yib481de92007-09-25 17:54:57 -070044#include <net/mac80211.h>
45
46#include <asm/div64.h>
47
Assaf Krauss6bc913b2008-03-11 16:17:18 -070048#include "iwl-eeprom.h"
Tomas Winkler3e0d4cb2008-04-24 11:55:38 -070049#include "iwl-dev.h"
Tomas Winklerfee12472008-04-03 16:05:21 -070050#include "iwl-core.h"
Tomas Winkler3395f6e2008-03-25 16:33:37 -070051#include "iwl-io.h"
Zhu Yib481de92007-09-25 17:54:57 -070052#include "iwl-helpers.h"
Emmanuel Grumbach6974e362008-04-14 21:16:06 -070053#include "iwl-sta.h"
Emmanuel Grumbachf0832f12008-04-16 16:34:47 -070054#include "iwl-calib.h"
Zhu Yib481de92007-09-25 17:54:57 -070055
Christoph Hellwig416e1432007-10-25 17:15:49 +080056
Zhu Yib481de92007-09-25 17:54:57 -070057/******************************************************************************
58 *
59 * module boiler plate
60 *
61 ******************************************************************************/
62
Zhu Yib481de92007-09-25 17:54:57 -070063/*
64 * module name, copyright, version, etc.
65 * NOTE: DRV_NAME is defined in iwlwifi.h for use by iwl-debug.h and printk
66 */
67
68#define DRV_DESCRIPTION "Intel(R) Wireless WiFi Link 4965AGN driver for Linux"
69
Tomas Winkler0a6857e2008-03-12 16:58:49 -070070#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -070071#define VD "d"
72#else
73#define VD
74#endif
75
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +080076#ifdef CONFIG_IWL4965_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -070077#define VS "s"
78#else
79#define VS
80#endif
81
Tomas Winklerdf48c322008-03-06 10:40:19 -080082#define DRV_VERSION IWLWIFI_VERSION VD VS
Zhu Yib481de92007-09-25 17:54:57 -070083
Zhu Yib481de92007-09-25 17:54:57 -070084
85MODULE_DESCRIPTION(DRV_DESCRIPTION);
86MODULE_VERSION(DRV_VERSION);
87MODULE_AUTHOR(DRV_COPYRIGHT);
88MODULE_LICENSE("GPL");
89
Christoph Hellwigbb8c0932008-01-27 16:41:47 -080090static int iwl4965_is_empty_essid(const char *essid, int essid_len)
Zhu Yib481de92007-09-25 17:54:57 -070091{
92 /* Single white space is for Linksys APs */
93 if (essid_len == 1 && essid[0] == ' ')
94 return 1;
95
96 /* Otherwise, if the entire essid is 0, we assume it is hidden */
97 while (essid_len) {
98 essid_len--;
99 if (essid[essid_len] != '\0')
100 return 0;
101 }
102
103 return 1;
104}
105
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800106static const char *iwl4965_escape_essid(const char *essid, u8 essid_len)
Zhu Yib481de92007-09-25 17:54:57 -0700107{
108 static char escaped[IW_ESSID_MAX_SIZE * 2 + 1];
109 const char *s = essid;
110 char *d = escaped;
111
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800112 if (iwl4965_is_empty_essid(essid, essid_len)) {
Zhu Yib481de92007-09-25 17:54:57 -0700113 memcpy(escaped, "<hidden>", sizeof("<hidden>"));
114 return escaped;
115 }
116
117 essid_len = min(essid_len, (u8) IW_ESSID_MAX_SIZE);
118 while (essid_len--) {
119 if (*s == '\0') {
120 *d++ = '\\';
121 *d++ = '0';
122 s++;
123 } else
124 *d++ = *s++;
125 }
126 *d = '\0';
127 return escaped;
128}
129
Zhu Yib481de92007-09-25 17:54:57 -0700130/*************** STATION TABLE MANAGEMENT ****
Ben Cahill9fbab512007-11-29 11:09:47 +0800131 * mac80211 should be examined to determine if sta_info is duplicating
Zhu Yib481de92007-09-25 17:54:57 -0700132 * the functionality provided here
133 */
134
135/**************************************************************/
136
Zhu Yib481de92007-09-25 17:54:57 -0700137
Zhu Yib481de92007-09-25 17:54:57 -0700138
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -0700139static void iwl4965_set_rxon_hwcrypto(struct iwl_priv *priv, int hw_decrypt)
140{
Gregory Greenmanc1adf9f2008-05-15 13:53:59 +0800141 struct iwl_rxon_cmd *rxon = &priv->staging_rxon;
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -0700142
143 if (hw_decrypt)
144 rxon->filter_flags &= ~RXON_FILTER_DIS_DECRYPT_MSK;
145 else
146 rxon->filter_flags |= RXON_FILTER_DIS_DECRYPT_MSK;
147
148}
149
Zhu Yib481de92007-09-25 17:54:57 -0700150/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800151 * iwl4965_check_rxon_cmd - validate RXON structure is valid
Zhu Yib481de92007-09-25 17:54:57 -0700152 *
153 * NOTE: This is really only useful during development and can eventually
154 * be #ifdef'd out once the driver is stable and folks aren't actively
155 * making changes
156 */
Gregory Greenmanc1adf9f2008-05-15 13:53:59 +0800157static int iwl4965_check_rxon_cmd(struct iwl_rxon_cmd *rxon)
Zhu Yib481de92007-09-25 17:54:57 -0700158{
159 int error = 0;
160 int counter = 1;
161
162 if (rxon->flags & RXON_FLG_BAND_24G_MSK) {
163 error |= le32_to_cpu(rxon->flags &
164 (RXON_FLG_TGJ_NARROW_BAND_MSK |
165 RXON_FLG_RADAR_DETECT_MSK));
166 if (error)
167 IWL_WARNING("check 24G fields %d | %d\n",
168 counter++, error);
169 } else {
170 error |= (rxon->flags & RXON_FLG_SHORT_SLOT_MSK) ?
171 0 : le32_to_cpu(RXON_FLG_SHORT_SLOT_MSK);
172 if (error)
173 IWL_WARNING("check 52 fields %d | %d\n",
174 counter++, error);
175 error |= le32_to_cpu(rxon->flags & RXON_FLG_CCK_MSK);
176 if (error)
177 IWL_WARNING("check 52 CCK %d | %d\n",
178 counter++, error);
179 }
180 error |= (rxon->node_addr[0] | rxon->bssid_addr[0]) & 0x1;
181 if (error)
182 IWL_WARNING("check mac addr %d | %d\n", counter++, error);
183
184 /* make sure basic rates 6Mbps and 1Mbps are supported */
185 error |= (((rxon->ofdm_basic_rates & IWL_RATE_6M_MASK) == 0) &&
186 ((rxon->cck_basic_rates & IWL_RATE_1M_MASK) == 0));
187 if (error)
188 IWL_WARNING("check basic rate %d | %d\n", counter++, error);
189
190 error |= (le16_to_cpu(rxon->assoc_id) > 2007);
191 if (error)
192 IWL_WARNING("check assoc id %d | %d\n", counter++, error);
193
194 error |= ((rxon->flags & (RXON_FLG_CCK_MSK | RXON_FLG_SHORT_SLOT_MSK))
195 == (RXON_FLG_CCK_MSK | RXON_FLG_SHORT_SLOT_MSK));
196 if (error)
197 IWL_WARNING("check CCK and short slot %d | %d\n",
198 counter++, error);
199
200 error |= ((rxon->flags & (RXON_FLG_CCK_MSK | RXON_FLG_AUTO_DETECT_MSK))
201 == (RXON_FLG_CCK_MSK | RXON_FLG_AUTO_DETECT_MSK));
202 if (error)
203 IWL_WARNING("check CCK & auto detect %d | %d\n",
204 counter++, error);
205
206 error |= ((rxon->flags & (RXON_FLG_AUTO_DETECT_MSK |
207 RXON_FLG_TGG_PROTECT_MSK)) == RXON_FLG_TGG_PROTECT_MSK);
208 if (error)
209 IWL_WARNING("check TGG and auto detect %d | %d\n",
210 counter++, error);
211
212 if (error)
213 IWL_WARNING("Tuning to channel %d\n",
214 le16_to_cpu(rxon->channel));
215
216 if (error) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800217 IWL_ERROR("Not a valid iwl4965_rxon_assoc_cmd field values\n");
Zhu Yib481de92007-09-25 17:54:57 -0700218 return -1;
219 }
220 return 0;
221}
222
223/**
Ben Cahill9fbab512007-11-29 11:09:47 +0800224 * iwl4965_full_rxon_required - check if full RXON (vs RXON_ASSOC) cmd is needed
Ian Schram01ebd062007-10-25 17:15:22 +0800225 * @priv: staging_rxon is compared to active_rxon
Zhu Yib481de92007-09-25 17:54:57 -0700226 *
Ben Cahill9fbab512007-11-29 11:09:47 +0800227 * If the RXON structure is changing enough to require a new tune,
228 * or is clearing the RXON_FILTER_ASSOC_MSK, then return 1 to indicate that
229 * a new tune (full RXON command, rather than RXON_ASSOC cmd) is required.
Zhu Yib481de92007-09-25 17:54:57 -0700230 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700231static int iwl4965_full_rxon_required(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700232{
233
234 /* These items are only settable from the full RXON command */
235 if (!(priv->active_rxon.filter_flags & RXON_FILTER_ASSOC_MSK) ||
236 compare_ether_addr(priv->staging_rxon.bssid_addr,
237 priv->active_rxon.bssid_addr) ||
238 compare_ether_addr(priv->staging_rxon.node_addr,
239 priv->active_rxon.node_addr) ||
240 compare_ether_addr(priv->staging_rxon.wlap_bssid_addr,
241 priv->active_rxon.wlap_bssid_addr) ||
242 (priv->staging_rxon.dev_type != priv->active_rxon.dev_type) ||
243 (priv->staging_rxon.channel != priv->active_rxon.channel) ||
244 (priv->staging_rxon.air_propagation !=
245 priv->active_rxon.air_propagation) ||
246 (priv->staging_rxon.ofdm_ht_single_stream_basic_rates !=
247 priv->active_rxon.ofdm_ht_single_stream_basic_rates) ||
248 (priv->staging_rxon.ofdm_ht_dual_stream_basic_rates !=
249 priv->active_rxon.ofdm_ht_dual_stream_basic_rates) ||
250 (priv->staging_rxon.rx_chain != priv->active_rxon.rx_chain) ||
251 (priv->staging_rxon.assoc_id != priv->active_rxon.assoc_id))
252 return 1;
253
254 /* flags, filter_flags, ofdm_basic_rates, and cck_basic_rates can
255 * be updated with the RXON_ASSOC command -- however only some
256 * flag transitions are allowed using RXON_ASSOC */
257
258 /* Check if we are not switching bands */
259 if ((priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) !=
260 (priv->active_rxon.flags & RXON_FLG_BAND_24G_MSK))
261 return 1;
262
263 /* Check if we are switching association toggle */
264 if ((priv->staging_rxon.filter_flags & RXON_FILTER_ASSOC_MSK) !=
265 (priv->active_rxon.filter_flags & RXON_FILTER_ASSOC_MSK))
266 return 1;
267
268 return 0;
269}
270
Zhu Yib481de92007-09-25 17:54:57 -0700271/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800272 * iwl4965_commit_rxon - commit staging_rxon to hardware
Zhu Yib481de92007-09-25 17:54:57 -0700273 *
Ian Schram01ebd062007-10-25 17:15:22 +0800274 * The RXON command in staging_rxon is committed to the hardware and
Zhu Yib481de92007-09-25 17:54:57 -0700275 * the active_rxon structure is updated with the new data. This
276 * function correctly transitions out of the RXON_ASSOC_MSK state if
277 * a HW tune is required based on the RXON structure changes.
278 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700279static int iwl4965_commit_rxon(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700280{
281 /* cast away the const for active_rxon in this function */
Gregory Greenmanc1adf9f2008-05-15 13:53:59 +0800282 struct iwl_rxon_cmd *active_rxon = (void *)&priv->active_rxon;
Joe Perches0795af52007-10-03 17:59:30 -0700283 DECLARE_MAC_BUF(mac);
Zhu Yib481de92007-09-25 17:54:57 -0700284 int rc = 0;
285
Tomas Winklerfee12472008-04-03 16:05:21 -0700286 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -0700287 return -1;
288
289 /* always get timestamp with Rx frame */
290 priv->staging_rxon.flags |= RXON_FLG_TSF2HOST_MSK;
291
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800292 rc = iwl4965_check_rxon_cmd(&priv->staging_rxon);
Zhu Yib481de92007-09-25 17:54:57 -0700293 if (rc) {
294 IWL_ERROR("Invalid RXON configuration. Not committing.\n");
295 return -EINVAL;
296 }
297
298 /* If we don't need to send a full RXON, we can use
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800299 * iwl4965_rxon_assoc_cmd which is used to reconfigure filter
Zhu Yib481de92007-09-25 17:54:57 -0700300 * and other flags for the current radio configuration. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800301 if (!iwl4965_full_rxon_required(priv)) {
Tomas Winkler7e8c5192008-04-15 16:01:43 -0700302 rc = iwl_send_rxon_assoc(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700303 if (rc) {
304 IWL_ERROR("Error setting RXON_ASSOC "
305 "configuration (%d).\n", rc);
306 return rc;
307 }
308
309 memcpy(active_rxon, &priv->staging_rxon, sizeof(*active_rxon));
310
311 return 0;
312 }
313
314 /* station table will be cleared */
315 priv->assoc_station_added = 0;
316
Zhu Yib481de92007-09-25 17:54:57 -0700317 /* If we are currently associated and the new config requires
318 * an RXON_ASSOC and the new config wants the associated mask enabled,
319 * we must clear the associated from the active configuration
320 * before we apply the new config */
Tomas Winkler3109ece2008-03-28 16:33:35 -0700321 if (iwl_is_associated(priv) &&
Zhu Yib481de92007-09-25 17:54:57 -0700322 (priv->staging_rxon.filter_flags & RXON_FILTER_ASSOC_MSK)) {
323 IWL_DEBUG_INFO("Toggling associated bit on current RXON\n");
324 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
325
Tomas Winkler857485c2008-03-21 13:53:44 -0700326 rc = iwl_send_cmd_pdu(priv, REPLY_RXON,
Gregory Greenmanc1adf9f2008-05-15 13:53:59 +0800327 sizeof(struct iwl_rxon_cmd),
Zhu Yib481de92007-09-25 17:54:57 -0700328 &priv->active_rxon);
329
330 /* If the mask clearing failed then we set
331 * active_rxon back to what it was previously */
332 if (rc) {
333 active_rxon->filter_flags |= RXON_FILTER_ASSOC_MSK;
334 IWL_ERROR("Error clearing ASSOC_MSK on current "
335 "configuration (%d).\n", rc);
336 return rc;
337 }
Zhu Yib481de92007-09-25 17:54:57 -0700338 }
339
340 IWL_DEBUG_INFO("Sending RXON\n"
341 "* with%s RXON_FILTER_ASSOC_MSK\n"
342 "* channel = %d\n"
Joe Perches0795af52007-10-03 17:59:30 -0700343 "* bssid = %s\n",
Zhu Yib481de92007-09-25 17:54:57 -0700344 ((priv->staging_rxon.filter_flags &
345 RXON_FILTER_ASSOC_MSK) ? "" : "out"),
346 le16_to_cpu(priv->staging_rxon.channel),
Joe Perches0795af52007-10-03 17:59:30 -0700347 print_mac(mac, priv->staging_rxon.bssid_addr));
Zhu Yib481de92007-09-25 17:54:57 -0700348
Ron Rindjunsky099b40b2008-04-21 15:41:53 -0700349 iwl4965_set_rxon_hwcrypto(priv, !priv->hw_params.sw_crypto);
Zhu Yib481de92007-09-25 17:54:57 -0700350 /* Apply the new configuration */
Tomas Winkler857485c2008-03-21 13:53:44 -0700351 rc = iwl_send_cmd_pdu(priv, REPLY_RXON,
Gregory Greenmanc1adf9f2008-05-15 13:53:59 +0800352 sizeof(struct iwl_rxon_cmd), &priv->staging_rxon);
Zhu Yib481de92007-09-25 17:54:57 -0700353 if (rc) {
354 IWL_ERROR("Error setting new configuration (%d).\n", rc);
355 return rc;
356 }
357
Tomas Winkler7a999bf2008-05-29 16:35:02 +0800358 iwl_remove_station(priv, iwl_bcast_addr, 0);
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700359 iwlcore_clear_stations_table(priv);
Zhu Yi556f8db2007-09-27 11:27:33 +0800360
Zhu Yib481de92007-09-25 17:54:57 -0700361 if (!priv->error_recovering)
362 priv->start_calib = 0;
363
Emmanuel Grumbachf0832f12008-04-16 16:34:47 -0700364 iwl_init_sensitivity(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700365
366 memcpy(active_rxon, &priv->staging_rxon, sizeof(*active_rxon));
367
368 /* If we issue a new RXON command which required a tune then we must
369 * send a new TXPOWER command or we won't be able to Tx any frames */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800370 rc = iwl4965_hw_reg_send_txpower(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700371 if (rc) {
372 IWL_ERROR("Error setting Tx power (%d).\n", rc);
373 return rc;
374 }
375
376 /* Add the broadcast address so we can send broadcast frames */
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800377 if (iwl_rxon_add_station(priv, iwl_bcast_addr, 0) ==
Zhu Yib481de92007-09-25 17:54:57 -0700378 IWL_INVALID_STATION) {
379 IWL_ERROR("Error adding BROADCAST address for transmit.\n");
380 return -EIO;
381 }
382
383 /* If we have set the ASSOC_MSK and we are in BSS mode then
384 * add the IWL_AP_ID to the station rate table */
Tomas Winkler3109ece2008-03-28 16:33:35 -0700385 if (iwl_is_associated(priv) &&
Zhu Yib481de92007-09-25 17:54:57 -0700386 (priv->iw_mode == IEEE80211_IF_TYPE_STA)) {
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800387 if (iwl_rxon_add_station(priv, priv->active_rxon.bssid_addr, 1)
Zhu Yib481de92007-09-25 17:54:57 -0700388 == IWL_INVALID_STATION) {
389 IWL_ERROR("Error adding AP address for transmit.\n");
390 return -EIO;
391 }
392 priv->assoc_station_added = 1;
Emmanuel Grumbach6974e362008-04-14 21:16:06 -0700393 if (priv->default_wep_key &&
394 iwl_send_static_wepkey_cmd(priv, 0))
395 IWL_ERROR("Could not send WEP static key.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700396 }
397
398 return 0;
399}
400
Mohamed Abbas5da4b552008-04-21 15:41:51 -0700401void iwl4965_update_chain_flags(struct iwl_priv *priv)
402{
403
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -0700404 iwl_set_rxon_chain(priv);
Mohamed Abbas5da4b552008-04-21 15:41:51 -0700405 iwl4965_commit_rxon(priv);
406}
407
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700408static int iwl4965_send_bt_config(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700409{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800410 struct iwl4965_bt_cmd bt_cmd = {
Zhu Yib481de92007-09-25 17:54:57 -0700411 .flags = 3,
412 .lead_time = 0xAA,
413 .max_kill = 1,
414 .kill_ack_mask = 0,
415 .kill_cts_mask = 0,
416 };
417
Tomas Winkler857485c2008-03-21 13:53:44 -0700418 return iwl_send_cmd_pdu(priv, REPLY_BT_CONFIG,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800419 sizeof(struct iwl4965_bt_cmd), &bt_cmd);
Zhu Yib481de92007-09-25 17:54:57 -0700420}
421
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700422static int iwl4965_send_scan_abort(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700423{
Tomas Winklerdb11d632008-05-05 10:22:33 +0800424 int ret = 0;
425 struct iwl_rx_packet *res;
Tomas Winkler857485c2008-03-21 13:53:44 -0700426 struct iwl_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -0700427 .id = REPLY_SCAN_ABORT_CMD,
428 .meta.flags = CMD_WANT_SKB,
429 };
430
431 /* If there isn't a scan actively going on in the hardware
432 * then we are in between scan bands and not actually
433 * actively scanning, so don't send the abort command */
434 if (!test_bit(STATUS_SCAN_HW, &priv->status)) {
435 clear_bit(STATUS_SCAN_ABORTING, &priv->status);
436 return 0;
437 }
438
Tomas Winklerdb11d632008-05-05 10:22:33 +0800439 ret = iwl_send_cmd_sync(priv, &cmd);
440 if (ret) {
Zhu Yib481de92007-09-25 17:54:57 -0700441 clear_bit(STATUS_SCAN_ABORTING, &priv->status);
Tomas Winklerdb11d632008-05-05 10:22:33 +0800442 return ret;
Zhu Yib481de92007-09-25 17:54:57 -0700443 }
444
Tomas Winklerdb11d632008-05-05 10:22:33 +0800445 res = (struct iwl_rx_packet *)cmd.meta.u.skb->data;
Zhu Yib481de92007-09-25 17:54:57 -0700446 if (res->u.status != CAN_ABORT_STATUS) {
447 /* The scan abort will return 1 for success or
448 * 2 for "failure". A failure condition can be
449 * due to simply not being in an active scan which
450 * can occur if we send the scan abort before we
451 * the microcode has notified us that a scan is
452 * completed. */
453 IWL_DEBUG_INFO("SCAN_ABORT returned %d.\n", res->u.status);
454 clear_bit(STATUS_SCAN_ABORTING, &priv->status);
455 clear_bit(STATUS_SCAN_HW, &priv->status);
456 }
457
458 dev_kfree_skb_any(cmd.meta.u.skb);
459
Tomas Winklerdb11d632008-05-05 10:22:33 +0800460 return ret;
Zhu Yib481de92007-09-25 17:54:57 -0700461}
462
Zhu Yib481de92007-09-25 17:54:57 -0700463/*
464 * CARD_STATE_CMD
465 *
Ben Cahill9fbab512007-11-29 11:09:47 +0800466 * Use: Sets the device's internal card state to enable, disable, or halt
Zhu Yib481de92007-09-25 17:54:57 -0700467 *
468 * When in the 'enable' state the card operates as normal.
469 * When in the 'disable' state, the card enters into a low power mode.
470 * When in the 'halt' state, the card is shut down and must be fully
471 * restarted to come back on.
472 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700473static int iwl4965_send_card_state(struct iwl_priv *priv, u32 flags, u8 meta_flag)
Zhu Yib481de92007-09-25 17:54:57 -0700474{
Tomas Winkler857485c2008-03-21 13:53:44 -0700475 struct iwl_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -0700476 .id = REPLY_CARD_STATE_CMD,
477 .len = sizeof(u32),
478 .data = &flags,
479 .meta.flags = meta_flag,
480 };
481
Tomas Winkler857485c2008-03-21 13:53:44 -0700482 return iwl_send_cmd(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -0700483}
484
Tomas Winklerfcab4232008-05-15 13:54:01 +0800485static void iwl_clear_free_frames(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700486{
487 struct list_head *element;
488
489 IWL_DEBUG_INFO("%d frames on pre-allocated heap on clear.\n",
490 priv->frames_count);
491
492 while (!list_empty(&priv->free_frames)) {
493 element = priv->free_frames.next;
494 list_del(element);
Tomas Winklerfcab4232008-05-15 13:54:01 +0800495 kfree(list_entry(element, struct iwl_frame, list));
Zhu Yib481de92007-09-25 17:54:57 -0700496 priv->frames_count--;
497 }
498
499 if (priv->frames_count) {
500 IWL_WARNING("%d frames still in use. Did we lose one?\n",
501 priv->frames_count);
502 priv->frames_count = 0;
503 }
504}
505
Tomas Winklerfcab4232008-05-15 13:54:01 +0800506static struct iwl_frame *iwl_get_free_frame(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700507{
Tomas Winklerfcab4232008-05-15 13:54:01 +0800508 struct iwl_frame *frame;
Zhu Yib481de92007-09-25 17:54:57 -0700509 struct list_head *element;
510 if (list_empty(&priv->free_frames)) {
511 frame = kzalloc(sizeof(*frame), GFP_KERNEL);
512 if (!frame) {
513 IWL_ERROR("Could not allocate frame!\n");
514 return NULL;
515 }
516
517 priv->frames_count++;
518 return frame;
519 }
520
521 element = priv->free_frames.next;
522 list_del(element);
Tomas Winklerfcab4232008-05-15 13:54:01 +0800523 return list_entry(element, struct iwl_frame, list);
Zhu Yib481de92007-09-25 17:54:57 -0700524}
525
Tomas Winklerfcab4232008-05-15 13:54:01 +0800526static void iwl_free_frame(struct iwl_priv *priv, struct iwl_frame *frame)
Zhu Yib481de92007-09-25 17:54:57 -0700527{
528 memset(frame, 0, sizeof(*frame));
529 list_add(&frame->list, &priv->free_frames);
530}
531
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700532unsigned int iwl4965_fill_beacon_frame(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -0700533 struct ieee80211_hdr *hdr,
534 const u8 *dest, int left)
535{
536
Tomas Winkler3109ece2008-03-28 16:33:35 -0700537 if (!iwl_is_associated(priv) || !priv->ibss_beacon ||
Zhu Yib481de92007-09-25 17:54:57 -0700538 ((priv->iw_mode != IEEE80211_IF_TYPE_IBSS) &&
539 (priv->iw_mode != IEEE80211_IF_TYPE_AP)))
540 return 0;
541
542 if (priv->ibss_beacon->len > left)
543 return 0;
544
545 memcpy(hdr, priv->ibss_beacon->data, priv->ibss_beacon->len);
546
547 return priv->ibss_beacon->len;
548}
549
Guy Cohen39e88502008-04-23 17:14:57 -0700550static u8 iwl4965_rate_get_lowest_plcp(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700551{
Guy Cohen39e88502008-04-23 17:14:57 -0700552 int i;
553 int rate_mask;
Zhu Yib481de92007-09-25 17:54:57 -0700554
Guy Cohen39e88502008-04-23 17:14:57 -0700555 /* Set rate mask*/
556 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK)
557 rate_mask = priv->active_rate_basic & 0xF;
558 else
559 rate_mask = priv->active_rate_basic & 0xFF0;
560
561 /* Find lowest valid rate */
Zhu Yib481de92007-09-25 17:54:57 -0700562 for (i = IWL_RATE_1M_INDEX; i != IWL_RATE_INVALID;
Tomas Winkler1826dcc2008-05-15 13:54:02 +0800563 i = iwl_rates[i].next_ieee) {
Zhu Yib481de92007-09-25 17:54:57 -0700564 if (rate_mask & (1 << i))
Tomas Winkler1826dcc2008-05-15 13:54:02 +0800565 return iwl_rates[i].plcp;
Zhu Yib481de92007-09-25 17:54:57 -0700566 }
567
Guy Cohen39e88502008-04-23 17:14:57 -0700568 /* No valid rate was found. Assign the lowest one */
569 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK)
570 return IWL_RATE_1M_PLCP;
571 else
572 return IWL_RATE_6M_PLCP;
Zhu Yib481de92007-09-25 17:54:57 -0700573}
574
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700575static int iwl4965_send_beacon_cmd(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700576{
Tomas Winklerfcab4232008-05-15 13:54:01 +0800577 struct iwl_frame *frame;
Zhu Yib481de92007-09-25 17:54:57 -0700578 unsigned int frame_size;
579 int rc;
580 u8 rate;
581
Tomas Winklerfcab4232008-05-15 13:54:01 +0800582 frame = iwl_get_free_frame(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700583
584 if (!frame) {
585 IWL_ERROR("Could not obtain free frame buffer for beacon "
586 "command.\n");
587 return -ENOMEM;
588 }
589
Guy Cohen39e88502008-04-23 17:14:57 -0700590 rate = iwl4965_rate_get_lowest_plcp(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700591
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800592 frame_size = iwl4965_hw_get_beacon_cmd(priv, frame, rate);
Zhu Yib481de92007-09-25 17:54:57 -0700593
Tomas Winkler857485c2008-03-21 13:53:44 -0700594 rc = iwl_send_cmd_pdu(priv, REPLY_TX_BEACON, frame_size,
Zhu Yib481de92007-09-25 17:54:57 -0700595 &frame->u.cmd[0]);
596
Tomas Winklerfcab4232008-05-15 13:54:01 +0800597 iwl_free_frame(priv, frame);
Zhu Yib481de92007-09-25 17:54:57 -0700598
599 return rc;
600}
601
602/******************************************************************************
603 *
Zhu Yib481de92007-09-25 17:54:57 -0700604 * Misc. internal state and helper functions
605 *
606 ******************************************************************************/
Zhu Yib481de92007-09-25 17:54:57 -0700607
Zhu Yib481de92007-09-25 17:54:57 -0700608/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800609 * iwl4965_supported_rate_to_ie - fill in the supported rate in IE field
Zhu Yib481de92007-09-25 17:54:57 -0700610 *
611 * return : set the bit for each supported rate insert in ie
612 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800613static u16 iwl4965_supported_rate_to_ie(u8 *ie, u16 supported_rate,
Tomas Winklerc7c46672007-10-18 02:04:15 +0200614 u16 basic_rate, int *left)
Zhu Yib481de92007-09-25 17:54:57 -0700615{
616 u16 ret_rates = 0, bit;
617 int i;
Tomas Winklerc7c46672007-10-18 02:04:15 +0200618 u8 *cnt = ie;
619 u8 *rates = ie + 1;
Zhu Yib481de92007-09-25 17:54:57 -0700620
621 for (bit = 1, i = 0; i < IWL_RATE_COUNT; i++, bit <<= 1) {
622 if (bit & supported_rate) {
623 ret_rates |= bit;
Tomas Winkler1826dcc2008-05-15 13:54:02 +0800624 rates[*cnt] = iwl_rates[i].ieee |
Tomas Winklerc7c46672007-10-18 02:04:15 +0200625 ((bit & basic_rate) ? 0x80 : 0x00);
626 (*cnt)++;
627 (*left)--;
628 if ((*left <= 0) ||
629 (*cnt >= IWL_SUPPORTED_RATES_IE_LEN))
Zhu Yib481de92007-09-25 17:54:57 -0700630 break;
631 }
632 }
633
634 return ret_rates;
635}
636
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700637#ifdef CONFIG_IWL4965_HT
638static void iwl4965_ht_conf(struct iwl_priv *priv,
639 struct ieee80211_bss_conf *bss_conf)
640{
641 struct ieee80211_ht_info *ht_conf = bss_conf->ht_conf;
642 struct ieee80211_ht_bss_info *ht_bss_conf = bss_conf->ht_bss_conf;
643 struct iwl_ht_info *iwl_conf = &priv->current_ht_config;
644
645 IWL_DEBUG_MAC80211("enter: \n");
646
647 iwl_conf->is_ht = bss_conf->assoc_ht;
648
649 if (!iwl_conf->is_ht)
650 return;
651
652 priv->ps_mode = (u8)((ht_conf->cap & IEEE80211_HT_CAP_MIMO_PS) >> 2);
653
654 if (ht_conf->cap & IEEE80211_HT_CAP_SGI_20)
Emmanuel Grumbacha9841012008-05-15 13:54:08 +0800655 iwl_conf->sgf |= HT_SHORT_GI_20MHZ;
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700656 if (ht_conf->cap & IEEE80211_HT_CAP_SGI_40)
Emmanuel Grumbacha9841012008-05-15 13:54:08 +0800657 iwl_conf->sgf |= HT_SHORT_GI_40MHZ;
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700658
659 iwl_conf->is_green_field = !!(ht_conf->cap & IEEE80211_HT_CAP_GRN_FLD);
660 iwl_conf->max_amsdu_size =
661 !!(ht_conf->cap & IEEE80211_HT_CAP_MAX_AMSDU);
662
663 iwl_conf->supported_chan_width =
664 !!(ht_conf->cap & IEEE80211_HT_CAP_SUP_WIDTH);
665 iwl_conf->extension_chan_offset =
666 ht_bss_conf->bss_cap & IEEE80211_HT_IE_CHA_SEC_OFFSET;
667 /* If no above or below channel supplied disable FAT channel */
668 if (iwl_conf->extension_chan_offset != IWL_EXT_CHANNEL_OFFSET_ABOVE &&
669 iwl_conf->extension_chan_offset != IWL_EXT_CHANNEL_OFFSET_BELOW)
670 iwl_conf->supported_chan_width = 0;
671
672 iwl_conf->tx_mimo_ps_mode =
673 (u8)((ht_conf->cap & IEEE80211_HT_CAP_MIMO_PS) >> 2);
674 memcpy(iwl_conf->supp_mcs_set, ht_conf->supp_mcs_set, 16);
675
676 iwl_conf->control_channel = ht_bss_conf->primary_channel;
677 iwl_conf->tx_chan_width =
678 !!(ht_bss_conf->bss_cap & IEEE80211_HT_IE_CHA_WIDTH);
679 iwl_conf->ht_protection =
680 ht_bss_conf->bss_op_mode & IEEE80211_HT_IE_HT_PROTECTION;
681 iwl_conf->non_GF_STA_present =
682 !!(ht_bss_conf->bss_op_mode & IEEE80211_HT_IE_NON_GF_STA_PRSNT);
683
684 IWL_DEBUG_MAC80211("control channel %d\n", iwl_conf->control_channel);
685 IWL_DEBUG_MAC80211("leave\n");
686}
687
688static void iwl_ht_cap_to_ie(const struct ieee80211_supported_band *sband,
689 u8 *pos, int *left)
690{
691 struct ieee80211_ht_cap *ht_cap;
692
693 if (!sband || !sband->ht_info.ht_supported)
694 return;
695
696 if (*left < sizeof(struct ieee80211_ht_cap))
697 return;
698
699 *pos++ = sizeof(struct ieee80211_ht_cap);
700 ht_cap = (struct ieee80211_ht_cap *) pos;
701
702 ht_cap->cap_info = cpu_to_le16(sband->ht_info.cap);
703 memcpy(ht_cap->supp_mcs_set, sband->ht_info.supp_mcs_set, 16);
704 ht_cap->ampdu_params_info =
705 (sband->ht_info.ampdu_factor & IEEE80211_HT_CAP_AMPDU_FACTOR) |
706 ((sband->ht_info.ampdu_density << 2) &
707 IEEE80211_HT_CAP_AMPDU_DENSITY);
708 *left -= sizeof(struct ieee80211_ht_cap);
709}
710#else
711static inline void iwl4965_ht_conf(struct iwl_priv *priv,
712 struct ieee80211_bss_conf *bss_conf)
713{
714}
715static void iwl_ht_cap_to_ie(const struct ieee80211_supported_band *sband,
716 u8 *pos, int *left)
717{
718}
719#endif
720
721
Zhu Yib481de92007-09-25 17:54:57 -0700722/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800723 * iwl4965_fill_probe_req - fill in all required fields and IE for probe request
Zhu Yib481de92007-09-25 17:54:57 -0700724 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700725static u16 iwl4965_fill_probe_req(struct iwl_priv *priv,
Tomas Winkler78330fd2008-02-06 02:37:18 +0200726 enum ieee80211_band band,
727 struct ieee80211_mgmt *frame,
728 int left, int is_direct)
Zhu Yib481de92007-09-25 17:54:57 -0700729{
730 int len = 0;
731 u8 *pos = NULL;
mabbasbee488d2007-10-25 17:15:42 +0800732 u16 active_rates, ret_rates, cck_rates, active_rate_basic;
Tomas Winkler78330fd2008-02-06 02:37:18 +0200733 const struct ieee80211_supported_band *sband =
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700734 iwl_get_hw_mode(priv, band);
Zhu Yib481de92007-09-25 17:54:57 -0700735
736 /* Make sure there is enough space for the probe request,
737 * two mandatory IEs and the data */
738 left -= 24;
739 if (left < 0)
740 return 0;
741 len += 24;
742
743 frame->frame_control = cpu_to_le16(IEEE80211_STYPE_PROBE_REQ);
Tomas Winkler57bd1be2008-05-15 13:54:03 +0800744 memcpy(frame->da, iwl_bcast_addr, ETH_ALEN);
Zhu Yib481de92007-09-25 17:54:57 -0700745 memcpy(frame->sa, priv->mac_addr, ETH_ALEN);
Tomas Winkler57bd1be2008-05-15 13:54:03 +0800746 memcpy(frame->bssid, iwl_bcast_addr, ETH_ALEN);
Zhu Yib481de92007-09-25 17:54:57 -0700747 frame->seq_ctrl = 0;
748
749 /* fill in our indirect SSID IE */
750 /* ...next IE... */
751
752 left -= 2;
753 if (left < 0)
754 return 0;
755 len += 2;
756 pos = &(frame->u.probe_req.variable[0]);
757 *pos++ = WLAN_EID_SSID;
758 *pos++ = 0;
759
760 /* fill in our direct SSID IE... */
761 if (is_direct) {
762 /* ...next IE... */
763 left -= 2 + priv->essid_len;
764 if (left < 0)
765 return 0;
766 /* ... fill it in... */
767 *pos++ = WLAN_EID_SSID;
768 *pos++ = priv->essid_len;
769 memcpy(pos, priv->essid, priv->essid_len);
770 pos += priv->essid_len;
771 len += 2 + priv->essid_len;
772 }
773
774 /* fill in supported rate */
775 /* ...next IE... */
776 left -= 2;
777 if (left < 0)
778 return 0;
Tomas Winklerc7c46672007-10-18 02:04:15 +0200779
Zhu Yib481de92007-09-25 17:54:57 -0700780 /* ... fill it in... */
781 *pos++ = WLAN_EID_SUPP_RATES;
782 *pos = 0;
Tomas Winklerc7c46672007-10-18 02:04:15 +0200783
mabbasbee488d2007-10-25 17:15:42 +0800784 /* exclude 60M rate */
785 active_rates = priv->rates_mask;
786 active_rates &= ~IWL_RATE_60M_MASK;
787
788 active_rate_basic = active_rates & IWL_BASIC_RATES_MASK;
Zhu Yib481de92007-09-25 17:54:57 -0700789
Tomas Winklerc7c46672007-10-18 02:04:15 +0200790 cck_rates = IWL_CCK_RATES_MASK & active_rates;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800791 ret_rates = iwl4965_supported_rate_to_ie(pos, cck_rates,
mabbasbee488d2007-10-25 17:15:42 +0800792 active_rate_basic, &left);
Tomas Winklerc7c46672007-10-18 02:04:15 +0200793 active_rates &= ~ret_rates;
794
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800795 ret_rates = iwl4965_supported_rate_to_ie(pos, active_rates,
mabbasbee488d2007-10-25 17:15:42 +0800796 active_rate_basic, &left);
Tomas Winklerc7c46672007-10-18 02:04:15 +0200797 active_rates &= ~ret_rates;
798
Zhu Yib481de92007-09-25 17:54:57 -0700799 len += 2 + *pos;
800 pos += (*pos) + 1;
Tomas Winklerc7c46672007-10-18 02:04:15 +0200801 if (active_rates == 0)
Zhu Yib481de92007-09-25 17:54:57 -0700802 goto fill_end;
803
804 /* fill in supported extended rate */
805 /* ...next IE... */
806 left -= 2;
807 if (left < 0)
808 return 0;
809 /* ... fill it in... */
810 *pos++ = WLAN_EID_EXT_SUPP_RATES;
811 *pos = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800812 iwl4965_supported_rate_to_ie(pos, active_rates,
mabbasbee488d2007-10-25 17:15:42 +0800813 active_rate_basic, &left);
Zhu Yib481de92007-09-25 17:54:57 -0700814 if (*pos > 0)
815 len += 2 + *pos;
816
Zhu Yib481de92007-09-25 17:54:57 -0700817 fill_end:
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700818 /* fill in HT IE */
819 left -= 2;
820 if (left < 0)
821 return 0;
822
823 *pos++ = WLAN_EID_HT_CAPABILITY;
824 *pos = 0;
825
826 iwl_ht_cap_to_ie(sband, pos, &left);
827
828 if (*pos > 0)
829 len += 2 + *pos;
Zhu Yib481de92007-09-25 17:54:57 -0700830 return (u16)len;
831}
832
833/*
834 * QoS support
835*/
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700836static int iwl4965_send_qos_params_command(struct iwl_priv *priv,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800837 struct iwl4965_qosparam_cmd *qos)
Zhu Yib481de92007-09-25 17:54:57 -0700838{
839
Tomas Winkler857485c2008-03-21 13:53:44 -0700840 return iwl_send_cmd_pdu(priv, REPLY_QOS_PARAM,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800841 sizeof(struct iwl4965_qosparam_cmd), qos);
Zhu Yib481de92007-09-25 17:54:57 -0700842}
843
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700844static void iwl4965_activate_qos(struct iwl_priv *priv, u8 force)
Zhu Yib481de92007-09-25 17:54:57 -0700845{
846 unsigned long flags;
847
Zhu Yib481de92007-09-25 17:54:57 -0700848 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
849 return;
850
851 if (!priv->qos_data.qos_enable)
852 return;
853
854 spin_lock_irqsave(&priv->lock, flags);
855 priv->qos_data.def_qos_parm.qos_flags = 0;
856
857 if (priv->qos_data.qos_cap.q_AP.queue_request &&
858 !priv->qos_data.qos_cap.q_AP.txop_request)
859 priv->qos_data.def_qos_parm.qos_flags |=
860 QOS_PARAM_FLG_TXOP_TYPE_MSK;
Zhu Yib481de92007-09-25 17:54:57 -0700861 if (priv->qos_data.qos_active)
862 priv->qos_data.def_qos_parm.qos_flags |=
863 QOS_PARAM_FLG_UPDATE_EDCA_MSK;
864
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +0800865#ifdef CONFIG_IWL4965_HT
Ron Rindjunskyfd105e72007-11-26 16:14:39 +0200866 if (priv->current_ht_config.is_ht)
Tomas Winklerf1f1f5c2007-10-25 17:15:26 +0800867 priv->qos_data.def_qos_parm.qos_flags |= QOS_PARAM_FLG_TGN_MSK;
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +0800868#endif /* CONFIG_IWL4965_HT */
Tomas Winklerf1f1f5c2007-10-25 17:15:26 +0800869
Zhu Yib481de92007-09-25 17:54:57 -0700870 spin_unlock_irqrestore(&priv->lock, flags);
871
Tomas Winkler3109ece2008-03-28 16:33:35 -0700872 if (force || iwl_is_associated(priv)) {
Tomas Winklerf1f1f5c2007-10-25 17:15:26 +0800873 IWL_DEBUG_QOS("send QoS cmd with Qos active=%d FLAGS=0x%X\n",
874 priv->qos_data.qos_active,
875 priv->qos_data.def_qos_parm.qos_flags);
Zhu Yib481de92007-09-25 17:54:57 -0700876
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800877 iwl4965_send_qos_params_command(priv,
Zhu Yib481de92007-09-25 17:54:57 -0700878 &(priv->qos_data.def_qos_parm));
879 }
880}
881
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700882int iwl4965_is_network_packet(struct iwl_priv *priv, struct ieee80211_hdr *header)
Zhu Yib481de92007-09-25 17:54:57 -0700883{
884 /* Filter incoming packets to determine if they are targeted toward
885 * this network, discarding packets coming from ourselves */
886 switch (priv->iw_mode) {
887 case IEEE80211_IF_TYPE_IBSS: /* Header: Dest. | Source | BSSID */
888 /* packets from our adapter are dropped (echo) */
889 if (!compare_ether_addr(header->addr2, priv->mac_addr))
890 return 0;
891 /* {broad,multi}cast packets to our IBSS go through */
892 if (is_multicast_ether_addr(header->addr1))
893 return !compare_ether_addr(header->addr3, priv->bssid);
894 /* packets to our adapter go through */
895 return !compare_ether_addr(header->addr1, priv->mac_addr);
896 case IEEE80211_IF_TYPE_STA: /* Header: Dest. | AP{BSSID} | Source */
897 /* packets from our adapter are dropped (echo) */
898 if (!compare_ether_addr(header->addr3, priv->mac_addr))
899 return 0;
900 /* {broad,multi}cast packets to our BSS go through */
901 if (is_multicast_ether_addr(header->addr1))
902 return !compare_ether_addr(header->addr2, priv->bssid);
903 /* packets to our adapter go through */
904 return !compare_ether_addr(header->addr1, priv->mac_addr);
Tomas Winkler69dc5d92008-03-25 16:33:41 -0700905 default:
906 break;
Zhu Yib481de92007-09-25 17:54:57 -0700907 }
908
909 return 1;
910}
911
Zhu Yib481de92007-09-25 17:54:57 -0700912
Zhu Yib481de92007-09-25 17:54:57 -0700913
914/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800915 * iwl4965_scan_cancel - Cancel any currently executing HW scan
Zhu Yib481de92007-09-25 17:54:57 -0700916 *
917 * NOTE: priv->mutex is not required before calling this function
918 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700919static int iwl4965_scan_cancel(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700920{
921 if (!test_bit(STATUS_SCAN_HW, &priv->status)) {
922 clear_bit(STATUS_SCANNING, &priv->status);
923 return 0;
924 }
925
926 if (test_bit(STATUS_SCANNING, &priv->status)) {
927 if (!test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
928 IWL_DEBUG_SCAN("Queuing scan abort.\n");
929 set_bit(STATUS_SCAN_ABORTING, &priv->status);
930 queue_work(priv->workqueue, &priv->abort_scan);
931
932 } else
933 IWL_DEBUG_SCAN("Scan abort already in progress.\n");
934
935 return test_bit(STATUS_SCANNING, &priv->status);
936 }
937
938 return 0;
939}
940
941/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800942 * iwl4965_scan_cancel_timeout - Cancel any currently executing HW scan
Zhu Yib481de92007-09-25 17:54:57 -0700943 * @ms: amount of time to wait (in milliseconds) for scan to abort
944 *
945 * NOTE: priv->mutex must be held before calling this function
946 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700947static int iwl4965_scan_cancel_timeout(struct iwl_priv *priv, unsigned long ms)
Zhu Yib481de92007-09-25 17:54:57 -0700948{
949 unsigned long now = jiffies;
950 int ret;
951
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800952 ret = iwl4965_scan_cancel(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700953 if (ret && ms) {
954 mutex_unlock(&priv->mutex);
955 while (!time_after(jiffies, now + msecs_to_jiffies(ms)) &&
956 test_bit(STATUS_SCANNING, &priv->status))
957 msleep(1);
958 mutex_lock(&priv->mutex);
959
960 return test_bit(STATUS_SCANNING, &priv->status);
961 }
962
963 return ret;
964}
965
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700966static void iwl4965_sequence_reset(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700967{
968 /* Reset ieee stats */
969
970 /* We don't reset the net_device_stats (ieee->stats) on
971 * re-association */
972
973 priv->last_seq_num = -1;
974 priv->last_frag_num = -1;
975 priv->last_packet_time = 0;
976
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800977 iwl4965_scan_cancel(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700978}
979
980#define MAX_UCODE_BEACON_INTERVAL 4096
981#define INTEL_CONN_LISTEN_INTERVAL __constant_cpu_to_le16(0xA)
982
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800983static __le16 iwl4965_adjust_beacon_interval(u16 beacon_val)
Zhu Yib481de92007-09-25 17:54:57 -0700984{
985 u16 new_val = 0;
986 u16 beacon_factor = 0;
987
988 beacon_factor =
989 (beacon_val + MAX_UCODE_BEACON_INTERVAL)
990 / MAX_UCODE_BEACON_INTERVAL;
991 new_val = beacon_val / beacon_factor;
992
993 return cpu_to_le16(new_val);
994}
995
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700996static void iwl4965_setup_rxon_timing(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700997{
998 u64 interval_tm_unit;
999 u64 tsf, result;
1000 unsigned long flags;
1001 struct ieee80211_conf *conf = NULL;
1002 u16 beacon_int = 0;
1003
1004 conf = ieee80211_get_hw_conf(priv->hw);
1005
1006 spin_lock_irqsave(&priv->lock, flags);
Tomas Winkler3109ece2008-03-28 16:33:35 -07001007 priv->rxon_timing.timestamp.dw[1] = cpu_to_le32(priv->timestamp >> 32);
1008 priv->rxon_timing.timestamp.dw[0] =
1009 cpu_to_le32(priv->timestamp & 0xFFFFFFFF);
Zhu Yib481de92007-09-25 17:54:57 -07001010
1011 priv->rxon_timing.listen_interval = INTEL_CONN_LISTEN_INTERVAL;
1012
Tomas Winkler3109ece2008-03-28 16:33:35 -07001013 tsf = priv->timestamp;
Zhu Yib481de92007-09-25 17:54:57 -07001014
1015 beacon_int = priv->beacon_int;
1016 spin_unlock_irqrestore(&priv->lock, flags);
1017
1018 if (priv->iw_mode == IEEE80211_IF_TYPE_STA) {
1019 if (beacon_int == 0) {
1020 priv->rxon_timing.beacon_interval = cpu_to_le16(100);
1021 priv->rxon_timing.beacon_init_val = cpu_to_le32(102400);
1022 } else {
1023 priv->rxon_timing.beacon_interval =
1024 cpu_to_le16(beacon_int);
1025 priv->rxon_timing.beacon_interval =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001026 iwl4965_adjust_beacon_interval(
Zhu Yib481de92007-09-25 17:54:57 -07001027 le16_to_cpu(priv->rxon_timing.beacon_interval));
1028 }
1029
1030 priv->rxon_timing.atim_window = 0;
1031 } else {
1032 priv->rxon_timing.beacon_interval =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001033 iwl4965_adjust_beacon_interval(conf->beacon_int);
Zhu Yib481de92007-09-25 17:54:57 -07001034 /* TODO: we need to get atim_window from upper stack
1035 * for now we set to 0 */
1036 priv->rxon_timing.atim_window = 0;
1037 }
1038
1039 interval_tm_unit =
1040 (le16_to_cpu(priv->rxon_timing.beacon_interval) * 1024);
1041 result = do_div(tsf, interval_tm_unit);
1042 priv->rxon_timing.beacon_init_val =
1043 cpu_to_le32((u32) ((u64) interval_tm_unit - result));
1044
1045 IWL_DEBUG_ASSOC
1046 ("beacon interval %d beacon timer %d beacon tim %d\n",
1047 le16_to_cpu(priv->rxon_timing.beacon_interval),
1048 le32_to_cpu(priv->rxon_timing.beacon_init_val),
1049 le16_to_cpu(priv->rxon_timing.atim_window));
1050}
1051
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001052static int iwl4965_scan_initiate(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001053{
1054 if (priv->iw_mode == IEEE80211_IF_TYPE_AP) {
1055 IWL_ERROR("APs don't scan.\n");
1056 return 0;
1057 }
1058
Tomas Winklerfee12472008-04-03 16:05:21 -07001059 if (!iwl_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07001060 IWL_DEBUG_SCAN("Aborting scan due to not ready.\n");
1061 return -EIO;
1062 }
1063
1064 if (test_bit(STATUS_SCANNING, &priv->status)) {
1065 IWL_DEBUG_SCAN("Scan already in progress.\n");
1066 return -EAGAIN;
1067 }
1068
1069 if (test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
1070 IWL_DEBUG_SCAN("Scan request while abort pending. "
1071 "Queuing.\n");
1072 return -EAGAIN;
1073 }
1074
1075 IWL_DEBUG_INFO("Starting scan...\n");
1076 priv->scan_bands = 2;
1077 set_bit(STATUS_SCANNING, &priv->status);
1078 priv->scan_start = jiffies;
1079 priv->scan_pass_start = priv->scan_start;
1080
1081 queue_work(priv->workqueue, &priv->request_scan);
1082
1083 return 0;
1084}
1085
Zhu Yib481de92007-09-25 17:54:57 -07001086
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001087static void iwl4965_set_flags_for_phymode(struct iwl_priv *priv,
Johannes Berg8318d782008-01-24 19:38:38 +01001088 enum ieee80211_band band)
Zhu Yib481de92007-09-25 17:54:57 -07001089{
Johannes Berg8318d782008-01-24 19:38:38 +01001090 if (band == IEEE80211_BAND_5GHZ) {
Zhu Yib481de92007-09-25 17:54:57 -07001091 priv->staging_rxon.flags &=
1092 ~(RXON_FLG_BAND_24G_MSK | RXON_FLG_AUTO_DETECT_MSK
1093 | RXON_FLG_CCK_MSK);
1094 priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
1095 } else {
Reinette Chatre508e32e2008-04-14 21:16:13 -07001096 /* Copied from iwl4965_post_associate() */
Zhu Yib481de92007-09-25 17:54:57 -07001097 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_SLOT_TIME)
1098 priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
1099 else
1100 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
1101
1102 if (priv->iw_mode == IEEE80211_IF_TYPE_IBSS)
1103 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
1104
1105 priv->staging_rxon.flags |= RXON_FLG_BAND_24G_MSK;
1106 priv->staging_rxon.flags |= RXON_FLG_AUTO_DETECT_MSK;
1107 priv->staging_rxon.flags &= ~RXON_FLG_CCK_MSK;
1108 }
1109}
1110
1111/*
Ian Schram01ebd062007-10-25 17:15:22 +08001112 * initialize rxon structure with default values from eeprom
Zhu Yib481de92007-09-25 17:54:57 -07001113 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001114static void iwl4965_connection_init_rx_config(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001115{
Assaf Kraussbf85ea42008-03-14 10:38:49 -07001116 const struct iwl_channel_info *ch_info;
Zhu Yib481de92007-09-25 17:54:57 -07001117
1118 memset(&priv->staging_rxon, 0, sizeof(priv->staging_rxon));
1119
1120 switch (priv->iw_mode) {
1121 case IEEE80211_IF_TYPE_AP:
1122 priv->staging_rxon.dev_type = RXON_DEV_TYPE_AP;
1123 break;
1124
1125 case IEEE80211_IF_TYPE_STA:
1126 priv->staging_rxon.dev_type = RXON_DEV_TYPE_ESS;
1127 priv->staging_rxon.filter_flags = RXON_FILTER_ACCEPT_GRP_MSK;
1128 break;
1129
1130 case IEEE80211_IF_TYPE_IBSS:
1131 priv->staging_rxon.dev_type = RXON_DEV_TYPE_IBSS;
1132 priv->staging_rxon.flags = RXON_FLG_SHORT_PREAMBLE_MSK;
1133 priv->staging_rxon.filter_flags = RXON_FILTER_BCON_AWARE_MSK |
1134 RXON_FILTER_ACCEPT_GRP_MSK;
1135 break;
1136
1137 case IEEE80211_IF_TYPE_MNTR:
1138 priv->staging_rxon.dev_type = RXON_DEV_TYPE_SNIFFER;
1139 priv->staging_rxon.filter_flags = RXON_FILTER_PROMISC_MSK |
1140 RXON_FILTER_CTL2HOST_MSK | RXON_FILTER_ACCEPT_GRP_MSK;
1141 break;
Tomas Winkler69dc5d92008-03-25 16:33:41 -07001142 default:
1143 IWL_ERROR("Unsupported interface type %d\n", priv->iw_mode);
1144 break;
Zhu Yib481de92007-09-25 17:54:57 -07001145 }
1146
1147#if 0
1148 /* TODO: Figure out when short_preamble would be set and cache from
1149 * that */
1150 if (!hw_to_local(priv->hw)->short_preamble)
1151 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
1152 else
1153 priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
1154#endif
1155
Assaf Krauss8622e702008-03-21 13:53:43 -07001156 ch_info = iwl_get_channel_info(priv, priv->band,
Zhu Yib481de92007-09-25 17:54:57 -07001157 le16_to_cpu(priv->staging_rxon.channel));
1158
1159 if (!ch_info)
1160 ch_info = &priv->channel_info[0];
1161
1162 /*
1163 * in some case A channels are all non IBSS
1164 * in this case force B/G channel
1165 */
1166 if ((priv->iw_mode == IEEE80211_IF_TYPE_IBSS) &&
1167 !(is_channel_ibss(ch_info)))
1168 ch_info = &priv->channel_info[0];
1169
1170 priv->staging_rxon.channel = cpu_to_le16(ch_info->channel);
Johannes Berg8318d782008-01-24 19:38:38 +01001171 priv->band = ch_info->band;
Zhu Yib481de92007-09-25 17:54:57 -07001172
Johannes Berg8318d782008-01-24 19:38:38 +01001173 iwl4965_set_flags_for_phymode(priv, priv->band);
Zhu Yib481de92007-09-25 17:54:57 -07001174
1175 priv->staging_rxon.ofdm_basic_rates =
1176 (IWL_OFDM_RATES_MASK >> IWL_FIRST_OFDM_RATE) & 0xFF;
1177 priv->staging_rxon.cck_basic_rates =
1178 (IWL_CCK_RATES_MASK >> IWL_FIRST_CCK_RATE) & 0xF;
1179
1180 priv->staging_rxon.flags &= ~(RXON_FLG_CHANNEL_MODE_MIXED_MSK |
1181 RXON_FLG_CHANNEL_MODE_PURE_40_MSK);
1182 memcpy(priv->staging_rxon.node_addr, priv->mac_addr, ETH_ALEN);
1183 memcpy(priv->staging_rxon.wlap_bssid_addr, priv->mac_addr, ETH_ALEN);
1184 priv->staging_rxon.ofdm_ht_single_stream_basic_rates = 0xff;
1185 priv->staging_rxon.ofdm_ht_dual_stream_basic_rates = 0xff;
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -07001186 iwl_set_rxon_chain(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001187}
1188
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001189static int iwl4965_set_mode(struct iwl_priv *priv, int mode)
Zhu Yib481de92007-09-25 17:54:57 -07001190{
Zhu Yib481de92007-09-25 17:54:57 -07001191 if (mode == IEEE80211_IF_TYPE_IBSS) {
Assaf Kraussbf85ea42008-03-14 10:38:49 -07001192 const struct iwl_channel_info *ch_info;
Zhu Yib481de92007-09-25 17:54:57 -07001193
Assaf Krauss8622e702008-03-21 13:53:43 -07001194 ch_info = iwl_get_channel_info(priv,
Johannes Berg8318d782008-01-24 19:38:38 +01001195 priv->band,
Zhu Yib481de92007-09-25 17:54:57 -07001196 le16_to_cpu(priv->staging_rxon.channel));
1197
1198 if (!ch_info || !is_channel_ibss(ch_info)) {
1199 IWL_ERROR("channel %d not IBSS channel\n",
1200 le16_to_cpu(priv->staging_rxon.channel));
1201 return -EINVAL;
1202 }
1203 }
1204
Zhu Yib481de92007-09-25 17:54:57 -07001205 priv->iw_mode = mode;
1206
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001207 iwl4965_connection_init_rx_config(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001208 memcpy(priv->staging_rxon.node_addr, priv->mac_addr, ETH_ALEN);
1209
Assaf Kraussbf85ea42008-03-14 10:38:49 -07001210 iwlcore_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001211
Mohamed Abbasfde35712007-11-29 11:10:15 +08001212 /* dont commit rxon if rf-kill is on*/
Tomas Winklerfee12472008-04-03 16:05:21 -07001213 if (!iwl_is_ready_rf(priv))
Mohamed Abbasfde35712007-11-29 11:10:15 +08001214 return -EAGAIN;
1215
1216 cancel_delayed_work(&priv->scan_check);
1217 if (iwl4965_scan_cancel_timeout(priv, 100)) {
1218 IWL_WARNING("Aborted scan still in progress after 100ms\n");
1219 IWL_DEBUG_MAC80211("leaving - scan abort failed.\n");
1220 return -EAGAIN;
1221 }
1222
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001223 iwl4965_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001224
1225 return 0;
1226}
1227
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001228static void iwl4965_set_rate(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001229{
Johannes Berg8318d782008-01-24 19:38:38 +01001230 const struct ieee80211_supported_band *hw = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07001231 struct ieee80211_rate *rate;
1232 int i;
1233
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -07001234 hw = iwl_get_hw_mode(priv, priv->band);
Saleem Abdulrasoolc4ba9622007-11-18 23:59:08 -08001235 if (!hw) {
1236 IWL_ERROR("Failed to set rate: unable to get hw mode\n");
1237 return;
1238 }
Zhu Yib481de92007-09-25 17:54:57 -07001239
1240 priv->active_rate = 0;
1241 priv->active_rate_basic = 0;
1242
Johannes Berg8318d782008-01-24 19:38:38 +01001243 for (i = 0; i < hw->n_bitrates; i++) {
1244 rate = &(hw->bitrates[i]);
1245 if (rate->hw_value < IWL_RATE_COUNT)
1246 priv->active_rate |= (1 << rate->hw_value);
Zhu Yib481de92007-09-25 17:54:57 -07001247 }
1248
1249 IWL_DEBUG_RATE("Set active_rate = %0x, active_rate_basic = %0x\n",
1250 priv->active_rate, priv->active_rate_basic);
1251
1252 /*
1253 * If a basic rate is configured, then use it (adding IWL_RATE_1M_MASK)
1254 * otherwise set it to the default of all CCK rates and 6, 12, 24 for
1255 * OFDM
1256 */
1257 if (priv->active_rate_basic & IWL_CCK_BASIC_RATES_MASK)
1258 priv->staging_rxon.cck_basic_rates =
1259 ((priv->active_rate_basic &
1260 IWL_CCK_RATES_MASK) >> IWL_FIRST_CCK_RATE) & 0xF;
1261 else
1262 priv->staging_rxon.cck_basic_rates =
1263 (IWL_CCK_BASIC_RATES_MASK >> IWL_FIRST_CCK_RATE) & 0xF;
1264
1265 if (priv->active_rate_basic & IWL_OFDM_BASIC_RATES_MASK)
1266 priv->staging_rxon.ofdm_basic_rates =
1267 ((priv->active_rate_basic &
1268 (IWL_OFDM_BASIC_RATES_MASK | IWL_RATE_6M_MASK)) >>
1269 IWL_FIRST_OFDM_RATE) & 0xFF;
1270 else
1271 priv->staging_rxon.ofdm_basic_rates =
1272 (IWL_OFDM_BASIC_RATES_MASK >> IWL_FIRST_OFDM_RATE) & 0xFF;
1273}
1274
Mohamed Abbasad97edd2008-03-28 16:21:06 -07001275void iwl4965_radio_kill_sw(struct iwl_priv *priv, int disable_radio)
Zhu Yib481de92007-09-25 17:54:57 -07001276{
1277 unsigned long flags;
1278
1279 if (!!disable_radio == test_bit(STATUS_RF_KILL_SW, &priv->status))
1280 return;
1281
1282 IWL_DEBUG_RF_KILL("Manual SW RF KILL set to: RADIO %s\n",
1283 disable_radio ? "OFF" : "ON");
1284
1285 if (disable_radio) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001286 iwl4965_scan_cancel(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001287 /* FIXME: This is a workaround for AP */
1288 if (priv->iw_mode != IEEE80211_IF_TYPE_AP) {
1289 spin_lock_irqsave(&priv->lock, flags);
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001290 iwl_write32(priv, CSR_UCODE_DRV_GP1_SET,
Zhu Yib481de92007-09-25 17:54:57 -07001291 CSR_UCODE_SW_BIT_RFKILL);
1292 spin_unlock_irqrestore(&priv->lock, flags);
Mohamed Abbasad97edd2008-03-28 16:21:06 -07001293 /* call the host command only if no hw rf-kill set */
Mohamed Abbas59003832008-04-15 16:01:46 -07001294 if (!test_bit(STATUS_RF_KILL_HW, &priv->status) &&
1295 iwl_is_ready(priv))
Mohamed Abbasad97edd2008-03-28 16:21:06 -07001296 iwl4965_send_card_state(priv,
1297 CARD_STATE_CMD_DISABLE,
1298 0);
Zhu Yib481de92007-09-25 17:54:57 -07001299 set_bit(STATUS_RF_KILL_SW, &priv->status);
Mohamed Abbasad97edd2008-03-28 16:21:06 -07001300
1301 /* make sure mac80211 stop sending Tx frame */
1302 if (priv->mac80211_registered)
1303 ieee80211_stop_queues(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07001304 }
1305 return;
1306 }
1307
1308 spin_lock_irqsave(&priv->lock, flags);
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001309 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
Zhu Yib481de92007-09-25 17:54:57 -07001310
1311 clear_bit(STATUS_RF_KILL_SW, &priv->status);
1312 spin_unlock_irqrestore(&priv->lock, flags);
1313
1314 /* wake up ucode */
1315 msleep(10);
1316
1317 spin_lock_irqsave(&priv->lock, flags);
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001318 iwl_read32(priv, CSR_UCODE_DRV_GP1);
1319 if (!iwl_grab_nic_access(priv))
1320 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001321 spin_unlock_irqrestore(&priv->lock, flags);
1322
1323 if (test_bit(STATUS_RF_KILL_HW, &priv->status)) {
1324 IWL_DEBUG_RF_KILL("Can not turn radio back on - "
1325 "disabled by HW switch\n");
1326 return;
1327 }
1328
1329 queue_work(priv->workqueue, &priv->restart);
1330 return;
1331}
1332
Zhu Yib481de92007-09-25 17:54:57 -07001333#define IWL_PACKET_RETRY_TIME HZ
1334
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001335int iwl4965_is_duplicate_packet(struct iwl_priv *priv, struct ieee80211_hdr *header)
Zhu Yib481de92007-09-25 17:54:57 -07001336{
1337 u16 sc = le16_to_cpu(header->seq_ctrl);
1338 u16 seq = (sc & IEEE80211_SCTL_SEQ) >> 4;
1339 u16 frag = sc & IEEE80211_SCTL_FRAG;
1340 u16 *last_seq, *last_frag;
1341 unsigned long *last_time;
1342
1343 switch (priv->iw_mode) {
1344 case IEEE80211_IF_TYPE_IBSS:{
1345 struct list_head *p;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001346 struct iwl4965_ibss_seq *entry = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07001347 u8 *mac = header->addr2;
1348 int index = mac[5] & (IWL_IBSS_MAC_HASH_SIZE - 1);
1349
1350 __list_for_each(p, &priv->ibss_mac_hash[index]) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001351 entry = list_entry(p, struct iwl4965_ibss_seq, list);
Zhu Yib481de92007-09-25 17:54:57 -07001352 if (!compare_ether_addr(entry->mac, mac))
1353 break;
1354 }
1355 if (p == &priv->ibss_mac_hash[index]) {
1356 entry = kzalloc(sizeof(*entry), GFP_ATOMIC);
1357 if (!entry) {
Ian Schrambc434dd2007-10-25 17:15:29 +08001358 IWL_ERROR("Cannot malloc new mac entry\n");
Zhu Yib481de92007-09-25 17:54:57 -07001359 return 0;
1360 }
1361 memcpy(entry->mac, mac, ETH_ALEN);
1362 entry->seq_num = seq;
1363 entry->frag_num = frag;
1364 entry->packet_time = jiffies;
Ian Schrambc434dd2007-10-25 17:15:29 +08001365 list_add(&entry->list, &priv->ibss_mac_hash[index]);
Zhu Yib481de92007-09-25 17:54:57 -07001366 return 0;
1367 }
1368 last_seq = &entry->seq_num;
1369 last_frag = &entry->frag_num;
1370 last_time = &entry->packet_time;
1371 break;
1372 }
1373 case IEEE80211_IF_TYPE_STA:
1374 last_seq = &priv->last_seq_num;
1375 last_frag = &priv->last_frag_num;
1376 last_time = &priv->last_packet_time;
1377 break;
1378 default:
1379 return 0;
1380 }
1381 if ((*last_seq == seq) &&
1382 time_after(*last_time + IWL_PACKET_RETRY_TIME, jiffies)) {
1383 if (*last_frag == frag)
1384 goto drop;
1385 if (*last_frag + 1 != frag)
1386 /* out-of-order fragment */
1387 goto drop;
1388 } else
1389 *last_seq = seq;
1390
1391 *last_frag = frag;
1392 *last_time = jiffies;
1393 return 0;
1394
1395 drop:
1396 return 1;
1397}
1398
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08001399#ifdef CONFIG_IWL4965_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -07001400
1401#include "iwl-spectrum.h"
1402
1403#define BEACON_TIME_MASK_LOW 0x00FFFFFF
1404#define BEACON_TIME_MASK_HIGH 0xFF000000
1405#define TIME_UNIT 1024
1406
1407/*
1408 * extended beacon time format
1409 * time in usec will be changed into a 32-bit value in 8:24 format
1410 * the high 1 byte is the beacon counts
1411 * the lower 3 bytes is the time in usec within one beacon interval
1412 */
1413
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001414static u32 iwl4965_usecs_to_beacons(u32 usec, u32 beacon_interval)
Zhu Yib481de92007-09-25 17:54:57 -07001415{
1416 u32 quot;
1417 u32 rem;
1418 u32 interval = beacon_interval * 1024;
1419
1420 if (!interval || !usec)
1421 return 0;
1422
1423 quot = (usec / interval) & (BEACON_TIME_MASK_HIGH >> 24);
1424 rem = (usec % interval) & BEACON_TIME_MASK_LOW;
1425
1426 return (quot << 24) + rem;
1427}
1428
1429/* base is usually what we get from ucode with each received frame,
1430 * the same as HW timer counter counting down
1431 */
1432
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001433static __le32 iwl4965_add_beacon_time(u32 base, u32 addon, u32 beacon_interval)
Zhu Yib481de92007-09-25 17:54:57 -07001434{
1435 u32 base_low = base & BEACON_TIME_MASK_LOW;
1436 u32 addon_low = addon & BEACON_TIME_MASK_LOW;
1437 u32 interval = beacon_interval * TIME_UNIT;
1438 u32 res = (base & BEACON_TIME_MASK_HIGH) +
1439 (addon & BEACON_TIME_MASK_HIGH);
1440
1441 if (base_low > addon_low)
1442 res += base_low - addon_low;
1443 else if (base_low < addon_low) {
1444 res += interval + base_low - addon_low;
1445 res += (1 << 24);
1446 } else
1447 res += (1 << 24);
1448
1449 return cpu_to_le32(res);
1450}
1451
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001452static int iwl4965_get_measurement(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07001453 struct ieee80211_measurement_params *params,
1454 u8 type)
1455{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001456 struct iwl4965_spectrum_cmd spectrum;
Tomas Winklerdb11d632008-05-05 10:22:33 +08001457 struct iwl_rx_packet *res;
Tomas Winkler857485c2008-03-21 13:53:44 -07001458 struct iwl_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -07001459 .id = REPLY_SPECTRUM_MEASUREMENT_CMD,
1460 .data = (void *)&spectrum,
1461 .meta.flags = CMD_WANT_SKB,
1462 };
1463 u32 add_time = le64_to_cpu(params->start_time);
1464 int rc;
1465 int spectrum_resp_status;
1466 int duration = le16_to_cpu(params->duration);
1467
Tomas Winkler3109ece2008-03-28 16:33:35 -07001468 if (iwl_is_associated(priv))
Zhu Yib481de92007-09-25 17:54:57 -07001469 add_time =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001470 iwl4965_usecs_to_beacons(
Zhu Yib481de92007-09-25 17:54:57 -07001471 le64_to_cpu(params->start_time) - priv->last_tsf,
1472 le16_to_cpu(priv->rxon_timing.beacon_interval));
1473
1474 memset(&spectrum, 0, sizeof(spectrum));
1475
1476 spectrum.channel_count = cpu_to_le16(1);
1477 spectrum.flags =
1478 RXON_FLG_TSF2HOST_MSK | RXON_FLG_ANT_A_MSK | RXON_FLG_DIS_DIV_MSK;
1479 spectrum.filter_flags = MEASUREMENT_FILTER_FLAG;
1480 cmd.len = sizeof(spectrum);
1481 spectrum.len = cpu_to_le16(cmd.len - sizeof(spectrum.len));
1482
Tomas Winkler3109ece2008-03-28 16:33:35 -07001483 if (iwl_is_associated(priv))
Zhu Yib481de92007-09-25 17:54:57 -07001484 spectrum.start_time =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001485 iwl4965_add_beacon_time(priv->last_beacon_time,
Zhu Yib481de92007-09-25 17:54:57 -07001486 add_time,
1487 le16_to_cpu(priv->rxon_timing.beacon_interval));
1488 else
1489 spectrum.start_time = 0;
1490
1491 spectrum.channels[0].duration = cpu_to_le32(duration * TIME_UNIT);
1492 spectrum.channels[0].channel = params->channel;
1493 spectrum.channels[0].type = type;
1494 if (priv->active_rxon.flags & RXON_FLG_BAND_24G_MSK)
1495 spectrum.flags |= RXON_FLG_BAND_24G_MSK |
1496 RXON_FLG_AUTO_DETECT_MSK | RXON_FLG_TGG_PROTECT_MSK;
1497
Tomas Winkler857485c2008-03-21 13:53:44 -07001498 rc = iwl_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -07001499 if (rc)
1500 return rc;
1501
Tomas Winklerdb11d632008-05-05 10:22:33 +08001502 res = (struct iwl_rx_packet *)cmd.meta.u.skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07001503 if (res->hdr.flags & IWL_CMD_FAILED_MSK) {
1504 IWL_ERROR("Bad return from REPLY_RX_ON_ASSOC command\n");
1505 rc = -EIO;
1506 }
1507
1508 spectrum_resp_status = le16_to_cpu(res->u.spectrum.status);
1509 switch (spectrum_resp_status) {
1510 case 0: /* Command will be handled */
1511 if (res->u.spectrum.id != 0xff) {
1512 IWL_DEBUG_INFO
1513 ("Replaced existing measurement: %d\n",
1514 res->u.spectrum.id);
1515 priv->measurement_status &= ~MEASUREMENT_READY;
1516 }
1517 priv->measurement_status |= MEASUREMENT_ACTIVE;
1518 rc = 0;
1519 break;
1520
1521 case 1: /* Command will not be handled */
1522 rc = -EAGAIN;
1523 break;
1524 }
1525
1526 dev_kfree_skb_any(cmd.meta.u.skb);
1527
1528 return rc;
1529}
1530#endif
1531
Zhu Yib481de92007-09-25 17:54:57 -07001532/******************************************************************************
1533 *
1534 * Generic RX handler implementations
1535 *
1536 ******************************************************************************/
Tomas Winkler885ba202008-05-29 16:34:55 +08001537static void iwl_rx_reply_alive(struct iwl_priv *priv,
1538 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07001539{
Tomas Winklerdb11d632008-05-05 10:22:33 +08001540 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Tomas Winkler885ba202008-05-29 16:34:55 +08001541 struct iwl_alive_resp *palive;
Zhu Yib481de92007-09-25 17:54:57 -07001542 struct delayed_work *pwork;
1543
1544 palive = &pkt->u.alive_frame;
1545
1546 IWL_DEBUG_INFO("Alive ucode status 0x%08X revision "
1547 "0x%01X 0x%01X\n",
1548 palive->is_valid, palive->ver_type,
1549 palive->ver_subtype);
1550
1551 if (palive->ver_subtype == INITIALIZE_SUBTYPE) {
1552 IWL_DEBUG_INFO("Initialization Alive received.\n");
1553 memcpy(&priv->card_alive_init,
1554 &pkt->u.alive_frame,
Tomas Winkler885ba202008-05-29 16:34:55 +08001555 sizeof(struct iwl_init_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07001556 pwork = &priv->init_alive_start;
1557 } else {
1558 IWL_DEBUG_INFO("Runtime Alive received.\n");
1559 memcpy(&priv->card_alive, &pkt->u.alive_frame,
Tomas Winkler885ba202008-05-29 16:34:55 +08001560 sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07001561 pwork = &priv->alive_start;
1562 }
1563
1564 /* We delay the ALIVE response by 5ms to
1565 * give the HW RF Kill time to activate... */
1566 if (palive->is_valid == UCODE_VALID_OK)
1567 queue_delayed_work(priv->workqueue, pwork,
1568 msecs_to_jiffies(5));
1569 else
1570 IWL_WARNING("uCode did not respond OK.\n");
1571}
1572
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001573static void iwl4965_rx_reply_error(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +08001574 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07001575{
Tomas Winklerdb11d632008-05-05 10:22:33 +08001576 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07001577
1578 IWL_ERROR("Error Reply type 0x%08X cmd %s (0x%02X) "
1579 "seq 0x%04X ser 0x%08X\n",
1580 le32_to_cpu(pkt->u.err_resp.error_type),
1581 get_cmd_string(pkt->u.err_resp.cmd_id),
1582 pkt->u.err_resp.cmd_id,
1583 le16_to_cpu(pkt->u.err_resp.bad_cmd_seq_num),
1584 le32_to_cpu(pkt->u.err_resp.error_info));
1585}
1586
1587#define TX_STATUS_ENTRY(x) case TX_STATUS_FAIL_ ## x: return #x
1588
Tomas Winklera55360e2008-05-05 10:22:28 +08001589static void iwl4965_rx_csa(struct iwl_priv *priv, struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07001590{
Tomas Winklerdb11d632008-05-05 10:22:33 +08001591 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Gregory Greenmanc1adf9f2008-05-15 13:53:59 +08001592 struct iwl_rxon_cmd *rxon = (void *)&priv->active_rxon;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001593 struct iwl4965_csa_notification *csa = &(pkt->u.csa_notif);
Zhu Yib481de92007-09-25 17:54:57 -07001594 IWL_DEBUG_11H("CSA notif: channel %d, status %d\n",
1595 le16_to_cpu(csa->channel), le32_to_cpu(csa->status));
1596 rxon->channel = csa->channel;
1597 priv->staging_rxon.channel = csa->channel;
1598}
1599
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001600static void iwl4965_rx_spectrum_measure_notif(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +08001601 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07001602{
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08001603#ifdef CONFIG_IWL4965_SPECTRUM_MEASUREMENT
Tomas Winklerdb11d632008-05-05 10:22:33 +08001604 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001605 struct iwl4965_spectrum_notification *report = &(pkt->u.spectrum_notif);
Zhu Yib481de92007-09-25 17:54:57 -07001606
1607 if (!report->state) {
Ester Kummerf3d67992008-05-06 11:05:12 +08001608 IWL_DEBUG(IWL_DL_11H,
1609 "Spectrum Measure Notification: Start\n");
Zhu Yib481de92007-09-25 17:54:57 -07001610 return;
1611 }
1612
1613 memcpy(&priv->measure_report, report, sizeof(*report));
1614 priv->measurement_status |= MEASUREMENT_READY;
1615#endif
1616}
1617
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001618static void iwl4965_rx_pm_sleep_notif(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +08001619 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07001620{
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001621#ifdef CONFIG_IWLWIFI_DEBUG
Tomas Winklerdb11d632008-05-05 10:22:33 +08001622 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001623 struct iwl4965_sleep_notification *sleep = &(pkt->u.sleep_notif);
Zhu Yib481de92007-09-25 17:54:57 -07001624 IWL_DEBUG_RX("sleep mode: %d, src: %d\n",
1625 sleep->pm_sleep_mode, sleep->pm_wakeup_src);
1626#endif
1627}
1628
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001629static void iwl4965_rx_pm_debug_statistics_notif(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +08001630 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07001631{
Tomas Winklerdb11d632008-05-05 10:22:33 +08001632 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07001633 IWL_DEBUG_RADIO("Dumping %d bytes of unhandled "
1634 "notification for %s:\n",
1635 le32_to_cpu(pkt->len), get_cmd_string(pkt->hdr.cmd));
Ester Kummerbf403db2008-05-05 10:22:40 +08001636 iwl_print_hex_dump(priv, IWL_DL_RADIO, pkt->u.raw, le32_to_cpu(pkt->len));
Zhu Yib481de92007-09-25 17:54:57 -07001637}
1638
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001639static void iwl4965_bg_beacon_update(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -07001640{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001641 struct iwl_priv *priv =
1642 container_of(work, struct iwl_priv, beacon_update);
Zhu Yib481de92007-09-25 17:54:57 -07001643 struct sk_buff *beacon;
1644
1645 /* Pull updated AP beacon from mac80211. will fail if not in AP mode */
Johannes Berge039fa42008-05-15 12:55:29 +02001646 beacon = ieee80211_beacon_get(priv->hw, priv->vif);
Zhu Yib481de92007-09-25 17:54:57 -07001647
1648 if (!beacon) {
1649 IWL_ERROR("update beacon failed\n");
1650 return;
1651 }
1652
1653 mutex_lock(&priv->mutex);
1654 /* new beacon skb is allocated every time; dispose previous.*/
1655 if (priv->ibss_beacon)
1656 dev_kfree_skb(priv->ibss_beacon);
1657
1658 priv->ibss_beacon = beacon;
1659 mutex_unlock(&priv->mutex);
1660
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001661 iwl4965_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001662}
1663
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001664static void iwl4965_rx_beacon_notif(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +08001665 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07001666{
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001667#ifdef CONFIG_IWLWIFI_DEBUG
Tomas Winklerdb11d632008-05-05 10:22:33 +08001668 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001669 struct iwl4965_beacon_notif *beacon = &(pkt->u.beacon_status);
1670 u8 rate = iwl4965_hw_get_rate(beacon->beacon_notify_hdr.rate_n_flags);
Zhu Yib481de92007-09-25 17:54:57 -07001671
1672 IWL_DEBUG_RX("beacon status %x retries %d iss %d "
1673 "tsf %d %d rate %d\n",
1674 le32_to_cpu(beacon->beacon_notify_hdr.status) & TX_STATUS_MSK,
1675 beacon->beacon_notify_hdr.failure_frame,
1676 le32_to_cpu(beacon->ibss_mgr_status),
1677 le32_to_cpu(beacon->high_tsf),
1678 le32_to_cpu(beacon->low_tsf), rate);
1679#endif
1680
1681 if ((priv->iw_mode == IEEE80211_IF_TYPE_AP) &&
1682 (!test_bit(STATUS_EXIT_PENDING, &priv->status)))
1683 queue_work(priv->workqueue, &priv->beacon_update);
1684}
1685
1686/* Service response to REPLY_SCAN_CMD (0x80) */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001687static void iwl4965_rx_reply_scan(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +08001688 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07001689{
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001690#ifdef CONFIG_IWLWIFI_DEBUG
Tomas Winklerdb11d632008-05-05 10:22:33 +08001691 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001692 struct iwl4965_scanreq_notification *notif =
1693 (struct iwl4965_scanreq_notification *)pkt->u.raw;
Zhu Yib481de92007-09-25 17:54:57 -07001694
1695 IWL_DEBUG_RX("Scan request status = 0x%x\n", notif->status);
1696#endif
1697}
1698
1699/* Service SCAN_START_NOTIFICATION (0x82) */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001700static void iwl4965_rx_scan_start_notif(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +08001701 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07001702{
Tomas Winklerdb11d632008-05-05 10:22:33 +08001703 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001704 struct iwl4965_scanstart_notification *notif =
1705 (struct iwl4965_scanstart_notification *)pkt->u.raw;
Zhu Yib481de92007-09-25 17:54:57 -07001706 priv->scan_start_tsf = le32_to_cpu(notif->tsf_low);
1707 IWL_DEBUG_SCAN("Scan start: "
1708 "%d [802.11%s] "
1709 "(TSF: 0x%08X:%08X) - %d (beacon timer %u)\n",
1710 notif->channel,
1711 notif->band ? "bg" : "a",
1712 notif->tsf_high,
1713 notif->tsf_low, notif->status, notif->beacon_timer);
1714}
1715
1716/* Service SCAN_RESULTS_NOTIFICATION (0x83) */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001717static void iwl4965_rx_scan_results_notif(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +08001718 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07001719{
Tomas Winklerdb11d632008-05-05 10:22:33 +08001720 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001721 struct iwl4965_scanresults_notification *notif =
1722 (struct iwl4965_scanresults_notification *)pkt->u.raw;
Zhu Yib481de92007-09-25 17:54:57 -07001723
1724 IWL_DEBUG_SCAN("Scan ch.res: "
1725 "%d [802.11%s] "
1726 "(TSF: 0x%08X:%08X) - %d "
1727 "elapsed=%lu usec (%dms since last)\n",
1728 notif->channel,
1729 notif->band ? "bg" : "a",
1730 le32_to_cpu(notif->tsf_high),
1731 le32_to_cpu(notif->tsf_low),
1732 le32_to_cpu(notif->statistics[0]),
1733 le32_to_cpu(notif->tsf_low) - priv->scan_start_tsf,
1734 jiffies_to_msecs(elapsed_jiffies
1735 (priv->last_scan_jiffies, jiffies)));
1736
1737 priv->last_scan_jiffies = jiffies;
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08001738 priv->next_scan_jiffies = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001739}
1740
1741/* Service SCAN_COMPLETE_NOTIFICATION (0x84) */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001742static void iwl4965_rx_scan_complete_notif(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +08001743 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07001744{
Tomas Winklerdb11d632008-05-05 10:22:33 +08001745 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001746 struct iwl4965_scancomplete_notification *scan_notif = (void *)pkt->u.raw;
Zhu Yib481de92007-09-25 17:54:57 -07001747
1748 IWL_DEBUG_SCAN("Scan complete: %d channels (TSF 0x%08X:%08X) - %d\n",
1749 scan_notif->scanned_channels,
1750 scan_notif->tsf_low,
1751 scan_notif->tsf_high, scan_notif->status);
1752
1753 /* The HW is no longer scanning */
1754 clear_bit(STATUS_SCAN_HW, &priv->status);
1755
1756 /* The scan completion notification came in, so kill that timer... */
1757 cancel_delayed_work(&priv->scan_check);
1758
1759 IWL_DEBUG_INFO("Scan pass on %sGHz took %dms\n",
1760 (priv->scan_bands == 2) ? "2.4" : "5.2",
1761 jiffies_to_msecs(elapsed_jiffies
1762 (priv->scan_pass_start, jiffies)));
1763
1764 /* Remove this scanned band from the list
1765 * of pending bands to scan */
1766 priv->scan_bands--;
1767
1768 /* If a request to abort was given, or the scan did not succeed
1769 * then we reset the scan state machine and terminate,
1770 * re-queuing another scan if one has been requested */
1771 if (test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
1772 IWL_DEBUG_INFO("Aborted scan completed.\n");
1773 clear_bit(STATUS_SCAN_ABORTING, &priv->status);
1774 } else {
1775 /* If there are more bands on this scan pass reschedule */
1776 if (priv->scan_bands > 0)
1777 goto reschedule;
1778 }
1779
1780 priv->last_scan_jiffies = jiffies;
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08001781 priv->next_scan_jiffies = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001782 IWL_DEBUG_INFO("Setting scan to off\n");
1783
1784 clear_bit(STATUS_SCANNING, &priv->status);
1785
1786 IWL_DEBUG_INFO("Scan took %dms\n",
1787 jiffies_to_msecs(elapsed_jiffies(priv->scan_start, jiffies)));
1788
1789 queue_work(priv->workqueue, &priv->scan_completed);
1790
1791 return;
1792
1793reschedule:
1794 priv->scan_pass_start = jiffies;
1795 queue_work(priv->workqueue, &priv->request_scan);
1796}
1797
1798/* Handle notification from uCode that card's power state is changing
1799 * due to software, hardware, or critical temperature RFKILL */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001800static void iwl4965_rx_card_state_notif(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +08001801 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07001802{
Tomas Winklerdb11d632008-05-05 10:22:33 +08001803 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07001804 u32 flags = le32_to_cpu(pkt->u.card_state_notif.flags);
1805 unsigned long status = priv->status;
1806
1807 IWL_DEBUG_RF_KILL("Card state received: HW:%s SW:%s\n",
1808 (flags & HW_CARD_DISABLED) ? "Kill" : "On",
1809 (flags & SW_CARD_DISABLED) ? "Kill" : "On");
1810
1811 if (flags & (SW_CARD_DISABLED | HW_CARD_DISABLED |
1812 RF_CARD_DISABLED)) {
1813
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001814 iwl_write32(priv, CSR_UCODE_DRV_GP1_SET,
Zhu Yib481de92007-09-25 17:54:57 -07001815 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
1816
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001817 if (!iwl_grab_nic_access(priv)) {
1818 iwl_write_direct32(
Zhu Yib481de92007-09-25 17:54:57 -07001819 priv, HBUS_TARG_MBX_C,
1820 HBUS_TARG_MBX_C_REG_BIT_CMD_BLOCKED);
1821
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001822 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001823 }
1824
1825 if (!(flags & RXON_CARD_DISABLED)) {
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001826 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR,
Zhu Yib481de92007-09-25 17:54:57 -07001827 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001828 if (!iwl_grab_nic_access(priv)) {
1829 iwl_write_direct32(
Zhu Yib481de92007-09-25 17:54:57 -07001830 priv, HBUS_TARG_MBX_C,
1831 HBUS_TARG_MBX_C_REG_BIT_CMD_BLOCKED);
1832
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001833 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001834 }
1835 }
1836
1837 if (flags & RF_CARD_DISABLED) {
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001838 iwl_write32(priv, CSR_UCODE_DRV_GP1_SET,
Zhu Yib481de92007-09-25 17:54:57 -07001839 CSR_UCODE_DRV_GP1_REG_BIT_CT_KILL_EXIT);
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001840 iwl_read32(priv, CSR_UCODE_DRV_GP1);
1841 if (!iwl_grab_nic_access(priv))
1842 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001843 }
1844 }
1845
1846 if (flags & HW_CARD_DISABLED)
1847 set_bit(STATUS_RF_KILL_HW, &priv->status);
1848 else
1849 clear_bit(STATUS_RF_KILL_HW, &priv->status);
1850
1851
1852 if (flags & SW_CARD_DISABLED)
1853 set_bit(STATUS_RF_KILL_SW, &priv->status);
1854 else
1855 clear_bit(STATUS_RF_KILL_SW, &priv->status);
1856
1857 if (!(flags & RXON_CARD_DISABLED))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001858 iwl4965_scan_cancel(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001859
1860 if ((test_bit(STATUS_RF_KILL_HW, &status) !=
1861 test_bit(STATUS_RF_KILL_HW, &priv->status)) ||
1862 (test_bit(STATUS_RF_KILL_SW, &status) !=
1863 test_bit(STATUS_RF_KILL_SW, &priv->status)))
1864 queue_work(priv->workqueue, &priv->rf_kill);
1865 else
1866 wake_up_interruptible(&priv->wait_command_queue);
1867}
1868
Ron Rindjunsky37a44212008-05-29 16:35:18 +08001869/* Cache phy data (Rx signal strength, etc) for HT frame (REPLY_RX_PHY_CMD).
1870 * This will be used later in iwl4965_rx_reply_rx() for REPLY_RX_MPDU_CMD. */
1871static void iwl4965_rx_reply_rx_phy(struct iwl_priv *priv,
1872 struct iwl_rx_mem_buffer *rxb)
1873{
1874 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
1875 priv->last_phy_res[0] = 1;
1876 memcpy(&priv->last_phy_res[1], &(pkt->u.raw[0]),
1877 sizeof(struct iwl4965_rx_phy_res));
1878}
1879
Zhu Yib481de92007-09-25 17:54:57 -07001880/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001881 * iwl4965_setup_rx_handlers - Initialize Rx handler callbacks
Zhu Yib481de92007-09-25 17:54:57 -07001882 *
1883 * Setup the RX handlers for each of the reply types sent from the uCode
1884 * to the host.
1885 *
1886 * This function chains into the hardware specific files for them to setup
1887 * any hardware specific handlers as well.
1888 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001889static void iwl4965_setup_rx_handlers(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001890{
Tomas Winkler885ba202008-05-29 16:34:55 +08001891 priv->rx_handlers[REPLY_ALIVE] = iwl_rx_reply_alive;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001892 priv->rx_handlers[REPLY_ERROR] = iwl4965_rx_reply_error;
1893 priv->rx_handlers[CHANNEL_SWITCH_NOTIFICATION] = iwl4965_rx_csa;
Zhu Yib481de92007-09-25 17:54:57 -07001894 priv->rx_handlers[SPECTRUM_MEASURE_NOTIFICATION] =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001895 iwl4965_rx_spectrum_measure_notif;
1896 priv->rx_handlers[PM_SLEEP_NOTIFICATION] = iwl4965_rx_pm_sleep_notif;
Zhu Yib481de92007-09-25 17:54:57 -07001897 priv->rx_handlers[PM_DEBUG_STATISTIC_NOTIFIC] =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001898 iwl4965_rx_pm_debug_statistics_notif;
1899 priv->rx_handlers[BEACON_NOTIFICATION] = iwl4965_rx_beacon_notif;
Zhu Yib481de92007-09-25 17:54:57 -07001900
Ben Cahill9fbab512007-11-29 11:09:47 +08001901 /*
1902 * The same handler is used for both the REPLY to a discrete
1903 * statistics request from the host as well as for the periodic
1904 * statistics notifications (after received beacons) from the uCode.
Zhu Yib481de92007-09-25 17:54:57 -07001905 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001906 priv->rx_handlers[REPLY_STATISTICS_CMD] = iwl4965_hw_rx_statistics;
1907 priv->rx_handlers[STATISTICS_NOTIFICATION] = iwl4965_hw_rx_statistics;
Ron Rindjunsky37a44212008-05-29 16:35:18 +08001908 /* scan handlers */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001909 priv->rx_handlers[REPLY_SCAN_CMD] = iwl4965_rx_reply_scan;
1910 priv->rx_handlers[SCAN_START_NOTIFICATION] = iwl4965_rx_scan_start_notif;
Zhu Yib481de92007-09-25 17:54:57 -07001911 priv->rx_handlers[SCAN_RESULTS_NOTIFICATION] =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001912 iwl4965_rx_scan_results_notif;
Zhu Yib481de92007-09-25 17:54:57 -07001913 priv->rx_handlers[SCAN_COMPLETE_NOTIFICATION] =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001914 iwl4965_rx_scan_complete_notif;
Ron Rindjunsky37a44212008-05-29 16:35:18 +08001915 /* status change handler */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001916 priv->rx_handlers[CARD_STATE_NOTIFICATION] = iwl4965_rx_card_state_notif;
Zhu Yib481de92007-09-25 17:54:57 -07001917
Tomas Winklerc1354752008-05-29 16:35:04 +08001918 priv->rx_handlers[MISSED_BEACONS_NOTIFICATION] =
1919 iwl_rx_missed_beacon_notif;
Ron Rindjunsky37a44212008-05-29 16:35:18 +08001920 /* Rx handlers */
1921 priv->rx_handlers[REPLY_RX_PHY_CMD] = iwl4965_rx_reply_rx_phy;
1922 priv->rx_handlers[REPLY_RX_MPDU_CMD] = iwl4965_rx_reply_rx;
Ben Cahill9fbab512007-11-29 11:09:47 +08001923 /* Set up hardware specific Rx handlers */
Emmanuel Grumbachd4789ef2008-04-24 11:55:20 -07001924 priv->cfg->ops->lib->rx_handler_setup(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001925}
1926
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001927/*
1928 * this should be called while priv->lock is locked
1929*/
Tomas Winklera55360e2008-05-05 10:22:28 +08001930static void __iwl_rx_replenish(struct iwl_priv *priv)
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001931{
Tomas Winklera55360e2008-05-05 10:22:28 +08001932 iwl_rx_allocate(priv);
1933 iwl_rx_queue_restock(priv);
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001934}
1935
1936
Zhu Yib481de92007-09-25 17:54:57 -07001937/**
Tomas Winklera55360e2008-05-05 10:22:28 +08001938 * iwl_rx_handle - Main entry function for receiving responses from uCode
Zhu Yib481de92007-09-25 17:54:57 -07001939 *
1940 * Uses the priv->rx_handlers callback function array to invoke
1941 * the appropriate handlers, including command responses,
1942 * frame-received notifications, and other notifications.
1943 */
Tomas Winklera55360e2008-05-05 10:22:28 +08001944void iwl_rx_handle(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001945{
Tomas Winklera55360e2008-05-05 10:22:28 +08001946 struct iwl_rx_mem_buffer *rxb;
Tomas Winklerdb11d632008-05-05 10:22:33 +08001947 struct iwl_rx_packet *pkt;
Tomas Winklera55360e2008-05-05 10:22:28 +08001948 struct iwl_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07001949 u32 r, i;
1950 int reclaim;
1951 unsigned long flags;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001952 u8 fill_rx = 0;
Mohamed Abbasd68ab682008-02-07 13:16:33 -08001953 u32 count = 8;
Zhu Yib481de92007-09-25 17:54:57 -07001954
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001955 /* uCode's read index (stored in shared DRAM) indicates the last Rx
1956 * buffer that the driver may process (last buffer filled by ucode). */
Ron Rindjunskyd67f5482008-05-05 10:22:49 +08001957 r = priv->cfg->ops->lib->shared_mem_rx_idx(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001958 i = rxq->read;
1959
1960 /* Rx interrupt, but nothing sent from uCode */
1961 if (i == r)
Ester Kummerf3d67992008-05-06 11:05:12 +08001962 IWL_DEBUG(IWL_DL_RX, "r = %d, i = %d\n", r, i);
Zhu Yib481de92007-09-25 17:54:57 -07001963
Tomas Winklera55360e2008-05-05 10:22:28 +08001964 if (iwl_rx_queue_space(rxq) > (RX_QUEUE_SIZE / 2))
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001965 fill_rx = 1;
1966
Zhu Yib481de92007-09-25 17:54:57 -07001967 while (i != r) {
1968 rxb = rxq->queue[i];
1969
Ben Cahill9fbab512007-11-29 11:09:47 +08001970 /* If an RXB doesn't have a Rx queue slot associated with it,
Zhu Yib481de92007-09-25 17:54:57 -07001971 * then a bug has been introduced in the queue refilling
1972 * routines -- catch it here */
1973 BUG_ON(rxb == NULL);
1974
1975 rxq->queue[i] = NULL;
1976
1977 pci_dma_sync_single_for_cpu(priv->pci_dev, rxb->dma_addr,
Tomas Winkler5425e492008-04-15 16:01:38 -07001978 priv->hw_params.rx_buf_size,
Zhu Yib481de92007-09-25 17:54:57 -07001979 PCI_DMA_FROMDEVICE);
Tomas Winklerdb11d632008-05-05 10:22:33 +08001980 pkt = (struct iwl_rx_packet *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07001981
1982 /* Reclaim a command buffer only if this packet is a response
1983 * to a (driver-originated) command.
1984 * If the packet (e.g. Rx frame) originated from uCode,
1985 * there is no command buffer to reclaim.
1986 * Ucode should set SEQ_RX_FRAME bit if ucode-originated,
1987 * but apparently a few don't get set; catch them here. */
1988 reclaim = !(pkt->hdr.sequence & SEQ_RX_FRAME) &&
1989 (pkt->hdr.cmd != REPLY_RX_PHY_CMD) &&
Tomas Winkler857485c2008-03-21 13:53:44 -07001990 (pkt->hdr.cmd != REPLY_RX) &&
Zhu Yicfe01702007-09-27 11:27:31 +08001991 (pkt->hdr.cmd != REPLY_COMPRESSED_BA) &&
Zhu Yib481de92007-09-25 17:54:57 -07001992 (pkt->hdr.cmd != STATISTICS_NOTIFICATION) &&
1993 (pkt->hdr.cmd != REPLY_TX);
1994
1995 /* Based on type of command response or notification,
1996 * handle those that need handling via function in
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001997 * rx_handlers table. See iwl4965_setup_rx_handlers() */
Zhu Yib481de92007-09-25 17:54:57 -07001998 if (priv->rx_handlers[pkt->hdr.cmd]) {
Ester Kummerf3d67992008-05-06 11:05:12 +08001999 IWL_DEBUG(IWL_DL_RX, "r = %d, i = %d, %s, 0x%02x\n", r,
2000 i, get_cmd_string(pkt->hdr.cmd), pkt->hdr.cmd);
Zhu Yib481de92007-09-25 17:54:57 -07002001 priv->rx_handlers[pkt->hdr.cmd] (priv, rxb);
2002 } else {
2003 /* No handling needed */
Ester Kummerf3d67992008-05-06 11:05:12 +08002004 IWL_DEBUG(IWL_DL_RX,
Zhu Yib481de92007-09-25 17:54:57 -07002005 "r %d i %d No handler needed for %s, 0x%02x\n",
2006 r, i, get_cmd_string(pkt->hdr.cmd),
2007 pkt->hdr.cmd);
2008 }
2009
2010 if (reclaim) {
Ben Cahill9fbab512007-11-29 11:09:47 +08002011 /* Invoke any callbacks, transfer the skb to caller, and
Tomas Winkler857485c2008-03-21 13:53:44 -07002012 * fire off the (possibly) blocking iwl_send_cmd()
Zhu Yib481de92007-09-25 17:54:57 -07002013 * as we reclaim the driver command queue */
2014 if (rxb && rxb->skb)
Tomas Winkler17b88922008-05-29 16:35:12 +08002015 iwl_tx_cmd_complete(priv, rxb);
Zhu Yib481de92007-09-25 17:54:57 -07002016 else
2017 IWL_WARNING("Claim null rxb?\n");
2018 }
2019
2020 /* For now we just don't re-use anything. We can tweak this
2021 * later to try and re-use notification packets and SKBs that
2022 * fail to Rx correctly */
2023 if (rxb->skb != NULL) {
2024 priv->alloc_rxb_skb--;
2025 dev_kfree_skb_any(rxb->skb);
2026 rxb->skb = NULL;
2027 }
2028
2029 pci_unmap_single(priv->pci_dev, rxb->dma_addr,
Tomas Winkler5425e492008-04-15 16:01:38 -07002030 priv->hw_params.rx_buf_size,
Ron Rindjunsky9ee1ba42007-11-26 16:14:42 +02002031 PCI_DMA_FROMDEVICE);
Zhu Yib481de92007-09-25 17:54:57 -07002032 spin_lock_irqsave(&rxq->lock, flags);
2033 list_add_tail(&rxb->list, &priv->rxq.rx_used);
2034 spin_unlock_irqrestore(&rxq->lock, flags);
2035 i = (i + 1) & RX_QUEUE_MASK;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08002036 /* If there are a lot of unused frames,
2037 * restock the Rx queue so ucode wont assert. */
2038 if (fill_rx) {
2039 count++;
2040 if (count >= 8) {
2041 priv->rxq.read = i;
Tomas Winklera55360e2008-05-05 10:22:28 +08002042 __iwl_rx_replenish(priv);
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08002043 count = 0;
2044 }
2045 }
Zhu Yib481de92007-09-25 17:54:57 -07002046 }
2047
2048 /* Backtrack one entry */
2049 priv->rxq.read = i;
Tomas Winklera55360e2008-05-05 10:22:28 +08002050 iwl_rx_queue_restock(priv);
2051}
2052/* Convert linear signal-to-noise ratio into dB */
2053static u8 ratio2dB[100] = {
2054/* 0 1 2 3 4 5 6 7 8 9 */
2055 0, 0, 6, 10, 12, 14, 16, 17, 18, 19, /* 00 - 09 */
2056 20, 21, 22, 22, 23, 23, 24, 25, 26, 26, /* 10 - 19 */
2057 26, 26, 26, 27, 27, 28, 28, 28, 29, 29, /* 20 - 29 */
2058 29, 30, 30, 30, 31, 31, 31, 31, 32, 32, /* 30 - 39 */
2059 32, 32, 32, 33, 33, 33, 33, 33, 34, 34, /* 40 - 49 */
2060 34, 34, 34, 34, 35, 35, 35, 35, 35, 35, /* 50 - 59 */
2061 36, 36, 36, 36, 36, 36, 36, 37, 37, 37, /* 60 - 69 */
2062 37, 37, 37, 37, 37, 38, 38, 38, 38, 38, /* 70 - 79 */
2063 38, 38, 38, 38, 38, 39, 39, 39, 39, 39, /* 80 - 89 */
2064 39, 39, 39, 39, 39, 40, 40, 40, 40, 40 /* 90 - 99 */
2065};
2066
2067/* Calculates a relative dB value from a ratio of linear
2068 * (i.e. not dB) signal levels.
2069 * Conversion assumes that levels are voltages (20*log), not powers (10*log). */
2070int iwl4965_calc_db_from_ratio(int sig_ratio)
2071{
2072 /* 1000:1 or higher just report as 60 dB */
2073 if (sig_ratio >= 1000)
2074 return 60;
2075
2076 /* 100:1 or higher, divide by 10 and use table,
2077 * add 20 dB to make up for divide by 10 */
2078 if (sig_ratio >= 100)
2079 return (20 + (int)ratio2dB[sig_ratio/10]);
2080
2081 /* We shouldn't see this */
2082 if (sig_ratio < 1)
2083 return 0;
2084
2085 /* Use table for ratios 1:1 - 99:1 */
2086 return (int)ratio2dB[sig_ratio];
2087}
2088
2089#define PERFECT_RSSI (-20) /* dBm */
2090#define WORST_RSSI (-95) /* dBm */
2091#define RSSI_RANGE (PERFECT_RSSI - WORST_RSSI)
2092
2093/* Calculate an indication of rx signal quality (a percentage, not dBm!).
2094 * See http://www.ces.clemson.edu/linux/signal_quality.shtml for info
2095 * about formulas used below. */
2096int iwl4965_calc_sig_qual(int rssi_dbm, int noise_dbm)
2097{
2098 int sig_qual;
2099 int degradation = PERFECT_RSSI - rssi_dbm;
2100
2101 /* If we get a noise measurement, use signal-to-noise ratio (SNR)
2102 * as indicator; formula is (signal dbm - noise dbm).
2103 * SNR at or above 40 is a great signal (100%).
2104 * Below that, scale to fit SNR of 0 - 40 dB within 0 - 100% indicator.
2105 * Weakest usable signal is usually 10 - 15 dB SNR. */
2106 if (noise_dbm) {
2107 if (rssi_dbm - noise_dbm >= 40)
2108 return 100;
2109 else if (rssi_dbm < noise_dbm)
2110 return 0;
2111 sig_qual = ((rssi_dbm - noise_dbm) * 5) / 2;
2112
2113 /* Else use just the signal level.
2114 * This formula is a least squares fit of data points collected and
2115 * compared with a reference system that had a percentage (%) display
2116 * for signal quality. */
2117 } else
2118 sig_qual = (100 * (RSSI_RANGE * RSSI_RANGE) - degradation *
2119 (15 * RSSI_RANGE + 62 * degradation)) /
2120 (RSSI_RANGE * RSSI_RANGE);
2121
2122 if (sig_qual > 100)
2123 sig_qual = 100;
2124 else if (sig_qual < 1)
2125 sig_qual = 0;
2126
2127 return sig_qual;
Zhu Yib481de92007-09-25 17:54:57 -07002128}
2129
Tomas Winkler0a6857e2008-03-12 16:58:49 -07002130#ifdef CONFIG_IWLWIFI_DEBUG
Ester Kummerbf403db2008-05-05 10:22:40 +08002131static void iwl4965_print_rx_config_cmd(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002132{
Gregory Greenmanc1adf9f2008-05-15 13:53:59 +08002133 struct iwl_rxon_cmd *rxon = &priv->staging_rxon;
Joe Perches0795af52007-10-03 17:59:30 -07002134 DECLARE_MAC_BUF(mac);
2135
Zhu Yib481de92007-09-25 17:54:57 -07002136 IWL_DEBUG_RADIO("RX CONFIG:\n");
Ester Kummerbf403db2008-05-05 10:22:40 +08002137 iwl_print_hex_dump(priv, IWL_DL_RADIO, (u8 *) rxon, sizeof(*rxon));
Zhu Yib481de92007-09-25 17:54:57 -07002138 IWL_DEBUG_RADIO("u16 channel: 0x%x\n", le16_to_cpu(rxon->channel));
2139 IWL_DEBUG_RADIO("u32 flags: 0x%08X\n", le32_to_cpu(rxon->flags));
2140 IWL_DEBUG_RADIO("u32 filter_flags: 0x%08x\n",
2141 le32_to_cpu(rxon->filter_flags));
2142 IWL_DEBUG_RADIO("u8 dev_type: 0x%x\n", rxon->dev_type);
2143 IWL_DEBUG_RADIO("u8 ofdm_basic_rates: 0x%02x\n",
2144 rxon->ofdm_basic_rates);
2145 IWL_DEBUG_RADIO("u8 cck_basic_rates: 0x%02x\n", rxon->cck_basic_rates);
Joe Perches0795af52007-10-03 17:59:30 -07002146 IWL_DEBUG_RADIO("u8[6] node_addr: %s\n",
2147 print_mac(mac, rxon->node_addr));
2148 IWL_DEBUG_RADIO("u8[6] bssid_addr: %s\n",
2149 print_mac(mac, rxon->bssid_addr));
Zhu Yib481de92007-09-25 17:54:57 -07002150 IWL_DEBUG_RADIO("u16 assoc_id: 0x%x\n", le16_to_cpu(rxon->assoc_id));
2151}
2152#endif
2153
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002154static void iwl4965_enable_interrupts(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002155{
2156 IWL_DEBUG_ISR("Enabling interrupts\n");
2157 set_bit(STATUS_INT_ENABLED, &priv->status);
Tomas Winkler3395f6e2008-03-25 16:33:37 -07002158 iwl_write32(priv, CSR_INT_MASK, CSR_INI_SET_MASK);
Zhu Yib481de92007-09-25 17:54:57 -07002159}
2160
Mohamed Abbas0359fac2008-03-28 16:21:08 -07002161/* call this function to flush any scheduled tasklet */
2162static inline void iwl_synchronize_irq(struct iwl_priv *priv)
2163{
2164 /* wait to make sure we flush pedding tasklet*/
2165 synchronize_irq(priv->pci_dev->irq);
2166 tasklet_kill(&priv->irq_tasklet);
2167}
2168
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002169static inline void iwl4965_disable_interrupts(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002170{
2171 clear_bit(STATUS_INT_ENABLED, &priv->status);
2172
2173 /* disable interrupts from uCode/NIC to host */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07002174 iwl_write32(priv, CSR_INT_MASK, 0x00000000);
Zhu Yib481de92007-09-25 17:54:57 -07002175
2176 /* acknowledge/clear/reset any interrupts still pending
2177 * from uCode or flow handler (Rx/Tx DMA) */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07002178 iwl_write32(priv, CSR_INT, 0xffffffff);
2179 iwl_write32(priv, CSR_FH_INT_STATUS, 0xffffffff);
Zhu Yib481de92007-09-25 17:54:57 -07002180 IWL_DEBUG_ISR("Disabled interrupts\n");
2181}
2182
Zhu Yib481de92007-09-25 17:54:57 -07002183
Zhu Yib481de92007-09-25 17:54:57 -07002184/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002185 * iwl4965_irq_handle_error - called for HW or SW error interrupt from card
Zhu Yib481de92007-09-25 17:54:57 -07002186 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002187static void iwl4965_irq_handle_error(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002188{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002189 /* Set the FW error flag -- cleared on iwl4965_down */
Zhu Yib481de92007-09-25 17:54:57 -07002190 set_bit(STATUS_FW_ERROR, &priv->status);
2191
2192 /* Cancel currently queued command. */
2193 clear_bit(STATUS_HCMD_ACTIVE, &priv->status);
2194
Tomas Winkler0a6857e2008-03-12 16:58:49 -07002195#ifdef CONFIG_IWLWIFI_DEBUG
Ester Kummerbf403db2008-05-05 10:22:40 +08002196 if (priv->debug_level & IWL_DL_FW_ERRORS) {
Ester Kummerede0cba2008-05-29 16:34:46 +08002197 iwl_dump_nic_error_log(priv);
Ester Kummer189a2b52008-05-15 13:54:18 +08002198 iwl_dump_nic_event_log(priv);
Ester Kummerbf403db2008-05-05 10:22:40 +08002199 iwl4965_print_rx_config_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002200 }
2201#endif
2202
2203 wake_up_interruptible(&priv->wait_command_queue);
2204
2205 /* Keep the restart process from trying to send host
2206 * commands by clearing the INIT status bit */
2207 clear_bit(STATUS_READY, &priv->status);
2208
2209 if (!test_bit(STATUS_EXIT_PENDING, &priv->status)) {
Ester Kummerf3d67992008-05-06 11:05:12 +08002210 IWL_DEBUG(IWL_DL_FW_ERRORS,
Zhu Yib481de92007-09-25 17:54:57 -07002211 "Restarting adapter due to uCode error.\n");
2212
Tomas Winkler3109ece2008-03-28 16:33:35 -07002213 if (iwl_is_associated(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002214 memcpy(&priv->recovery_rxon, &priv->active_rxon,
2215 sizeof(priv->recovery_rxon));
2216 priv->error_recovering = 1;
2217 }
Ester Kummer3a1081e2008-05-06 11:05:14 +08002218 if (priv->cfg->mod_params->restart_fw)
2219 queue_work(priv->workqueue, &priv->restart);
Zhu Yib481de92007-09-25 17:54:57 -07002220 }
2221}
2222
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002223static void iwl4965_error_recovery(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002224{
2225 unsigned long flags;
2226
2227 memcpy(&priv->staging_rxon, &priv->recovery_rxon,
2228 sizeof(priv->staging_rxon));
2229 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002230 iwl4965_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002231
Tomas Winkler4f40e4d2008-05-15 13:54:04 +08002232 iwl_rxon_add_station(priv, priv->bssid, 1);
Zhu Yib481de92007-09-25 17:54:57 -07002233
2234 spin_lock_irqsave(&priv->lock, flags);
2235 priv->assoc_id = le16_to_cpu(priv->staging_rxon.assoc_id);
2236 priv->error_recovering = 0;
2237 spin_unlock_irqrestore(&priv->lock, flags);
2238}
2239
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002240static void iwl4965_irq_tasklet(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002241{
2242 u32 inta, handled = 0;
2243 u32 inta_fh;
2244 unsigned long flags;
Tomas Winkler0a6857e2008-03-12 16:58:49 -07002245#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07002246 u32 inta_mask;
2247#endif
2248
2249 spin_lock_irqsave(&priv->lock, flags);
2250
2251 /* Ack/clear/reset pending uCode interrupts.
2252 * Note: Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS,
2253 * and will clear only when CSR_FH_INT_STATUS gets cleared. */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07002254 inta = iwl_read32(priv, CSR_INT);
2255 iwl_write32(priv, CSR_INT, inta);
Zhu Yib481de92007-09-25 17:54:57 -07002256
2257 /* Ack/clear/reset pending flow-handler (DMA) interrupts.
2258 * Any new interrupts that happen after this, either while we're
2259 * in this tasklet, or later, will show up in next ISR/tasklet. */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07002260 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
2261 iwl_write32(priv, CSR_FH_INT_STATUS, inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -07002262
Tomas Winkler0a6857e2008-03-12 16:58:49 -07002263#ifdef CONFIG_IWLWIFI_DEBUG
Ester Kummerbf403db2008-05-05 10:22:40 +08002264 if (priv->debug_level & IWL_DL_ISR) {
Ben Cahill9fbab512007-11-29 11:09:47 +08002265 /* just for debug */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07002266 inta_mask = iwl_read32(priv, CSR_INT_MASK);
Zhu Yib481de92007-09-25 17:54:57 -07002267 IWL_DEBUG_ISR("inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
2268 inta, inta_mask, inta_fh);
2269 }
2270#endif
2271
2272 /* Since CSR_INT and CSR_FH_INT_STATUS reads and clears are not
2273 * atomic, make sure that inta covers all the interrupts that
2274 * we've discovered, even if FH interrupt came in just after
2275 * reading CSR_INT. */
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08002276 if (inta_fh & CSR49_FH_INT_RX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07002277 inta |= CSR_INT_BIT_FH_RX;
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08002278 if (inta_fh & CSR49_FH_INT_TX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07002279 inta |= CSR_INT_BIT_FH_TX;
2280
2281 /* Now service all interrupt bits discovered above. */
2282 if (inta & CSR_INT_BIT_HW_ERR) {
2283 IWL_ERROR("Microcode HW error detected. Restarting.\n");
2284
2285 /* Tell the device to stop sending interrupts */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002286 iwl4965_disable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002287
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002288 iwl4965_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002289
2290 handled |= CSR_INT_BIT_HW_ERR;
2291
2292 spin_unlock_irqrestore(&priv->lock, flags);
2293
2294 return;
2295 }
2296
Tomas Winkler0a6857e2008-03-12 16:58:49 -07002297#ifdef CONFIG_IWLWIFI_DEBUG
Ester Kummerbf403db2008-05-05 10:22:40 +08002298 if (priv->debug_level & (IWL_DL_ISR)) {
Zhu Yib481de92007-09-25 17:54:57 -07002299 /* NIC fires this, but we don't use it, redundant with WAKEUP */
Joonwoo Park25c03d82008-01-23 10:15:20 -08002300 if (inta & CSR_INT_BIT_SCD)
2301 IWL_DEBUG_ISR("Scheduler finished to transmit "
2302 "the frame/frames.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002303
2304 /* Alive notification via Rx interrupt will do the real work */
2305 if (inta & CSR_INT_BIT_ALIVE)
2306 IWL_DEBUG_ISR("Alive interrupt\n");
2307 }
2308#endif
2309 /* Safely ignore these bits for debug checks below */
Joonwoo Park25c03d82008-01-23 10:15:20 -08002310 inta &= ~(CSR_INT_BIT_SCD | CSR_INT_BIT_ALIVE);
Zhu Yib481de92007-09-25 17:54:57 -07002311
Ben Cahill9fbab512007-11-29 11:09:47 +08002312 /* HW RF KILL switch toggled */
Zhu Yib481de92007-09-25 17:54:57 -07002313 if (inta & CSR_INT_BIT_RF_KILL) {
2314 int hw_rf_kill = 0;
Tomas Winkler3395f6e2008-03-25 16:33:37 -07002315 if (!(iwl_read32(priv, CSR_GP_CNTRL) &
Zhu Yib481de92007-09-25 17:54:57 -07002316 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW))
2317 hw_rf_kill = 1;
2318
Ester Kummerf3d67992008-05-06 11:05:12 +08002319 IWL_DEBUG(IWL_DL_RF_KILL, "RF_KILL bit toggled to %s.\n",
Zhu Yib481de92007-09-25 17:54:57 -07002320 hw_rf_kill ? "disable radio":"enable radio");
2321
2322 /* Queue restart only if RF_KILL switch was set to "kill"
2323 * when we loaded driver, and is now set to "enable".
2324 * After we're Alive, RF_KILL gets handled by
Reinette Chatre32304552008-02-15 14:34:37 -08002325 * iwl4965_rx_card_state_notif() */
Zhu Yi53e49092007-12-06 16:08:44 +08002326 if (!hw_rf_kill && !test_bit(STATUS_ALIVE, &priv->status)) {
2327 clear_bit(STATUS_RF_KILL_HW, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07002328 queue_work(priv->workqueue, &priv->restart);
Zhu Yi53e49092007-12-06 16:08:44 +08002329 }
Zhu Yib481de92007-09-25 17:54:57 -07002330
2331 handled |= CSR_INT_BIT_RF_KILL;
2332 }
2333
Ben Cahill9fbab512007-11-29 11:09:47 +08002334 /* Chip got too hot and stopped itself */
Zhu Yib481de92007-09-25 17:54:57 -07002335 if (inta & CSR_INT_BIT_CT_KILL) {
2336 IWL_ERROR("Microcode CT kill error detected.\n");
2337 handled |= CSR_INT_BIT_CT_KILL;
2338 }
2339
2340 /* Error detected by uCode */
2341 if (inta & CSR_INT_BIT_SW_ERR) {
2342 IWL_ERROR("Microcode SW error detected. Restarting 0x%X.\n",
2343 inta);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002344 iwl4965_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002345 handled |= CSR_INT_BIT_SW_ERR;
2346 }
2347
2348 /* uCode wakes up after power-down sleep */
2349 if (inta & CSR_INT_BIT_WAKEUP) {
2350 IWL_DEBUG_ISR("Wakeup interrupt\n");
Tomas Winklera55360e2008-05-05 10:22:28 +08002351 iwl_rx_queue_update_write_ptr(priv, &priv->rxq);
Tomas Winklerbabcebf2008-05-15 13:54:00 +08002352 iwl_txq_update_write_ptr(priv, &priv->txq[0]);
2353 iwl_txq_update_write_ptr(priv, &priv->txq[1]);
2354 iwl_txq_update_write_ptr(priv, &priv->txq[2]);
2355 iwl_txq_update_write_ptr(priv, &priv->txq[3]);
2356 iwl_txq_update_write_ptr(priv, &priv->txq[4]);
2357 iwl_txq_update_write_ptr(priv, &priv->txq[5]);
Zhu Yib481de92007-09-25 17:54:57 -07002358
2359 handled |= CSR_INT_BIT_WAKEUP;
2360 }
2361
2362 /* All uCode command responses, including Tx command responses,
2363 * Rx "responses" (frame-received notification), and other
2364 * notifications from uCode come through here*/
2365 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) {
Tomas Winklera55360e2008-05-05 10:22:28 +08002366 iwl_rx_handle(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002367 handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX);
2368 }
2369
2370 if (inta & CSR_INT_BIT_FH_TX) {
2371 IWL_DEBUG_ISR("Tx interrupt\n");
2372 handled |= CSR_INT_BIT_FH_TX;
Ron Rindjunskydbb983b2008-05-15 13:54:12 +08002373 /* FH finished to write, send event */
2374 priv->ucode_write_complete = 1;
2375 wake_up_interruptible(&priv->wait_command_queue);
Zhu Yib481de92007-09-25 17:54:57 -07002376 }
2377
2378 if (inta & ~handled)
2379 IWL_ERROR("Unhandled INTA bits 0x%08x\n", inta & ~handled);
2380
2381 if (inta & ~CSR_INI_SET_MASK) {
2382 IWL_WARNING("Disabled INTA bits 0x%08x were pending\n",
2383 inta & ~CSR_INI_SET_MASK);
2384 IWL_WARNING(" with FH_INT = 0x%08x\n", inta_fh);
2385 }
2386
2387 /* Re-enable all interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07002388 /* only Re-enable if diabled by irq */
2389 if (test_bit(STATUS_INT_ENABLED, &priv->status))
2390 iwl4965_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002391
Tomas Winkler0a6857e2008-03-12 16:58:49 -07002392#ifdef CONFIG_IWLWIFI_DEBUG
Ester Kummerbf403db2008-05-05 10:22:40 +08002393 if (priv->debug_level & (IWL_DL_ISR)) {
Tomas Winkler3395f6e2008-03-25 16:33:37 -07002394 inta = iwl_read32(priv, CSR_INT);
2395 inta_mask = iwl_read32(priv, CSR_INT_MASK);
2396 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
Zhu Yib481de92007-09-25 17:54:57 -07002397 IWL_DEBUG_ISR("End inta 0x%08x, enabled 0x%08x, fh 0x%08x, "
2398 "flags 0x%08lx\n", inta, inta_mask, inta_fh, flags);
2399 }
2400#endif
2401 spin_unlock_irqrestore(&priv->lock, flags);
2402}
2403
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002404static irqreturn_t iwl4965_isr(int irq, void *data)
Zhu Yib481de92007-09-25 17:54:57 -07002405{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002406 struct iwl_priv *priv = data;
Zhu Yib481de92007-09-25 17:54:57 -07002407 u32 inta, inta_mask;
2408 u32 inta_fh;
2409 if (!priv)
2410 return IRQ_NONE;
2411
2412 spin_lock(&priv->lock);
2413
2414 /* Disable (but don't clear!) interrupts here to avoid
2415 * back-to-back ISRs and sporadic interrupts from our NIC.
2416 * If we have something to service, the tasklet will re-enable ints.
2417 * If we *don't* have something, we'll re-enable before leaving here. */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07002418 inta_mask = iwl_read32(priv, CSR_INT_MASK); /* just for debug */
2419 iwl_write32(priv, CSR_INT_MASK, 0x00000000);
Zhu Yib481de92007-09-25 17:54:57 -07002420
2421 /* Discover which interrupts are active/pending */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07002422 inta = iwl_read32(priv, CSR_INT);
2423 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
Zhu Yib481de92007-09-25 17:54:57 -07002424
2425 /* Ignore interrupt if there's nothing in NIC to service.
2426 * This may be due to IRQ shared with another device,
2427 * or due to sporadic interrupts thrown from our NIC. */
2428 if (!inta && !inta_fh) {
2429 IWL_DEBUG_ISR("Ignore interrupt, inta == 0, inta_fh == 0\n");
2430 goto none;
2431 }
2432
2433 if ((inta == 0xFFFFFFFF) || ((inta & 0xFFFFFFF0) == 0xa5a5a5a0)) {
Oliver Neukum66fbb542007-11-15 09:31:10 +08002434 /* Hardware disappeared. It might have already raised
2435 * an interrupt */
Zhu Yib481de92007-09-25 17:54:57 -07002436 IWL_WARNING("HARDWARE GONE?? INTA == 0x%080x\n", inta);
Oliver Neukum66fbb542007-11-15 09:31:10 +08002437 goto unplugged;
Zhu Yib481de92007-09-25 17:54:57 -07002438 }
2439
2440 IWL_DEBUG_ISR("ISR inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
2441 inta, inta_mask, inta_fh);
2442
Joonwoo Park25c03d82008-01-23 10:15:20 -08002443 inta &= ~CSR_INT_BIT_SCD;
2444
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002445 /* iwl4965_irq_tasklet() will service interrupts and re-enable them */
Joonwoo Park25c03d82008-01-23 10:15:20 -08002446 if (likely(inta || inta_fh))
2447 tasklet_schedule(&priv->irq_tasklet);
Zhu Yib481de92007-09-25 17:54:57 -07002448
Oliver Neukum66fbb542007-11-15 09:31:10 +08002449 unplugged:
2450 spin_unlock(&priv->lock);
Zhu Yib481de92007-09-25 17:54:57 -07002451 return IRQ_HANDLED;
2452
2453 none:
2454 /* re-enable interrupts here since we don't have anything to service. */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07002455 /* only Re-enable if diabled by irq */
2456 if (test_bit(STATUS_INT_ENABLED, &priv->status))
2457 iwl4965_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002458 spin_unlock(&priv->lock);
2459 return IRQ_NONE;
2460}
2461
Zhu Yib481de92007-09-25 17:54:57 -07002462/* For active scan, listen ACTIVE_DWELL_TIME (msec) on each channel after
2463 * sending probe req. This should be set long enough to hear probe responses
2464 * from more than one AP. */
2465#define IWL_ACTIVE_DWELL_TIME_24 (20) /* all times in msec */
2466#define IWL_ACTIVE_DWELL_TIME_52 (10)
2467
2468/* For faster active scanning, scan will move to the next channel if fewer than
2469 * PLCP_QUIET_THRESH packets are heard on this channel within
2470 * ACTIVE_QUIET_TIME after sending probe request. This shortens the dwell
2471 * time if it's a quiet channel (nothing responded to our probe, and there's
2472 * no other traffic).
2473 * Disable "quiet" feature by setting PLCP_QUIET_THRESH to 0. */
2474#define IWL_PLCP_QUIET_THRESH __constant_cpu_to_le16(1) /* packets */
2475#define IWL_ACTIVE_QUIET_TIME __constant_cpu_to_le16(5) /* msec */
2476
2477/* For passive scan, listen PASSIVE_DWELL_TIME (msec) on each channel.
2478 * Must be set longer than active dwell time.
2479 * For the most reliable scan, set > AP beacon interval (typically 100msec). */
2480#define IWL_PASSIVE_DWELL_TIME_24 (20) /* all times in msec */
2481#define IWL_PASSIVE_DWELL_TIME_52 (10)
2482#define IWL_PASSIVE_DWELL_BASE (100)
2483#define IWL_CHANNEL_TUNE_TIME 5
2484
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002485static inline u16 iwl4965_get_active_dwell_time(struct iwl_priv *priv,
Johannes Berg8318d782008-01-24 19:38:38 +01002486 enum ieee80211_band band)
Zhu Yib481de92007-09-25 17:54:57 -07002487{
Johannes Berg8318d782008-01-24 19:38:38 +01002488 if (band == IEEE80211_BAND_5GHZ)
Zhu Yib481de92007-09-25 17:54:57 -07002489 return IWL_ACTIVE_DWELL_TIME_52;
2490 else
2491 return IWL_ACTIVE_DWELL_TIME_24;
2492}
2493
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002494static u16 iwl4965_get_passive_dwell_time(struct iwl_priv *priv,
Johannes Berg8318d782008-01-24 19:38:38 +01002495 enum ieee80211_band band)
Zhu Yib481de92007-09-25 17:54:57 -07002496{
Johannes Berg8318d782008-01-24 19:38:38 +01002497 u16 active = iwl4965_get_active_dwell_time(priv, band);
2498 u16 passive = (band != IEEE80211_BAND_5GHZ) ?
Zhu Yib481de92007-09-25 17:54:57 -07002499 IWL_PASSIVE_DWELL_BASE + IWL_PASSIVE_DWELL_TIME_24 :
2500 IWL_PASSIVE_DWELL_BASE + IWL_PASSIVE_DWELL_TIME_52;
2501
Tomas Winkler3109ece2008-03-28 16:33:35 -07002502 if (iwl_is_associated(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002503 /* If we're associated, we clamp the maximum passive
2504 * dwell time to be 98% of the beacon interval (minus
2505 * 2 * channel tune time) */
2506 passive = priv->beacon_int;
2507 if ((passive > IWL_PASSIVE_DWELL_BASE) || !passive)
2508 passive = IWL_PASSIVE_DWELL_BASE;
2509 passive = (passive * 98) / 100 - IWL_CHANNEL_TUNE_TIME * 2;
2510 }
2511
2512 if (passive <= active)
2513 passive = active + 1;
2514
2515 return passive;
2516}
2517
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002518static int iwl4965_get_channels_for_scan(struct iwl_priv *priv,
Johannes Berg8318d782008-01-24 19:38:38 +01002519 enum ieee80211_band band,
Zhu Yib481de92007-09-25 17:54:57 -07002520 u8 is_active, u8 direct_mask,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002521 struct iwl4965_scan_channel *scan_ch)
Zhu Yib481de92007-09-25 17:54:57 -07002522{
2523 const struct ieee80211_channel *channels = NULL;
Johannes Berg8318d782008-01-24 19:38:38 +01002524 const struct ieee80211_supported_band *sband;
Assaf Kraussbf85ea42008-03-14 10:38:49 -07002525 const struct iwl_channel_info *ch_info;
Zhu Yib481de92007-09-25 17:54:57 -07002526 u16 passive_dwell = 0;
2527 u16 active_dwell = 0;
2528 int added, i;
2529
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -07002530 sband = iwl_get_hw_mode(priv, band);
Johannes Berg8318d782008-01-24 19:38:38 +01002531 if (!sband)
Zhu Yib481de92007-09-25 17:54:57 -07002532 return 0;
2533
Johannes Berg8318d782008-01-24 19:38:38 +01002534 channels = sband->channels;
Zhu Yib481de92007-09-25 17:54:57 -07002535
Johannes Berg8318d782008-01-24 19:38:38 +01002536 active_dwell = iwl4965_get_active_dwell_time(priv, band);
2537 passive_dwell = iwl4965_get_passive_dwell_time(priv, band);
Zhu Yib481de92007-09-25 17:54:57 -07002538
Johannes Berg8318d782008-01-24 19:38:38 +01002539 for (i = 0, added = 0; i < sband->n_channels; i++) {
Johannes Berg182e2e62008-04-04 10:41:56 +02002540 if (channels[i].flags & IEEE80211_CHAN_DISABLED)
2541 continue;
2542
Johannes Berg8318d782008-01-24 19:38:38 +01002543 scan_ch->channel = ieee80211_frequency_to_channel(channels[i].center_freq);
Zhu Yib481de92007-09-25 17:54:57 -07002544
Assaf Krauss8622e702008-03-21 13:53:43 -07002545 ch_info = iwl_get_channel_info(priv, band,
Ben Cahill9fbab512007-11-29 11:09:47 +08002546 scan_ch->channel);
Zhu Yib481de92007-09-25 17:54:57 -07002547 if (!is_channel_valid(ch_info)) {
2548 IWL_DEBUG_SCAN("Channel %d is INVALID for this SKU.\n",
2549 scan_ch->channel);
2550 continue;
2551 }
2552
2553 if (!is_active || is_channel_passive(ch_info) ||
Johannes Berg8318d782008-01-24 19:38:38 +01002554 (channels[i].flags & IEEE80211_CHAN_PASSIVE_SCAN))
Zhu Yib481de92007-09-25 17:54:57 -07002555 scan_ch->type = 0; /* passive */
2556 else
2557 scan_ch->type = 1; /* active */
2558
2559 if (scan_ch->type & 1)
2560 scan_ch->type |= (direct_mask << 1);
2561
Zhu Yib481de92007-09-25 17:54:57 -07002562 scan_ch->active_dwell = cpu_to_le16(active_dwell);
2563 scan_ch->passive_dwell = cpu_to_le16(passive_dwell);
2564
Ben Cahill9fbab512007-11-29 11:09:47 +08002565 /* Set txpower levels to defaults */
Zhu Yib481de92007-09-25 17:54:57 -07002566 scan_ch->tpc.dsp_atten = 110;
2567 /* scan_pwr_info->tpc.dsp_atten; */
2568
2569 /*scan_pwr_info->tpc.tx_gain; */
Johannes Berg8318d782008-01-24 19:38:38 +01002570 if (band == IEEE80211_BAND_5GHZ)
Zhu Yib481de92007-09-25 17:54:57 -07002571 scan_ch->tpc.tx_gain = ((1 << 5) | (3 << 3)) | 3;
2572 else {
2573 scan_ch->tpc.tx_gain = ((1 << 5) | (5 << 3));
2574 /* NOTE: if we were doing 6Mb OFDM for scans we'd use
Ben Cahill9fbab512007-11-29 11:09:47 +08002575 * power level:
Reinette Chatre8a1b0242008-01-14 17:46:25 -08002576 * scan_ch->tpc.tx_gain = ((1 << 5) | (2 << 3)) | 3;
Zhu Yib481de92007-09-25 17:54:57 -07002577 */
2578 }
2579
2580 IWL_DEBUG_SCAN("Scanning %d [%s %d]\n",
2581 scan_ch->channel,
2582 (scan_ch->type & 1) ? "ACTIVE" : "PASSIVE",
2583 (scan_ch->type & 1) ?
2584 active_dwell : passive_dwell);
2585
2586 scan_ch++;
2587 added++;
2588 }
2589
2590 IWL_DEBUG_SCAN("total channels to scan %d \n", added);
2591 return added;
2592}
2593
Zhu Yib481de92007-09-25 17:54:57 -07002594/******************************************************************************
2595 *
2596 * uCode download functions
2597 *
2598 ******************************************************************************/
2599
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002600static void iwl4965_dealloc_ucode_pci(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002601{
Tomas Winkler98c92212008-01-14 17:46:20 -08002602 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_code);
2603 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data);
2604 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
2605 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init);
2606 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init_data);
2607 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_boot);
Zhu Yib481de92007-09-25 17:54:57 -07002608}
2609
Ron Rindjunskyedcdf8b2008-05-15 13:53:55 +08002610static void iwl4965_nic_start(struct iwl_priv *priv)
2611{
2612 /* Remove all resets to allow NIC to operate */
2613 iwl_write32(priv, CSR_RESET, 0);
2614}
2615
2616
Zhu Yib481de92007-09-25 17:54:57 -07002617/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002618 * iwl4965_read_ucode - Read uCode images from disk file.
Zhu Yib481de92007-09-25 17:54:57 -07002619 *
2620 * Copy into buffers for card to fetch via bus-mastering
2621 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002622static int iwl4965_read_ucode(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002623{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002624 struct iwl4965_ucode *ucode;
Tomas Winkler90e759d2007-11-29 11:09:41 +08002625 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07002626 const struct firmware *ucode_raw;
Tomas Winkler4bf775c2008-03-04 18:09:31 -08002627 const char *name = priv->cfg->fw_name;
Zhu Yib481de92007-09-25 17:54:57 -07002628 u8 *src;
2629 size_t len;
2630 u32 ver, inst_size, data_size, init_size, init_data_size, boot_size;
2631
2632 /* Ask kernel firmware_class module to get the boot firmware off disk.
2633 * request_firmware() is synchronous, file is in memory on return. */
Tomas Winkler90e759d2007-11-29 11:09:41 +08002634 ret = request_firmware(&ucode_raw, name, &priv->pci_dev->dev);
2635 if (ret < 0) {
2636 IWL_ERROR("%s firmware file req failed: Reason %d\n",
2637 name, ret);
Zhu Yib481de92007-09-25 17:54:57 -07002638 goto error;
2639 }
2640
2641 IWL_DEBUG_INFO("Got firmware '%s' file (%zd bytes) from disk\n",
2642 name, ucode_raw->size);
2643
2644 /* Make sure that we got at least our header! */
2645 if (ucode_raw->size < sizeof(*ucode)) {
2646 IWL_ERROR("File size way too small!\n");
Tomas Winkler90e759d2007-11-29 11:09:41 +08002647 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002648 goto err_release;
2649 }
2650
2651 /* Data from ucode file: header followed by uCode images */
2652 ucode = (void *)ucode_raw->data;
2653
2654 ver = le32_to_cpu(ucode->ver);
2655 inst_size = le32_to_cpu(ucode->inst_size);
2656 data_size = le32_to_cpu(ucode->data_size);
2657 init_size = le32_to_cpu(ucode->init_size);
2658 init_data_size = le32_to_cpu(ucode->init_data_size);
2659 boot_size = le32_to_cpu(ucode->boot_size);
2660
2661 IWL_DEBUG_INFO("f/w package hdr ucode version = 0x%x\n", ver);
2662 IWL_DEBUG_INFO("f/w package hdr runtime inst size = %u\n",
2663 inst_size);
2664 IWL_DEBUG_INFO("f/w package hdr runtime data size = %u\n",
2665 data_size);
2666 IWL_DEBUG_INFO("f/w package hdr init inst size = %u\n",
2667 init_size);
2668 IWL_DEBUG_INFO("f/w package hdr init data size = %u\n",
2669 init_data_size);
2670 IWL_DEBUG_INFO("f/w package hdr boot inst size = %u\n",
2671 boot_size);
2672
2673 /* Verify size of file vs. image size info in file's header */
2674 if (ucode_raw->size < sizeof(*ucode) +
2675 inst_size + data_size + init_size +
2676 init_data_size + boot_size) {
2677
2678 IWL_DEBUG_INFO("uCode file size %d too small\n",
2679 (int)ucode_raw->size);
Tomas Winkler90e759d2007-11-29 11:09:41 +08002680 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002681 goto err_release;
2682 }
2683
2684 /* Verify that uCode images will fit in card's SRAM */
Ron Rindjunsky099b40b2008-04-21 15:41:53 -07002685 if (inst_size > priv->hw_params.max_inst_size) {
Tomas Winkler90e759d2007-11-29 11:09:41 +08002686 IWL_DEBUG_INFO("uCode instr len %d too large to fit in\n",
2687 inst_size);
2688 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002689 goto err_release;
2690 }
2691
Ron Rindjunsky099b40b2008-04-21 15:41:53 -07002692 if (data_size > priv->hw_params.max_data_size) {
Tomas Winkler90e759d2007-11-29 11:09:41 +08002693 IWL_DEBUG_INFO("uCode data len %d too large to fit in\n",
2694 data_size);
2695 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002696 goto err_release;
2697 }
Ron Rindjunsky099b40b2008-04-21 15:41:53 -07002698 if (init_size > priv->hw_params.max_inst_size) {
Zhu Yib481de92007-09-25 17:54:57 -07002699 IWL_DEBUG_INFO
Tomas Winkler90e759d2007-11-29 11:09:41 +08002700 ("uCode init instr len %d too large to fit in\n",
2701 init_size);
2702 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002703 goto err_release;
2704 }
Ron Rindjunsky099b40b2008-04-21 15:41:53 -07002705 if (init_data_size > priv->hw_params.max_data_size) {
Zhu Yib481de92007-09-25 17:54:57 -07002706 IWL_DEBUG_INFO
Tomas Winkler90e759d2007-11-29 11:09:41 +08002707 ("uCode init data len %d too large to fit in\n",
2708 init_data_size);
2709 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002710 goto err_release;
2711 }
Ron Rindjunsky099b40b2008-04-21 15:41:53 -07002712 if (boot_size > priv->hw_params.max_bsm_size) {
Zhu Yib481de92007-09-25 17:54:57 -07002713 IWL_DEBUG_INFO
Tomas Winkler90e759d2007-11-29 11:09:41 +08002714 ("uCode boot instr len %d too large to fit in\n",
2715 boot_size);
2716 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002717 goto err_release;
2718 }
2719
2720 /* Allocate ucode buffers for card's bus-master loading ... */
2721
2722 /* Runtime instructions and 2 copies of data:
2723 * 1) unmodified from disk
2724 * 2) backup cache for save/restore during power-downs */
2725 priv->ucode_code.len = inst_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002726 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_code);
Zhu Yib481de92007-09-25 17:54:57 -07002727
2728 priv->ucode_data.len = data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002729 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data);
Zhu Yib481de92007-09-25 17:54:57 -07002730
2731 priv->ucode_data_backup.len = data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002732 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
Zhu Yib481de92007-09-25 17:54:57 -07002733
2734 /* Initialization instructions and data */
Tomas Winkler90e759d2007-11-29 11:09:41 +08002735 if (init_size && init_data_size) {
2736 priv->ucode_init.len = init_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002737 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init);
Zhu Yib481de92007-09-25 17:54:57 -07002738
Tomas Winkler90e759d2007-11-29 11:09:41 +08002739 priv->ucode_init_data.len = init_data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002740 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init_data);
Tomas Winkler90e759d2007-11-29 11:09:41 +08002741
2742 if (!priv->ucode_init.v_addr || !priv->ucode_init_data.v_addr)
2743 goto err_pci_alloc;
2744 }
Zhu Yib481de92007-09-25 17:54:57 -07002745
2746 /* Bootstrap (instructions only, no data) */
Tomas Winkler90e759d2007-11-29 11:09:41 +08002747 if (boot_size) {
2748 priv->ucode_boot.len = boot_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002749 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_boot);
Zhu Yib481de92007-09-25 17:54:57 -07002750
Tomas Winkler90e759d2007-11-29 11:09:41 +08002751 if (!priv->ucode_boot.v_addr)
2752 goto err_pci_alloc;
2753 }
Zhu Yib481de92007-09-25 17:54:57 -07002754
2755 /* Copy images into buffers for card's bus-master reads ... */
2756
2757 /* Runtime instructions (first block of data in file) */
2758 src = &ucode->data[0];
2759 len = priv->ucode_code.len;
Tomas Winkler90e759d2007-11-29 11:09:41 +08002760 IWL_DEBUG_INFO("Copying (but not loading) uCode instr len %Zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002761 memcpy(priv->ucode_code.v_addr, src, len);
2762 IWL_DEBUG_INFO("uCode instr buf vaddr = 0x%p, paddr = 0x%08x\n",
2763 priv->ucode_code.v_addr, (u32)priv->ucode_code.p_addr);
2764
2765 /* Runtime data (2nd block)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002766 * NOTE: Copy into backup buffer will be done in iwl4965_up() */
Zhu Yib481de92007-09-25 17:54:57 -07002767 src = &ucode->data[inst_size];
2768 len = priv->ucode_data.len;
Tomas Winkler90e759d2007-11-29 11:09:41 +08002769 IWL_DEBUG_INFO("Copying (but not loading) uCode data len %Zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002770 memcpy(priv->ucode_data.v_addr, src, len);
2771 memcpy(priv->ucode_data_backup.v_addr, src, len);
2772
2773 /* Initialization instructions (3rd block) */
2774 if (init_size) {
2775 src = &ucode->data[inst_size + data_size];
2776 len = priv->ucode_init.len;
Tomas Winkler90e759d2007-11-29 11:09:41 +08002777 IWL_DEBUG_INFO("Copying (but not loading) init instr len %Zd\n",
2778 len);
Zhu Yib481de92007-09-25 17:54:57 -07002779 memcpy(priv->ucode_init.v_addr, src, len);
2780 }
2781
2782 /* Initialization data (4th block) */
2783 if (init_data_size) {
2784 src = &ucode->data[inst_size + data_size + init_size];
2785 len = priv->ucode_init_data.len;
Tomas Winkler90e759d2007-11-29 11:09:41 +08002786 IWL_DEBUG_INFO("Copying (but not loading) init data len %Zd\n",
2787 len);
Zhu Yib481de92007-09-25 17:54:57 -07002788 memcpy(priv->ucode_init_data.v_addr, src, len);
2789 }
2790
2791 /* Bootstrap instructions (5th block) */
2792 src = &ucode->data[inst_size + data_size + init_size + init_data_size];
2793 len = priv->ucode_boot.len;
Tomas Winkler90e759d2007-11-29 11:09:41 +08002794 IWL_DEBUG_INFO("Copying (but not loading) boot instr len %Zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002795 memcpy(priv->ucode_boot.v_addr, src, len);
2796
2797 /* We have our copies now, allow OS release its copies */
2798 release_firmware(ucode_raw);
2799 return 0;
2800
2801 err_pci_alloc:
2802 IWL_ERROR("failed to allocate pci memory\n");
Tomas Winkler90e759d2007-11-29 11:09:41 +08002803 ret = -ENOMEM;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002804 iwl4965_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002805
2806 err_release:
2807 release_firmware(ucode_raw);
2808
2809 error:
Tomas Winkler90e759d2007-11-29 11:09:41 +08002810 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07002811}
2812
Zhu Yib481de92007-09-25 17:54:57 -07002813/**
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08002814 * iwl_alive_start - called after REPLY_ALIVE notification received
Zhu Yib481de92007-09-25 17:54:57 -07002815 * from protocol/runtime uCode (initialization uCode's
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08002816 * Alive gets handled by iwl_init_alive_start()).
Zhu Yib481de92007-09-25 17:54:57 -07002817 */
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08002818static void iwl_alive_start(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002819{
Tomas Winkler57aab752008-04-14 21:16:03 -07002820 int ret = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002821
2822 IWL_DEBUG_INFO("Runtime Alive received.\n");
2823
2824 if (priv->card_alive.is_valid != UCODE_VALID_OK) {
2825 /* We had an error bringing up the hardware, so take it
2826 * all the way back down so we can try again */
2827 IWL_DEBUG_INFO("Alive failed.\n");
2828 goto restart;
2829 }
2830
2831 /* Initialize uCode has loaded Runtime uCode ... verify inst image.
2832 * This is a paranoid check, because we would not have gotten the
2833 * "runtime" alive if code weren't properly loaded. */
Emmanuel Grumbachb0692f22008-04-24 11:55:18 -07002834 if (iwl_verify_ucode(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002835 /* Runtime instruction load was bad;
2836 * take it all the way back down so we can try again */
2837 IWL_DEBUG_INFO("Bad runtime uCode load.\n");
2838 goto restart;
2839 }
2840
Assaf Kraussbf85ea42008-03-14 10:38:49 -07002841 iwlcore_clear_stations_table(priv);
Tomas Winkler57aab752008-04-14 21:16:03 -07002842 ret = priv->cfg->ops->lib->alive_notify(priv);
2843 if (ret) {
Zhu Yib481de92007-09-25 17:54:57 -07002844 IWL_WARNING("Could not complete ALIVE transition [ntf]: %d\n",
Tomas Winkler57aab752008-04-14 21:16:03 -07002845 ret);
Zhu Yib481de92007-09-25 17:54:57 -07002846 goto restart;
2847 }
2848
Ben Cahill9fbab512007-11-29 11:09:47 +08002849 /* After the ALIVE response, we can send host commands to 4965 uCode */
Zhu Yib481de92007-09-25 17:54:57 -07002850 set_bit(STATUS_ALIVE, &priv->status);
2851
2852 /* Clear out the uCode error bit if it is set */
2853 clear_bit(STATUS_FW_ERROR, &priv->status);
2854
Tomas Winklerfee12472008-04-03 16:05:21 -07002855 if (iwl_is_rfkill(priv))
Zhu Yib481de92007-09-25 17:54:57 -07002856 return;
2857
Johannes Berg36d68252008-05-15 12:55:26 +02002858 ieee80211_wake_queues(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07002859
2860 priv->active_rate = priv->rates_mask;
2861 priv->active_rate_basic = priv->rates_mask & IWL_BASIC_RATES_MASK;
2862
Tomas Winkler3109ece2008-03-28 16:33:35 -07002863 if (iwl_is_associated(priv)) {
Gregory Greenmanc1adf9f2008-05-15 13:53:59 +08002864 struct iwl_rxon_cmd *active_rxon =
2865 (struct iwl_rxon_cmd *)&priv->active_rxon;
Zhu Yib481de92007-09-25 17:54:57 -07002866
2867 memcpy(&priv->staging_rxon, &priv->active_rxon,
2868 sizeof(priv->staging_rxon));
2869 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
2870 } else {
2871 /* Initialize our rx_config data */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002872 iwl4965_connection_init_rx_config(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002873 memcpy(priv->staging_rxon.node_addr, priv->mac_addr, ETH_ALEN);
2874 }
2875
Ben Cahill9fbab512007-11-29 11:09:47 +08002876 /* Configure Bluetooth device coexistence support */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002877 iwl4965_send_bt_config(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002878
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08002879 iwl_reset_run_time_calib(priv);
2880
Zhu Yib481de92007-09-25 17:54:57 -07002881 /* Configure the adapter for unassociated operation */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002882 iwl4965_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002883
2884 /* At this point, the NIC is initialized and operational */
Zhu Yib481de92007-09-25 17:54:57 -07002885 iwl4965_rf_kill_ct_config(priv);
Zhu Yi5a66926a2008-01-14 17:46:18 -08002886
Reinette Chatrefe00b5a2008-04-03 16:05:23 -07002887 iwl_leds_register(priv);
2888
Zhu Yib481de92007-09-25 17:54:57 -07002889 IWL_DEBUG_INFO("ALIVE processing complete.\n");
Rick Farringtona9f46782008-03-18 14:57:49 -07002890 set_bit(STATUS_READY, &priv->status);
Zhu Yi5a66926a2008-01-14 17:46:18 -08002891 wake_up_interruptible(&priv->wait_command_queue);
Zhu Yib481de92007-09-25 17:54:57 -07002892
2893 if (priv->error_recovering)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002894 iwl4965_error_recovery(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002895
Mohamed Abbasc8381fd2008-03-28 16:21:05 -07002896 iwlcore_low_level_notify(priv, IWLCORE_START_EVT);
Mohamed Abbas84363e62008-04-04 16:59:58 -07002897 ieee80211_notify_mac(priv->hw, IEEE80211_NOTIFY_RE_ASSOC);
Zhu Yib481de92007-09-25 17:54:57 -07002898 return;
2899
2900 restart:
2901 queue_work(priv->workqueue, &priv->restart);
2902}
2903
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002904static void iwl4965_cancel_deferred_work(struct iwl_priv *priv);
Zhu Yib481de92007-09-25 17:54:57 -07002905
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002906static void __iwl4965_down(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002907{
2908 unsigned long flags;
2909 int exit_pending = test_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07002910
2911 IWL_DEBUG_INFO(DRV_NAME " is going down\n");
2912
Zhu Yib481de92007-09-25 17:54:57 -07002913 if (!exit_pending)
2914 set_bit(STATUS_EXIT_PENDING, &priv->status);
2915
Mohamed Abbasab53d8a2008-03-25 16:33:36 -07002916 iwl_leds_unregister(priv);
2917
Mohamed Abbasc8381fd2008-03-28 16:21:05 -07002918 iwlcore_low_level_notify(priv, IWLCORE_STOP_EVT);
2919
Assaf Kraussbf85ea42008-03-14 10:38:49 -07002920 iwlcore_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002921
2922 /* Unblock any waiting calls */
2923 wake_up_interruptible_all(&priv->wait_command_queue);
2924
Zhu Yib481de92007-09-25 17:54:57 -07002925 /* Wipe out the EXIT_PENDING status bit if we are not actually
2926 * exiting the module */
2927 if (!exit_pending)
2928 clear_bit(STATUS_EXIT_PENDING, &priv->status);
2929
2930 /* stop and reset the on-board processor */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07002931 iwl_write32(priv, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET);
Zhu Yib481de92007-09-25 17:54:57 -07002932
2933 /* tell the device to stop sending interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07002934 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002935 iwl4965_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07002936 spin_unlock_irqrestore(&priv->lock, flags);
2937 iwl_synchronize_irq(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002938
2939 if (priv->mac80211_registered)
2940 ieee80211_stop_queues(priv->hw);
2941
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002942 /* If we have not previously called iwl4965_init() then
Zhu Yib481de92007-09-25 17:54:57 -07002943 * clear all bits but the RF Kill and SUSPEND bits and return */
Tomas Winklerfee12472008-04-03 16:05:21 -07002944 if (!iwl_is_init(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002945 priv->status = test_bit(STATUS_RF_KILL_HW, &priv->status) <<
2946 STATUS_RF_KILL_HW |
2947 test_bit(STATUS_RF_KILL_SW, &priv->status) <<
2948 STATUS_RF_KILL_SW |
Reinette Chatre97888642008-02-06 11:20:38 -08002949 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
2950 STATUS_GEO_CONFIGURED |
Zhu Yib481de92007-09-25 17:54:57 -07002951 test_bit(STATUS_IN_SUSPEND, &priv->status) <<
2952 STATUS_IN_SUSPEND;
2953 goto exit;
2954 }
2955
2956 /* ...otherwise clear out all the status bits but the RF Kill and
2957 * SUSPEND bits and continue taking the NIC down. */
2958 priv->status &= test_bit(STATUS_RF_KILL_HW, &priv->status) <<
2959 STATUS_RF_KILL_HW |
2960 test_bit(STATUS_RF_KILL_SW, &priv->status) <<
2961 STATUS_RF_KILL_SW |
Reinette Chatre97888642008-02-06 11:20:38 -08002962 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
2963 STATUS_GEO_CONFIGURED |
Zhu Yib481de92007-09-25 17:54:57 -07002964 test_bit(STATUS_IN_SUSPEND, &priv->status) <<
2965 STATUS_IN_SUSPEND |
2966 test_bit(STATUS_FW_ERROR, &priv->status) <<
2967 STATUS_FW_ERROR;
2968
2969 spin_lock_irqsave(&priv->lock, flags);
Tomas Winkler3395f6e2008-03-25 16:33:37 -07002970 iwl_clear_bit(priv, CSR_GP_CNTRL,
Ben Cahill9fbab512007-11-29 11:09:47 +08002971 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
Zhu Yib481de92007-09-25 17:54:57 -07002972 spin_unlock_irqrestore(&priv->lock, flags);
2973
Tomas Winklerda1bc452008-05-29 16:35:00 +08002974 iwl_txq_ctx_stop(priv);
Tomas Winklerb3bbacb2008-05-29 16:35:01 +08002975 iwl_rxq_stop(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002976
2977 spin_lock_irqsave(&priv->lock, flags);
Tomas Winkler3395f6e2008-03-25 16:33:37 -07002978 if (!iwl_grab_nic_access(priv)) {
2979 iwl_write_prph(priv, APMG_CLK_DIS_REG,
Zhu Yib481de92007-09-25 17:54:57 -07002980 APMG_CLK_VAL_DMA_CLK_RQT);
Tomas Winkler3395f6e2008-03-25 16:33:37 -07002981 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002982 }
2983 spin_unlock_irqrestore(&priv->lock, flags);
2984
2985 udelay(5);
2986
Tomas Winkler7f066102008-05-29 16:34:57 +08002987 /* FIXME: apm_ops.suspend(priv) */
2988 priv->cfg->ops->lib->apm_ops.reset(priv);
Ron Rindjunsky399f4902008-04-23 17:14:56 -07002989 priv->cfg->ops->lib->free_shared_mem(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002990
2991 exit:
Tomas Winkler885ba202008-05-29 16:34:55 +08002992 memset(&priv->card_alive, 0, sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07002993
2994 if (priv->ibss_beacon)
2995 dev_kfree_skb(priv->ibss_beacon);
2996 priv->ibss_beacon = NULL;
2997
2998 /* clear out any free frames */
Tomas Winklerfcab4232008-05-15 13:54:01 +08002999 iwl_clear_free_frames(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003000}
3001
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003002static void iwl4965_down(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003003{
3004 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003005 __iwl4965_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003006 mutex_unlock(&priv->mutex);
Zhu Yib24d22b2007-12-19 13:59:52 +08003007
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003008 iwl4965_cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003009}
3010
3011#define MAX_HW_RESTARTS 5
3012
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003013static int __iwl4965_up(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003014{
Tomas Winkler57aab752008-04-14 21:16:03 -07003015 int i;
3016 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07003017
3018 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
3019 IWL_WARNING("Exit pending; will not bring the NIC up\n");
3020 return -EIO;
3021 }
3022
3023 if (test_bit(STATUS_RF_KILL_SW, &priv->status)) {
3024 IWL_WARNING("Radio disabled by SW RF kill (module "
3025 "parameter)\n");
Mohamed Abbasad97edd2008-03-28 16:21:06 -07003026 iwl_rfkill_set_hw_state(priv);
Zhu Yie655b9f2008-01-24 02:19:38 -08003027 return -ENODEV;
3028 }
3029
Reinette Chatree903fbd2008-01-30 22:05:15 -08003030 if (!priv->ucode_data_backup.v_addr || !priv->ucode_data.v_addr) {
3031 IWL_ERROR("ucode not available for device bringup\n");
3032 return -EIO;
3033 }
3034
Zhu Yie655b9f2008-01-24 02:19:38 -08003035 /* If platform's RF_KILL switch is NOT set to KILL */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07003036 if (iwl_read32(priv, CSR_GP_CNTRL) &
Zhu Yie655b9f2008-01-24 02:19:38 -08003037 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
3038 clear_bit(STATUS_RF_KILL_HW, &priv->status);
3039 else {
3040 set_bit(STATUS_RF_KILL_HW, &priv->status);
3041 if (!test_bit(STATUS_IN_SUSPEND, &priv->status)) {
Mohamed Abbasad97edd2008-03-28 16:21:06 -07003042 iwl_rfkill_set_hw_state(priv);
Zhu Yie655b9f2008-01-24 02:19:38 -08003043 IWL_WARNING("Radio disabled by HW RF Kill switch\n");
3044 return -ENODEV;
3045 }
Zhu Yib481de92007-09-25 17:54:57 -07003046 }
3047
Mohamed Abbasad97edd2008-03-28 16:21:06 -07003048 iwl_rfkill_set_hw_state(priv);
Tomas Winkler3395f6e2008-03-25 16:33:37 -07003049 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
Zhu Yib481de92007-09-25 17:54:57 -07003050
Ron Rindjunsky399f4902008-04-23 17:14:56 -07003051 ret = priv->cfg->ops->lib->alloc_shared_mem(priv);
3052 if (ret) {
3053 IWL_ERROR("Unable to allocate shared memory\n");
3054 return ret;
3055 }
3056
Ron Rindjunsky1053d352008-05-05 10:22:43 +08003057 ret = iwl_hw_nic_init(priv);
Tomas Winkler57aab752008-04-14 21:16:03 -07003058 if (ret) {
3059 IWL_ERROR("Unable to init nic\n");
3060 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07003061 }
3062
3063 /* make sure rfkill handshake bits are cleared */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07003064 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
3065 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR,
Zhu Yib481de92007-09-25 17:54:57 -07003066 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
3067
3068 /* clear (again), then enable host interrupts */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07003069 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003070 iwl4965_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003071
3072 /* really make sure rfkill handshake bits are cleared */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07003073 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
3074 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
Zhu Yib481de92007-09-25 17:54:57 -07003075
3076 /* Copy original ucode data image from disk into backup cache.
3077 * This will be used to initialize the on-board processor's
3078 * data SRAM for a clean start when the runtime program first loads. */
3079 memcpy(priv->ucode_data_backup.v_addr, priv->ucode_data.v_addr,
Zhu Yi5a66926a2008-01-14 17:46:18 -08003080 priv->ucode_data.len);
Zhu Yib481de92007-09-25 17:54:57 -07003081
Zhu Yie655b9f2008-01-24 02:19:38 -08003082 /* We return success when we resume from suspend and rf_kill is on. */
3083 if (test_bit(STATUS_RF_KILL_HW, &priv->status))
Zhu Yib481de92007-09-25 17:54:57 -07003084 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07003085
3086 for (i = 0; i < MAX_HW_RESTARTS; i++) {
3087
Assaf Kraussbf85ea42008-03-14 10:38:49 -07003088 iwlcore_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003089
3090 /* load bootstrap state machine,
3091 * load bootstrap program into processor's memory,
3092 * prepare to load the "initialize" uCode */
Tomas Winkler57aab752008-04-14 21:16:03 -07003093 ret = priv->cfg->ops->lib->load_ucode(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003094
Tomas Winkler57aab752008-04-14 21:16:03 -07003095 if (ret) {
3096 IWL_ERROR("Unable to set up bootstrap uCode: %d\n", ret);
Zhu Yib481de92007-09-25 17:54:57 -07003097 continue;
3098 }
3099
3100 /* start card; "initialize" will load runtime ucode */
Ron Rindjunskyedcdf8b2008-05-15 13:53:55 +08003101 iwl4965_nic_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003102
Zhu Yib481de92007-09-25 17:54:57 -07003103 IWL_DEBUG_INFO(DRV_NAME " is coming up\n");
3104
3105 return 0;
3106 }
3107
3108 set_bit(STATUS_EXIT_PENDING, &priv->status);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003109 __iwl4965_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003110
3111 /* tried to restart and config the device for as long as our
3112 * patience could withstand */
3113 IWL_ERROR("Unable to initialize device after %d attempts.\n", i);
3114 return -EIO;
3115}
3116
3117
3118/*****************************************************************************
3119 *
3120 * Workqueue callbacks
3121 *
3122 *****************************************************************************/
3123
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08003124static void iwl_bg_init_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07003125{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003126 struct iwl_priv *priv =
3127 container_of(data, struct iwl_priv, init_alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07003128
3129 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3130 return;
3131
3132 mutex_lock(&priv->mutex);
Emmanuel Grumbachf3ccc082008-05-05 10:22:45 +08003133 priv->cfg->ops->lib->init_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003134 mutex_unlock(&priv->mutex);
3135}
3136
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08003137static void iwl_bg_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07003138{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003139 struct iwl_priv *priv =
3140 container_of(data, struct iwl_priv, alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07003141
3142 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3143 return;
3144
3145 mutex_lock(&priv->mutex);
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08003146 iwl_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003147 mutex_unlock(&priv->mutex);
3148}
3149
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003150static void iwl4965_bg_rf_kill(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -07003151{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003152 struct iwl_priv *priv = container_of(work, struct iwl_priv, rf_kill);
Zhu Yib481de92007-09-25 17:54:57 -07003153
3154 wake_up_interruptible(&priv->wait_command_queue);
3155
3156 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3157 return;
3158
3159 mutex_lock(&priv->mutex);
3160
Tomas Winklerfee12472008-04-03 16:05:21 -07003161 if (!iwl_is_rfkill(priv)) {
Ester Kummerf3d67992008-05-06 11:05:12 +08003162 IWL_DEBUG(IWL_DL_RF_KILL,
Zhu Yib481de92007-09-25 17:54:57 -07003163 "HW and/or SW RF Kill no longer active, restarting "
3164 "device\n");
3165 if (!test_bit(STATUS_EXIT_PENDING, &priv->status))
3166 queue_work(priv->workqueue, &priv->restart);
3167 } else {
Mohamed Abbasad97edd2008-03-28 16:21:06 -07003168 /* make sure mac80211 stop sending Tx frame */
3169 if (priv->mac80211_registered)
3170 ieee80211_stop_queues(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07003171
3172 if (!test_bit(STATUS_RF_KILL_HW, &priv->status))
3173 IWL_DEBUG_RF_KILL("Can not turn radio back on - "
3174 "disabled by SW switch\n");
3175 else
3176 IWL_WARNING("Radio Frequency Kill Switch is On:\n"
3177 "Kill switch must be turned off for "
3178 "wireless networking to work.\n");
3179 }
Mohamed Abbasad97edd2008-03-28 16:21:06 -07003180 iwl_rfkill_set_hw_state(priv);
3181
Zhu Yib481de92007-09-25 17:54:57 -07003182 mutex_unlock(&priv->mutex);
3183}
3184
Abhijeet Kolekar4419e392008-05-05 10:22:47 +08003185static void iwl4965_bg_set_monitor(struct work_struct *work)
3186{
3187 struct iwl_priv *priv = container_of(work,
3188 struct iwl_priv, set_monitor);
3189
3190 IWL_DEBUG(IWL_DL_STATE, "setting monitor mode\n");
3191
3192 mutex_lock(&priv->mutex);
3193
3194 if (!iwl_is_ready(priv))
3195 IWL_DEBUG(IWL_DL_STATE, "leave - not ready\n");
3196 else
3197 if (iwl4965_set_mode(priv, IEEE80211_IF_TYPE_MNTR) != 0)
3198 IWL_ERROR("iwl4965_set_mode() failed\n");
3199
3200 mutex_unlock(&priv->mutex);
3201}
3202
Zhu Yib481de92007-09-25 17:54:57 -07003203#define IWL_SCAN_CHECK_WATCHDOG (7 * HZ)
3204
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003205static void iwl4965_bg_scan_check(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07003206{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003207 struct iwl_priv *priv =
3208 container_of(data, struct iwl_priv, scan_check.work);
Zhu Yib481de92007-09-25 17:54:57 -07003209
3210 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3211 return;
3212
3213 mutex_lock(&priv->mutex);
3214 if (test_bit(STATUS_SCANNING, &priv->status) ||
3215 test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
Ester Kummerf3d67992008-05-06 11:05:12 +08003216 IWL_DEBUG(IWL_DL_SCAN, "Scan completion watchdog resetting "
3217 "adapter (%dms)\n",
3218 jiffies_to_msecs(IWL_SCAN_CHECK_WATCHDOG));
mabbas052c4b92007-10-25 17:15:43 +08003219
Zhu Yib481de92007-09-25 17:54:57 -07003220 if (!test_bit(STATUS_EXIT_PENDING, &priv->status))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003221 iwl4965_send_scan_abort(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003222 }
3223 mutex_unlock(&priv->mutex);
3224}
3225
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003226static void iwl4965_bg_request_scan(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07003227{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003228 struct iwl_priv *priv =
3229 container_of(data, struct iwl_priv, request_scan);
Tomas Winkler857485c2008-03-21 13:53:44 -07003230 struct iwl_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -07003231 .id = REPLY_SCAN_CMD,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003232 .len = sizeof(struct iwl4965_scan_cmd),
Zhu Yib481de92007-09-25 17:54:57 -07003233 .meta.flags = CMD_SIZE_HUGE,
3234 };
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003235 struct iwl4965_scan_cmd *scan;
Zhu Yib481de92007-09-25 17:54:57 -07003236 struct ieee80211_conf *conf = NULL;
Tomas Winkler78330fd2008-02-06 02:37:18 +02003237 u16 cmd_len;
Johannes Berg8318d782008-01-24 19:38:38 +01003238 enum ieee80211_band band;
Tomas Winkler78330fd2008-02-06 02:37:18 +02003239 u8 direct_mask;
Tomas Winkler857485c2008-03-21 13:53:44 -07003240 int ret = 0;
Zhu Yib481de92007-09-25 17:54:57 -07003241
3242 conf = ieee80211_get_hw_conf(priv->hw);
3243
3244 mutex_lock(&priv->mutex);
3245
Tomas Winklerfee12472008-04-03 16:05:21 -07003246 if (!iwl_is_ready(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07003247 IWL_WARNING("request scan called when driver not ready.\n");
3248 goto done;
3249 }
3250
3251 /* Make sure the scan wasn't cancelled before this queued work
3252 * was given the chance to run... */
3253 if (!test_bit(STATUS_SCANNING, &priv->status))
3254 goto done;
3255
3256 /* This should never be called or scheduled if there is currently
3257 * a scan active in the hardware. */
3258 if (test_bit(STATUS_SCAN_HW, &priv->status)) {
3259 IWL_DEBUG_INFO("Multiple concurrent scan requests in parallel. "
3260 "Ignoring second request.\n");
Tomas Winkler857485c2008-03-21 13:53:44 -07003261 ret = -EIO;
Zhu Yib481de92007-09-25 17:54:57 -07003262 goto done;
3263 }
3264
3265 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
3266 IWL_DEBUG_SCAN("Aborting scan due to device shutdown\n");
3267 goto done;
3268 }
3269
3270 if (test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
3271 IWL_DEBUG_HC("Scan request while abort pending. Queuing.\n");
3272 goto done;
3273 }
3274
Tomas Winklerfee12472008-04-03 16:05:21 -07003275 if (iwl_is_rfkill(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07003276 IWL_DEBUG_HC("Aborting scan due to RF Kill activation\n");
3277 goto done;
3278 }
3279
3280 if (!test_bit(STATUS_READY, &priv->status)) {
3281 IWL_DEBUG_HC("Scan request while uninitialized. Queuing.\n");
3282 goto done;
3283 }
3284
3285 if (!priv->scan_bands) {
3286 IWL_DEBUG_HC("Aborting scan due to no requested bands\n");
3287 goto done;
3288 }
3289
3290 if (!priv->scan) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003291 priv->scan = kmalloc(sizeof(struct iwl4965_scan_cmd) +
Zhu Yib481de92007-09-25 17:54:57 -07003292 IWL_MAX_SCAN_SIZE, GFP_KERNEL);
3293 if (!priv->scan) {
Tomas Winkler857485c2008-03-21 13:53:44 -07003294 ret = -ENOMEM;
Zhu Yib481de92007-09-25 17:54:57 -07003295 goto done;
3296 }
3297 }
3298 scan = priv->scan;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003299 memset(scan, 0, sizeof(struct iwl4965_scan_cmd) + IWL_MAX_SCAN_SIZE);
Zhu Yib481de92007-09-25 17:54:57 -07003300
3301 scan->quiet_plcp_th = IWL_PLCP_QUIET_THRESH;
3302 scan->quiet_time = IWL_ACTIVE_QUIET_TIME;
3303
Tomas Winkler3109ece2008-03-28 16:33:35 -07003304 if (iwl_is_associated(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07003305 u16 interval = 0;
3306 u32 extra;
3307 u32 suspend_time = 100;
3308 u32 scan_suspend_time = 100;
3309 unsigned long flags;
3310
3311 IWL_DEBUG_INFO("Scanning while associated...\n");
3312
3313 spin_lock_irqsave(&priv->lock, flags);
3314 interval = priv->beacon_int;
3315 spin_unlock_irqrestore(&priv->lock, flags);
3316
3317 scan->suspend_time = 0;
mabbas052c4b92007-10-25 17:15:43 +08003318 scan->max_out_time = cpu_to_le32(200 * 1024);
Zhu Yib481de92007-09-25 17:54:57 -07003319 if (!interval)
3320 interval = suspend_time;
3321
3322 extra = (suspend_time / interval) << 22;
3323 scan_suspend_time = (extra |
3324 ((suspend_time % interval) * 1024));
3325 scan->suspend_time = cpu_to_le32(scan_suspend_time);
3326 IWL_DEBUG_SCAN("suspend_time 0x%X beacon interval %d\n",
3327 scan_suspend_time, interval);
3328 }
3329
3330 /* We should add the ability for user to lock to PASSIVE ONLY */
3331 if (priv->one_direct_scan) {
3332 IWL_DEBUG_SCAN
3333 ("Kicking off one direct scan for '%s'\n",
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003334 iwl4965_escape_essid(priv->direct_ssid,
Zhu Yib481de92007-09-25 17:54:57 -07003335 priv->direct_ssid_len));
3336 scan->direct_scan[0].id = WLAN_EID_SSID;
3337 scan->direct_scan[0].len = priv->direct_ssid_len;
3338 memcpy(scan->direct_scan[0].ssid,
3339 priv->direct_ssid, priv->direct_ssid_len);
3340 direct_mask = 1;
Tomas Winkler3109ece2008-03-28 16:33:35 -07003341 } else if (!iwl_is_associated(priv) && priv->essid_len) {
Bill Moss786b4552008-04-17 16:03:40 -07003342 IWL_DEBUG_SCAN
3343 ("Kicking off one direct scan for '%s' when not associated\n",
3344 iwl4965_escape_essid(priv->essid, priv->essid_len));
Zhu Yib481de92007-09-25 17:54:57 -07003345 scan->direct_scan[0].id = WLAN_EID_SSID;
3346 scan->direct_scan[0].len = priv->essid_len;
3347 memcpy(scan->direct_scan[0].ssid, priv->essid, priv->essid_len);
3348 direct_mask = 1;
Tomas Winkler857485c2008-03-21 13:53:44 -07003349 } else {
Bill Moss786b4552008-04-17 16:03:40 -07003350 IWL_DEBUG_SCAN("Kicking off one indirect scan.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003351 direct_mask = 0;
Tomas Winkler857485c2008-03-21 13:53:44 -07003352 }
Zhu Yib481de92007-09-25 17:54:57 -07003353
Zhu Yib481de92007-09-25 17:54:57 -07003354 scan->tx_cmd.tx_flags = TX_CMD_FLG_SEQ_CTL_MSK;
Tomas Winkler5425e492008-04-15 16:01:38 -07003355 scan->tx_cmd.sta_id = priv->hw_params.bcast_sta_id;
Zhu Yib481de92007-09-25 17:54:57 -07003356 scan->tx_cmd.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
3357
Zhu Yib481de92007-09-25 17:54:57 -07003358
3359 switch (priv->scan_bands) {
3360 case 2:
3361 scan->flags = RXON_FLG_BAND_24G_MSK | RXON_FLG_AUTO_DETECT_MSK;
3362 scan->tx_cmd.rate_n_flags =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003363 iwl4965_hw_set_rate_n_flags(IWL_RATE_1M_PLCP,
Zhu Yib481de92007-09-25 17:54:57 -07003364 RATE_MCS_ANT_B_MSK|RATE_MCS_CCK_MSK);
3365
3366 scan->good_CRC_th = 0;
Johannes Berg8318d782008-01-24 19:38:38 +01003367 band = IEEE80211_BAND_2GHZ;
Zhu Yib481de92007-09-25 17:54:57 -07003368 break;
3369
3370 case 1:
3371 scan->tx_cmd.rate_n_flags =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003372 iwl4965_hw_set_rate_n_flags(IWL_RATE_6M_PLCP,
Zhu Yib481de92007-09-25 17:54:57 -07003373 RATE_MCS_ANT_B_MSK);
3374 scan->good_CRC_th = IWL_GOOD_CRC_TH;
Johannes Berg8318d782008-01-24 19:38:38 +01003375 band = IEEE80211_BAND_5GHZ;
Zhu Yib481de92007-09-25 17:54:57 -07003376 break;
3377
3378 default:
3379 IWL_WARNING("Invalid scan band count\n");
3380 goto done;
3381 }
3382
Tomas Winkler78330fd2008-02-06 02:37:18 +02003383 /* We don't build a direct scan probe request; the uCode will do
3384 * that based on the direct_mask added to each channel entry */
3385 cmd_len = iwl4965_fill_probe_req(priv, band,
3386 (struct ieee80211_mgmt *)scan->data,
3387 IWL_MAX_SCAN_SIZE - sizeof(*scan), 0);
3388
3389 scan->tx_cmd.len = cpu_to_le16(cmd_len);
Zhu Yib481de92007-09-25 17:54:57 -07003390 /* select Rx chains */
3391
3392 /* Force use of chains B and C (0x6) for scan Rx.
3393 * Avoid A (0x1) because of its off-channel reception on A-band.
3394 * MIMO is not used here, but value is required to make uCode happy. */
3395 scan->rx_chain = RXON_RX_CHAIN_DRIVER_FORCE_MSK |
3396 cpu_to_le16((0x7 << RXON_RX_CHAIN_VALID_POS) |
3397 (0x6 << RXON_RX_CHAIN_FORCE_SEL_POS) |
3398 (0x7 << RXON_RX_CHAIN_FORCE_MIMO_SEL_POS));
3399
3400 if (priv->iw_mode == IEEE80211_IF_TYPE_MNTR)
3401 scan->filter_flags = RXON_FILTER_PROMISC_MSK;
3402
Bill Moss786b4552008-04-17 16:03:40 -07003403 if (direct_mask)
Reinette Chatre26c0f032008-03-11 16:17:15 -07003404 scan->channel_count =
3405 iwl4965_get_channels_for_scan(
3406 priv, band, 1, /* active */
3407 direct_mask,
3408 (void *)&scan->data[le16_to_cpu(scan->tx_cmd.len)]);
Bill Moss786b4552008-04-17 16:03:40 -07003409 else
Reinette Chatre26c0f032008-03-11 16:17:15 -07003410 scan->channel_count =
3411 iwl4965_get_channels_for_scan(
3412 priv, band, 0, /* passive */
3413 direct_mask,
3414 (void *)&scan->data[le16_to_cpu(scan->tx_cmd.len)]);
Zhu Yib481de92007-09-25 17:54:57 -07003415
Mohamed Abbas5da4b552008-04-21 15:41:51 -07003416 scan->filter_flags |= (RXON_FILTER_ACCEPT_GRP_MSK |
3417 RXON_FILTER_BCON_AWARE_MSK);
Zhu Yib481de92007-09-25 17:54:57 -07003418 cmd.len += le16_to_cpu(scan->tx_cmd.len) +
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003419 scan->channel_count * sizeof(struct iwl4965_scan_channel);
Zhu Yib481de92007-09-25 17:54:57 -07003420 cmd.data = scan;
3421 scan->len = cpu_to_le16(cmd.len);
3422
3423 set_bit(STATUS_SCAN_HW, &priv->status);
Tomas Winkler857485c2008-03-21 13:53:44 -07003424 ret = iwl_send_cmd_sync(priv, &cmd);
3425 if (ret)
Zhu Yib481de92007-09-25 17:54:57 -07003426 goto done;
3427
3428 queue_delayed_work(priv->workqueue, &priv->scan_check,
3429 IWL_SCAN_CHECK_WATCHDOG);
3430
3431 mutex_unlock(&priv->mutex);
3432 return;
3433
3434 done:
Ian Schram01ebd062007-10-25 17:15:22 +08003435 /* inform mac80211 scan aborted */
Zhu Yib481de92007-09-25 17:54:57 -07003436 queue_work(priv->workqueue, &priv->scan_completed);
3437 mutex_unlock(&priv->mutex);
3438}
3439
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003440static void iwl4965_bg_up(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07003441{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003442 struct iwl_priv *priv = container_of(data, struct iwl_priv, up);
Zhu Yib481de92007-09-25 17:54:57 -07003443
3444 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3445 return;
3446
3447 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003448 __iwl4965_up(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003449 mutex_unlock(&priv->mutex);
3450}
3451
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003452static void iwl4965_bg_restart(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07003453{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003454 struct iwl_priv *priv = container_of(data, struct iwl_priv, restart);
Zhu Yib481de92007-09-25 17:54:57 -07003455
3456 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3457 return;
3458
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003459 iwl4965_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003460 queue_work(priv->workqueue, &priv->up);
3461}
3462
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003463static void iwl4965_bg_rx_replenish(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07003464{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003465 struct iwl_priv *priv =
3466 container_of(data, struct iwl_priv, rx_replenish);
Zhu Yib481de92007-09-25 17:54:57 -07003467
3468 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3469 return;
3470
3471 mutex_lock(&priv->mutex);
Tomas Winklera55360e2008-05-05 10:22:28 +08003472 iwl_rx_replenish(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003473 mutex_unlock(&priv->mutex);
3474}
3475
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08003476#define IWL_DELAY_NEXT_SCAN (HZ*2)
3477
Reinette Chatre508e32e2008-04-14 21:16:13 -07003478static void iwl4965_post_associate(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003479{
Zhu Yib481de92007-09-25 17:54:57 -07003480 struct ieee80211_conf *conf = NULL;
Tomas Winkler857485c2008-03-21 13:53:44 -07003481 int ret = 0;
Joe Perches0795af52007-10-03 17:59:30 -07003482 DECLARE_MAC_BUF(mac);
Zhu Yib481de92007-09-25 17:54:57 -07003483
3484 if (priv->iw_mode == IEEE80211_IF_TYPE_AP) {
3485 IWL_ERROR("%s Should not be called in AP mode\n", __FUNCTION__);
3486 return;
3487 }
3488
Joe Perches0795af52007-10-03 17:59:30 -07003489 IWL_DEBUG_ASSOC("Associated as %d to: %s\n",
3490 priv->assoc_id,
3491 print_mac(mac, priv->active_rxon.bssid_addr));
Zhu Yib481de92007-09-25 17:54:57 -07003492
3493
3494 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3495 return;
3496
Zhu Yib481de92007-09-25 17:54:57 -07003497
Reinette Chatre508e32e2008-04-14 21:16:13 -07003498 if (!priv->vif || !priv->is_open)
Mohamed Abbas948c1712007-10-25 17:15:45 +08003499 return;
Reinette Chatre508e32e2008-04-14 21:16:13 -07003500
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003501 iwl4965_scan_cancel_timeout(priv, 200);
mabbas052c4b92007-10-25 17:15:43 +08003502
Zhu Yib481de92007-09-25 17:54:57 -07003503 conf = ieee80211_get_hw_conf(priv->hw);
3504
3505 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003506 iwl4965_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003507
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003508 memset(&priv->rxon_timing, 0, sizeof(struct iwl4965_rxon_time_cmd));
3509 iwl4965_setup_rxon_timing(priv);
Tomas Winkler857485c2008-03-21 13:53:44 -07003510 ret = iwl_send_cmd_pdu(priv, REPLY_RXON_TIMING,
Zhu Yib481de92007-09-25 17:54:57 -07003511 sizeof(priv->rxon_timing), &priv->rxon_timing);
Tomas Winkler857485c2008-03-21 13:53:44 -07003512 if (ret)
Zhu Yib481de92007-09-25 17:54:57 -07003513 IWL_WARNING("REPLY_RXON_TIMING failed - "
3514 "Attempting to continue.\n");
3515
3516 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
3517
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003518#ifdef CONFIG_IWL4965_HT
Ron Rindjunskyfd105e72007-11-26 16:14:39 +02003519 if (priv->current_ht_config.is_ht)
Tomas Winkler47c51962008-05-05 10:22:41 +08003520 iwl_set_rxon_ht(priv, &priv->current_ht_config);
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003521#endif /* CONFIG_IWL4965_HT*/
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -07003522 iwl_set_rxon_chain(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003523 priv->staging_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
3524
3525 IWL_DEBUG_ASSOC("assoc id %d beacon interval %d\n",
3526 priv->assoc_id, priv->beacon_int);
3527
3528 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
3529 priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
3530 else
3531 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
3532
3533 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) {
3534 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_SLOT_TIME)
3535 priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
3536 else
3537 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
3538
3539 if (priv->iw_mode == IEEE80211_IF_TYPE_IBSS)
3540 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
3541
3542 }
3543
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003544 iwl4965_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003545
3546 switch (priv->iw_mode) {
3547 case IEEE80211_IF_TYPE_STA:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003548 iwl4965_rate_scale_init(priv->hw, IWL_AP_ID);
Zhu Yib481de92007-09-25 17:54:57 -07003549 break;
3550
3551 case IEEE80211_IF_TYPE_IBSS:
3552
3553 /* clear out the station table */
Assaf Kraussbf85ea42008-03-14 10:38:49 -07003554 iwlcore_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003555
Tomas Winkler4f40e4d2008-05-15 13:54:04 +08003556 iwl_rxon_add_station(priv, iwl_bcast_addr, 0);
3557 iwl_rxon_add_station(priv, priv->bssid, 0);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003558 iwl4965_rate_scale_init(priv->hw, IWL_STA_ID);
3559 iwl4965_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003560
3561 break;
3562
3563 default:
3564 IWL_ERROR("%s Should not be called in %d mode\n",
3565 __FUNCTION__, priv->iw_mode);
3566 break;
3567 }
3568
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003569 iwl4965_sequence_reset(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003570
Zhu Yib481de92007-09-25 17:54:57 -07003571 /* Enable Rx differential gain and sensitivity calibrations */
Emmanuel Grumbachf0832f12008-04-16 16:34:47 -07003572 iwl_chain_noise_reset(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003573 priv->start_calib = 1;
Zhu Yib481de92007-09-25 17:54:57 -07003574
3575 if (priv->iw_mode == IEEE80211_IF_TYPE_IBSS)
3576 priv->assoc_station_added = 1;
3577
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003578 iwl4965_activate_qos(priv, 0);
Ron Rindjunsky292ae172008-02-06 11:20:39 -08003579
Mohamed Abbas5da4b552008-04-21 15:41:51 -07003580 iwl_power_update_mode(priv, 0);
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08003581 /* we have just associated, don't start scan too early */
3582 priv->next_scan_jiffies = jiffies + IWL_DELAY_NEXT_SCAN;
Reinette Chatre508e32e2008-04-14 21:16:13 -07003583}
3584
3585
3586static void iwl4965_bg_post_associate(struct work_struct *data)
3587{
3588 struct iwl_priv *priv = container_of(data, struct iwl_priv,
3589 post_associate.work);
3590
3591 mutex_lock(&priv->mutex);
3592 iwl4965_post_associate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003593 mutex_unlock(&priv->mutex);
Reinette Chatre508e32e2008-04-14 21:16:13 -07003594
Zhu Yib481de92007-09-25 17:54:57 -07003595}
3596
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003597static void iwl4965_bg_abort_scan(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -07003598{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003599 struct iwl_priv *priv = container_of(work, struct iwl_priv, abort_scan);
Zhu Yib481de92007-09-25 17:54:57 -07003600
Tomas Winklerfee12472008-04-03 16:05:21 -07003601 if (!iwl_is_ready(priv))
Zhu Yib481de92007-09-25 17:54:57 -07003602 return;
3603
3604 mutex_lock(&priv->mutex);
3605
3606 set_bit(STATUS_SCAN_ABORTING, &priv->status);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003607 iwl4965_send_scan_abort(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003608
3609 mutex_unlock(&priv->mutex);
3610}
3611
Zhu Yi76bb77e2007-11-22 10:53:22 +08003612static int iwl4965_mac_config(struct ieee80211_hw *hw, struct ieee80211_conf *conf);
3613
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003614static void iwl4965_bg_scan_completed(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -07003615{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003616 struct iwl_priv *priv =
3617 container_of(work, struct iwl_priv, scan_completed);
Zhu Yib481de92007-09-25 17:54:57 -07003618
Ester Kummerf3d67992008-05-06 11:05:12 +08003619 IWL_DEBUG(IWL_DL_SCAN, "SCAN complete scan\n");
Zhu Yib481de92007-09-25 17:54:57 -07003620
3621 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3622 return;
3623
Zhu Yia0646472007-12-20 14:10:01 +08003624 if (test_bit(STATUS_CONF_PENDING, &priv->status))
3625 iwl4965_mac_config(priv->hw, ieee80211_get_hw_conf(priv->hw));
Zhu Yi76bb77e2007-11-22 10:53:22 +08003626
Zhu Yib481de92007-09-25 17:54:57 -07003627 ieee80211_scan_completed(priv->hw);
3628
3629 /* Since setting the TXPOWER may have been deferred while
3630 * performing the scan, fire one off */
3631 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003632 iwl4965_hw_reg_send_txpower(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003633 mutex_unlock(&priv->mutex);
3634}
3635
3636/*****************************************************************************
3637 *
3638 * mac80211 entry point functions
3639 *
3640 *****************************************************************************/
3641
Zhu Yi5a66926a2008-01-14 17:46:18 -08003642#define UCODE_READY_TIMEOUT (2 * HZ)
3643
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003644static int iwl4965_mac_start(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07003645{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003646 struct iwl_priv *priv = hw->priv;
Zhu Yi5a66926a2008-01-14 17:46:18 -08003647 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07003648
3649 IWL_DEBUG_MAC80211("enter\n");
3650
Zhu Yi5a66926a2008-01-14 17:46:18 -08003651 if (pci_enable_device(priv->pci_dev)) {
3652 IWL_ERROR("Fail to pci_enable_device\n");
3653 return -ENODEV;
3654 }
3655 pci_restore_state(priv->pci_dev);
3656 pci_enable_msi(priv->pci_dev);
3657
3658 ret = request_irq(priv->pci_dev->irq, iwl4965_isr, IRQF_SHARED,
3659 DRV_NAME, priv);
3660 if (ret) {
3661 IWL_ERROR("Error allocating IRQ %d\n", priv->pci_dev->irq);
3662 goto out_disable_msi;
3663 }
3664
Zhu Yib481de92007-09-25 17:54:57 -07003665 /* we should be verifying the device is ready to be opened */
3666 mutex_lock(&priv->mutex);
3667
Gregory Greenmanc1adf9f2008-05-15 13:53:59 +08003668 memset(&priv->staging_rxon, 0, sizeof(struct iwl_rxon_cmd));
Zhu Yi5a66926a2008-01-14 17:46:18 -08003669 /* fetch ucode file from disk, alloc and copy to bus-master buffers ...
3670 * ucode filename and max sizes are card-specific. */
3671
3672 if (!priv->ucode_code.len) {
3673 ret = iwl4965_read_ucode(priv);
3674 if (ret) {
3675 IWL_ERROR("Could not read microcode: %d\n", ret);
3676 mutex_unlock(&priv->mutex);
3677 goto out_release_irq;
3678 }
3679 }
3680
Zhu Yie655b9f2008-01-24 02:19:38 -08003681 ret = __iwl4965_up(priv);
Zhu Yi5a66926a2008-01-14 17:46:18 -08003682
Zhu Yib481de92007-09-25 17:54:57 -07003683 mutex_unlock(&priv->mutex);
Zhu Yi5a66926a2008-01-14 17:46:18 -08003684
Zhu Yie655b9f2008-01-24 02:19:38 -08003685 if (ret)
3686 goto out_release_irq;
3687
3688 IWL_DEBUG_INFO("Start UP work done.\n");
3689
3690 if (test_bit(STATUS_IN_SUSPEND, &priv->status))
3691 return 0;
3692
Ron Rindjunskyfe9b6b72008-05-29 16:35:06 +08003693 /* Wait for START_ALIVE from Run Time ucode. Otherwise callbacks from
Zhu Yi5a66926a2008-01-14 17:46:18 -08003694 * mac80211 will not be run successfully. */
Ron Rindjunskyfe9b6b72008-05-29 16:35:06 +08003695 if (priv->ucode_type == UCODE_RT) {
3696 ret = wait_event_interruptible_timeout(priv->wait_command_queue,
3697 test_bit(STATUS_READY, &priv->status),
3698 UCODE_READY_TIMEOUT);
3699 if (!ret) {
3700 if (!test_bit(STATUS_READY, &priv->status)) {
3701 IWL_ERROR("START_ALIVE timeout after %dms.\n",
3702 jiffies_to_msecs(UCODE_READY_TIMEOUT));
3703 ret = -ETIMEDOUT;
3704 goto out_release_irq;
3705 }
Zhu Yi5a66926a2008-01-14 17:46:18 -08003706 }
Zhu Yi5a66926a2008-01-14 17:46:18 -08003707
Ron Rindjunskyfe9b6b72008-05-29 16:35:06 +08003708 priv->is_open = 1;
3709 }
Zhu Yib481de92007-09-25 17:54:57 -07003710 IWL_DEBUG_MAC80211("leave\n");
3711 return 0;
Zhu Yi5a66926a2008-01-14 17:46:18 -08003712
3713out_release_irq:
3714 free_irq(priv->pci_dev->irq, priv);
3715out_disable_msi:
3716 pci_disable_msi(priv->pci_dev);
Zhu Yie655b9f2008-01-24 02:19:38 -08003717 pci_disable_device(priv->pci_dev);
3718 priv->is_open = 0;
3719 IWL_DEBUG_MAC80211("leave - failed\n");
Zhu Yi5a66926a2008-01-14 17:46:18 -08003720 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07003721}
3722
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003723static void iwl4965_mac_stop(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07003724{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003725 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07003726
3727 IWL_DEBUG_MAC80211("enter\n");
Mohamed Abbas948c1712007-10-25 17:15:45 +08003728
Zhu Yie655b9f2008-01-24 02:19:38 -08003729 if (!priv->is_open) {
3730 IWL_DEBUG_MAC80211("leave - skip\n");
3731 return;
3732 }
3733
Zhu Yib481de92007-09-25 17:54:57 -07003734 priv->is_open = 0;
Zhu Yi5a66926a2008-01-14 17:46:18 -08003735
Tomas Winklerfee12472008-04-03 16:05:21 -07003736 if (iwl_is_ready_rf(priv)) {
Zhu Yie655b9f2008-01-24 02:19:38 -08003737 /* stop mac, cancel any scan request and clear
3738 * RXON_FILTER_ASSOC_MSK BIT
3739 */
Zhu Yi5a66926a2008-01-14 17:46:18 -08003740 mutex_lock(&priv->mutex);
3741 iwl4965_scan_cancel_timeout(priv, 100);
3742 cancel_delayed_work(&priv->post_associate);
Mohamed Abbasfde35712007-11-29 11:10:15 +08003743 mutex_unlock(&priv->mutex);
Mohamed Abbasfde35712007-11-29 11:10:15 +08003744 }
3745
Zhu Yi5a66926a2008-01-14 17:46:18 -08003746 iwl4965_down(priv);
3747
3748 flush_workqueue(priv->workqueue);
3749 free_irq(priv->pci_dev->irq, priv);
3750 pci_disable_msi(priv->pci_dev);
3751 pci_save_state(priv->pci_dev);
3752 pci_disable_device(priv->pci_dev);
Mohamed Abbas948c1712007-10-25 17:15:45 +08003753
Zhu Yib481de92007-09-25 17:54:57 -07003754 IWL_DEBUG_MAC80211("leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07003755}
3756
Johannes Berge039fa42008-05-15 12:55:29 +02003757static int iwl4965_mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07003758{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003759 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07003760
3761 IWL_DEBUG_MAC80211("enter\n");
3762
3763 if (priv->iw_mode == IEEE80211_IF_TYPE_MNTR) {
3764 IWL_DEBUG_MAC80211("leave - monitor\n");
3765 return -1;
3766 }
3767
3768 IWL_DEBUG_TX("dev->xmit(%d bytes) at rate 0x%02x\n", skb->len,
Johannes Berge039fa42008-05-15 12:55:29 +02003769 ieee80211_get_tx_rate(hw, IEEE80211_SKB_CB(skb))->bitrate);
Zhu Yib481de92007-09-25 17:54:57 -07003770
Johannes Berge039fa42008-05-15 12:55:29 +02003771 if (iwl_tx_skb(priv, skb))
Zhu Yib481de92007-09-25 17:54:57 -07003772 dev_kfree_skb_any(skb);
3773
3774 IWL_DEBUG_MAC80211("leave\n");
3775 return 0;
3776}
3777
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003778static int iwl4965_mac_add_interface(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07003779 struct ieee80211_if_init_conf *conf)
3780{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003781 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07003782 unsigned long flags;
Joe Perches0795af52007-10-03 17:59:30 -07003783 DECLARE_MAC_BUF(mac);
Zhu Yib481de92007-09-25 17:54:57 -07003784
Johannes Berg32bfd352007-12-19 01:31:26 +01003785 IWL_DEBUG_MAC80211("enter: type %d\n", conf->type);
Zhu Yib481de92007-09-25 17:54:57 -07003786
Johannes Berg32bfd352007-12-19 01:31:26 +01003787 if (priv->vif) {
3788 IWL_DEBUG_MAC80211("leave - vif != NULL\n");
Reinette Chatre75849d22008-01-23 10:15:17 -08003789 return -EOPNOTSUPP;
Zhu Yib481de92007-09-25 17:54:57 -07003790 }
3791
3792 spin_lock_irqsave(&priv->lock, flags);
Johannes Berg32bfd352007-12-19 01:31:26 +01003793 priv->vif = conf->vif;
Zhu Yib481de92007-09-25 17:54:57 -07003794
3795 spin_unlock_irqrestore(&priv->lock, flags);
3796
3797 mutex_lock(&priv->mutex);
Tomas Winkler864792e2007-11-27 21:00:52 +02003798
3799 if (conf->mac_addr) {
3800 IWL_DEBUG_MAC80211("Set %s\n", print_mac(mac, conf->mac_addr));
3801 memcpy(priv->mac_addr, conf->mac_addr, ETH_ALEN);
3802 }
Zhu Yib481de92007-09-25 17:54:57 -07003803
Tomas Winklerfee12472008-04-03 16:05:21 -07003804 if (iwl_is_ready(priv))
Zhu Yi5a66926a2008-01-14 17:46:18 -08003805 iwl4965_set_mode(priv, conf->type);
3806
Zhu Yib481de92007-09-25 17:54:57 -07003807 mutex_unlock(&priv->mutex);
3808
Zhu Yi5a66926a2008-01-14 17:46:18 -08003809 IWL_DEBUG_MAC80211("leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07003810 return 0;
3811}
3812
3813/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003814 * iwl4965_mac_config - mac80211 config callback
Zhu Yib481de92007-09-25 17:54:57 -07003815 *
3816 * We ignore conf->flags & IEEE80211_CONF_SHORT_SLOT_TIME since it seems to
3817 * be set inappropriately and the driver currently sets the hardware up to
3818 * use it whenever needed.
3819 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003820static int iwl4965_mac_config(struct ieee80211_hw *hw, struct ieee80211_conf *conf)
Zhu Yib481de92007-09-25 17:54:57 -07003821{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003822 struct iwl_priv *priv = hw->priv;
Assaf Kraussbf85ea42008-03-14 10:38:49 -07003823 const struct iwl_channel_info *ch_info;
Zhu Yib481de92007-09-25 17:54:57 -07003824 unsigned long flags;
Zhu Yi76bb77e2007-11-22 10:53:22 +08003825 int ret = 0;
Zhu Yib481de92007-09-25 17:54:57 -07003826
3827 mutex_lock(&priv->mutex);
Johannes Berg8318d782008-01-24 19:38:38 +01003828 IWL_DEBUG_MAC80211("enter to channel %d\n", conf->channel->hw_value);
Zhu Yib481de92007-09-25 17:54:57 -07003829
Zhu Yi12342c42007-12-20 11:27:32 +08003830 priv->add_radiotap = !!(conf->flags & IEEE80211_CONF_RADIOTAP);
3831
Tomas Winklerfee12472008-04-03 16:05:21 -07003832 if (!iwl_is_ready(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07003833 IWL_DEBUG_MAC80211("leave - not ready\n");
Zhu Yi76bb77e2007-11-22 10:53:22 +08003834 ret = -EIO;
3835 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07003836 }
3837
Assaf Krauss1ea87392008-03-18 14:57:50 -07003838 if (unlikely(!priv->cfg->mod_params->disable_hw_scan &&
Zhu Yib481de92007-09-25 17:54:57 -07003839 test_bit(STATUS_SCANNING, &priv->status))) {
Zhu Yia0646472007-12-20 14:10:01 +08003840 IWL_DEBUG_MAC80211("leave - scanning\n");
3841 set_bit(STATUS_CONF_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07003842 mutex_unlock(&priv->mutex);
Zhu Yia0646472007-12-20 14:10:01 +08003843 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07003844 }
3845
3846 spin_lock_irqsave(&priv->lock, flags);
3847
Assaf Krauss8622e702008-03-21 13:53:43 -07003848 ch_info = iwl_get_channel_info(priv, conf->channel->band,
Johannes Berg8318d782008-01-24 19:38:38 +01003849 ieee80211_frequency_to_channel(conf->channel->center_freq));
Zhu Yib481de92007-09-25 17:54:57 -07003850 if (!is_channel_valid(ch_info)) {
Zhu Yib481de92007-09-25 17:54:57 -07003851 IWL_DEBUG_MAC80211("leave - invalid channel\n");
3852 spin_unlock_irqrestore(&priv->lock, flags);
Zhu Yi76bb77e2007-11-22 10:53:22 +08003853 ret = -EINVAL;
3854 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07003855 }
3856
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003857#ifdef CONFIG_IWL4965_HT
Tomas Winkler78330fd2008-02-06 02:37:18 +02003858 /* if we are switching from ht to 2.4 clear flags
Zhu Yib481de92007-09-25 17:54:57 -07003859 * from any ht related info since 2.4 does not
3860 * support ht */
Tomas Winkler78330fd2008-02-06 02:37:18 +02003861 if ((le16_to_cpu(priv->staging_rxon.channel) != conf->channel->hw_value)
Zhu Yib481de92007-09-25 17:54:57 -07003862#ifdef IEEE80211_CONF_CHANNEL_SWITCH
3863 && !(conf->flags & IEEE80211_CONF_CHANNEL_SWITCH)
3864#endif
3865 )
3866 priv->staging_rxon.flags = 0;
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003867#endif /* CONFIG_IWL4965_HT */
Zhu Yib481de92007-09-25 17:54:57 -07003868
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -07003869 iwl_set_rxon_channel(priv, conf->channel->band,
Johannes Berg8318d782008-01-24 19:38:38 +01003870 ieee80211_frequency_to_channel(conf->channel->center_freq));
Zhu Yib481de92007-09-25 17:54:57 -07003871
Johannes Berg8318d782008-01-24 19:38:38 +01003872 iwl4965_set_flags_for_phymode(priv, conf->channel->band);
Zhu Yib481de92007-09-25 17:54:57 -07003873
3874 /* The list of supported rates and rate mask can be different
Johannes Berg8318d782008-01-24 19:38:38 +01003875 * for each band; since the band may have changed, reset
Zhu Yib481de92007-09-25 17:54:57 -07003876 * the rate mask to what mac80211 lists */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003877 iwl4965_set_rate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003878
3879 spin_unlock_irqrestore(&priv->lock, flags);
3880
3881#ifdef IEEE80211_CONF_CHANNEL_SWITCH
3882 if (conf->flags & IEEE80211_CONF_CHANNEL_SWITCH) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003883 iwl4965_hw_channel_switch(priv, conf->channel);
Zhu Yi76bb77e2007-11-22 10:53:22 +08003884 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07003885 }
3886#endif
3887
Mohamed Abbasad97edd2008-03-28 16:21:06 -07003888 if (priv->cfg->ops->lib->radio_kill_sw)
3889 priv->cfg->ops->lib->radio_kill_sw(priv, !conf->radio_enabled);
Zhu Yib481de92007-09-25 17:54:57 -07003890
3891 if (!conf->radio_enabled) {
3892 IWL_DEBUG_MAC80211("leave - radio disabled\n");
Zhu Yi76bb77e2007-11-22 10:53:22 +08003893 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07003894 }
3895
Tomas Winklerfee12472008-04-03 16:05:21 -07003896 if (iwl_is_rfkill(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07003897 IWL_DEBUG_MAC80211("leave - RF kill\n");
Zhu Yi76bb77e2007-11-22 10:53:22 +08003898 ret = -EIO;
3899 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07003900 }
3901
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003902 iwl4965_set_rate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003903
3904 if (memcmp(&priv->active_rxon,
3905 &priv->staging_rxon, sizeof(priv->staging_rxon)))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003906 iwl4965_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003907 else
3908 IWL_DEBUG_INFO("No re-sending same RXON configuration.\n");
3909
3910 IWL_DEBUG_MAC80211("leave\n");
3911
Zhu Yia0646472007-12-20 14:10:01 +08003912out:
3913 clear_bit(STATUS_CONF_PENDING, &priv->status);
Zhu Yi5a66926a2008-01-14 17:46:18 -08003914 mutex_unlock(&priv->mutex);
Zhu Yi76bb77e2007-11-22 10:53:22 +08003915 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07003916}
3917
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003918static void iwl4965_config_ap(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003919{
Tomas Winkler857485c2008-03-21 13:53:44 -07003920 int ret = 0;
Zhu Yib481de92007-09-25 17:54:57 -07003921
Maarten Lankhorstd986bcd2008-01-23 10:15:16 -08003922 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
Zhu Yib481de92007-09-25 17:54:57 -07003923 return;
3924
3925 /* The following should be done only at AP bring up */
3926 if ((priv->active_rxon.filter_flags & RXON_FILTER_ASSOC_MSK) == 0) {
3927
3928 /* RXON - unassoc (to set timing command) */
3929 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003930 iwl4965_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003931
3932 /* RXON Timing */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003933 memset(&priv->rxon_timing, 0, sizeof(struct iwl4965_rxon_time_cmd));
3934 iwl4965_setup_rxon_timing(priv);
Tomas Winkler857485c2008-03-21 13:53:44 -07003935 ret = iwl_send_cmd_pdu(priv, REPLY_RXON_TIMING,
Zhu Yib481de92007-09-25 17:54:57 -07003936 sizeof(priv->rxon_timing), &priv->rxon_timing);
Tomas Winkler857485c2008-03-21 13:53:44 -07003937 if (ret)
Zhu Yib481de92007-09-25 17:54:57 -07003938 IWL_WARNING("REPLY_RXON_TIMING failed - "
3939 "Attempting to continue.\n");
3940
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -07003941 iwl_set_rxon_chain(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003942
3943 /* FIXME: what should be the assoc_id for AP? */
3944 priv->staging_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
3945 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
3946 priv->staging_rxon.flags |=
3947 RXON_FLG_SHORT_PREAMBLE_MSK;
3948 else
3949 priv->staging_rxon.flags &=
3950 ~RXON_FLG_SHORT_PREAMBLE_MSK;
3951
3952 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) {
3953 if (priv->assoc_capability &
3954 WLAN_CAPABILITY_SHORT_SLOT_TIME)
3955 priv->staging_rxon.flags |=
3956 RXON_FLG_SHORT_SLOT_MSK;
3957 else
3958 priv->staging_rxon.flags &=
3959 ~RXON_FLG_SHORT_SLOT_MSK;
3960
3961 if (priv->iw_mode == IEEE80211_IF_TYPE_IBSS)
3962 priv->staging_rxon.flags &=
3963 ~RXON_FLG_SHORT_SLOT_MSK;
3964 }
3965 /* restore RXON assoc */
3966 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003967 iwl4965_commit_rxon(priv);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003968 iwl4965_activate_qos(priv, 1);
Tomas Winkler4f40e4d2008-05-15 13:54:04 +08003969 iwl_rxon_add_station(priv, iwl_bcast_addr, 0);
Zhu Yie1493de2007-09-27 11:27:32 +08003970 }
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003971 iwl4965_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003972
3973 /* FIXME - we need to add code here to detect a totally new
3974 * configuration, reset the AP, unassoc, rxon timing, assoc,
3975 * clear sta table, add BCAST sta... */
3976}
3977
Johannes Berg32bfd352007-12-19 01:31:26 +01003978static int iwl4965_mac_config_interface(struct ieee80211_hw *hw,
3979 struct ieee80211_vif *vif,
Zhu Yib481de92007-09-25 17:54:57 -07003980 struct ieee80211_if_conf *conf)
3981{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003982 struct iwl_priv *priv = hw->priv;
Joe Perches0795af52007-10-03 17:59:30 -07003983 DECLARE_MAC_BUF(mac);
Zhu Yib481de92007-09-25 17:54:57 -07003984 unsigned long flags;
3985 int rc;
3986
3987 if (conf == NULL)
3988 return -EIO;
3989
Emmanuel Grumbachb716bb92008-03-04 18:09:32 -08003990 if (priv->vif != vif) {
3991 IWL_DEBUG_MAC80211("leave - priv->vif != vif\n");
Emmanuel Grumbachb716bb92008-03-04 18:09:32 -08003992 return 0;
3993 }
3994
Zhu Yib481de92007-09-25 17:54:57 -07003995 if ((priv->iw_mode == IEEE80211_IF_TYPE_AP) &&
3996 (!conf->beacon || !conf->ssid_len)) {
3997 IWL_DEBUG_MAC80211
3998 ("Leaving in AP mode because HostAPD is not ready.\n");
3999 return 0;
4000 }
4001
Tomas Winklerfee12472008-04-03 16:05:21 -07004002 if (!iwl_is_alive(priv))
Zhu Yi5a66926a2008-01-14 17:46:18 -08004003 return -EAGAIN;
4004
Zhu Yib481de92007-09-25 17:54:57 -07004005 mutex_lock(&priv->mutex);
4006
Zhu Yib481de92007-09-25 17:54:57 -07004007 if (conf->bssid)
Joe Perches0795af52007-10-03 17:59:30 -07004008 IWL_DEBUG_MAC80211("bssid: %s\n",
4009 print_mac(mac, conf->bssid));
Zhu Yib481de92007-09-25 17:54:57 -07004010
Johannes Berg4150c572007-09-17 01:29:23 -04004011/*
4012 * very dubious code was here; the probe filtering flag is never set:
4013 *
Zhu Yib481de92007-09-25 17:54:57 -07004014 if (unlikely(test_bit(STATUS_SCANNING, &priv->status)) &&
4015 !(priv->hw->flags & IEEE80211_HW_NO_PROBE_FILTERING)) {
Johannes Berg4150c572007-09-17 01:29:23 -04004016 */
Zhu Yib481de92007-09-25 17:54:57 -07004017
4018 if (priv->iw_mode == IEEE80211_IF_TYPE_AP) {
4019 if (!conf->bssid) {
4020 conf->bssid = priv->mac_addr;
4021 memcpy(priv->bssid, priv->mac_addr, ETH_ALEN);
Joe Perches0795af52007-10-03 17:59:30 -07004022 IWL_DEBUG_MAC80211("bssid was set to: %s\n",
4023 print_mac(mac, conf->bssid));
Zhu Yib481de92007-09-25 17:54:57 -07004024 }
4025 if (priv->ibss_beacon)
4026 dev_kfree_skb(priv->ibss_beacon);
4027
4028 priv->ibss_beacon = conf->beacon;
4029 }
4030
Tomas Winklerfee12472008-04-03 16:05:21 -07004031 if (iwl_is_rfkill(priv))
Mohamed Abbasfde35712007-11-29 11:10:15 +08004032 goto done;
4033
Zhu Yib481de92007-09-25 17:54:57 -07004034 if (conf->bssid && !is_zero_ether_addr(conf->bssid) &&
4035 !is_multicast_ether_addr(conf->bssid)) {
4036 /* If there is currently a HW scan going on in the background
4037 * then we need to cancel it else the RXON below will fail. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004038 if (iwl4965_scan_cancel_timeout(priv, 100)) {
Zhu Yib481de92007-09-25 17:54:57 -07004039 IWL_WARNING("Aborted scan still in progress "
4040 "after 100ms\n");
4041 IWL_DEBUG_MAC80211("leaving - scan abort failed.\n");
4042 mutex_unlock(&priv->mutex);
4043 return -EAGAIN;
4044 }
4045 memcpy(priv->staging_rxon.bssid_addr, conf->bssid, ETH_ALEN);
4046
4047 /* TODO: Audit driver for usage of these members and see
4048 * if mac80211 deprecates them (priv->bssid looks like it
4049 * shouldn't be there, but I haven't scanned the IBSS code
4050 * to verify) - jpk */
4051 memcpy(priv->bssid, conf->bssid, ETH_ALEN);
4052
4053 if (priv->iw_mode == IEEE80211_IF_TYPE_AP)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004054 iwl4965_config_ap(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004055 else {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004056 rc = iwl4965_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004057 if ((priv->iw_mode == IEEE80211_IF_TYPE_STA) && rc)
Tomas Winkler4f40e4d2008-05-15 13:54:04 +08004058 iwl_rxon_add_station(
Zhu Yib481de92007-09-25 17:54:57 -07004059 priv, priv->active_rxon.bssid_addr, 1);
4060 }
4061
4062 } else {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004063 iwl4965_scan_cancel_timeout(priv, 100);
Zhu Yib481de92007-09-25 17:54:57 -07004064 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004065 iwl4965_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004066 }
4067
Mohamed Abbasfde35712007-11-29 11:10:15 +08004068 done:
Zhu Yib481de92007-09-25 17:54:57 -07004069 spin_lock_irqsave(&priv->lock, flags);
4070 if (!conf->ssid_len)
4071 memset(priv->essid, 0, IW_ESSID_MAX_SIZE);
4072 else
4073 memcpy(priv->essid, conf->ssid, conf->ssid_len);
4074
4075 priv->essid_len = conf->ssid_len;
4076 spin_unlock_irqrestore(&priv->lock, flags);
4077
4078 IWL_DEBUG_MAC80211("leave\n");
4079 mutex_unlock(&priv->mutex);
4080
4081 return 0;
4082}
4083
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004084static void iwl4965_configure_filter(struct ieee80211_hw *hw,
Johannes Berg4150c572007-09-17 01:29:23 -04004085 unsigned int changed_flags,
4086 unsigned int *total_flags,
4087 int mc_count, struct dev_addr_list *mc_list)
4088{
4089 /*
4090 * XXX: dummy
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004091 * see also iwl4965_connection_init_rx_config
Johannes Berg4150c572007-09-17 01:29:23 -04004092 */
Abhijeet Kolekar4419e392008-05-05 10:22:47 +08004093 struct iwl_priv *priv = hw->priv;
4094 int new_flags = 0;
4095 if (changed_flags & (FIF_PROMISC_IN_BSS | FIF_OTHER_BSS)) {
4096 if (*total_flags & (FIF_PROMISC_IN_BSS | FIF_OTHER_BSS)) {
4097 IWL_DEBUG_MAC80211("Enter: type %d (0x%x, 0x%x)\n",
4098 IEEE80211_IF_TYPE_MNTR,
4099 changed_flags, *total_flags);
4100 /* queue work 'cuz mac80211 is holding a lock which
4101 * prevents us from issuing (synchronous) f/w cmds */
4102 queue_work(priv->workqueue, &priv->set_monitor);
4103 new_flags &= FIF_PROMISC_IN_BSS |
4104 FIF_OTHER_BSS |
4105 FIF_ALLMULTI;
4106 }
4107 }
4108 *total_flags = new_flags;
Johannes Berg4150c572007-09-17 01:29:23 -04004109}
4110
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004111static void iwl4965_mac_remove_interface(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07004112 struct ieee80211_if_init_conf *conf)
4113{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004114 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07004115
4116 IWL_DEBUG_MAC80211("enter\n");
4117
4118 mutex_lock(&priv->mutex);
Mohamed Abbas948c1712007-10-25 17:15:45 +08004119
Tomas Winklerfee12472008-04-03 16:05:21 -07004120 if (iwl_is_ready_rf(priv)) {
Mohamed Abbasfde35712007-11-29 11:10:15 +08004121 iwl4965_scan_cancel_timeout(priv, 100);
4122 cancel_delayed_work(&priv->post_associate);
4123 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
4124 iwl4965_commit_rxon(priv);
4125 }
Johannes Berg32bfd352007-12-19 01:31:26 +01004126 if (priv->vif == conf->vif) {
4127 priv->vif = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07004128 memset(priv->bssid, 0, ETH_ALEN);
4129 memset(priv->essid, 0, IW_ESSID_MAX_SIZE);
4130 priv->essid_len = 0;
4131 }
4132 mutex_unlock(&priv->mutex);
4133
4134 IWL_DEBUG_MAC80211("leave\n");
4135
4136}
Johannes Berg471b3ef2007-12-28 14:32:58 +01004137
Tomas Winkler3109ece2008-03-28 16:33:35 -07004138#define IWL_DELAY_NEXT_SCAN_AFTER_ASSOC (HZ*6)
Johannes Berg471b3ef2007-12-28 14:32:58 +01004139static void iwl4965_bss_info_changed(struct ieee80211_hw *hw,
4140 struct ieee80211_vif *vif,
4141 struct ieee80211_bss_conf *bss_conf,
4142 u32 changes)
Tomas Winkler220173b2007-10-16 00:50:25 +02004143{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004144 struct iwl_priv *priv = hw->priv;
Tomas Winkler220173b2007-10-16 00:50:25 +02004145
Tomas Winkler3109ece2008-03-28 16:33:35 -07004146 IWL_DEBUG_MAC80211("changes = 0x%X\n", changes);
4147
Johannes Berg471b3ef2007-12-28 14:32:58 +01004148 if (changes & BSS_CHANGED_ERP_PREAMBLE) {
Tomas Winkler3109ece2008-03-28 16:33:35 -07004149 IWL_DEBUG_MAC80211("ERP_PREAMBLE %d\n",
4150 bss_conf->use_short_preamble);
Johannes Berg471b3ef2007-12-28 14:32:58 +01004151 if (bss_conf->use_short_preamble)
Tomas Winkler220173b2007-10-16 00:50:25 +02004152 priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
4153 else
4154 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
4155 }
4156
Johannes Berg471b3ef2007-12-28 14:32:58 +01004157 if (changes & BSS_CHANGED_ERP_CTS_PROT) {
Tomas Winkler3109ece2008-03-28 16:33:35 -07004158 IWL_DEBUG_MAC80211("ERP_CTS %d\n", bss_conf->use_cts_prot);
Johannes Berg8318d782008-01-24 19:38:38 +01004159 if (bss_conf->use_cts_prot && (priv->band != IEEE80211_BAND_5GHZ))
Tomas Winkler220173b2007-10-16 00:50:25 +02004160 priv->staging_rxon.flags |= RXON_FLG_TGG_PROTECT_MSK;
4161 else
4162 priv->staging_rxon.flags &= ~RXON_FLG_TGG_PROTECT_MSK;
4163 }
4164
Tomas Winkler98952d52008-03-28 16:33:33 -07004165 if (changes & BSS_CHANGED_HT) {
Tomas Winkler3109ece2008-03-28 16:33:35 -07004166 IWL_DEBUG_MAC80211("HT %d\n", bss_conf->assoc_ht);
Tomas Winkler98952d52008-03-28 16:33:33 -07004167 iwl4965_ht_conf(priv, bss_conf);
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -07004168 iwl_set_rxon_chain(priv);
Tomas Winkler98952d52008-03-28 16:33:33 -07004169 }
4170
Johannes Berg471b3ef2007-12-28 14:32:58 +01004171 if (changes & BSS_CHANGED_ASSOC) {
Tomas Winkler3109ece2008-03-28 16:33:35 -07004172 IWL_DEBUG_MAC80211("ASSOC %d\n", bss_conf->assoc);
Reinette Chatre508e32e2008-04-14 21:16:13 -07004173 /* This should never happen as this function should
4174 * never be called from interrupt context. */
4175 if (WARN_ON_ONCE(in_interrupt()))
4176 return;
Tomas Winkler3109ece2008-03-28 16:33:35 -07004177 if (bss_conf->assoc) {
4178 priv->assoc_id = bss_conf->aid;
4179 priv->beacon_int = bss_conf->beacon_int;
4180 priv->timestamp = bss_conf->timestamp;
4181 priv->assoc_capability = bss_conf->assoc_capability;
4182 priv->next_scan_jiffies = jiffies +
4183 IWL_DELAY_NEXT_SCAN_AFTER_ASSOC;
Reinette Chatre508e32e2008-04-14 21:16:13 -07004184 mutex_lock(&priv->mutex);
4185 iwl4965_post_associate(priv);
4186 mutex_unlock(&priv->mutex);
Tomas Winkler3109ece2008-03-28 16:33:35 -07004187 } else {
4188 priv->assoc_id = 0;
4189 IWL_DEBUG_MAC80211("DISASSOC %d\n", bss_conf->assoc);
4190 }
4191 } else if (changes && iwl_is_associated(priv) && priv->assoc_id) {
4192 IWL_DEBUG_MAC80211("Associated Changes %d\n", changes);
Tomas Winkler7e8c5192008-04-15 16:01:43 -07004193 iwl_send_rxon_assoc(priv);
Johannes Berg471b3ef2007-12-28 14:32:58 +01004194 }
4195
Tomas Winkler220173b2007-10-16 00:50:25 +02004196}
Zhu Yib481de92007-09-25 17:54:57 -07004197
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004198static int iwl4965_mac_hw_scan(struct ieee80211_hw *hw, u8 *ssid, size_t len)
Zhu Yib481de92007-09-25 17:54:57 -07004199{
4200 int rc = 0;
4201 unsigned long flags;
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004202 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07004203
4204 IWL_DEBUG_MAC80211("enter\n");
4205
mabbas052c4b92007-10-25 17:15:43 +08004206 mutex_lock(&priv->mutex);
Zhu Yib481de92007-09-25 17:54:57 -07004207 spin_lock_irqsave(&priv->lock, flags);
4208
Tomas Winklerfee12472008-04-03 16:05:21 -07004209 if (!iwl_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07004210 rc = -EIO;
4211 IWL_DEBUG_MAC80211("leave - not ready or exit pending\n");
4212 goto out_unlock;
4213 }
4214
4215 if (priv->iw_mode == IEEE80211_IF_TYPE_AP) { /* APs don't scan */
4216 rc = -EIO;
4217 IWL_ERROR("ERROR: APs don't scan\n");
4218 goto out_unlock;
4219 }
4220
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08004221 /* we don't schedule scan within next_scan_jiffies period */
4222 if (priv->next_scan_jiffies &&
4223 time_after(priv->next_scan_jiffies, jiffies)) {
4224 rc = -EAGAIN;
4225 goto out_unlock;
4226 }
Zhu Yib481de92007-09-25 17:54:57 -07004227 /* if we just finished scan ask for delay */
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08004228 if (priv->last_scan_jiffies && time_after(priv->last_scan_jiffies +
4229 IWL_DELAY_NEXT_SCAN, jiffies)) {
Zhu Yib481de92007-09-25 17:54:57 -07004230 rc = -EAGAIN;
4231 goto out_unlock;
4232 }
4233 if (len) {
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08004234 IWL_DEBUG_SCAN("direct scan for %s [%d]\n ",
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004235 iwl4965_escape_essid(ssid, len), (int)len);
Zhu Yib481de92007-09-25 17:54:57 -07004236
4237 priv->one_direct_scan = 1;
4238 priv->direct_ssid_len = (u8)
4239 min((u8) len, (u8) IW_ESSID_MAX_SIZE);
4240 memcpy(priv->direct_ssid, ssid, priv->direct_ssid_len);
Mohamed Abbas948c1712007-10-25 17:15:45 +08004241 } else
4242 priv->one_direct_scan = 0;
Zhu Yib481de92007-09-25 17:54:57 -07004243
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004244 rc = iwl4965_scan_initiate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004245
4246 IWL_DEBUG_MAC80211("leave\n");
4247
4248out_unlock:
4249 spin_unlock_irqrestore(&priv->lock, flags);
mabbas052c4b92007-10-25 17:15:43 +08004250 mutex_unlock(&priv->mutex);
Zhu Yib481de92007-09-25 17:54:57 -07004251
4252 return rc;
4253}
4254
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02004255static void iwl4965_mac_update_tkip_key(struct ieee80211_hw *hw,
4256 struct ieee80211_key_conf *keyconf, const u8 *addr,
4257 u32 iv32, u16 *phase1key)
4258{
4259 struct iwl_priv *priv = hw->priv;
4260 u8 sta_id = IWL_INVALID_STATION;
4261 unsigned long flags;
4262 __le16 key_flags = 0;
4263 int i;
4264 DECLARE_MAC_BUF(mac);
4265
4266 IWL_DEBUG_MAC80211("enter\n");
4267
Tomas Winkler947b13a2008-04-16 16:34:48 -07004268 sta_id = iwl_find_station(priv, addr);
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02004269 if (sta_id == IWL_INVALID_STATION) {
4270 IWL_DEBUG_MAC80211("leave - %s not in station map.\n",
4271 print_mac(mac, addr));
4272 return;
4273 }
4274
4275 iwl4965_scan_cancel_timeout(priv, 100);
4276
4277 key_flags |= (STA_KEY_FLG_TKIP | STA_KEY_FLG_MAP_KEY_MSK);
4278 key_flags |= cpu_to_le16(keyconf->keyidx << STA_KEY_FLG_KEYID_POS);
4279 key_flags &= ~STA_KEY_FLG_INVALID;
4280
Tomas Winkler5425e492008-04-15 16:01:38 -07004281 if (sta_id == priv->hw_params.bcast_sta_id)
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02004282 key_flags |= STA_KEY_MULTICAST_MSK;
4283
4284 spin_lock_irqsave(&priv->sta_lock, flags);
4285
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02004286 priv->stations[sta_id].sta.key.key_flags = key_flags;
4287 priv->stations[sta_id].sta.key.tkip_rx_tsc_byte2 = (u8) iv32;
4288
4289 for (i = 0; i < 5; i++)
4290 priv->stations[sta_id].sta.key.tkip_rx_ttak[i] =
4291 cpu_to_le16(phase1key[i]);
4292
4293 priv->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
4294 priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
4295
Tomas Winkler133636d2008-05-05 10:22:34 +08004296 iwl_send_add_sta(priv, &priv->stations[sta_id].sta, CMD_ASYNC);
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02004297
4298 spin_unlock_irqrestore(&priv->sta_lock, flags);
4299
4300 IWL_DEBUG_MAC80211("leave\n");
4301}
4302
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004303static int iwl4965_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
Zhu Yib481de92007-09-25 17:54:57 -07004304 const u8 *local_addr, const u8 *addr,
4305 struct ieee80211_key_conf *key)
4306{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004307 struct iwl_priv *priv = hw->priv;
Joe Perches0795af52007-10-03 17:59:30 -07004308 DECLARE_MAC_BUF(mac);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07004309 int ret = 0;
4310 u8 sta_id = IWL_INVALID_STATION;
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07004311 u8 is_default_wep_key = 0;
Zhu Yib481de92007-09-25 17:54:57 -07004312
4313 IWL_DEBUG_MAC80211("enter\n");
4314
Ron Rindjunsky099b40b2008-04-21 15:41:53 -07004315 if (priv->hw_params.sw_crypto) {
Zhu Yib481de92007-09-25 17:54:57 -07004316 IWL_DEBUG_MAC80211("leave - hwcrypto disabled\n");
4317 return -EOPNOTSUPP;
4318 }
4319
4320 if (is_zero_ether_addr(addr))
4321 /* only support pairwise keys */
4322 return -EOPNOTSUPP;
4323
Tomas Winkler947b13a2008-04-16 16:34:48 -07004324 sta_id = iwl_find_station(priv, addr);
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07004325 if (sta_id == IWL_INVALID_STATION) {
4326 IWL_DEBUG_MAC80211("leave - %s not in station map.\n",
4327 print_mac(mac, addr));
4328 return -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07004329
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07004330 }
Zhu Yib481de92007-09-25 17:54:57 -07004331
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07004332 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004333 iwl4965_scan_cancel_timeout(priv, 100);
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07004334 mutex_unlock(&priv->mutex);
4335
4336 /* If we are getting WEP group key and we didn't receive any key mapping
4337 * so far, we are in legacy wep mode (group key only), otherwise we are
4338 * in 1X mode.
4339 * In legacy wep mode, we use another host command to the uCode */
Tomas Winkler5425e492008-04-15 16:01:38 -07004340 if (key->alg == ALG_WEP && sta_id == priv->hw_params.bcast_sta_id &&
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07004341 priv->iw_mode != IEEE80211_IF_TYPE_AP) {
4342 if (cmd == SET_KEY)
4343 is_default_wep_key = !priv->key_mapping_key;
4344 else
Emmanuel Grumbachccc038a2008-05-15 13:54:09 +08004345 is_default_wep_key =
4346 (key->hw_key_idx == HW_KEY_DEFAULT);
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07004347 }
mabbas052c4b92007-10-25 17:15:43 +08004348
Zhu Yib481de92007-09-25 17:54:57 -07004349 switch (cmd) {
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07004350 case SET_KEY:
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07004351 if (is_default_wep_key)
4352 ret = iwl_set_default_wep_key(priv, key);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07004353 else
Emmanuel Grumbach74805132008-04-14 21:16:09 -07004354 ret = iwl_set_dynamic_key(priv, key, sta_id);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07004355
4356 IWL_DEBUG_MAC80211("enable hwcrypto key\n");
Zhu Yib481de92007-09-25 17:54:57 -07004357 break;
4358 case DISABLE_KEY:
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07004359 if (is_default_wep_key)
4360 ret = iwl_remove_default_wep_key(priv, key);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07004361 else
Emmanuel Grumbach3ec47732008-04-17 16:03:36 -07004362 ret = iwl_remove_dynamic_key(priv, key, sta_id);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07004363
4364 IWL_DEBUG_MAC80211("disable hwcrypto key\n");
Zhu Yib481de92007-09-25 17:54:57 -07004365 break;
4366 default:
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07004367 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07004368 }
4369
4370 IWL_DEBUG_MAC80211("leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07004371
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07004372 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07004373}
4374
Johannes Berge100bb62008-04-30 18:51:21 +02004375static int iwl4965_mac_conf_tx(struct ieee80211_hw *hw, u16 queue,
Zhu Yib481de92007-09-25 17:54:57 -07004376 const struct ieee80211_tx_queue_params *params)
4377{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004378 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07004379 unsigned long flags;
4380 int q;
Zhu Yib481de92007-09-25 17:54:57 -07004381
4382 IWL_DEBUG_MAC80211("enter\n");
4383
Tomas Winklerfee12472008-04-03 16:05:21 -07004384 if (!iwl_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07004385 IWL_DEBUG_MAC80211("leave - RF not ready\n");
4386 return -EIO;
4387 }
4388
4389 if (queue >= AC_NUM) {
4390 IWL_DEBUG_MAC80211("leave - queue >= AC_NUM %d\n", queue);
4391 return 0;
4392 }
4393
Zhu Yib481de92007-09-25 17:54:57 -07004394 if (!priv->qos_data.qos_enable) {
4395 priv->qos_data.qos_active = 0;
4396 IWL_DEBUG_MAC80211("leave - qos not enabled\n");
4397 return 0;
4398 }
4399 q = AC_NUM - 1 - queue;
4400
4401 spin_lock_irqsave(&priv->lock, flags);
4402
4403 priv->qos_data.def_qos_parm.ac[q].cw_min = cpu_to_le16(params->cw_min);
4404 priv->qos_data.def_qos_parm.ac[q].cw_max = cpu_to_le16(params->cw_max);
4405 priv->qos_data.def_qos_parm.ac[q].aifsn = params->aifs;
4406 priv->qos_data.def_qos_parm.ac[q].edca_txop =
Johannes Berg3330d7b2008-02-10 16:49:38 +01004407 cpu_to_le16((params->txop * 32));
Zhu Yib481de92007-09-25 17:54:57 -07004408
4409 priv->qos_data.def_qos_parm.ac[q].reserved1 = 0;
4410 priv->qos_data.qos_active = 1;
4411
4412 spin_unlock_irqrestore(&priv->lock, flags);
4413
4414 mutex_lock(&priv->mutex);
4415 if (priv->iw_mode == IEEE80211_IF_TYPE_AP)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004416 iwl4965_activate_qos(priv, 1);
Tomas Winkler3109ece2008-03-28 16:33:35 -07004417 else if (priv->assoc_id && iwl_is_associated(priv))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004418 iwl4965_activate_qos(priv, 0);
Zhu Yib481de92007-09-25 17:54:57 -07004419
4420 mutex_unlock(&priv->mutex);
4421
Zhu Yib481de92007-09-25 17:54:57 -07004422 IWL_DEBUG_MAC80211("leave\n");
4423 return 0;
4424}
4425
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004426static int iwl4965_mac_get_tx_stats(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07004427 struct ieee80211_tx_queue_stats *stats)
4428{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004429 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07004430 int i, avail;
Ron Rindjunsky16466902008-05-05 10:22:50 +08004431 struct iwl_tx_queue *txq;
Tomas Winkler443cfd42008-05-15 13:53:57 +08004432 struct iwl_queue *q;
Zhu Yib481de92007-09-25 17:54:57 -07004433 unsigned long flags;
4434
4435 IWL_DEBUG_MAC80211("enter\n");
4436
Tomas Winklerfee12472008-04-03 16:05:21 -07004437 if (!iwl_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07004438 IWL_DEBUG_MAC80211("leave - RF not ready\n");
4439 return -EIO;
4440 }
4441
4442 spin_lock_irqsave(&priv->lock, flags);
4443
4444 for (i = 0; i < AC_NUM; i++) {
4445 txq = &priv->txq[i];
4446 q = &txq->q;
Tomas Winkler443cfd42008-05-15 13:53:57 +08004447 avail = iwl_queue_space(q);
Zhu Yib481de92007-09-25 17:54:57 -07004448
Johannes Berg57ffc582008-04-29 17:18:59 +02004449 stats[i].len = q->n_window - avail;
4450 stats[i].limit = q->n_window - q->high_mark;
4451 stats[i].count = q->n_window;
Zhu Yib481de92007-09-25 17:54:57 -07004452
4453 }
4454 spin_unlock_irqrestore(&priv->lock, flags);
4455
4456 IWL_DEBUG_MAC80211("leave\n");
4457
4458 return 0;
4459}
4460
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004461static int iwl4965_mac_get_stats(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07004462 struct ieee80211_low_level_stats *stats)
4463{
Ester Kummerbf403db2008-05-05 10:22:40 +08004464 struct iwl_priv *priv = hw->priv;
4465
4466 priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07004467 IWL_DEBUG_MAC80211("enter\n");
4468 IWL_DEBUG_MAC80211("leave\n");
4469
4470 return 0;
4471}
4472
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004473static u64 iwl4965_mac_get_tsf(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07004474{
Ester Kummerbf403db2008-05-05 10:22:40 +08004475 struct iwl_priv *priv;
4476
4477 priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07004478 IWL_DEBUG_MAC80211("enter\n");
4479 IWL_DEBUG_MAC80211("leave\n");
4480
4481 return 0;
4482}
4483
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004484static void iwl4965_mac_reset_tsf(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07004485{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004486 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07004487 unsigned long flags;
4488
4489 mutex_lock(&priv->mutex);
4490 IWL_DEBUG_MAC80211("enter\n");
4491
4492 priv->lq_mngr.lq_ready = 0;
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08004493#ifdef CONFIG_IWL4965_HT
Zhu Yib481de92007-09-25 17:54:57 -07004494 spin_lock_irqsave(&priv->lock, flags);
Ron Rindjunskyfd105e72007-11-26 16:14:39 +02004495 memset(&priv->current_ht_config, 0, sizeof(struct iwl_ht_info));
Zhu Yib481de92007-09-25 17:54:57 -07004496 spin_unlock_irqrestore(&priv->lock, flags);
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08004497#endif /* CONFIG_IWL4965_HT */
Zhu Yib481de92007-09-25 17:54:57 -07004498
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -07004499 iwl_reset_qos(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004500
4501 cancel_delayed_work(&priv->post_associate);
4502
4503 spin_lock_irqsave(&priv->lock, flags);
4504 priv->assoc_id = 0;
4505 priv->assoc_capability = 0;
Zhu Yib481de92007-09-25 17:54:57 -07004506 priv->assoc_station_added = 0;
4507
4508 /* new association get rid of ibss beacon skb */
4509 if (priv->ibss_beacon)
4510 dev_kfree_skb(priv->ibss_beacon);
4511
4512 priv->ibss_beacon = NULL;
4513
4514 priv->beacon_int = priv->hw->conf.beacon_int;
Tomas Winkler3109ece2008-03-28 16:33:35 -07004515 priv->timestamp = 0;
Zhu Yib481de92007-09-25 17:54:57 -07004516 if ((priv->iw_mode == IEEE80211_IF_TYPE_STA))
4517 priv->beacon_int = 0;
4518
4519 spin_unlock_irqrestore(&priv->lock, flags);
4520
Tomas Winklerfee12472008-04-03 16:05:21 -07004521 if (!iwl_is_ready_rf(priv)) {
Mohamed Abbasfde35712007-11-29 11:10:15 +08004522 IWL_DEBUG_MAC80211("leave - not ready\n");
4523 mutex_unlock(&priv->mutex);
4524 return;
4525 }
4526
mabbas052c4b92007-10-25 17:15:43 +08004527 /* we are restarting association process
4528 * clear RXON_FILTER_ASSOC_MSK bit
4529 */
4530 if (priv->iw_mode != IEEE80211_IF_TYPE_AP) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004531 iwl4965_scan_cancel_timeout(priv, 100);
mabbas052c4b92007-10-25 17:15:43 +08004532 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004533 iwl4965_commit_rxon(priv);
mabbas052c4b92007-10-25 17:15:43 +08004534 }
4535
Mohamed Abbas5da4b552008-04-21 15:41:51 -07004536 iwl_power_update_mode(priv, 0);
4537
Zhu Yib481de92007-09-25 17:54:57 -07004538 /* Per mac80211.h: This is only used in IBSS mode... */
4539 if (priv->iw_mode != IEEE80211_IF_TYPE_IBSS) {
mabbas052c4b92007-10-25 17:15:43 +08004540
Zhu Yib481de92007-09-25 17:54:57 -07004541 IWL_DEBUG_MAC80211("leave - not in IBSS\n");
4542 mutex_unlock(&priv->mutex);
4543 return;
4544 }
4545
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004546 iwl4965_set_rate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004547
4548 mutex_unlock(&priv->mutex);
4549
4550 IWL_DEBUG_MAC80211("leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07004551}
4552
Johannes Berge039fa42008-05-15 12:55:29 +02004553static int iwl4965_mac_beacon_update(struct ieee80211_hw *hw, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07004554{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004555 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07004556 unsigned long flags;
4557
4558 mutex_lock(&priv->mutex);
4559 IWL_DEBUG_MAC80211("enter\n");
4560
Tomas Winklerfee12472008-04-03 16:05:21 -07004561 if (!iwl_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07004562 IWL_DEBUG_MAC80211("leave - RF not ready\n");
4563 mutex_unlock(&priv->mutex);
4564 return -EIO;
4565 }
4566
4567 if (priv->iw_mode != IEEE80211_IF_TYPE_IBSS) {
4568 IWL_DEBUG_MAC80211("leave - not IBSS\n");
4569 mutex_unlock(&priv->mutex);
4570 return -EIO;
4571 }
4572
4573 spin_lock_irqsave(&priv->lock, flags);
4574
4575 if (priv->ibss_beacon)
4576 dev_kfree_skb(priv->ibss_beacon);
4577
4578 priv->ibss_beacon = skb;
4579
4580 priv->assoc_id = 0;
4581
4582 IWL_DEBUG_MAC80211("leave\n");
4583 spin_unlock_irqrestore(&priv->lock, flags);
4584
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -07004585 iwl_reset_qos(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004586
4587 queue_work(priv->workqueue, &priv->post_associate.work);
4588
4589 mutex_unlock(&priv->mutex);
4590
4591 return 0;
4592}
4593
Zhu Yib481de92007-09-25 17:54:57 -07004594/*****************************************************************************
4595 *
4596 * sysfs attributes
4597 *
4598 *****************************************************************************/
4599
Tomas Winkler0a6857e2008-03-12 16:58:49 -07004600#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07004601
4602/*
4603 * The following adds a new attribute to the sysfs representation
4604 * of this device driver (i.e. a new file in /sys/bus/pci/drivers/iwl/)
4605 * used for controlling the debug level.
4606 *
4607 * See the level definitions in iwl for details.
4608 */
4609
Ester Kummer8cf769c2008-05-06 11:05:11 +08004610static ssize_t show_debug_level(struct device *d,
4611 struct device_attribute *attr, char *buf)
Zhu Yib481de92007-09-25 17:54:57 -07004612{
Ester Kummer8cf769c2008-05-06 11:05:11 +08004613 struct iwl_priv *priv = d->driver_data;
4614
4615 return sprintf(buf, "0x%08X\n", priv->debug_level);
Zhu Yib481de92007-09-25 17:54:57 -07004616}
Ester Kummer8cf769c2008-05-06 11:05:11 +08004617static ssize_t store_debug_level(struct device *d,
4618 struct device_attribute *attr,
Zhu Yib481de92007-09-25 17:54:57 -07004619 const char *buf, size_t count)
4620{
Ester Kummer8cf769c2008-05-06 11:05:11 +08004621 struct iwl_priv *priv = d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07004622 char *p = (char *)buf;
4623 u32 val;
4624
4625 val = simple_strtoul(p, &p, 0);
4626 if (p == buf)
4627 printk(KERN_INFO DRV_NAME
4628 ": %s is not in hex or decimal form.\n", buf);
4629 else
Ester Kummer8cf769c2008-05-06 11:05:11 +08004630 priv->debug_level = val;
Zhu Yib481de92007-09-25 17:54:57 -07004631
4632 return strnlen(buf, count);
4633}
4634
Ester Kummer8cf769c2008-05-06 11:05:11 +08004635static DEVICE_ATTR(debug_level, S_IWUSR | S_IRUGO,
4636 show_debug_level, store_debug_level);
4637
Zhu Yib481de92007-09-25 17:54:57 -07004638
Tomas Winkler0a6857e2008-03-12 16:58:49 -07004639#endif /* CONFIG_IWLWIFI_DEBUG */
Zhu Yib481de92007-09-25 17:54:57 -07004640
Zhu Yib481de92007-09-25 17:54:57 -07004641
Tomas Winklerbc6f59b2008-05-06 11:05:13 +08004642static ssize_t show_version(struct device *d,
4643 struct device_attribute *attr, char *buf)
4644{
4645 struct iwl_priv *priv = d->driver_data;
Tomas Winkler885ba202008-05-29 16:34:55 +08004646 struct iwl_alive_resp *palive = &priv->card_alive;
Tomas Winklerbc6f59b2008-05-06 11:05:13 +08004647
4648 if (palive->is_valid)
4649 return sprintf(buf, "fw version: 0x%01X.0x%01X.0x%01X.0x%01X\n"
4650 "fw type: 0x%01X 0x%01X\n",
4651 palive->ucode_major, palive->ucode_minor,
4652 palive->sw_rev[0], palive->sw_rev[1],
4653 palive->ver_type, palive->ver_subtype);
4654
4655 else
4656 return sprintf(buf, "fw not loaded\n");
4657}
4658
4659static DEVICE_ATTR(version, S_IWUSR | S_IRUGO, show_version, NULL);
4660
Zhu Yib481de92007-09-25 17:54:57 -07004661static ssize_t show_temperature(struct device *d,
4662 struct device_attribute *attr, char *buf)
4663{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004664 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07004665
Tomas Winklerfee12472008-04-03 16:05:21 -07004666 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07004667 return -EAGAIN;
4668
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004669 return sprintf(buf, "%d\n", iwl4965_hw_get_temperature(priv));
Zhu Yib481de92007-09-25 17:54:57 -07004670}
4671
4672static DEVICE_ATTR(temperature, S_IRUGO, show_temperature, NULL);
4673
4674static ssize_t show_rs_window(struct device *d,
4675 struct device_attribute *attr,
4676 char *buf)
4677{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004678 struct iwl_priv *priv = d->driver_data;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004679 return iwl4965_fill_rs_info(priv->hw, buf, IWL_AP_ID);
Zhu Yib481de92007-09-25 17:54:57 -07004680}
4681static DEVICE_ATTR(rs_window, S_IRUGO, show_rs_window, NULL);
4682
4683static ssize_t show_tx_power(struct device *d,
4684 struct device_attribute *attr, char *buf)
4685{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004686 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07004687 return sprintf(buf, "%d\n", priv->user_txpower_limit);
4688}
4689
4690static ssize_t store_tx_power(struct device *d,
4691 struct device_attribute *attr,
4692 const char *buf, size_t count)
4693{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004694 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07004695 char *p = (char *)buf;
4696 u32 val;
4697
4698 val = simple_strtoul(p, &p, 10);
4699 if (p == buf)
4700 printk(KERN_INFO DRV_NAME
4701 ": %s is not in decimal form.\n", buf);
4702 else
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004703 iwl4965_hw_reg_set_txpower(priv, val);
Zhu Yib481de92007-09-25 17:54:57 -07004704
4705 return count;
4706}
4707
4708static DEVICE_ATTR(tx_power, S_IWUSR | S_IRUGO, show_tx_power, store_tx_power);
4709
4710static ssize_t show_flags(struct device *d,
4711 struct device_attribute *attr, char *buf)
4712{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004713 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07004714
4715 return sprintf(buf, "0x%04X\n", priv->active_rxon.flags);
4716}
4717
4718static ssize_t store_flags(struct device *d,
4719 struct device_attribute *attr,
4720 const char *buf, size_t count)
4721{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004722 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07004723 u32 flags = simple_strtoul(buf, NULL, 0);
4724
4725 mutex_lock(&priv->mutex);
4726 if (le32_to_cpu(priv->staging_rxon.flags) != flags) {
4727 /* Cancel any currently running scans... */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004728 if (iwl4965_scan_cancel_timeout(priv, 100))
Zhu Yib481de92007-09-25 17:54:57 -07004729 IWL_WARNING("Could not cancel scan.\n");
4730 else {
4731 IWL_DEBUG_INFO("Committing rxon.flags = 0x%04X\n",
4732 flags);
4733 priv->staging_rxon.flags = cpu_to_le32(flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004734 iwl4965_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004735 }
4736 }
4737 mutex_unlock(&priv->mutex);
4738
4739 return count;
4740}
4741
4742static DEVICE_ATTR(flags, S_IWUSR | S_IRUGO, show_flags, store_flags);
4743
4744static ssize_t show_filter_flags(struct device *d,
4745 struct device_attribute *attr, char *buf)
4746{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004747 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07004748
4749 return sprintf(buf, "0x%04X\n",
4750 le32_to_cpu(priv->active_rxon.filter_flags));
4751}
4752
4753static ssize_t store_filter_flags(struct device *d,
4754 struct device_attribute *attr,
4755 const char *buf, size_t count)
4756{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004757 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07004758 u32 filter_flags = simple_strtoul(buf, NULL, 0);
4759
4760 mutex_lock(&priv->mutex);
4761 if (le32_to_cpu(priv->staging_rxon.filter_flags) != filter_flags) {
4762 /* Cancel any currently running scans... */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004763 if (iwl4965_scan_cancel_timeout(priv, 100))
Zhu Yib481de92007-09-25 17:54:57 -07004764 IWL_WARNING("Could not cancel scan.\n");
4765 else {
4766 IWL_DEBUG_INFO("Committing rxon.filter_flags = "
4767 "0x%04X\n", filter_flags);
4768 priv->staging_rxon.filter_flags =
4769 cpu_to_le32(filter_flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004770 iwl4965_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004771 }
4772 }
4773 mutex_unlock(&priv->mutex);
4774
4775 return count;
4776}
4777
4778static DEVICE_ATTR(filter_flags, S_IWUSR | S_IRUGO, show_filter_flags,
4779 store_filter_flags);
4780
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08004781#ifdef CONFIG_IWL4965_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -07004782
4783static ssize_t show_measurement(struct device *d,
4784 struct device_attribute *attr, char *buf)
4785{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004786 struct iwl_priv *priv = dev_get_drvdata(d);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004787 struct iwl4965_spectrum_notification measure_report;
Zhu Yib481de92007-09-25 17:54:57 -07004788 u32 size = sizeof(measure_report), len = 0, ofs = 0;
4789 u8 *data = (u8 *) & measure_report;
4790 unsigned long flags;
4791
4792 spin_lock_irqsave(&priv->lock, flags);
4793 if (!(priv->measurement_status & MEASUREMENT_READY)) {
4794 spin_unlock_irqrestore(&priv->lock, flags);
4795 return 0;
4796 }
4797 memcpy(&measure_report, &priv->measure_report, size);
4798 priv->measurement_status = 0;
4799 spin_unlock_irqrestore(&priv->lock, flags);
4800
4801 while (size && (PAGE_SIZE - len)) {
4802 hex_dump_to_buffer(data + ofs, size, 16, 1, buf + len,
4803 PAGE_SIZE - len, 1);
4804 len = strlen(buf);
4805 if (PAGE_SIZE - len)
4806 buf[len++] = '\n';
4807
4808 ofs += 16;
4809 size -= min(size, 16U);
4810 }
4811
4812 return len;
4813}
4814
4815static ssize_t store_measurement(struct device *d,
4816 struct device_attribute *attr,
4817 const char *buf, size_t count)
4818{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004819 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07004820 struct ieee80211_measurement_params params = {
4821 .channel = le16_to_cpu(priv->active_rxon.channel),
4822 .start_time = cpu_to_le64(priv->last_tsf),
4823 .duration = cpu_to_le16(1),
4824 };
4825 u8 type = IWL_MEASURE_BASIC;
4826 u8 buffer[32];
4827 u8 channel;
4828
4829 if (count) {
4830 char *p = buffer;
4831 strncpy(buffer, buf, min(sizeof(buffer), count));
4832 channel = simple_strtoul(p, NULL, 0);
4833 if (channel)
4834 params.channel = channel;
4835
4836 p = buffer;
4837 while (*p && *p != ' ')
4838 p++;
4839 if (*p)
4840 type = simple_strtoul(p + 1, NULL, 0);
4841 }
4842
4843 IWL_DEBUG_INFO("Invoking measurement of type %d on "
4844 "channel %d (for '%s')\n", type, params.channel, buf);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004845 iwl4965_get_measurement(priv, &params, type);
Zhu Yib481de92007-09-25 17:54:57 -07004846
4847 return count;
4848}
4849
4850static DEVICE_ATTR(measurement, S_IRUSR | S_IWUSR,
4851 show_measurement, store_measurement);
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08004852#endif /* CONFIG_IWL4965_SPECTRUM_MEASUREMENT */
Zhu Yib481de92007-09-25 17:54:57 -07004853
4854static ssize_t store_retry_rate(struct device *d,
4855 struct device_attribute *attr,
4856 const char *buf, size_t count)
4857{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004858 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07004859
4860 priv->retry_rate = simple_strtoul(buf, NULL, 0);
4861 if (priv->retry_rate <= 0)
4862 priv->retry_rate = 1;
4863
4864 return count;
4865}
4866
4867static ssize_t show_retry_rate(struct device *d,
4868 struct device_attribute *attr, char *buf)
4869{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004870 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07004871 return sprintf(buf, "%d", priv->retry_rate);
4872}
4873
4874static DEVICE_ATTR(retry_rate, S_IWUSR | S_IRUSR, show_retry_rate,
4875 store_retry_rate);
4876
4877static ssize_t store_power_level(struct device *d,
4878 struct device_attribute *attr,
4879 const char *buf, size_t count)
4880{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004881 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07004882 int rc;
4883 int mode;
4884
4885 mode = simple_strtoul(buf, NULL, 0);
4886 mutex_lock(&priv->mutex);
4887
Tomas Winklerfee12472008-04-03 16:05:21 -07004888 if (!iwl_is_ready(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07004889 rc = -EAGAIN;
4890 goto out;
4891 }
4892
Mohamed Abbas5da4b552008-04-21 15:41:51 -07004893 rc = iwl_power_set_user_mode(priv, mode);
4894 if (rc) {
4895 IWL_DEBUG_MAC80211("failed setting power mode.\n");
4896 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07004897 }
Zhu Yib481de92007-09-25 17:54:57 -07004898 rc = count;
4899
4900 out:
4901 mutex_unlock(&priv->mutex);
4902 return rc;
4903}
4904
4905#define MAX_WX_STRING 80
4906
4907/* Values are in microsecond */
4908static const s32 timeout_duration[] = {
4909 350000,
4910 250000,
4911 75000,
4912 37000,
4913 25000,
4914};
4915static const s32 period_duration[] = {
4916 400000,
4917 700000,
4918 1000000,
4919 1000000,
4920 1000000
4921};
4922
4923static ssize_t show_power_level(struct device *d,
4924 struct device_attribute *attr, char *buf)
4925{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004926 struct iwl_priv *priv = dev_get_drvdata(d);
Mohamed Abbas5da4b552008-04-21 15:41:51 -07004927 int level = priv->power_data.power_mode;
Zhu Yib481de92007-09-25 17:54:57 -07004928 char *p = buf;
4929
4930 p += sprintf(p, "%d ", level);
4931 switch (level) {
4932 case IWL_POWER_MODE_CAM:
4933 case IWL_POWER_AC:
4934 p += sprintf(p, "(AC)");
4935 break;
4936 case IWL_POWER_BATTERY:
4937 p += sprintf(p, "(BATTERY)");
4938 break;
4939 default:
4940 p += sprintf(p,
4941 "(Timeout %dms, Period %dms)",
4942 timeout_duration[level - 1] / 1000,
4943 period_duration[level - 1] / 1000);
4944 }
Mohamed Abbas5da4b552008-04-21 15:41:51 -07004945/*
Zhu Yib481de92007-09-25 17:54:57 -07004946 if (!(priv->power_mode & IWL_POWER_ENABLED))
4947 p += sprintf(p, " OFF\n");
4948 else
4949 p += sprintf(p, " \n");
Mohamed Abbas5da4b552008-04-21 15:41:51 -07004950*/
4951 p += sprintf(p, " \n");
Zhu Yib481de92007-09-25 17:54:57 -07004952 return (p - buf + 1);
Zhu Yib481de92007-09-25 17:54:57 -07004953}
4954
4955static DEVICE_ATTR(power_level, S_IWUSR | S_IRUSR, show_power_level,
4956 store_power_level);
4957
4958static ssize_t show_channels(struct device *d,
4959 struct device_attribute *attr, char *buf)
4960{
Johannes Berg8318d782008-01-24 19:38:38 +01004961 /* all this shit doesn't belong into sysfs anyway */
4962 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07004963}
4964
4965static DEVICE_ATTR(channels, S_IRUSR, show_channels, NULL);
4966
4967static ssize_t show_statistics(struct device *d,
4968 struct device_attribute *attr, char *buf)
4969{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004970 struct iwl_priv *priv = dev_get_drvdata(d);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004971 u32 size = sizeof(struct iwl4965_notif_statistics);
Zhu Yib481de92007-09-25 17:54:57 -07004972 u32 len = 0, ofs = 0;
4973 u8 *data = (u8 *) & priv->statistics;
4974 int rc = 0;
4975
Tomas Winklerfee12472008-04-03 16:05:21 -07004976 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07004977 return -EAGAIN;
4978
4979 mutex_lock(&priv->mutex);
Emmanuel Grumbach49ea8592008-04-15 16:01:37 -07004980 rc = iwl_send_statistics_request(priv, 0);
Zhu Yib481de92007-09-25 17:54:57 -07004981 mutex_unlock(&priv->mutex);
4982
4983 if (rc) {
4984 len = sprintf(buf,
4985 "Error sending statistics request: 0x%08X\n", rc);
4986 return len;
4987 }
4988
4989 while (size && (PAGE_SIZE - len)) {
4990 hex_dump_to_buffer(data + ofs, size, 16, 1, buf + len,
4991 PAGE_SIZE - len, 1);
4992 len = strlen(buf);
4993 if (PAGE_SIZE - len)
4994 buf[len++] = '\n';
4995
4996 ofs += 16;
4997 size -= min(size, 16U);
4998 }
4999
5000 return len;
5001}
5002
5003static DEVICE_ATTR(statistics, S_IRUGO, show_statistics, NULL);
5004
Zhu Yib481de92007-09-25 17:54:57 -07005005static ssize_t show_status(struct device *d,
5006 struct device_attribute *attr, char *buf)
5007{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07005008 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Tomas Winklerfee12472008-04-03 16:05:21 -07005009 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07005010 return -EAGAIN;
5011 return sprintf(buf, "0x%08x\n", (int)priv->status);
5012}
5013
5014static DEVICE_ATTR(status, S_IRUGO, show_status, NULL);
5015
Zhu Yib481de92007-09-25 17:54:57 -07005016/*****************************************************************************
5017 *
5018 * driver setup and teardown
5019 *
5020 *****************************************************************************/
5021
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07005022static void iwl4965_setup_deferred_work(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005023{
5024 priv->workqueue = create_workqueue(DRV_NAME);
5025
5026 init_waitqueue_head(&priv->wait_command_queue);
5027
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005028 INIT_WORK(&priv->up, iwl4965_bg_up);
5029 INIT_WORK(&priv->restart, iwl4965_bg_restart);
5030 INIT_WORK(&priv->rx_replenish, iwl4965_bg_rx_replenish);
5031 INIT_WORK(&priv->scan_completed, iwl4965_bg_scan_completed);
5032 INIT_WORK(&priv->request_scan, iwl4965_bg_request_scan);
5033 INIT_WORK(&priv->abort_scan, iwl4965_bg_abort_scan);
5034 INIT_WORK(&priv->rf_kill, iwl4965_bg_rf_kill);
5035 INIT_WORK(&priv->beacon_update, iwl4965_bg_beacon_update);
Abhijeet Kolekar4419e392008-05-05 10:22:47 +08005036 INIT_WORK(&priv->set_monitor, iwl4965_bg_set_monitor);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005037 INIT_DELAYED_WORK(&priv->post_associate, iwl4965_bg_post_associate);
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08005038 INIT_DELAYED_WORK(&priv->init_alive_start, iwl_bg_init_alive_start);
5039 INIT_DELAYED_WORK(&priv->alive_start, iwl_bg_alive_start);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005040 INIT_DELAYED_WORK(&priv->scan_check, iwl4965_bg_scan_check);
Zhu Yib481de92007-09-25 17:54:57 -07005041
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005042 iwl4965_hw_setup_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005043
5044 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005045 iwl4965_irq_tasklet, (unsigned long)priv);
Zhu Yib481de92007-09-25 17:54:57 -07005046}
5047
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07005048static void iwl4965_cancel_deferred_work(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005049{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005050 iwl4965_hw_cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005051
Joonwoo Park3ae6a052007-11-29 10:43:16 +09005052 cancel_delayed_work_sync(&priv->init_alive_start);
Zhu Yib481de92007-09-25 17:54:57 -07005053 cancel_delayed_work(&priv->scan_check);
5054 cancel_delayed_work(&priv->alive_start);
5055 cancel_delayed_work(&priv->post_associate);
5056 cancel_work_sync(&priv->beacon_update);
5057}
5058
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005059static struct attribute *iwl4965_sysfs_entries[] = {
Zhu Yib481de92007-09-25 17:54:57 -07005060 &dev_attr_channels.attr,
Zhu Yib481de92007-09-25 17:54:57 -07005061 &dev_attr_flags.attr,
5062 &dev_attr_filter_flags.attr,
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08005063#ifdef CONFIG_IWL4965_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -07005064 &dev_attr_measurement.attr,
5065#endif
5066 &dev_attr_power_level.attr,
5067 &dev_attr_retry_rate.attr,
Zhu Yib481de92007-09-25 17:54:57 -07005068 &dev_attr_rs_window.attr,
5069 &dev_attr_statistics.attr,
5070 &dev_attr_status.attr,
5071 &dev_attr_temperature.attr,
Zhu Yib481de92007-09-25 17:54:57 -07005072 &dev_attr_tx_power.attr,
Ester Kummer8cf769c2008-05-06 11:05:11 +08005073#ifdef CONFIG_IWLWIFI_DEBUG
5074 &dev_attr_debug_level.attr,
5075#endif
Tomas Winklerbc6f59b2008-05-06 11:05:13 +08005076 &dev_attr_version.attr,
Zhu Yib481de92007-09-25 17:54:57 -07005077
5078 NULL
5079};
5080
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005081static struct attribute_group iwl4965_attribute_group = {
Zhu Yib481de92007-09-25 17:54:57 -07005082 .name = NULL, /* put in device directory */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005083 .attrs = iwl4965_sysfs_entries,
Zhu Yib481de92007-09-25 17:54:57 -07005084};
5085
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005086static struct ieee80211_ops iwl4965_hw_ops = {
5087 .tx = iwl4965_mac_tx,
5088 .start = iwl4965_mac_start,
5089 .stop = iwl4965_mac_stop,
5090 .add_interface = iwl4965_mac_add_interface,
5091 .remove_interface = iwl4965_mac_remove_interface,
5092 .config = iwl4965_mac_config,
5093 .config_interface = iwl4965_mac_config_interface,
5094 .configure_filter = iwl4965_configure_filter,
5095 .set_key = iwl4965_mac_set_key,
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02005096 .update_tkip_key = iwl4965_mac_update_tkip_key,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005097 .get_stats = iwl4965_mac_get_stats,
5098 .get_tx_stats = iwl4965_mac_get_tx_stats,
5099 .conf_tx = iwl4965_mac_conf_tx,
5100 .get_tsf = iwl4965_mac_get_tsf,
5101 .reset_tsf = iwl4965_mac_reset_tsf,
5102 .beacon_update = iwl4965_mac_beacon_update,
Johannes Berg471b3ef2007-12-28 14:32:58 +01005103 .bss_info_changed = iwl4965_bss_info_changed,
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08005104#ifdef CONFIG_IWL4965_HT
Ron Rindjunsky9ab46172007-12-25 17:00:38 +02005105 .ampdu_action = iwl4965_mac_ampdu_action,
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08005106#endif /* CONFIG_IWL4965_HT */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005107 .hw_scan = iwl4965_mac_hw_scan
Zhu Yib481de92007-09-25 17:54:57 -07005108};
5109
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005110static int iwl4965_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
Zhu Yib481de92007-09-25 17:54:57 -07005111{
5112 int err = 0;
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07005113 struct iwl_priv *priv;
Zhu Yib481de92007-09-25 17:54:57 -07005114 struct ieee80211_hw *hw;
Tomas Winkler82b9a122008-03-04 18:09:30 -08005115 struct iwl_cfg *cfg = (struct iwl_cfg *)(ent->driver_data);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07005116 unsigned long flags;
Zhu Yi5a66926a2008-01-14 17:46:18 -08005117 DECLARE_MAC_BUF(mac);
Zhu Yib481de92007-09-25 17:54:57 -07005118
Assaf Krauss316c30d2008-03-14 10:38:46 -07005119 /************************
5120 * 1. Allocating HW data
5121 ************************/
5122
Cahill, Ben M6440adb2007-11-29 11:09:55 +08005123 /* Disabling hardware scan means that mac80211 will perform scans
5124 * "the hard way", rather than using device's scan. */
Assaf Krauss1ea87392008-03-18 14:57:50 -07005125 if (cfg->mod_params->disable_hw_scan) {
Ester Kummerbf403db2008-05-05 10:22:40 +08005126 if (cfg->mod_params->debug & IWL_DL_INFO)
5127 dev_printk(KERN_DEBUG, &(pdev->dev),
5128 "Disabling hw_scan\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005129 iwl4965_hw_ops.hw_scan = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07005130 }
5131
Assaf Krauss1d0a0822008-03-14 10:38:48 -07005132 hw = iwl_alloc_all(cfg, &iwl4965_hw_ops);
5133 if (!hw) {
Zhu Yib481de92007-09-25 17:54:57 -07005134 err = -ENOMEM;
5135 goto out;
5136 }
Assaf Krauss1d0a0822008-03-14 10:38:48 -07005137 priv = hw->priv;
5138 /* At this point both hw and priv are allocated. */
5139
Zhu Yib481de92007-09-25 17:54:57 -07005140 SET_IEEE80211_DEV(hw, &pdev->dev);
5141
5142 IWL_DEBUG_INFO("*** LOAD DRIVER ***\n");
Tomas Winkler82b9a122008-03-04 18:09:30 -08005143 priv->cfg = cfg;
Zhu Yib481de92007-09-25 17:54:57 -07005144 priv->pci_dev = pdev;
Assaf Krauss316c30d2008-03-14 10:38:46 -07005145
Tomas Winkler0a6857e2008-03-12 16:58:49 -07005146#ifdef CONFIG_IWLWIFI_DEBUG
Ester Kummerbf403db2008-05-05 10:22:40 +08005147 priv->debug_level = priv->cfg->mod_params->debug;
Zhu Yib481de92007-09-25 17:54:57 -07005148 atomic_set(&priv->restrict_refcnt, 0);
5149#endif
Zhu Yib481de92007-09-25 17:54:57 -07005150
Assaf Krauss316c30d2008-03-14 10:38:46 -07005151 /**************************
5152 * 2. Initializing PCI bus
5153 **************************/
5154 if (pci_enable_device(pdev)) {
5155 err = -ENODEV;
5156 goto out_ieee80211_free_hw;
5157 }
5158
5159 pci_set_master(pdev);
5160
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07005161 err = pci_set_dma_mask(pdev, DMA_64BIT_MASK);
Assaf Krauss316c30d2008-03-14 10:38:46 -07005162 if (!err)
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07005163 err = pci_set_consistent_dma_mask(pdev, DMA_64BIT_MASK);
5164 if (err) {
5165 err = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
5166 if (!err)
5167 err = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK);
5168 /* both attempts failed: */
Assaf Krauss316c30d2008-03-14 10:38:46 -07005169 if (err) {
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07005170 printk(KERN_WARNING "%s: No suitable DMA available.\n",
5171 DRV_NAME);
Assaf Krauss316c30d2008-03-14 10:38:46 -07005172 goto out_pci_disable_device;
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07005173 }
Assaf Krauss316c30d2008-03-14 10:38:46 -07005174 }
5175
5176 err = pci_request_regions(pdev, DRV_NAME);
5177 if (err)
5178 goto out_pci_disable_device;
5179
5180 pci_set_drvdata(pdev, priv);
5181
5182 /* We disable the RETRY_TIMEOUT register (0x41) to keep
5183 * PCI Tx retries from interfering with C3 CPU state */
5184 pci_write_config_byte(pdev, 0x41, 0x00);
5185
5186 /***********************
5187 * 3. Read REV register
5188 ***********************/
5189 priv->hw_base = pci_iomap(pdev, 0, 0);
5190 if (!priv->hw_base) {
5191 err = -ENODEV;
5192 goto out_pci_release_regions;
5193 }
5194
5195 IWL_DEBUG_INFO("pci_resource_len = 0x%08llx\n",
5196 (unsigned long long) pci_resource_len(pdev, 0));
5197 IWL_DEBUG_INFO("pci_resource_base = %p\n", priv->hw_base);
5198
Tomas Winklerb661c812008-04-23 17:14:54 -07005199 iwl_hw_detect(priv);
Assaf Krauss316c30d2008-03-14 10:38:46 -07005200 printk(KERN_INFO DRV_NAME
Tomas Winklerb661c812008-04-23 17:14:54 -07005201 ": Detected Intel Wireless WiFi Link %s REV=0x%X\n",
5202 priv->cfg->name, priv->hw_rev);
Assaf Krauss316c30d2008-03-14 10:38:46 -07005203
Tomas Winkler91238712008-04-23 17:14:53 -07005204 /* amp init */
5205 err = priv->cfg->ops->lib->apm_ops.init(priv);
5206 if (err < 0) {
5207 IWL_DEBUG_INFO("Failed to init APMG\n");
5208 goto out_iounmap;
5209 }
Assaf Krauss316c30d2008-03-14 10:38:46 -07005210 /*****************
5211 * 4. Read EEPROM
5212 *****************/
Assaf Krauss316c30d2008-03-14 10:38:46 -07005213 /* Read the EEPROM */
5214 err = iwl_eeprom_init(priv);
5215 if (err) {
5216 IWL_ERROR("Unable to init EEPROM\n");
5217 goto out_iounmap;
5218 }
Tomas Winkler8614f362008-04-23 17:14:55 -07005219 err = iwl_eeprom_check_version(priv);
5220 if (err)
5221 goto out_iounmap;
5222
Ron Rindjunsky02883012008-05-15 13:53:53 +08005223 /* extract MAC Address */
Assaf Krauss316c30d2008-03-14 10:38:46 -07005224 iwl_eeprom_get_mac(priv, priv->mac_addr);
5225 IWL_DEBUG_INFO("MAC address: %s\n", print_mac(mac, priv->mac_addr));
5226 SET_IEEE80211_PERM_ADDR(priv->hw, priv->mac_addr);
5227
5228 /************************
5229 * 5. Setup HW constants
5230 ************************/
5231 /* Device-specific setup */
Tomas Winkler5425e492008-04-15 16:01:38 -07005232 if (priv->cfg->ops->lib->set_hw_params(priv)) {
5233 IWL_ERROR("failed to set hw parameters\n");
Tomas Winkler073d3f52008-04-21 15:41:52 -07005234 goto out_free_eeprom;
Assaf Krauss316c30d2008-03-14 10:38:46 -07005235 }
5236
5237 /*******************
Tomas Winkler6ba87952008-05-15 13:54:17 +08005238 * 6. Setup priv
Assaf Krauss316c30d2008-03-14 10:38:46 -07005239 *******************/
Zhu Yib481de92007-09-25 17:54:57 -07005240
Tomas Winkler6ba87952008-05-15 13:54:17 +08005241 err = iwl_init_drv(priv);
Assaf Kraussbf85ea42008-03-14 10:38:49 -07005242 if (err)
Ron Rindjunsky399f4902008-04-23 17:14:56 -07005243 goto out_free_eeprom;
Assaf Kraussbf85ea42008-03-14 10:38:49 -07005244 /* At this point both hw and priv are initialized. */
Assaf Krauss316c30d2008-03-14 10:38:46 -07005245
5246 /**********************************
5247 * 7. Initialize module parameters
5248 **********************************/
5249
5250 /* Disable radio (SW RF KILL) via parameter when loading driver */
Assaf Krauss1ea87392008-03-18 14:57:50 -07005251 if (priv->cfg->mod_params->disable) {
Assaf Krauss316c30d2008-03-14 10:38:46 -07005252 set_bit(STATUS_RF_KILL_SW, &priv->status);
5253 IWL_DEBUG_INFO("Radio disabled.\n");
5254 }
5255
Assaf Krauss316c30d2008-03-14 10:38:46 -07005256 /********************
5257 * 8. Setup services
5258 ********************/
Mohamed Abbas0359fac2008-03-28 16:21:08 -07005259 spin_lock_irqsave(&priv->lock, flags);
Assaf Krauss316c30d2008-03-14 10:38:46 -07005260 iwl4965_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07005261 spin_unlock_irqrestore(&priv->lock, flags);
Assaf Krauss316c30d2008-03-14 10:38:46 -07005262
5263 err = sysfs_create_group(&pdev->dev.kobj, &iwl4965_attribute_group);
5264 if (err) {
5265 IWL_ERROR("failed to create sysfs device attributes\n");
Tomas Winkler6ba87952008-05-15 13:54:17 +08005266 goto out_uninit_drv;
Assaf Krauss316c30d2008-03-14 10:38:46 -07005267 }
5268
Assaf Krauss316c30d2008-03-14 10:38:46 -07005269
5270 iwl4965_setup_deferred_work(priv);
5271 iwl4965_setup_rx_handlers(priv);
5272
5273 /********************
5274 * 9. Conclude
5275 ********************/
Zhu Yi5a66926a2008-01-14 17:46:18 -08005276 pci_save_state(pdev);
5277 pci_disable_device(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07005278
Tomas Winkler6ba87952008-05-15 13:54:17 +08005279 /**********************************
5280 * 10. Setup and register mac80211
5281 **********************************/
5282
5283 err = iwl_setup_mac(priv);
5284 if (err)
5285 goto out_remove_sysfs;
5286
5287 err = iwl_dbgfs_register(priv, DRV_NAME);
5288 if (err)
5289 IWL_ERROR("failed to create debugfs files\n");
5290
Mohamed Abbasc8381fd2008-03-28 16:21:05 -07005291 /* notify iwlcore to init */
5292 iwlcore_low_level_notify(priv, IWLCORE_INIT_EVT);
Zhu Yib481de92007-09-25 17:54:57 -07005293 return 0;
5294
Assaf Krauss316c30d2008-03-14 10:38:46 -07005295 out_remove_sysfs:
5296 sysfs_remove_group(&pdev->dev.kobj, &iwl4965_attribute_group);
Tomas Winkler6ba87952008-05-15 13:54:17 +08005297 out_uninit_drv:
5298 iwl_uninit_drv(priv);
Tomas Winkler073d3f52008-04-21 15:41:52 -07005299 out_free_eeprom:
5300 iwl_eeprom_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005301 out_iounmap:
5302 pci_iounmap(pdev, priv->hw_base);
5303 out_pci_release_regions:
5304 pci_release_regions(pdev);
Assaf Krauss316c30d2008-03-14 10:38:46 -07005305 pci_set_drvdata(pdev, NULL);
Zhu Yib481de92007-09-25 17:54:57 -07005306 out_pci_disable_device:
5307 pci_disable_device(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07005308 out_ieee80211_free_hw:
5309 ieee80211_free_hw(priv->hw);
5310 out:
5311 return err;
5312}
5313
Reinette Chatrec83dbf62008-03-21 13:53:41 -07005314static void __devexit iwl4965_pci_remove(struct pci_dev *pdev)
Zhu Yib481de92007-09-25 17:54:57 -07005315{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07005316 struct iwl_priv *priv = pci_get_drvdata(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07005317 struct list_head *p, *q;
5318 int i;
Mohamed Abbas0359fac2008-03-28 16:21:08 -07005319 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07005320
5321 if (!priv)
5322 return;
5323
5324 IWL_DEBUG_INFO("*** UNLOAD DRIVER ***\n");
5325
Emmanuel Grumbach67249622008-05-29 16:35:26 +08005326 iwl_dbgfs_unregister(priv);
5327 sysfs_remove_group(&pdev->dev.kobj, &iwl4965_attribute_group);
5328
Ron Rindjunskyc4f55232008-03-28 16:21:10 -07005329 if (priv->mac80211_registered) {
5330 ieee80211_unregister_hw(priv->hw);
5331 priv->mac80211_registered = 0;
5332 }
5333
Zhu Yib481de92007-09-25 17:54:57 -07005334 set_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib24d22b2007-12-19 13:59:52 +08005335
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005336 iwl4965_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005337
Mohamed Abbas0359fac2008-03-28 16:21:08 -07005338 /* make sure we flush any pending irq or
5339 * tasklet for the driver
5340 */
5341 spin_lock_irqsave(&priv->lock, flags);
5342 iwl4965_disable_interrupts(priv);
5343 spin_unlock_irqrestore(&priv->lock, flags);
5344
5345 iwl_synchronize_irq(priv);
5346
Zhu Yib481de92007-09-25 17:54:57 -07005347 /* Free MAC hash list for ADHOC */
5348 for (i = 0; i < IWL_IBSS_MAC_HASH_SIZE; i++) {
5349 list_for_each_safe(p, q, &priv->ibss_mac_hash[i]) {
5350 list_del(p);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005351 kfree(list_entry(p, struct iwl4965_ibss_seq, list));
Zhu Yib481de92007-09-25 17:54:57 -07005352 }
5353 }
5354
Mohamed Abbasc8381fd2008-03-28 16:21:05 -07005355 iwlcore_low_level_notify(priv, IWLCORE_REMOVE_EVT);
Zhu Yib481de92007-09-25 17:54:57 -07005356
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005357 iwl4965_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005358
5359 if (priv->rxq.bd)
Tomas Winklera55360e2008-05-05 10:22:28 +08005360 iwl_rx_queue_free(priv, &priv->rxq);
Ron Rindjunsky1053d352008-05-05 10:22:43 +08005361 iwl_hw_txq_ctx_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005362
Assaf Kraussbf85ea42008-03-14 10:38:49 -07005363 iwlcore_clear_stations_table(priv);
Tomas Winkler073d3f52008-04-21 15:41:52 -07005364 iwl_eeprom_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005365
Zhu Yib481de92007-09-25 17:54:57 -07005366
Mohamed Abbas948c1712007-10-25 17:15:45 +08005367 /*netif_stop_queue(dev); */
5368 flush_workqueue(priv->workqueue);
5369
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005370 /* ieee80211_unregister_hw calls iwl4965_mac_stop, which flushes
Zhu Yib481de92007-09-25 17:54:57 -07005371 * priv->workqueue... so we can't take down the workqueue
5372 * until now... */
5373 destroy_workqueue(priv->workqueue);
5374 priv->workqueue = NULL;
5375
Zhu Yib481de92007-09-25 17:54:57 -07005376 pci_iounmap(pdev, priv->hw_base);
5377 pci_release_regions(pdev);
5378 pci_disable_device(pdev);
5379 pci_set_drvdata(pdev, NULL);
5380
Tomas Winkler6ba87952008-05-15 13:54:17 +08005381 iwl_uninit_drv(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005382
5383 if (priv->ibss_beacon)
5384 dev_kfree_skb(priv->ibss_beacon);
5385
5386 ieee80211_free_hw(priv->hw);
5387}
5388
5389#ifdef CONFIG_PM
5390
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005391static int iwl4965_pci_suspend(struct pci_dev *pdev, pm_message_t state)
Zhu Yib481de92007-09-25 17:54:57 -07005392{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07005393 struct iwl_priv *priv = pci_get_drvdata(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07005394
Zhu Yie655b9f2008-01-24 02:19:38 -08005395 if (priv->is_open) {
5396 set_bit(STATUS_IN_SUSPEND, &priv->status);
5397 iwl4965_mac_stop(priv->hw);
5398 priv->is_open = 1;
5399 }
Zhu Yib481de92007-09-25 17:54:57 -07005400
Zhu Yib481de92007-09-25 17:54:57 -07005401 pci_set_power_state(pdev, PCI_D3hot);
5402
Zhu Yib481de92007-09-25 17:54:57 -07005403 return 0;
5404}
5405
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005406static int iwl4965_pci_resume(struct pci_dev *pdev)
Zhu Yib481de92007-09-25 17:54:57 -07005407{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07005408 struct iwl_priv *priv = pci_get_drvdata(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07005409
Zhu Yib481de92007-09-25 17:54:57 -07005410 pci_set_power_state(pdev, PCI_D0);
Zhu Yib481de92007-09-25 17:54:57 -07005411
Zhu Yie655b9f2008-01-24 02:19:38 -08005412 if (priv->is_open)
5413 iwl4965_mac_start(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07005414
Zhu Yie655b9f2008-01-24 02:19:38 -08005415 clear_bit(STATUS_IN_SUSPEND, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07005416 return 0;
5417}
5418
5419#endif /* CONFIG_PM */
5420
5421/*****************************************************************************
5422 *
5423 * driver and module entry point
5424 *
5425 *****************************************************************************/
5426
Ron Rindjunskyfed90172008-04-15 16:01:41 -07005427/* Hardware specific file defines the PCI IDs table for that hardware module */
5428static struct pci_device_id iwl_hw_card_ids[] = {
5429 {IWL_PCI_DEVICE(0x4229, PCI_ANY_ID, iwl4965_agn_cfg)},
5430 {IWL_PCI_DEVICE(0x4230, PCI_ANY_ID, iwl4965_agn_cfg)},
Tomas Winkler5a6a2562008-04-24 11:55:23 -07005431#ifdef CONFIG_IWL5000
5432 {IWL_PCI_DEVICE(0x4235, PCI_ANY_ID, iwl5300_agn_cfg)},
5433 {IWL_PCI_DEVICE(0x4232, PCI_ANY_ID, iwl5100_agn_cfg)},
5434 {IWL_PCI_DEVICE(0x423A, PCI_ANY_ID, iwl5350_agn_cfg)},
5435#endif /* CONFIG_IWL5000 */
Ron Rindjunskyfed90172008-04-15 16:01:41 -07005436 {0}
5437};
5438MODULE_DEVICE_TABLE(pci, iwl_hw_card_ids);
5439
5440static struct pci_driver iwl_driver = {
Zhu Yib481de92007-09-25 17:54:57 -07005441 .name = DRV_NAME,
Ron Rindjunskyfed90172008-04-15 16:01:41 -07005442 .id_table = iwl_hw_card_ids,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005443 .probe = iwl4965_pci_probe,
5444 .remove = __devexit_p(iwl4965_pci_remove),
Zhu Yib481de92007-09-25 17:54:57 -07005445#ifdef CONFIG_PM
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005446 .suspend = iwl4965_pci_suspend,
5447 .resume = iwl4965_pci_resume,
Zhu Yib481de92007-09-25 17:54:57 -07005448#endif
5449};
5450
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005451static int __init iwl4965_init(void)
Zhu Yib481de92007-09-25 17:54:57 -07005452{
5453
5454 int ret;
5455 printk(KERN_INFO DRV_NAME ": " DRV_DESCRIPTION ", " DRV_VERSION "\n");
5456 printk(KERN_INFO DRV_NAME ": " DRV_COPYRIGHT "\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07005457
5458 ret = iwl4965_rate_control_register();
5459 if (ret) {
5460 IWL_ERROR("Unable to register rate control algorithm: %d\n", ret);
5461 return ret;
5462 }
5463
Ron Rindjunskyfed90172008-04-15 16:01:41 -07005464 ret = pci_register_driver(&iwl_driver);
Zhu Yib481de92007-09-25 17:54:57 -07005465 if (ret) {
5466 IWL_ERROR("Unable to initialize PCI module\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07005467 goto error_register;
Zhu Yib481de92007-09-25 17:54:57 -07005468 }
Zhu Yib481de92007-09-25 17:54:57 -07005469
5470 return ret;
Reinette Chatre897e1cf2008-03-28 16:21:09 -07005471
Reinette Chatre897e1cf2008-03-28 16:21:09 -07005472error_register:
5473 iwl4965_rate_control_unregister();
5474 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07005475}
5476
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005477static void __exit iwl4965_exit(void)
Zhu Yib481de92007-09-25 17:54:57 -07005478{
Ron Rindjunskyfed90172008-04-15 16:01:41 -07005479 pci_unregister_driver(&iwl_driver);
Reinette Chatre897e1cf2008-03-28 16:21:09 -07005480 iwl4965_rate_control_unregister();
Zhu Yib481de92007-09-25 17:54:57 -07005481}
5482
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005483module_exit(iwl4965_exit);
5484module_init(iwl4965_init);