blob: 68cd2e7b6a7c6dd9dd4a63c308a438d10349ea33 [file] [log] [blame]
Zhu Yib481de92007-09-25 17:54:57 -07001/******************************************************************************
2 *
Reinette Chatre01f81622009-01-08 10:20:02 -08003 * Copyright(c) 2003 - 2009 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:
Winkler, Tomas759ef892008-12-09 11:28:58 -080025 * Intel Linux Wireless <ilw@linux.intel.com>
Zhu Yib481de92007-09-25 17:54:57 -070026 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
27 *
28 *****************************************************************************/
29
Zhu Yib481de92007-09-25 17:54:57 -070030#include <linux/kernel.h>
31#include <linux/module.h>
Zhu Yib481de92007-09-25 17:54:57 -070032#include <linux/init.h>
33#include <linux/pci.h>
34#include <linux/dma-mapping.h>
35#include <linux/delay.h>
36#include <linux/skbuff.h>
37#include <linux/netdevice.h>
38#include <linux/wireless.h>
39#include <linux/firmware.h>
Zhu Yib481de92007-09-25 17:54:57 -070040#include <linux/etherdevice.h>
41#include <linux/if_arp.h>
42
43#include <net/ieee80211_radiotap.h>
John W. Linville7e272fc2008-09-24 18:13:14 -040044#include <net/lib80211.h>
Zhu Yib481de92007-09-25 17:54:57 -070045#include <net/mac80211.h>
46
47#include <asm/div64.h>
48
Samuel Ortiza3139c52008-12-19 10:37:09 +080049#define DRV_NAME "iwl3945"
50
Winkler, Tomasdbb66542008-12-22 11:31:14 +080051#include "iwl-fh.h"
52#include "iwl-3945-fh.h"
Tomas Winkler600c0e12008-12-19 10:37:04 +080053#include "iwl-commands.h"
Samuel Ortiz17f841c2009-01-23 13:45:20 -080054#include "iwl-sta.h"
Zhu Yib481de92007-09-25 17:54:57 -070055#include "iwl-3945.h"
56#include "iwl-helpers.h"
Kolekar, Abhijeet5747d472008-12-19 10:37:18 +080057#include "iwl-core.h"
Samuel Ortizd20b3c62008-12-19 10:37:15 +080058#include "iwl-dev.h"
Zhu Yib481de92007-09-25 17:54:57 -070059
Zhu Yib481de92007-09-25 17:54:57 -070060/*
61 * module name, copyright, version, etc.
Zhu Yib481de92007-09-25 17:54:57 -070062 */
63
64#define DRV_DESCRIPTION \
65"Intel(R) PRO/Wireless 3945ABG/BG Network Connection driver for Linux"
66
Samuel Ortizd08853a2009-01-23 13:45:17 -080067#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -070068#define VD "d"
69#else
70#define VD
71#endif
72
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +080073#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -070074#define VS "s"
75#else
76#define VS
77#endif
78
Kolekar, Abhijeeteaa686c2008-12-19 10:37:17 +080079#define IWL39_VERSION "1.2.26k" VD VS
Reinette Chatre01f81622009-01-08 10:20:02 -080080#define DRV_COPYRIGHT "Copyright(c) 2003-2009 Intel Corporation"
Tomas Winklera7b75202008-12-11 10:33:41 -080081#define DRV_AUTHOR "<ilw@linux.intel.com>"
Kolekar, Abhijeeteaa686c2008-12-19 10:37:17 +080082#define DRV_VERSION IWL39_VERSION
Zhu Yib481de92007-09-25 17:54:57 -070083
Zhu Yib481de92007-09-25 17:54:57 -070084
85MODULE_DESCRIPTION(DRV_DESCRIPTION);
86MODULE_VERSION(DRV_VERSION);
Tomas Winklera7b75202008-12-11 10:33:41 -080087MODULE_AUTHOR(DRV_COPYRIGHT " " DRV_AUTHOR);
Zhu Yib481de92007-09-25 17:54:57 -070088MODULE_LICENSE("GPL");
89
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +080090 /* module parameters */
91struct iwl_mod_params iwl3945_mod_params = {
92 .num_of_queues = IWL39_MAX_NUM_QUEUES,
Samuel Ortiz9c74d9f2009-01-08 10:19:59 -080093 .sw_crypto = 1,
Samuel Ortizaf48d042009-01-23 13:45:19 -080094 .restart_fw = 1,
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +080095 /* the rest are 0 by default */
96};
97
Zhu Yib481de92007-09-25 17:54:57 -070098/*************** STATION TABLE MANAGEMENT ****
Ben Cahill9fbab512007-11-29 11:09:47 +080099 * mac80211 should be examined to determine if sta_info is duplicating
Zhu Yib481de92007-09-25 17:54:57 -0700100 * the functionality provided here
101 */
102
103/**************************************************************/
Ian Schram01ebd062007-10-25 17:15:22 +0800104#if 0 /* temporary disable till we add real remove station */
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800105/**
106 * iwl3945_remove_station - Remove driver's knowledge of station.
107 *
108 * NOTE: This does not remove station from device's station table.
109 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800110static u8 iwl3945_remove_station(struct iwl_priv *priv, const u8 *addr, int is_ap)
Zhu Yib481de92007-09-25 17:54:57 -0700111{
112 int index = IWL_INVALID_STATION;
113 int i;
114 unsigned long flags;
115
116 spin_lock_irqsave(&priv->sta_lock, flags);
117
118 if (is_ap)
119 index = IWL_AP_ID;
120 else if (is_broadcast_ether_addr(addr))
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +0800121 index = priv->hw_params.bcast_sta_id;
Zhu Yib481de92007-09-25 17:54:57 -0700122 else
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +0800123 for (i = IWL_STA_ID; i < priv->hw_params.max_stations; i++)
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800124 if (priv->stations_39[i].used &&
125 !compare_ether_addr(priv->stations_39[i].sta.sta.addr,
Zhu Yib481de92007-09-25 17:54:57 -0700126 addr)) {
127 index = i;
128 break;
129 }
130
131 if (unlikely(index == IWL_INVALID_STATION))
132 goto out;
133
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800134 if (priv->stations_39[index].used) {
135 priv->stations_39[index].used = 0;
Zhu Yib481de92007-09-25 17:54:57 -0700136 priv->num_stations--;
137 }
138
139 BUG_ON(priv->num_stations < 0);
140
141out:
142 spin_unlock_irqrestore(&priv->sta_lock, flags);
143 return 0;
144}
Zhu Yi556f8db2007-09-27 11:27:33 +0800145#endif
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800146
147/**
148 * iwl3945_clear_stations_table - Clear the driver's station table
149 *
150 * NOTE: This does not clear or otherwise alter the device's station table.
151 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800152static void iwl3945_clear_stations_table(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700153{
154 unsigned long flags;
155
156 spin_lock_irqsave(&priv->sta_lock, flags);
157
158 priv->num_stations = 0;
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800159 memset(priv->stations_39, 0, sizeof(priv->stations_39));
Zhu Yib481de92007-09-25 17:54:57 -0700160
161 spin_unlock_irqrestore(&priv->sta_lock, flags);
162}
163
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800164/**
165 * iwl3945_add_station - Add station to station tables in driver and device
166 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800167u8 iwl3945_add_station(struct iwl_priv *priv, const u8 *addr, int is_ap, u8 flags)
Zhu Yib481de92007-09-25 17:54:57 -0700168{
169 int i;
170 int index = IWL_INVALID_STATION;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800171 struct iwl3945_station_entry *station;
Zhu Yib481de92007-09-25 17:54:57 -0700172 unsigned long flags_spin;
Zhu Yic14c5212007-09-27 11:27:35 +0800173 u8 rate;
Zhu Yib481de92007-09-25 17:54:57 -0700174
175 spin_lock_irqsave(&priv->sta_lock, flags_spin);
176 if (is_ap)
177 index = IWL_AP_ID;
178 else if (is_broadcast_ether_addr(addr))
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +0800179 index = priv->hw_params.bcast_sta_id;
Zhu Yib481de92007-09-25 17:54:57 -0700180 else
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +0800181 for (i = IWL_STA_ID; i < priv->hw_params.max_stations; i++) {
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800182 if (!compare_ether_addr(priv->stations_39[i].sta.sta.addr,
Zhu Yib481de92007-09-25 17:54:57 -0700183 addr)) {
184 index = i;
185 break;
186 }
187
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800188 if (!priv->stations_39[i].used &&
Zhu Yib481de92007-09-25 17:54:57 -0700189 index == IWL_INVALID_STATION)
190 index = i;
191 }
192
Ian Schram01ebd062007-10-25 17:15:22 +0800193 /* These two conditions has the same outcome but keep them separate
Zhu Yib481de92007-09-25 17:54:57 -0700194 since they have different meaning */
195 if (unlikely(index == IWL_INVALID_STATION)) {
196 spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
197 return index;
198 }
199
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800200 if (priv->stations_39[index].used &&
201 !compare_ether_addr(priv->stations_39[index].sta.sta.addr, addr)) {
Zhu Yib481de92007-09-25 17:54:57 -0700202 spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
203 return index;
204 }
205
Tomas Winklere1623442009-01-27 14:27:56 -0800206 IWL_DEBUG_ASSOC(priv, "Add STA ID %d: %pM\n", index, addr);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800207 station = &priv->stations_39[index];
Zhu Yib481de92007-09-25 17:54:57 -0700208 station->used = 1;
209 priv->num_stations++;
210
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800211 /* Set up the REPLY_ADD_STA command to send to device */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800212 memset(&station->sta, 0, sizeof(struct iwl3945_addsta_cmd));
Zhu Yib481de92007-09-25 17:54:57 -0700213 memcpy(station->sta.sta.addr, addr, ETH_ALEN);
214 station->sta.mode = 0;
215 station->sta.sta.sta_id = index;
216 station->sta.station_flags = 0;
217
Johannes Berg8318d782008-01-24 19:38:38 +0100218 if (priv->band == IEEE80211_BAND_5GHZ)
Tomas Winkler69946332007-10-25 17:15:27 +0800219 rate = IWL_RATE_6M_PLCP;
220 else
221 rate = IWL_RATE_1M_PLCP;
Zhu Yic14c5212007-09-27 11:27:35 +0800222
223 /* Turn on both antennas for the station... */
224 station->sta.rate_n_flags =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800225 iwl3945_hw_set_rate_n_flags(rate, RATE_MCS_ANT_AB_MSK);
Zhu Yic14c5212007-09-27 11:27:35 +0800226
Zhu Yib481de92007-09-25 17:54:57 -0700227 spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800228
229 /* Add station to device's station table */
Samuel Ortiz17f841c2009-01-23 13:45:20 -0800230 iwl_send_add_sta(priv,
231 (struct iwl_addsta_cmd *)&station->sta, flags);
Zhu Yib481de92007-09-25 17:54:57 -0700232 return index;
233
234}
235
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800236static int iwl3945_send_rxon_assoc(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700237{
238 int rc = 0;
Tomas Winkler3d24a9f2008-12-19 10:37:07 +0800239 struct iwl_rx_packet *res = NULL;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800240 struct iwl3945_rxon_assoc_cmd rxon_assoc;
Winkler, Tomasc2d79b482008-12-19 10:37:34 +0800241 struct iwl_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -0700242 .id = REPLY_RXON_ASSOC,
243 .len = sizeof(rxon_assoc),
244 .meta.flags = CMD_WANT_SKB,
245 .data = &rxon_assoc,
246 };
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800247 const struct iwl_rxon_cmd *rxon1 = &priv->staging_rxon;
248 const struct iwl_rxon_cmd *rxon2 = &priv->active_rxon;
Zhu Yib481de92007-09-25 17:54:57 -0700249
250 if ((rxon1->flags == rxon2->flags) &&
251 (rxon1->filter_flags == rxon2->filter_flags) &&
252 (rxon1->cck_basic_rates == rxon2->cck_basic_rates) &&
253 (rxon1->ofdm_basic_rates == rxon2->ofdm_basic_rates)) {
Tomas Winklere1623442009-01-27 14:27:56 -0800254 IWL_DEBUG_INFO(priv, "Using current RXON_ASSOC. Not resending.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700255 return 0;
256 }
257
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800258 rxon_assoc.flags = priv->staging_rxon.flags;
259 rxon_assoc.filter_flags = priv->staging_rxon.filter_flags;
260 rxon_assoc.ofdm_basic_rates = priv->staging_rxon.ofdm_basic_rates;
261 rxon_assoc.cck_basic_rates = priv->staging_rxon.cck_basic_rates;
Zhu Yib481de92007-09-25 17:54:57 -0700262 rxon_assoc.reserved = 0;
263
Samuel Ortiz518099a2009-01-19 15:30:27 -0800264 rc = iwl_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -0700265 if (rc)
266 return rc;
267
Tomas Winkler3d24a9f2008-12-19 10:37:07 +0800268 res = (struct iwl_rx_packet *)cmd.meta.u.skb->data;
Zhu Yib481de92007-09-25 17:54:57 -0700269 if (res->hdr.flags & IWL_CMD_FAILED_MSK) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800270 IWL_ERR(priv, "Bad return from REPLY_RXON_ASSOC command\n");
Zhu Yib481de92007-09-25 17:54:57 -0700271 rc = -EIO;
272 }
273
274 priv->alloc_rxb_skb--;
275 dev_kfree_skb_any(cmd.meta.u.skb);
276
277 return rc;
278}
279
280/**
Samuel Ortiz7e4bca52009-01-23 13:45:18 -0800281 * iwl3945_get_antenna_flags - Get antenna flags for RXON command
282 * @priv: eeprom and antenna fields are used to determine antenna flags
283 *
284 * priv->eeprom39 is used to determine if antenna AUX/MAIN are reversed
285 * iwl3945_mod_params.antenna specifies the antenna diversity mode:
286 *
287 * IWL_ANTENNA_DIVERSITY - NIC selects best antenna by itself
288 * IWL_ANTENNA_MAIN - Force MAIN antenna
289 * IWL_ANTENNA_AUX - Force AUX antenna
290 */
291__le32 iwl3945_get_antenna_flags(const struct iwl_priv *priv)
292{
293 struct iwl3945_eeprom *eeprom = (struct iwl3945_eeprom *)priv->eeprom;
294
295 switch (iwl3945_mod_params.antenna) {
296 case IWL_ANTENNA_DIVERSITY:
297 return 0;
298
299 case IWL_ANTENNA_MAIN:
300 if (eeprom->antenna_switch_type)
301 return RXON_FLG_DIS_DIV_MSK | RXON_FLG_ANT_B_MSK;
302 return RXON_FLG_DIS_DIV_MSK | RXON_FLG_ANT_A_MSK;
303
304 case IWL_ANTENNA_AUX:
305 if (eeprom->antenna_switch_type)
306 return RXON_FLG_DIS_DIV_MSK | RXON_FLG_ANT_A_MSK;
307 return RXON_FLG_DIS_DIV_MSK | RXON_FLG_ANT_B_MSK;
308 }
309
310 /* bad antenna selector value */
311 IWL_ERR(priv, "Bad antenna selector value (0x%x)\n",
312 iwl3945_mod_params.antenna);
313
314 return 0; /* "diversity" is default if error */
315}
316
317/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800318 * iwl3945_commit_rxon - commit staging_rxon to hardware
Zhu Yib481de92007-09-25 17:54:57 -0700319 *
Ian Schram01ebd062007-10-25 17:15:22 +0800320 * The RXON command in staging_rxon is committed to the hardware and
Zhu Yib481de92007-09-25 17:54:57 -0700321 * the active_rxon structure is updated with the new data. This
322 * function correctly transitions out of the RXON_ASSOC_MSK state if
323 * a HW tune is required based on the RXON structure changes.
324 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800325static int iwl3945_commit_rxon(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700326{
327 /* cast away the const for active_rxon in this function */
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800328 struct iwl3945_rxon_cmd *active_rxon = (void *)&priv->active_rxon;
329 struct iwl3945_rxon_cmd *staging_rxon = (void *)&priv->staging_rxon;
Zhu Yib481de92007-09-25 17:54:57 -0700330 int rc = 0;
331
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +0800332 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -0700333 return -1;
334
335 /* always get timestamp with Rx frame */
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800336 staging_rxon->flags |= RXON_FLG_TSF2HOST_MSK;
Zhu Yib481de92007-09-25 17:54:57 -0700337
338 /* select antenna */
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800339 staging_rxon->flags &=
Zhu Yib481de92007-09-25 17:54:57 -0700340 ~(RXON_FLG_DIS_DIV_MSK | RXON_FLG_ANT_SEL_MSK);
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800341 staging_rxon->flags |= iwl3945_get_antenna_flags(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700342
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800343 rc = iwl_check_rxon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700344 if (rc) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800345 IWL_ERR(priv, "Invalid RXON configuration. Not committing.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700346 return -EINVAL;
347 }
348
349 /* If we don't need to send a full RXON, we can use
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800350 * iwl3945_rxon_assoc_cmd which is used to reconfigure filter
Zhu Yib481de92007-09-25 17:54:57 -0700351 * and other flags for the current radio configuration. */
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800352 if (!iwl_full_rxon_required(priv)) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800353 rc = iwl3945_send_rxon_assoc(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700354 if (rc) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800355 IWL_ERR(priv, "Error setting RXON_ASSOC "
Zhu Yib481de92007-09-25 17:54:57 -0700356 "configuration (%d).\n", rc);
357 return rc;
358 }
359
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800360 memcpy(active_rxon, staging_rxon, sizeof(*active_rxon));
Zhu Yib481de92007-09-25 17:54:57 -0700361
362 return 0;
363 }
364
365 /* If we are currently associated and the new config requires
366 * an RXON_ASSOC and the new config wants the associated mask enabled,
367 * we must clear the associated from the active configuration
368 * before we apply the new config */
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800369 if (iwl_is_associated(priv) &&
370 (staging_rxon->filter_flags & RXON_FILTER_ASSOC_MSK)) {
Tomas Winklere1623442009-01-27 14:27:56 -0800371 IWL_DEBUG_INFO(priv, "Toggling associated bit on current RXON\n");
Zhu Yib481de92007-09-25 17:54:57 -0700372 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
373
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800374 /*
375 * reserved4 and 5 could have been filled by the iwlcore code.
376 * Let's clear them before pushing to the 3945.
377 */
378 active_rxon->reserved4 = 0;
379 active_rxon->reserved5 = 0;
Samuel Ortiz518099a2009-01-19 15:30:27 -0800380 rc = iwl_send_cmd_pdu(priv, REPLY_RXON,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800381 sizeof(struct iwl3945_rxon_cmd),
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800382 &priv->active_rxon);
Zhu Yib481de92007-09-25 17:54:57 -0700383
384 /* If the mask clearing failed then we set
385 * active_rxon back to what it was previously */
386 if (rc) {
387 active_rxon->filter_flags |= RXON_FILTER_ASSOC_MSK;
Winkler, Tomas15b16872008-12-19 10:37:33 +0800388 IWL_ERR(priv, "Error clearing ASSOC_MSK on current "
Zhu Yib481de92007-09-25 17:54:57 -0700389 "configuration (%d).\n", rc);
390 return rc;
391 }
Zhu Yib481de92007-09-25 17:54:57 -0700392 }
393
Tomas Winklere1623442009-01-27 14:27:56 -0800394 IWL_DEBUG_INFO(priv, "Sending RXON\n"
Zhu Yib481de92007-09-25 17:54:57 -0700395 "* with%s RXON_FILTER_ASSOC_MSK\n"
396 "* channel = %d\n"
Johannes Berge1749612008-10-27 15:59:26 -0700397 "* bssid = %pM\n",
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800398 ((priv->staging_rxon.filter_flags &
Zhu Yib481de92007-09-25 17:54:57 -0700399 RXON_FILTER_ASSOC_MSK) ? "" : "out"),
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800400 le16_to_cpu(staging_rxon->channel),
401 staging_rxon->bssid_addr);
402
403 /*
404 * reserved4 and 5 could have been filled by the iwlcore code.
405 * Let's clear them before pushing to the 3945.
406 */
407 staging_rxon->reserved4 = 0;
408 staging_rxon->reserved5 = 0;
Zhu Yib481de92007-09-25 17:54:57 -0700409
410 /* Apply the new configuration */
Samuel Ortiz518099a2009-01-19 15:30:27 -0800411 rc = iwl_send_cmd_pdu(priv, REPLY_RXON,
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800412 sizeof(struct iwl3945_rxon_cmd),
413 staging_rxon);
Zhu Yib481de92007-09-25 17:54:57 -0700414 if (rc) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800415 IWL_ERR(priv, "Error setting new configuration (%d).\n", rc);
Zhu Yib481de92007-09-25 17:54:57 -0700416 return rc;
417 }
418
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800419 memcpy(active_rxon, staging_rxon, sizeof(*active_rxon));
Zhu Yib481de92007-09-25 17:54:57 -0700420
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800421 iwl3945_clear_stations_table(priv);
Zhu Yi556f8db2007-09-27 11:27:33 +0800422
Zhu Yib481de92007-09-25 17:54:57 -0700423 /* If we issue a new RXON command which required a tune then we must
424 * send a new TXPOWER command or we won't be able to Tx any frames */
Samuel Ortiz75bcfae2009-01-23 13:45:11 -0800425 rc = priv->cfg->ops->lib->send_tx_power(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700426 if (rc) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800427 IWL_ERR(priv, "Error setting Tx power (%d).\n", rc);
Zhu Yib481de92007-09-25 17:54:57 -0700428 return rc;
429 }
430
431 /* Add the broadcast address so we can send broadcast frames */
Kolekar, Abhijeetb5323d32008-12-19 10:37:22 +0800432 if (iwl3945_add_station(priv, iwl_bcast_addr, 0, 0) ==
Zhu Yib481de92007-09-25 17:54:57 -0700433 IWL_INVALID_STATION) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800434 IWL_ERR(priv, "Error adding BROADCAST address for transmit.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700435 return -EIO;
436 }
437
438 /* If we have set the ASSOC_MSK and we are in BSS mode then
439 * add the IWL_AP_ID to the station rate table */
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800440 if (iwl_is_associated(priv) &&
Johannes Berg05c914f2008-09-11 00:01:58 +0200441 (priv->iw_mode == NL80211_IFTYPE_STATION))
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800442 if (iwl3945_add_station(priv, priv->active_rxon.bssid_addr,
443 1, 0)
Zhu Yib481de92007-09-25 17:54:57 -0700444 == IWL_INVALID_STATION) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800445 IWL_ERR(priv, "Error adding AP address for transmit\n");
Zhu Yib481de92007-09-25 17:54:57 -0700446 return -EIO;
447 }
448
Johannes Berg8318d782008-01-24 19:38:38 +0100449 /* Init the hardware's rate fallback order based on the band */
Zhu Yib481de92007-09-25 17:54:57 -0700450 rc = iwl3945_init_hw_rate_table(priv);
451 if (rc) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800452 IWL_ERR(priv, "Error setting HW rate table: %02X\n", rc);
Zhu Yib481de92007-09-25 17:54:57 -0700453 return -EIO;
454 }
455
456 return 0;
457}
458
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800459static int iwl3945_update_sta_key_info(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -0700460 struct ieee80211_key_conf *keyconf,
461 u8 sta_id)
462{
463 unsigned long flags;
464 __le16 key_flags = 0;
465
466 switch (keyconf->alg) {
467 case ALG_CCMP:
468 key_flags |= STA_KEY_FLG_CCMP;
469 key_flags |= cpu_to_le16(
470 keyconf->keyidx << STA_KEY_FLG_KEYID_POS);
471 key_flags &= ~STA_KEY_FLG_INVALID;
472 break;
473 case ALG_TKIP:
474 case ALG_WEP:
Zhu Yib481de92007-09-25 17:54:57 -0700475 default:
476 return -EINVAL;
477 }
478 spin_lock_irqsave(&priv->sta_lock, flags);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800479 priv->stations_39[sta_id].keyinfo.alg = keyconf->alg;
480 priv->stations_39[sta_id].keyinfo.keylen = keyconf->keylen;
481 memcpy(priv->stations_39[sta_id].keyinfo.key, keyconf->key,
Zhu Yib481de92007-09-25 17:54:57 -0700482 keyconf->keylen);
483
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800484 memcpy(priv->stations_39[sta_id].sta.key.key, keyconf->key,
Zhu Yib481de92007-09-25 17:54:57 -0700485 keyconf->keylen);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800486 priv->stations_39[sta_id].sta.key.key_flags = key_flags;
487 priv->stations_39[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
488 priv->stations_39[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
Zhu Yib481de92007-09-25 17:54:57 -0700489
490 spin_unlock_irqrestore(&priv->sta_lock, flags);
491
Tomas Winklere1623442009-01-27 14:27:56 -0800492 IWL_DEBUG_INFO(priv, "hwcrypto: modify ucode station key info\n");
Samuel Ortiz17f841c2009-01-23 13:45:20 -0800493 iwl_send_add_sta(priv,
494 (struct iwl_addsta_cmd *)&priv->stations_39[sta_id].sta, 0);
Zhu Yib481de92007-09-25 17:54:57 -0700495 return 0;
496}
497
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800498static int iwl3945_clear_sta_key_info(struct iwl_priv *priv, u8 sta_id)
Zhu Yib481de92007-09-25 17:54:57 -0700499{
500 unsigned long flags;
501
502 spin_lock_irqsave(&priv->sta_lock, flags);
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800503 memset(&priv->stations_39[sta_id].keyinfo, 0, sizeof(struct iwl3945_hw_key));
504 memset(&priv->stations_39[sta_id].sta.key, 0,
Tomas Winkler4c897252008-12-19 10:37:05 +0800505 sizeof(struct iwl4965_keyinfo));
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800506 priv->stations_39[sta_id].sta.key.key_flags = STA_KEY_FLG_NO_ENC;
507 priv->stations_39[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
508 priv->stations_39[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
Zhu Yib481de92007-09-25 17:54:57 -0700509 spin_unlock_irqrestore(&priv->sta_lock, flags);
510
Tomas Winklere1623442009-01-27 14:27:56 -0800511 IWL_DEBUG_INFO(priv, "hwcrypto: clear ucode station key info\n");
Samuel Ortiz17f841c2009-01-23 13:45:20 -0800512 iwl_send_add_sta(priv,
513 (struct iwl_addsta_cmd *)&priv->stations_39[sta_id].sta, 0);
Zhu Yib481de92007-09-25 17:54:57 -0700514 return 0;
515}
516
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800517static void iwl3945_clear_free_frames(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700518{
519 struct list_head *element;
520
Tomas Winklere1623442009-01-27 14:27:56 -0800521 IWL_DEBUG_INFO(priv, "%d frames on pre-allocated heap on clear.\n",
Zhu Yib481de92007-09-25 17:54:57 -0700522 priv->frames_count);
523
524 while (!list_empty(&priv->free_frames)) {
525 element = priv->free_frames.next;
526 list_del(element);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800527 kfree(list_entry(element, struct iwl3945_frame, list));
Zhu Yib481de92007-09-25 17:54:57 -0700528 priv->frames_count--;
529 }
530
531 if (priv->frames_count) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800532 IWL_WARN(priv, "%d frames still in use. Did we lose one?\n",
Zhu Yib481de92007-09-25 17:54:57 -0700533 priv->frames_count);
534 priv->frames_count = 0;
535 }
536}
537
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800538static struct iwl3945_frame *iwl3945_get_free_frame(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700539{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800540 struct iwl3945_frame *frame;
Zhu Yib481de92007-09-25 17:54:57 -0700541 struct list_head *element;
542 if (list_empty(&priv->free_frames)) {
543 frame = kzalloc(sizeof(*frame), GFP_KERNEL);
544 if (!frame) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800545 IWL_ERR(priv, "Could not allocate frame!\n");
Zhu Yib481de92007-09-25 17:54:57 -0700546 return NULL;
547 }
548
549 priv->frames_count++;
550 return frame;
551 }
552
553 element = priv->free_frames.next;
554 list_del(element);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800555 return list_entry(element, struct iwl3945_frame, list);
Zhu Yib481de92007-09-25 17:54:57 -0700556}
557
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800558static void iwl3945_free_frame(struct iwl_priv *priv, struct iwl3945_frame *frame)
Zhu Yib481de92007-09-25 17:54:57 -0700559{
560 memset(frame, 0, sizeof(*frame));
561 list_add(&frame->list, &priv->free_frames);
562}
563
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800564unsigned int iwl3945_fill_beacon_frame(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -0700565 struct ieee80211_hdr *hdr,
Rami Rosen73ec1cc2008-12-16 09:37:07 +0200566 int left)
Zhu Yib481de92007-09-25 17:54:57 -0700567{
568
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800569 if (!iwl_is_associated(priv) || !priv->ibss_beacon ||
Johannes Berg05c914f2008-09-11 00:01:58 +0200570 ((priv->iw_mode != NL80211_IFTYPE_ADHOC) &&
571 (priv->iw_mode != NL80211_IFTYPE_AP)))
Zhu Yib481de92007-09-25 17:54:57 -0700572 return 0;
573
574 if (priv->ibss_beacon->len > left)
575 return 0;
576
577 memcpy(hdr, priv->ibss_beacon->data, priv->ibss_beacon->len);
578
579 return priv->ibss_beacon->len;
580}
581
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800582static int iwl3945_send_beacon_cmd(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700583{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800584 struct iwl3945_frame *frame;
Zhu Yib481de92007-09-25 17:54:57 -0700585 unsigned int frame_size;
586 int rc;
587 u8 rate;
588
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800589 frame = iwl3945_get_free_frame(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700590
591 if (!frame) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800592 IWL_ERR(priv, "Could not obtain free frame buffer for beacon "
Zhu Yib481de92007-09-25 17:54:57 -0700593 "command.\n");
594 return -ENOMEM;
595 }
596
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800597 rate = iwl_rate_get_lowest_plcp(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700598
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800599 frame_size = iwl3945_hw_get_beacon_cmd(priv, frame, rate);
Zhu Yib481de92007-09-25 17:54:57 -0700600
Samuel Ortiz518099a2009-01-19 15:30:27 -0800601 rc = iwl_send_cmd_pdu(priv, REPLY_TX_BEACON, frame_size,
Zhu Yib481de92007-09-25 17:54:57 -0700602 &frame->u.cmd[0]);
603
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800604 iwl3945_free_frame(priv, frame);
Zhu Yib481de92007-09-25 17:54:57 -0700605
606 return rc;
607}
608
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800609static void iwl3945_unset_hw_params(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700610{
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +0800611 if (priv->shared_virt)
Zhu Yib481de92007-09-25 17:54:57 -0700612 pci_free_consistent(priv->pci_dev,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800613 sizeof(struct iwl3945_shared),
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +0800614 priv->shared_virt,
615 priv->shared_phys);
Zhu Yib481de92007-09-25 17:54:57 -0700616}
617
Zhu Yib481de92007-09-25 17:54:57 -0700618/*
619 * QoS support
620*/
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800621static int iwl3945_send_qos_params_command(struct iwl_priv *priv,
Tomas Winkler4c897252008-12-19 10:37:05 +0800622 struct iwl_qosparam_cmd *qos)
Zhu Yib481de92007-09-25 17:54:57 -0700623{
624
Samuel Ortiz518099a2009-01-19 15:30:27 -0800625 return iwl_send_cmd_pdu(priv, REPLY_QOS_PARAM,
Tomas Winkler4c897252008-12-19 10:37:05 +0800626 sizeof(struct iwl_qosparam_cmd), qos);
Zhu Yib481de92007-09-25 17:54:57 -0700627}
628
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800629static void iwl3945_activate_qos(struct iwl_priv *priv, u8 force)
Zhu Yib481de92007-09-25 17:54:57 -0700630{
631 unsigned long flags;
632
Zhu Yib481de92007-09-25 17:54:57 -0700633 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
634 return;
635
Zhu Yib481de92007-09-25 17:54:57 -0700636 spin_lock_irqsave(&priv->lock, flags);
637 priv->qos_data.def_qos_parm.qos_flags = 0;
638
639 if (priv->qos_data.qos_cap.q_AP.queue_request &&
640 !priv->qos_data.qos_cap.q_AP.txop_request)
641 priv->qos_data.def_qos_parm.qos_flags |=
642 QOS_PARAM_FLG_TXOP_TYPE_MSK;
643
644 if (priv->qos_data.qos_active)
645 priv->qos_data.def_qos_parm.qos_flags |=
646 QOS_PARAM_FLG_UPDATE_EDCA_MSK;
647
648 spin_unlock_irqrestore(&priv->lock, flags);
649
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800650 if (force || iwl_is_associated(priv)) {
Tomas Winklere1623442009-01-27 14:27:56 -0800651 IWL_DEBUG_QOS(priv, "send QoS cmd with QoS active %d \n",
Zhu Yib481de92007-09-25 17:54:57 -0700652 priv->qos_data.qos_active);
653
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800654 iwl3945_send_qos_params_command(priv,
Zhu Yib481de92007-09-25 17:54:57 -0700655 &(priv->qos_data.def_qos_parm));
656 }
657}
658
Zhu Yib481de92007-09-25 17:54:57 -0700659
Zhu Yib481de92007-09-25 17:54:57 -0700660#define MAX_UCODE_BEACON_INTERVAL 1024
Harvey Harrisonc1b4aa32009-01-29 13:26:44 -0800661#define INTEL_CONN_LISTEN_INTERVAL cpu_to_le16(0xA)
Zhu Yib481de92007-09-25 17:54:57 -0700662
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800663static __le16 iwl3945_adjust_beacon_interval(u16 beacon_val)
Zhu Yib481de92007-09-25 17:54:57 -0700664{
665 u16 new_val = 0;
666 u16 beacon_factor = 0;
667
668 beacon_factor =
669 (beacon_val + MAX_UCODE_BEACON_INTERVAL)
670 / MAX_UCODE_BEACON_INTERVAL;
671 new_val = beacon_val / beacon_factor;
672
673 return cpu_to_le16(new_val);
674}
675
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800676static void iwl3945_setup_rxon_timing(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700677{
678 u64 interval_tm_unit;
679 u64 tsf, result;
680 unsigned long flags;
681 struct ieee80211_conf *conf = NULL;
682 u16 beacon_int = 0;
683
684 conf = ieee80211_get_hw_conf(priv->hw);
685
686 spin_lock_irqsave(&priv->lock, flags);
Tomas Winkler28afaf92008-12-19 10:37:06 +0800687 priv->rxon_timing.timestamp = cpu_to_le64(priv->timestamp);
Zhu Yib481de92007-09-25 17:54:57 -0700688 priv->rxon_timing.listen_interval = INTEL_CONN_LISTEN_INTERVAL;
689
Tomas Winkler28afaf92008-12-19 10:37:06 +0800690 tsf = priv->timestamp;
Zhu Yib481de92007-09-25 17:54:57 -0700691
692 beacon_int = priv->beacon_int;
693 spin_unlock_irqrestore(&priv->lock, flags);
694
Johannes Berg05c914f2008-09-11 00:01:58 +0200695 if (priv->iw_mode == NL80211_IFTYPE_STATION) {
Zhu Yib481de92007-09-25 17:54:57 -0700696 if (beacon_int == 0) {
697 priv->rxon_timing.beacon_interval = cpu_to_le16(100);
698 priv->rxon_timing.beacon_init_val = cpu_to_le32(102400);
699 } else {
700 priv->rxon_timing.beacon_interval =
701 cpu_to_le16(beacon_int);
702 priv->rxon_timing.beacon_interval =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800703 iwl3945_adjust_beacon_interval(
Zhu Yib481de92007-09-25 17:54:57 -0700704 le16_to_cpu(priv->rxon_timing.beacon_interval));
705 }
706
707 priv->rxon_timing.atim_window = 0;
708 } else {
709 priv->rxon_timing.beacon_interval =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800710 iwl3945_adjust_beacon_interval(conf->beacon_int);
Zhu Yib481de92007-09-25 17:54:57 -0700711 /* TODO: we need to get atim_window from upper stack
712 * for now we set to 0 */
713 priv->rxon_timing.atim_window = 0;
714 }
715
716 interval_tm_unit =
717 (le16_to_cpu(priv->rxon_timing.beacon_interval) * 1024);
718 result = do_div(tsf, interval_tm_unit);
719 priv->rxon_timing.beacon_init_val =
720 cpu_to_le32((u32) ((u64) interval_tm_unit - result));
721
Tomas Winklere1623442009-01-27 14:27:56 -0800722 IWL_DEBUG_ASSOC(priv,
723 "beacon interval %d beacon timer %d beacon tim %d\n",
Zhu Yib481de92007-09-25 17:54:57 -0700724 le16_to_cpu(priv->rxon_timing.beacon_interval),
725 le32_to_cpu(priv->rxon_timing.beacon_init_val),
726 le16_to_cpu(priv->rxon_timing.atim_window));
727}
728
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800729static int iwl3945_set_mode(struct iwl_priv *priv, int mode)
Zhu Yib481de92007-09-25 17:54:57 -0700730{
Johannes Berg05c914f2008-09-11 00:01:58 +0200731 if (mode == NL80211_IFTYPE_ADHOC) {
Samuel Ortizd20b3c62008-12-19 10:37:15 +0800732 const struct iwl_channel_info *ch_info;
Zhu Yib481de92007-09-25 17:54:57 -0700733
Samuel Ortize6148912009-01-23 13:45:15 -0800734 ch_info = iwl_get_channel_info(priv,
Johannes Berg8318d782008-01-24 19:38:38 +0100735 priv->band,
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800736 le16_to_cpu(priv->staging_rxon.channel));
Zhu Yib481de92007-09-25 17:54:57 -0700737
738 if (!ch_info || !is_channel_ibss(ch_info)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800739 IWL_ERR(priv, "channel %d not IBSS channel\n",
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800740 le16_to_cpu(priv->staging_rxon.channel));
Zhu Yib481de92007-09-25 17:54:57 -0700741 return -EINVAL;
742 }
743 }
744
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800745 iwl_connection_init_rx_config(priv, mode);
Zhu Yib481de92007-09-25 17:54:57 -0700746
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800747 iwl3945_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700748
Tomas Winklera96a27f2008-10-23 23:48:56 -0700749 /* don't commit rxon if rf-kill is on*/
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +0800750 if (!iwl_is_ready_rf(priv))
Mohamed Abbasfde35712007-11-29 11:10:15 +0800751 return -EAGAIN;
752
753 cancel_delayed_work(&priv->scan_check);
Winkler, Tomasaf0053d2009-01-19 15:30:23 -0800754 if (iwl_scan_cancel_timeout(priv, 100)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800755 IWL_WARN(priv, "Aborted scan still in progress after 100ms\n");
Tomas Winklere1623442009-01-27 14:27:56 -0800756 IWL_DEBUG_MAC80211(priv, "leaving - scan abort failed.\n");
Mohamed Abbasfde35712007-11-29 11:10:15 +0800757 return -EAGAIN;
758 }
759
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800760 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700761
762 return 0;
763}
764
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800765static void iwl3945_build_tx_cmd_hwcrypto(struct iwl_priv *priv,
Johannes Berge039fa42008-05-15 12:55:29 +0200766 struct ieee80211_tx_info *info,
Winkler, Tomasc2d79b482008-12-19 10:37:34 +0800767 struct iwl_cmd *cmd,
Zhu Yib481de92007-09-25 17:54:57 -0700768 struct sk_buff *skb_frag,
769 int last_frag)
770{
Winkler, Tomase52119c2008-12-22 11:31:19 +0800771 struct iwl3945_tx_cmd *tx = (struct iwl3945_tx_cmd *)cmd->cmd.payload;
Ivo van Doorn1c014422008-04-17 19:41:02 +0200772 struct iwl3945_hw_key *keyinfo =
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +0800773 &priv->stations_39[info->control.hw_key->hw_key_idx].keyinfo;
Zhu Yib481de92007-09-25 17:54:57 -0700774
775 switch (keyinfo->alg) {
776 case ALG_CCMP:
Winkler, Tomase52119c2008-12-22 11:31:19 +0800777 tx->sec_ctl = TX_CMD_SEC_CCM;
778 memcpy(tx->key, keyinfo->key, keyinfo->keylen);
Tomas Winklere1623442009-01-27 14:27:56 -0800779 IWL_DEBUG_TX(priv, "tx_cmd with AES hwcrypto\n");
Zhu Yib481de92007-09-25 17:54:57 -0700780 break;
781
782 case ALG_TKIP:
783#if 0
Winkler, Tomase52119c2008-12-22 11:31:19 +0800784 tx->sec_ctl = TX_CMD_SEC_TKIP;
Zhu Yib481de92007-09-25 17:54:57 -0700785
786 if (last_frag)
Winkler, Tomase52119c2008-12-22 11:31:19 +0800787 memcpy(tx->tkip_mic.byte, skb_frag->tail - 8,
Zhu Yib481de92007-09-25 17:54:57 -0700788 8);
789 else
Winkler, Tomase52119c2008-12-22 11:31:19 +0800790 memset(tx->tkip_mic.byte, 0, 8);
Zhu Yib481de92007-09-25 17:54:57 -0700791#endif
792 break;
793
794 case ALG_WEP:
Winkler, Tomase52119c2008-12-22 11:31:19 +0800795 tx->sec_ctl = TX_CMD_SEC_WEP |
Johannes Berge039fa42008-05-15 12:55:29 +0200796 (info->control.hw_key->hw_key_idx & TX_CMD_SEC_MSK) << TX_CMD_SEC_SHIFT;
Zhu Yib481de92007-09-25 17:54:57 -0700797
798 if (keyinfo->keylen == 13)
Winkler, Tomase52119c2008-12-22 11:31:19 +0800799 tx->sec_ctl |= TX_CMD_SEC_KEY128;
Zhu Yib481de92007-09-25 17:54:57 -0700800
Winkler, Tomase52119c2008-12-22 11:31:19 +0800801 memcpy(&tx->key[3], keyinfo->key, keyinfo->keylen);
Zhu Yib481de92007-09-25 17:54:57 -0700802
Tomas Winklere1623442009-01-27 14:27:56 -0800803 IWL_DEBUG_TX(priv, "Configuring packet for WEP encryption "
Johannes Berge039fa42008-05-15 12:55:29 +0200804 "with key %d\n", info->control.hw_key->hw_key_idx);
Zhu Yib481de92007-09-25 17:54:57 -0700805 break;
806
Zhu Yib481de92007-09-25 17:54:57 -0700807 default:
Tomas Winkler978785a2008-12-19 10:37:31 +0800808 IWL_ERR(priv, "Unknown encode alg %d\n", keyinfo->alg);
Zhu Yib481de92007-09-25 17:54:57 -0700809 break;
810 }
811}
812
813/*
814 * handle build REPLY_TX command notification.
815 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800816static void iwl3945_build_tx_cmd_basic(struct iwl_priv *priv,
Winkler, Tomasc2d79b482008-12-19 10:37:34 +0800817 struct iwl_cmd *cmd,
Johannes Berge039fa42008-05-15 12:55:29 +0200818 struct ieee80211_tx_info *info,
Winkler, Tomase52119c2008-12-22 11:31:19 +0800819 struct ieee80211_hdr *hdr, u8 std_id)
Zhu Yib481de92007-09-25 17:54:57 -0700820{
Winkler, Tomase52119c2008-12-22 11:31:19 +0800821 struct iwl3945_tx_cmd *tx = (struct iwl3945_tx_cmd *)cmd->cmd.payload;
822 __le32 tx_flags = tx->tx_flags;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700823 __le16 fc = hdr->frame_control;
Johannes Berge6a98542008-10-21 12:40:02 +0200824 u8 rc_flags = info->control.rates[0].flags;
Zhu Yib481de92007-09-25 17:54:57 -0700825
Winkler, Tomase52119c2008-12-22 11:31:19 +0800826 tx->stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
Johannes Berge039fa42008-05-15 12:55:29 +0200827 if (!(info->flags & IEEE80211_TX_CTL_NO_ACK)) {
Zhu Yib481de92007-09-25 17:54:57 -0700828 tx_flags |= TX_CMD_FLG_ACK_MSK;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700829 if (ieee80211_is_mgmt(fc))
Zhu Yib481de92007-09-25 17:54:57 -0700830 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700831 if (ieee80211_is_probe_resp(fc) &&
Zhu Yib481de92007-09-25 17:54:57 -0700832 !(le16_to_cpu(hdr->seq_ctrl) & 0xf))
833 tx_flags |= TX_CMD_FLG_TSF_MSK;
834 } else {
835 tx_flags &= (~TX_CMD_FLG_ACK_MSK);
836 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
837 }
838
Winkler, Tomase52119c2008-12-22 11:31:19 +0800839 tx->sta_id = std_id;
Harvey Harrison8b7b1e02008-06-11 14:21:56 -0700840 if (ieee80211_has_morefrags(fc))
Zhu Yib481de92007-09-25 17:54:57 -0700841 tx_flags |= TX_CMD_FLG_MORE_FRAG_MSK;
842
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700843 if (ieee80211_is_data_qos(fc)) {
844 u8 *qc = ieee80211_get_qos_ctl(hdr);
Winkler, Tomase52119c2008-12-22 11:31:19 +0800845 tx->tid_tspec = qc[0] & 0xf;
Zhu Yib481de92007-09-25 17:54:57 -0700846 tx_flags &= ~TX_CMD_FLG_SEQ_CTL_MSK;
Tomas Winkler54dbb522008-05-15 13:54:06 +0800847 } else {
Zhu Yib481de92007-09-25 17:54:57 -0700848 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
Tomas Winkler54dbb522008-05-15 13:54:06 +0800849 }
Zhu Yib481de92007-09-25 17:54:57 -0700850
Johannes Berge6a98542008-10-21 12:40:02 +0200851 if (rc_flags & IEEE80211_TX_RC_USE_RTS_CTS) {
Zhu Yib481de92007-09-25 17:54:57 -0700852 tx_flags |= TX_CMD_FLG_RTS_MSK;
853 tx_flags &= ~TX_CMD_FLG_CTS_MSK;
Johannes Berge6a98542008-10-21 12:40:02 +0200854 } else if (rc_flags & IEEE80211_TX_RC_USE_CTS_PROTECT) {
Zhu Yib481de92007-09-25 17:54:57 -0700855 tx_flags &= ~TX_CMD_FLG_RTS_MSK;
856 tx_flags |= TX_CMD_FLG_CTS_MSK;
857 }
858
859 if ((tx_flags & TX_CMD_FLG_RTS_MSK) || (tx_flags & TX_CMD_FLG_CTS_MSK))
860 tx_flags |= TX_CMD_FLG_FULL_TXOP_PROT_MSK;
861
862 tx_flags &= ~(TX_CMD_FLG_ANT_SEL_MSK);
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700863 if (ieee80211_is_mgmt(fc)) {
864 if (ieee80211_is_assoc_req(fc) || ieee80211_is_reassoc_req(fc))
Winkler, Tomase52119c2008-12-22 11:31:19 +0800865 tx->timeout.pm_frame_timeout = cpu_to_le16(3);
Zhu Yib481de92007-09-25 17:54:57 -0700866 else
Winkler, Tomase52119c2008-12-22 11:31:19 +0800867 tx->timeout.pm_frame_timeout = cpu_to_le16(2);
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700868 } else {
Winkler, Tomase52119c2008-12-22 11:31:19 +0800869 tx->timeout.pm_frame_timeout = 0;
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700870#ifdef CONFIG_IWL3945_LEDS
871 priv->rxtxpackets += le16_to_cpu(cmd->cmd.tx.len);
872#endif
873 }
Zhu Yib481de92007-09-25 17:54:57 -0700874
Winkler, Tomase52119c2008-12-22 11:31:19 +0800875 tx->driver_txop = 0;
876 tx->tx_flags = tx_flags;
877 tx->next_frame_len = 0;
Zhu Yib481de92007-09-25 17:54:57 -0700878}
879
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800880/**
881 * iwl3945_get_sta_id - Find station's index within station table
882 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800883static int iwl3945_get_sta_id(struct iwl_priv *priv, struct ieee80211_hdr *hdr)
Zhu Yib481de92007-09-25 17:54:57 -0700884{
885 int sta_id;
886 u16 fc = le16_to_cpu(hdr->frame_control);
887
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800888 /* If this frame is broadcast or management, use broadcast station id */
Zhu Yib481de92007-09-25 17:54:57 -0700889 if (((fc & IEEE80211_FCTL_FTYPE) != IEEE80211_FTYPE_DATA) ||
890 is_multicast_ether_addr(hdr->addr1))
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +0800891 return priv->hw_params.bcast_sta_id;
Zhu Yib481de92007-09-25 17:54:57 -0700892
893 switch (priv->iw_mode) {
894
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800895 /* If we are a client station in a BSS network, use the special
896 * AP station entry (that's the only station we communicate with) */
Johannes Berg05c914f2008-09-11 00:01:58 +0200897 case NL80211_IFTYPE_STATION:
Zhu Yib481de92007-09-25 17:54:57 -0700898 return IWL_AP_ID;
899
900 /* If we are an AP, then find the station, or use BCAST */
Johannes Berg05c914f2008-09-11 00:01:58 +0200901 case NL80211_IFTYPE_AP:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800902 sta_id = iwl3945_hw_find_station(priv, hdr->addr1);
Zhu Yib481de92007-09-25 17:54:57 -0700903 if (sta_id != IWL_INVALID_STATION)
904 return sta_id;
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +0800905 return priv->hw_params.bcast_sta_id;
Zhu Yib481de92007-09-25 17:54:57 -0700906
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800907 /* If this frame is going out to an IBSS network, find the station,
908 * or create a new station table entry */
Johannes Berg05c914f2008-09-11 00:01:58 +0200909 case NL80211_IFTYPE_ADHOC: {
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800910 /* Create new station table entry */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800911 sta_id = iwl3945_hw_find_station(priv, hdr->addr1);
Zhu Yib481de92007-09-25 17:54:57 -0700912 if (sta_id != IWL_INVALID_STATION)
913 return sta_id;
914
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800915 sta_id = iwl3945_add_station(priv, hdr->addr1, 0, CMD_ASYNC);
Zhu Yib481de92007-09-25 17:54:57 -0700916
917 if (sta_id != IWL_INVALID_STATION)
918 return sta_id;
919
Tomas Winklere1623442009-01-27 14:27:56 -0800920 IWL_DEBUG_DROP(priv, "Station %pM not in station map. "
Zhu Yib481de92007-09-25 17:54:57 -0700921 "Defaulting to broadcast...\n",
Johannes Berge1749612008-10-27 15:59:26 -0700922 hdr->addr1);
Samuel Ortiz40b8ec02008-12-19 10:37:08 +0800923 iwl_print_hex_dump(priv, IWL_DL_DROP, (u8 *) hdr, sizeof(*hdr));
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +0800924 return priv->hw_params.bcast_sta_id;
Joe Perches0795af52007-10-03 17:59:30 -0700925 }
Stefanik Gábor914233d2008-06-30 17:23:30 +0800926 /* If we are in monitor mode, use BCAST. This is required for
927 * packet injection. */
Johannes Berg05c914f2008-09-11 00:01:58 +0200928 case NL80211_IFTYPE_MONITOR:
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +0800929 return priv->hw_params.bcast_sta_id;
Stefanik Gábor914233d2008-06-30 17:23:30 +0800930
Zhu Yib481de92007-09-25 17:54:57 -0700931 default:
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800932 IWL_WARN(priv, "Unknown mode of operation: %d\n",
933 priv->iw_mode);
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +0800934 return priv->hw_params.bcast_sta_id;
Zhu Yib481de92007-09-25 17:54:57 -0700935 }
936}
937
938/*
939 * start REPLY_TX command process
940 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +0800941static int iwl3945_tx_skb(struct iwl_priv *priv, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -0700942{
943 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Johannes Berge039fa42008-05-15 12:55:29 +0200944 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Winkler, Tomase52119c2008-12-22 11:31:19 +0800945 struct iwl3945_tx_cmd *tx;
Samuel Ortiz188cf6c2008-12-22 11:31:16 +0800946 struct iwl_tx_queue *txq = NULL;
Samuel Ortizd20b3c62008-12-19 10:37:15 +0800947 struct iwl_queue *q = NULL;
Winkler, Tomase52119c2008-12-22 11:31:19 +0800948 struct iwl_cmd *out_cmd = NULL;
Zhu Yib481de92007-09-25 17:54:57 -0700949 dma_addr_t phys_addr;
950 dma_addr_t txcmd_phys;
Winkler, Tomase52119c2008-12-22 11:31:19 +0800951 int txq_id = skb_get_queue_mapping(skb);
Tomas Winkler54dbb522008-05-15 13:54:06 +0800952 u16 len, idx, len_org, hdr_len;
953 u8 id;
954 u8 unicast;
Zhu Yib481de92007-09-25 17:54:57 -0700955 u8 sta_id;
Tomas Winkler54dbb522008-05-15 13:54:06 +0800956 u8 tid = 0;
Zhu Yib481de92007-09-25 17:54:57 -0700957 u16 seq_number = 0;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700958 __le16 fc;
Zhu Yib481de92007-09-25 17:54:57 -0700959 u8 wait_write_ptr = 0;
Tomas Winkler54dbb522008-05-15 13:54:06 +0800960 u8 *qc = NULL;
Zhu Yib481de92007-09-25 17:54:57 -0700961 unsigned long flags;
962 int rc;
963
964 spin_lock_irqsave(&priv->lock, flags);
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +0800965 if (iwl_is_rfkill(priv)) {
Tomas Winklere1623442009-01-27 14:27:56 -0800966 IWL_DEBUG_DROP(priv, "Dropping - RF KILL\n");
Zhu Yib481de92007-09-25 17:54:57 -0700967 goto drop_unlock;
968 }
969
Johannes Berge039fa42008-05-15 12:55:29 +0200970 if ((ieee80211_get_tx_rate(priv->hw, info)->hw_value & 0xFF) == IWL_INVALID_RATE) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800971 IWL_ERR(priv, "ERROR: No TX rate available.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700972 goto drop_unlock;
973 }
974
975 unicast = !is_multicast_ether_addr(hdr->addr1);
976 id = 0;
977
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700978 fc = hdr->frame_control;
Zhu Yib481de92007-09-25 17:54:57 -0700979
Samuel Ortizd08853a2009-01-23 13:45:17 -0800980#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -0700981 if (ieee80211_is_auth(fc))
Tomas Winklere1623442009-01-27 14:27:56 -0800982 IWL_DEBUG_TX(priv, "Sending AUTH frame\n");
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700983 else if (ieee80211_is_assoc_req(fc))
Tomas Winklere1623442009-01-27 14:27:56 -0800984 IWL_DEBUG_TX(priv, "Sending ASSOC frame\n");
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700985 else if (ieee80211_is_reassoc_req(fc))
Tomas Winklere1623442009-01-27 14:27:56 -0800986 IWL_DEBUG_TX(priv, "Sending REASSOC frame\n");
Zhu Yib481de92007-09-25 17:54:57 -0700987#endif
988
Mohamed Abbas7878a5a2007-11-29 11:10:13 +0800989 /* drop all data frame if we are not associated */
Stefanik Gábor914233d2008-06-30 17:23:30 +0800990 if (ieee80211_is_data(fc) &&
Johannes Berg05c914f2008-09-11 00:01:58 +0200991 (priv->iw_mode != NL80211_IFTYPE_MONITOR) && /* packet injection */
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800992 (!iwl_is_associated(priv) ||
Johannes Berg05c914f2008-09-11 00:01:58 +0200993 ((priv->iw_mode == NL80211_IFTYPE_STATION) && !priv->assoc_id))) {
Tomas Winklere1623442009-01-27 14:27:56 -0800994 IWL_DEBUG_DROP(priv, "Dropping - !iwl_is_associated\n");
Zhu Yib481de92007-09-25 17:54:57 -0700995 goto drop_unlock;
996 }
997
998 spin_unlock_irqrestore(&priv->lock, flags);
999
Harvey Harrison7294ec92008-07-15 18:43:59 -07001000 hdr_len = ieee80211_hdrlen(fc);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001001
1002 /* Find (or create) index into station table for destination station */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001003 sta_id = iwl3945_get_sta_id(priv, hdr);
Zhu Yib481de92007-09-25 17:54:57 -07001004 if (sta_id == IWL_INVALID_STATION) {
Tomas Winklere1623442009-01-27 14:27:56 -08001005 IWL_DEBUG_DROP(priv, "Dropping - INVALID STATION: %pM\n",
Johannes Berge1749612008-10-27 15:59:26 -07001006 hdr->addr1);
Zhu Yib481de92007-09-25 17:54:57 -07001007 goto drop;
1008 }
1009
Tomas Winklere1623442009-01-27 14:27:56 -08001010 IWL_DEBUG_RATE(priv, "station Id %d\n", sta_id);
Zhu Yib481de92007-09-25 17:54:57 -07001011
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07001012 if (ieee80211_is_data_qos(fc)) {
1013 qc = ieee80211_get_qos_ctl(hdr);
Harvey Harrison7294ec92008-07-15 18:43:59 -07001014 tid = qc[0] & IEEE80211_QOS_CTL_TID_MASK;
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001015 seq_number = priv->stations_39[sta_id].tid[tid].seq_number &
Zhu Yib481de92007-09-25 17:54:57 -07001016 IEEE80211_SCTL_SEQ;
1017 hdr->seq_ctrl = cpu_to_le16(seq_number) |
1018 (hdr->seq_ctrl &
Harvey Harrisonc1b4aa32009-01-29 13:26:44 -08001019 cpu_to_le16(IEEE80211_SCTL_FRAG));
Zhu Yib481de92007-09-25 17:54:57 -07001020 seq_number += 0x10;
1021 }
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001022
1023 /* Descriptor for chosen Tx queue */
Samuel Ortiz188cf6c2008-12-22 11:31:16 +08001024 txq = &priv->txq[txq_id];
Zhu Yib481de92007-09-25 17:54:57 -07001025 q = &txq->q;
1026
1027 spin_lock_irqsave(&priv->lock, flags);
1028
Tomas Winklerfc4b6852007-10-25 17:15:24 +08001029 idx = get_cmd_index(q, q->write_ptr, 0);
Zhu Yib481de92007-09-25 17:54:57 -07001030
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001031 /* Set up driver data for this TFD */
Winkler, Tomasdbb66542008-12-22 11:31:14 +08001032 memset(&(txq->txb[q->write_ptr]), 0, sizeof(struct iwl_tx_info));
Tomas Winklerfc4b6852007-10-25 17:15:24 +08001033 txq->txb[q->write_ptr].skb[0] = skb;
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001034
1035 /* Init first empty entry in queue's array of Tx/cmd buffers */
Samuel Ortiz188cf6c2008-12-22 11:31:16 +08001036 out_cmd = txq->cmd[idx];
Winkler, Tomase52119c2008-12-22 11:31:19 +08001037 tx = (struct iwl3945_tx_cmd *)out_cmd->cmd.payload;
Zhu Yib481de92007-09-25 17:54:57 -07001038 memset(&out_cmd->hdr, 0, sizeof(out_cmd->hdr));
Winkler, Tomase52119c2008-12-22 11:31:19 +08001039 memset(tx, 0, sizeof(*tx));
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001040
1041 /*
1042 * Set up the Tx-command (not MAC!) header.
1043 * Store the chosen Tx queue and TFD index within the sequence field;
1044 * after Tx, uCode's Tx response will return this value so driver can
1045 * locate the frame within the tx queue and do post-tx processing.
1046 */
Zhu Yib481de92007-09-25 17:54:57 -07001047 out_cmd->hdr.cmd = REPLY_TX;
1048 out_cmd->hdr.sequence = cpu_to_le16((u16)(QUEUE_TO_SEQ(txq_id) |
Tomas Winklerfc4b6852007-10-25 17:15:24 +08001049 INDEX_TO_SEQ(q->write_ptr)));
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001050
1051 /* Copy MAC header from skb into command buffer */
Winkler, Tomase52119c2008-12-22 11:31:19 +08001052 memcpy(tx->hdr, hdr, hdr_len);
Zhu Yib481de92007-09-25 17:54:57 -07001053
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001054 /*
1055 * Use the first empty entry in this queue's command buffer array
1056 * to contain the Tx command and MAC header concatenated together
1057 * (payload data will be in another buffer).
1058 * Size of this varies, due to varying MAC header length.
1059 * If end is not dword aligned, we'll have 2 extra bytes at the end
1060 * of the MAC header (device reads on dword boundaries).
1061 * We'll tell device about this padding later.
1062 */
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08001063 len = sizeof(struct iwl3945_tx_cmd) +
Tomas Winkler4c897252008-12-19 10:37:05 +08001064 sizeof(struct iwl_cmd_header) + hdr_len;
Zhu Yib481de92007-09-25 17:54:57 -07001065
1066 len_org = len;
1067 len = (len + 3) & ~3;
1068
1069 if (len_org != len)
1070 len_org = 1;
1071 else
1072 len_org = 0;
1073
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001074 /* Physical address of this Tx command's header (not MAC header!),
1075 * within command buffer array. */
Samuel Ortiz188cf6c2008-12-22 11:31:16 +08001076 txcmd_phys = pci_map_single(priv->pci_dev,
1077 out_cmd, sizeof(struct iwl_cmd),
1078 PCI_DMA_TODEVICE);
1079 pci_unmap_addr_set(&out_cmd->meta, mapping, txcmd_phys);
1080 pci_unmap_len_set(&out_cmd->meta, len, sizeof(struct iwl_cmd));
1081 /* Add buffer containing Tx command and MAC(!) header to TFD's
1082 * first entry */
1083 txcmd_phys += offsetof(struct iwl_cmd, hdr);
Zhu Yib481de92007-09-25 17:54:57 -07001084
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001085 /* Add buffer containing Tx command and MAC(!) header to TFD's
1086 * first entry */
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -08001087 priv->cfg->ops->lib->txq_attach_buf_to_tfd(priv, txq,
1088 txcmd_phys, len, 1, 0);
Zhu Yib481de92007-09-25 17:54:57 -07001089
Johannes Bergd0f09802008-07-29 11:32:07 +02001090 if (info->control.hw_key)
Johannes Berge039fa42008-05-15 12:55:29 +02001091 iwl3945_build_tx_cmd_hwcrypto(priv, info, out_cmd, skb, 0);
Zhu Yib481de92007-09-25 17:54:57 -07001092
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001093 /* Set up TFD's 2nd entry to point directly to remainder of skb,
1094 * if any (802.11 null frames have no payload). */
Zhu Yib481de92007-09-25 17:54:57 -07001095 len = skb->len - hdr_len;
1096 if (len) {
1097 phys_addr = pci_map_single(priv->pci_dev, skb->data + hdr_len,
1098 len, PCI_DMA_TODEVICE);
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -08001099 priv->cfg->ops->lib->txq_attach_buf_to_tfd(priv, txq,
1100 phys_addr, len,
1101 0, U32_PAD(len));
Zhu Yib481de92007-09-25 17:54:57 -07001102 }
1103
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001104 /* Total # bytes to be transmitted */
Zhu Yib481de92007-09-25 17:54:57 -07001105 len = (u16)skb->len;
Winkler, Tomase52119c2008-12-22 11:31:19 +08001106 tx->len = cpu_to_le16(len);
Zhu Yib481de92007-09-25 17:54:57 -07001107
1108 /* TODO need this for burst mode later on */
Winkler, Tomase52119c2008-12-22 11:31:19 +08001109 iwl3945_build_tx_cmd_basic(priv, out_cmd, info, hdr, sta_id);
Zhu Yib481de92007-09-25 17:54:57 -07001110
1111 /* set is_hcca to 0; it probably will never be implemented */
Johannes Berge039fa42008-05-15 12:55:29 +02001112 iwl3945_hw_build_tx_cmd_rate(priv, out_cmd, info, hdr, sta_id, 0);
Zhu Yib481de92007-09-25 17:54:57 -07001113
Winkler, Tomase52119c2008-12-22 11:31:19 +08001114 tx->tx_flags &= ~TX_CMD_FLG_ANT_A_MSK;
1115 tx->tx_flags &= ~TX_CMD_FLG_ANT_B_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07001116
Harvey Harrison8b7b1e02008-06-11 14:21:56 -07001117 if (!ieee80211_has_morefrags(hdr->frame_control)) {
Zhu Yib481de92007-09-25 17:54:57 -07001118 txq->need_update = 1;
Tomas Winkler3ac7f142008-07-21 02:40:14 +03001119 if (qc)
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08001120 priv->stations_39[sta_id].tid[tid].seq_number = seq_number;
Zhu Yib481de92007-09-25 17:54:57 -07001121 } else {
1122 wait_write_ptr = 1;
1123 txq->need_update = 0;
1124 }
1125
Winkler, Tomase52119c2008-12-22 11:31:19 +08001126 iwl_print_hex_dump(priv, IWL_DL_TX, tx, sizeof(*tx));
Zhu Yib481de92007-09-25 17:54:57 -07001127
Winkler, Tomase52119c2008-12-22 11:31:19 +08001128 iwl_print_hex_dump(priv, IWL_DL_TX, (u8 *)tx->hdr,
Harvey Harrison7294ec92008-07-15 18:43:59 -07001129 ieee80211_hdrlen(fc));
Zhu Yib481de92007-09-25 17:54:57 -07001130
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001131 /* Tell device the write index *just past* this latest filled TFD */
Tomas Winklerc54b6792008-03-06 17:36:53 -08001132 q->write_ptr = iwl_queue_inc_wrap(q->write_ptr, q->n_bd);
Samuel Ortiz4f3602c2009-01-19 15:30:25 -08001133 rc = iwl_txq_update_write_ptr(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -07001134 spin_unlock_irqrestore(&priv->lock, flags);
1135
1136 if (rc)
1137 return rc;
1138
Samuel Ortizd20b3c62008-12-19 10:37:15 +08001139 if ((iwl_queue_space(q) < q->high_mark)
Zhu Yib481de92007-09-25 17:54:57 -07001140 && priv->mac80211_registered) {
1141 if (wait_write_ptr) {
1142 spin_lock_irqsave(&priv->lock, flags);
1143 txq->need_update = 1;
Samuel Ortiz4f3602c2009-01-19 15:30:25 -08001144 iwl_txq_update_write_ptr(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -07001145 spin_unlock_irqrestore(&priv->lock, flags);
1146 }
1147
Johannes Berge2530082008-05-17 00:57:14 +02001148 ieee80211_stop_queue(priv->hw, skb_get_queue_mapping(skb));
Zhu Yib481de92007-09-25 17:54:57 -07001149 }
1150
1151 return 0;
1152
1153drop_unlock:
1154 spin_unlock_irqrestore(&priv->lock, flags);
1155drop:
1156 return -1;
1157}
1158
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001159static void iwl3945_radio_kill_sw(struct iwl_priv *priv, int disable_radio)
Zhu Yib481de92007-09-25 17:54:57 -07001160{
1161 unsigned long flags;
1162
1163 if (!!disable_radio == test_bit(STATUS_RF_KILL_SW, &priv->status))
1164 return;
1165
Tomas Winklere1623442009-01-27 14:27:56 -08001166 IWL_DEBUG_RF_KILL(priv, "Manual SW RF KILL set to: RADIO %s\n",
Zhu Yib481de92007-09-25 17:54:57 -07001167 disable_radio ? "OFF" : "ON");
1168
1169 if (disable_radio) {
Winkler, Tomasaf0053d2009-01-19 15:30:23 -08001170 iwl_scan_cancel(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001171 /* FIXME: This is a workaround for AP */
Johannes Berg05c914f2008-09-11 00:01:58 +02001172 if (priv->iw_mode != NL80211_IFTYPE_AP) {
Zhu Yib481de92007-09-25 17:54:57 -07001173 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001174 iwl_write32(priv, CSR_UCODE_DRV_GP1_SET,
Zhu Yib481de92007-09-25 17:54:57 -07001175 CSR_UCODE_SW_BIT_RFKILL);
1176 spin_unlock_irqrestore(&priv->lock, flags);
Samuel Ortizc4962942008-12-22 11:31:18 +08001177 iwl_send_card_state(priv, CARD_STATE_CMD_DISABLE, 0);
Zhu Yib481de92007-09-25 17:54:57 -07001178 set_bit(STATUS_RF_KILL_SW, &priv->status);
1179 }
1180 return;
1181 }
1182
1183 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001184 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
Zhu Yib481de92007-09-25 17:54:57 -07001185
1186 clear_bit(STATUS_RF_KILL_SW, &priv->status);
1187 spin_unlock_irqrestore(&priv->lock, flags);
1188
1189 /* wake up ucode */
1190 msleep(10);
1191
1192 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001193 iwl_read32(priv, CSR_UCODE_DRV_GP1);
1194 if (!iwl_grab_nic_access(priv))
1195 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001196 spin_unlock_irqrestore(&priv->lock, flags);
1197
1198 if (test_bit(STATUS_RF_KILL_HW, &priv->status)) {
Tomas Winklere1623442009-01-27 14:27:56 -08001199 IWL_DEBUG_RF_KILL(priv, "Can not turn radio back on - "
Zhu Yib481de92007-09-25 17:54:57 -07001200 "disabled by HW switch\n");
1201 return;
1202 }
1203
Zhu Yi808e72a2008-06-12 09:47:17 +08001204 if (priv->is_open)
1205 queue_work(priv->workqueue, &priv->restart);
Zhu Yib481de92007-09-25 17:54:57 -07001206 return;
1207}
1208
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08001209#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -07001210
1211#include "iwl-spectrum.h"
1212
1213#define BEACON_TIME_MASK_LOW 0x00FFFFFF
1214#define BEACON_TIME_MASK_HIGH 0xFF000000
1215#define TIME_UNIT 1024
1216
1217/*
1218 * extended beacon time format
1219 * time in usec will be changed into a 32-bit value in 8:24 format
1220 * the high 1 byte is the beacon counts
1221 * the lower 3 bytes is the time in usec within one beacon interval
1222 */
1223
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001224static u32 iwl3945_usecs_to_beacons(u32 usec, u32 beacon_interval)
Zhu Yib481de92007-09-25 17:54:57 -07001225{
1226 u32 quot;
1227 u32 rem;
1228 u32 interval = beacon_interval * 1024;
1229
1230 if (!interval || !usec)
1231 return 0;
1232
1233 quot = (usec / interval) & (BEACON_TIME_MASK_HIGH >> 24);
1234 rem = (usec % interval) & BEACON_TIME_MASK_LOW;
1235
1236 return (quot << 24) + rem;
1237}
1238
1239/* base is usually what we get from ucode with each received frame,
1240 * the same as HW timer counter counting down
1241 */
1242
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001243static __le32 iwl3945_add_beacon_time(u32 base, u32 addon, u32 beacon_interval)
Zhu Yib481de92007-09-25 17:54:57 -07001244{
1245 u32 base_low = base & BEACON_TIME_MASK_LOW;
1246 u32 addon_low = addon & BEACON_TIME_MASK_LOW;
1247 u32 interval = beacon_interval * TIME_UNIT;
1248 u32 res = (base & BEACON_TIME_MASK_HIGH) +
1249 (addon & BEACON_TIME_MASK_HIGH);
1250
1251 if (base_low > addon_low)
1252 res += base_low - addon_low;
1253 else if (base_low < addon_low) {
1254 res += interval + base_low - addon_low;
1255 res += (1 << 24);
1256 } else
1257 res += (1 << 24);
1258
1259 return cpu_to_le32(res);
1260}
1261
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001262static int iwl3945_get_measurement(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07001263 struct ieee80211_measurement_params *params,
1264 u8 type)
1265{
Tomas Winkler600c0e12008-12-19 10:37:04 +08001266 struct iwl_spectrum_cmd spectrum;
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001267 struct iwl_rx_packet *res;
Winkler, Tomasc2d79b482008-12-19 10:37:34 +08001268 struct iwl_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -07001269 .id = REPLY_SPECTRUM_MEASUREMENT_CMD,
1270 .data = (void *)&spectrum,
1271 .meta.flags = CMD_WANT_SKB,
1272 };
1273 u32 add_time = le64_to_cpu(params->start_time);
1274 int rc;
1275 int spectrum_resp_status;
1276 int duration = le16_to_cpu(params->duration);
1277
Samuel Ortiz8ccde882009-01-27 14:27:52 -08001278 if (iwl_is_associated(priv))
Zhu Yib481de92007-09-25 17:54:57 -07001279 add_time =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001280 iwl3945_usecs_to_beacons(
Zhu Yib481de92007-09-25 17:54:57 -07001281 le64_to_cpu(params->start_time) - priv->last_tsf,
1282 le16_to_cpu(priv->rxon_timing.beacon_interval));
1283
1284 memset(&spectrum, 0, sizeof(spectrum));
1285
1286 spectrum.channel_count = cpu_to_le16(1);
1287 spectrum.flags =
1288 RXON_FLG_TSF2HOST_MSK | RXON_FLG_ANT_A_MSK | RXON_FLG_DIS_DIV_MSK;
1289 spectrum.filter_flags = MEASUREMENT_FILTER_FLAG;
1290 cmd.len = sizeof(spectrum);
1291 spectrum.len = cpu_to_le16(cmd.len - sizeof(spectrum.len));
1292
Samuel Ortiz8ccde882009-01-27 14:27:52 -08001293 if (iwl_is_associated(priv))
Zhu Yib481de92007-09-25 17:54:57 -07001294 spectrum.start_time =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001295 iwl3945_add_beacon_time(priv->last_beacon_time,
Zhu Yib481de92007-09-25 17:54:57 -07001296 add_time,
1297 le16_to_cpu(priv->rxon_timing.beacon_interval));
1298 else
1299 spectrum.start_time = 0;
1300
1301 spectrum.channels[0].duration = cpu_to_le32(duration * TIME_UNIT);
1302 spectrum.channels[0].channel = params->channel;
1303 spectrum.channels[0].type = type;
Samuel Ortiz8ccde882009-01-27 14:27:52 -08001304 if (priv->active_rxon.flags & RXON_FLG_BAND_24G_MSK)
Zhu Yib481de92007-09-25 17:54:57 -07001305 spectrum.flags |= RXON_FLG_BAND_24G_MSK |
1306 RXON_FLG_AUTO_DETECT_MSK | RXON_FLG_TGG_PROTECT_MSK;
1307
Samuel Ortiz518099a2009-01-19 15:30:27 -08001308 rc = iwl_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -07001309 if (rc)
1310 return rc;
1311
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001312 res = (struct iwl_rx_packet *)cmd.meta.u.skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07001313 if (res->hdr.flags & IWL_CMD_FAILED_MSK) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001314 IWL_ERR(priv, "Bad return from REPLY_RX_ON_ASSOC command\n");
Zhu Yib481de92007-09-25 17:54:57 -07001315 rc = -EIO;
1316 }
1317
1318 spectrum_resp_status = le16_to_cpu(res->u.spectrum.status);
1319 switch (spectrum_resp_status) {
1320 case 0: /* Command will be handled */
1321 if (res->u.spectrum.id != 0xff) {
Tomas Winklere1623442009-01-27 14:27:56 -08001322 IWL_DEBUG_INFO(priv, "Replaced existing measurement: %d\n",
Ian Schrambc434dd2007-10-25 17:15:29 +08001323 res->u.spectrum.id);
Zhu Yib481de92007-09-25 17:54:57 -07001324 priv->measurement_status &= ~MEASUREMENT_READY;
1325 }
1326 priv->measurement_status |= MEASUREMENT_ACTIVE;
1327 rc = 0;
1328 break;
1329
1330 case 1: /* Command will not be handled */
1331 rc = -EAGAIN;
1332 break;
1333 }
1334
1335 dev_kfree_skb_any(cmd.meta.u.skb);
1336
1337 return rc;
1338}
1339#endif
1340
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001341static void iwl3945_rx_reply_alive(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001342 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07001343{
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001344 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
1345 struct iwl_alive_resp *palive;
Zhu Yib481de92007-09-25 17:54:57 -07001346 struct delayed_work *pwork;
1347
1348 palive = &pkt->u.alive_frame;
1349
Tomas Winklere1623442009-01-27 14:27:56 -08001350 IWL_DEBUG_INFO(priv, "Alive ucode status 0x%08X revision "
Zhu Yib481de92007-09-25 17:54:57 -07001351 "0x%01X 0x%01X\n",
1352 palive->is_valid, palive->ver_type,
1353 palive->ver_subtype);
1354
1355 if (palive->ver_subtype == INITIALIZE_SUBTYPE) {
Tomas Winklere1623442009-01-27 14:27:56 -08001356 IWL_DEBUG_INFO(priv, "Initialization Alive received.\n");
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001357 memcpy(&priv->card_alive_init, &pkt->u.alive_frame,
1358 sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07001359 pwork = &priv->init_alive_start;
1360 } else {
Tomas Winklere1623442009-01-27 14:27:56 -08001361 IWL_DEBUG_INFO(priv, "Runtime Alive received.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001362 memcpy(&priv->card_alive, &pkt->u.alive_frame,
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001363 sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07001364 pwork = &priv->alive_start;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001365 iwl3945_disable_events(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001366 }
1367
1368 /* We delay the ALIVE response by 5ms to
1369 * give the HW RF Kill time to activate... */
1370 if (palive->is_valid == UCODE_VALID_OK)
1371 queue_delayed_work(priv->workqueue, pwork,
1372 msecs_to_jiffies(5));
1373 else
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001374 IWL_WARN(priv, "uCode did not respond OK.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001375}
1376
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001377static void iwl3945_rx_reply_add_sta(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001378 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07001379{
Helmut Schaac7e035a2009-01-19 13:02:15 +01001380#ifdef CONFIG_IWLWIFI_DEBUG
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001381 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
Helmut Schaac7e035a2009-01-19 13:02:15 +01001382#endif
Zhu Yib481de92007-09-25 17:54:57 -07001383
Tomas Winklere1623442009-01-27 14:27:56 -08001384 IWL_DEBUG_RX(priv, "Received REPLY_ADD_STA: 0x%02X\n", pkt->u.status);
Zhu Yib481de92007-09-25 17:54:57 -07001385 return;
1386}
1387
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001388static void iwl3945_bg_beacon_update(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -07001389{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001390 struct iwl_priv *priv =
1391 container_of(work, struct iwl_priv, beacon_update);
Zhu Yib481de92007-09-25 17:54:57 -07001392 struct sk_buff *beacon;
1393
1394 /* Pull updated AP beacon from mac80211. will fail if not in AP mode */
Johannes Berge039fa42008-05-15 12:55:29 +02001395 beacon = ieee80211_beacon_get(priv->hw, priv->vif);
Zhu Yib481de92007-09-25 17:54:57 -07001396
1397 if (!beacon) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001398 IWL_ERR(priv, "update beacon failed\n");
Zhu Yib481de92007-09-25 17:54:57 -07001399 return;
1400 }
1401
1402 mutex_lock(&priv->mutex);
1403 /* new beacon skb is allocated every time; dispose previous.*/
1404 if (priv->ibss_beacon)
1405 dev_kfree_skb(priv->ibss_beacon);
1406
1407 priv->ibss_beacon = beacon;
1408 mutex_unlock(&priv->mutex);
1409
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001410 iwl3945_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001411}
1412
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001413static void iwl3945_rx_beacon_notif(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001414 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07001415{
Samuel Ortizd08853a2009-01-23 13:45:17 -08001416#ifdef CONFIG_IWLWIFI_DEBUG
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001417 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001418 struct iwl3945_beacon_notif *beacon = &(pkt->u.beacon_status);
Zhu Yib481de92007-09-25 17:54:57 -07001419 u8 rate = beacon->beacon_notify_hdr.rate;
1420
Tomas Winklere1623442009-01-27 14:27:56 -08001421 IWL_DEBUG_RX(priv, "beacon status %x retries %d iss %d "
Zhu Yib481de92007-09-25 17:54:57 -07001422 "tsf %d %d rate %d\n",
1423 le32_to_cpu(beacon->beacon_notify_hdr.status) & TX_STATUS_MSK,
1424 beacon->beacon_notify_hdr.failure_frame,
1425 le32_to_cpu(beacon->ibss_mgr_status),
1426 le32_to_cpu(beacon->high_tsf),
1427 le32_to_cpu(beacon->low_tsf), rate);
1428#endif
1429
Johannes Berg05c914f2008-09-11 00:01:58 +02001430 if ((priv->iw_mode == NL80211_IFTYPE_AP) &&
Zhu Yib481de92007-09-25 17:54:57 -07001431 (!test_bit(STATUS_EXIT_PENDING, &priv->status)))
1432 queue_work(priv->workqueue, &priv->beacon_update);
1433}
1434
Zhu Yib481de92007-09-25 17:54:57 -07001435/* Handle notification from uCode that card's power state is changing
1436 * due to software, hardware, or critical temperature RFKILL */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001437static void iwl3945_rx_card_state_notif(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001438 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07001439{
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001440 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07001441 u32 flags = le32_to_cpu(pkt->u.card_state_notif.flags);
1442 unsigned long status = priv->status;
1443
Tomas Winklere1623442009-01-27 14:27:56 -08001444 IWL_DEBUG_RF_KILL(priv, "Card state received: HW:%s SW:%s\n",
Zhu Yib481de92007-09-25 17:54:57 -07001445 (flags & HW_CARD_DISABLED) ? "Kill" : "On",
1446 (flags & SW_CARD_DISABLED) ? "Kill" : "On");
1447
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08001448 iwl_write32(priv, CSR_UCODE_DRV_GP1_SET,
Zhu Yib481de92007-09-25 17:54:57 -07001449 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
1450
1451 if (flags & HW_CARD_DISABLED)
1452 set_bit(STATUS_RF_KILL_HW, &priv->status);
1453 else
1454 clear_bit(STATUS_RF_KILL_HW, &priv->status);
1455
1456
1457 if (flags & SW_CARD_DISABLED)
1458 set_bit(STATUS_RF_KILL_SW, &priv->status);
1459 else
1460 clear_bit(STATUS_RF_KILL_SW, &priv->status);
1461
Winkler, Tomasaf0053d2009-01-19 15:30:23 -08001462 iwl_scan_cancel(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001463
1464 if ((test_bit(STATUS_RF_KILL_HW, &status) !=
1465 test_bit(STATUS_RF_KILL_HW, &priv->status)) ||
1466 (test_bit(STATUS_RF_KILL_SW, &status) !=
1467 test_bit(STATUS_RF_KILL_SW, &priv->status)))
1468 queue_work(priv->workqueue, &priv->rf_kill);
1469 else
1470 wake_up_interruptible(&priv->wait_command_queue);
1471}
1472
1473/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001474 * iwl3945_setup_rx_handlers - Initialize Rx handler callbacks
Zhu Yib481de92007-09-25 17:54:57 -07001475 *
1476 * Setup the RX handlers for each of the reply types sent from the uCode
1477 * to the host.
1478 *
1479 * This function chains into the hardware specific files for them to setup
1480 * any hardware specific handlers as well.
1481 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001482static void iwl3945_setup_rx_handlers(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001483{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001484 priv->rx_handlers[REPLY_ALIVE] = iwl3945_rx_reply_alive;
1485 priv->rx_handlers[REPLY_ADD_STA] = iwl3945_rx_reply_add_sta;
Abhijeet Kolekar261b9c32009-02-18 15:54:29 -08001486 priv->rx_handlers[REPLY_ERROR] = iwl_rx_reply_error;
Samuel Ortiz8ccde882009-01-27 14:27:52 -08001487 priv->rx_handlers[CHANNEL_SWITCH_NOTIFICATION] = iwl_rx_csa;
Abhijeet Kolekar030f05e2009-02-18 15:54:28 -08001488 priv->rx_handlers[PM_SLEEP_NOTIFICATION] = iwl_rx_pm_sleep_notif;
Zhu Yib481de92007-09-25 17:54:57 -07001489 priv->rx_handlers[PM_DEBUG_STATISTIC_NOTIFIC] =
Abhijeet Kolekar030f05e2009-02-18 15:54:28 -08001490 iwl_rx_pm_debug_statistics_notif;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001491 priv->rx_handlers[BEACON_NOTIFICATION] = iwl3945_rx_beacon_notif;
Zhu Yib481de92007-09-25 17:54:57 -07001492
Ben Cahill9fbab512007-11-29 11:09:47 +08001493 /*
1494 * The same handler is used for both the REPLY to a discrete
1495 * statistics request from the host as well as for the periodic
1496 * statistics notifications (after received beacons) from the uCode.
Zhu Yib481de92007-09-25 17:54:57 -07001497 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001498 priv->rx_handlers[REPLY_STATISTICS_CMD] = iwl3945_hw_rx_statistics;
1499 priv->rx_handlers[STATISTICS_NOTIFICATION] = iwl3945_hw_rx_statistics;
Zhu Yib481de92007-09-25 17:54:57 -07001500
Abhijeet Kolekar261b9c32009-02-18 15:54:29 -08001501 iwl_setup_spectrum_handlers(priv);
Abhijeet Kolekarcade0eb2009-02-18 15:54:26 -08001502 iwl_setup_rx_scan_handlers(priv);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001503 priv->rx_handlers[CARD_STATE_NOTIFICATION] = iwl3945_rx_card_state_notif;
Zhu Yib481de92007-09-25 17:54:57 -07001504
Ben Cahill9fbab512007-11-29 11:09:47 +08001505 /* Set up hardware specific Rx handlers */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001506 iwl3945_hw_rx_handler_setup(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001507}
1508
1509/**
Tomas Winkler91c066f2008-03-06 17:36:55 -08001510 * iwl3945_cmd_queue_reclaim - Reclaim CMD queue entries
1511 * When FW advances 'R' index, all entries between old and new 'R' index
1512 * need to be reclaimed.
1513 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001514static void iwl3945_cmd_queue_reclaim(struct iwl_priv *priv,
Tomas Winkler91c066f2008-03-06 17:36:55 -08001515 int txq_id, int index)
1516{
Samuel Ortiz188cf6c2008-12-22 11:31:16 +08001517 struct iwl_tx_queue *txq = &priv->txq[txq_id];
Samuel Ortizd20b3c62008-12-19 10:37:15 +08001518 struct iwl_queue *q = &txq->q;
Tomas Winkler91c066f2008-03-06 17:36:55 -08001519 int nfreed = 0;
1520
Winkler, Tomas625a3812009-01-08 10:19:55 -08001521 if ((index >= q->n_bd) || (iwl_queue_used(q, index) == 0)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001522 IWL_ERR(priv, "Read index for DMA queue txq id (%d), index %d, "
Tomas Winkler91c066f2008-03-06 17:36:55 -08001523 "is out of range [0-%d] %d %d.\n", txq_id,
1524 index, q->n_bd, q->write_ptr, q->read_ptr);
1525 return;
1526 }
1527
1528 for (index = iwl_queue_inc_wrap(index, q->n_bd); q->read_ptr != index;
1529 q->read_ptr = iwl_queue_inc_wrap(q->read_ptr, q->n_bd)) {
1530 if (nfreed > 1) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001531 IWL_ERR(priv, "HCMD skipped: index (%d) %d %d\n", index,
Tomas Winkler91c066f2008-03-06 17:36:55 -08001532 q->write_ptr, q->read_ptr);
1533 queue_work(priv->workqueue, &priv->restart);
1534 break;
1535 }
1536 nfreed++;
1537 }
1538}
1539
1540
1541/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001542 * iwl3945_tx_cmd_complete - Pull unused buffers off the queue and reclaim them
Zhu Yib481de92007-09-25 17:54:57 -07001543 * @rxb: Rx buffer to reclaim
1544 *
1545 * If an Rx buffer has an async callback associated with it the callback
1546 * will be executed. The attached skb (if present) will only be freed
1547 * if the callback returns 1
1548 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001549static void iwl3945_tx_cmd_complete(struct iwl_priv *priv,
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001550 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07001551{
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001552 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07001553 u16 sequence = le16_to_cpu(pkt->hdr.sequence);
1554 int txq_id = SEQ_TO_QUEUE(sequence);
1555 int index = SEQ_TO_INDEX(sequence);
Tomas Winkler600c0e12008-12-19 10:37:04 +08001556 int huge = !!(pkt->hdr.sequence & SEQ_HUGE_FRAME);
Zhu Yib481de92007-09-25 17:54:57 -07001557 int cmd_index;
Winkler, Tomasc2d79b482008-12-19 10:37:34 +08001558 struct iwl_cmd *cmd;
Zhu Yib481de92007-09-25 17:54:57 -07001559
Chatre, Reinette638d0eb2009-01-19 15:30:24 -08001560 if (WARN(txq_id != IWL_CMD_QUEUE_NUM,
1561 "wrong command queue %d, sequence 0x%X readp=%d writep=%d\n",
1562 txq_id, sequence,
1563 priv->txq[IWL_CMD_QUEUE_NUM].q.read_ptr,
1564 priv->txq[IWL_CMD_QUEUE_NUM].q.write_ptr)) {
1565 iwl_print_hex_dump(priv, IWL_DL_INFO , rxb, 32);
1566 return;
1567 }
Zhu Yib481de92007-09-25 17:54:57 -07001568
Samuel Ortiz188cf6c2008-12-22 11:31:16 +08001569 cmd_index = get_cmd_index(&priv->txq[IWL_CMD_QUEUE_NUM].q, index, huge);
1570 cmd = priv->txq[IWL_CMD_QUEUE_NUM].cmd[cmd_index];
Zhu Yib481de92007-09-25 17:54:57 -07001571
1572 /* Input error checking is done when commands are added to queue. */
1573 if (cmd->meta.flags & CMD_WANT_SKB) {
1574 cmd->meta.source->u.skb = rxb->skb;
1575 rxb->skb = NULL;
1576 } else if (cmd->meta.u.callback &&
1577 !cmd->meta.u.callback(priv, cmd, rxb->skb))
1578 rxb->skb = NULL;
1579
Tomas Winkler91c066f2008-03-06 17:36:55 -08001580 iwl3945_cmd_queue_reclaim(priv, txq_id, index);
Zhu Yib481de92007-09-25 17:54:57 -07001581
1582 if (!(cmd->meta.flags & CMD_ASYNC)) {
1583 clear_bit(STATUS_HCMD_ACTIVE, &priv->status);
1584 wake_up_interruptible(&priv->wait_command_queue);
1585 }
1586}
1587
1588/************************** RX-FUNCTIONS ****************************/
1589/*
1590 * Rx theory of operation
1591 *
1592 * The host allocates 32 DMA target addresses and passes the host address
1593 * to the firmware at register IWL_RFDS_TABLE_LOWER + N * RFD_SIZE where N is
1594 * 0 to 31
1595 *
1596 * Rx Queue Indexes
1597 * The host/firmware share two index registers for managing the Rx buffers.
1598 *
1599 * The READ index maps to the first position that the firmware may be writing
1600 * to -- the driver can read up to (but not including) this position and get
1601 * good data.
1602 * The READ index is managed by the firmware once the card is enabled.
1603 *
1604 * The WRITE index maps to the last position the driver has read from -- the
1605 * position preceding WRITE is the last slot the firmware can place a packet.
1606 *
1607 * The queue is empty (no good data) if WRITE = READ - 1, and is full if
1608 * WRITE = READ.
1609 *
Ben Cahill9fbab512007-11-29 11:09:47 +08001610 * During initialization, the host sets up the READ queue position to the first
Zhu Yib481de92007-09-25 17:54:57 -07001611 * INDEX position, and WRITE to the last (READ - 1 wrapped)
1612 *
Ben Cahill9fbab512007-11-29 11:09:47 +08001613 * When the firmware places a packet in a buffer, it will advance the READ index
Zhu Yib481de92007-09-25 17:54:57 -07001614 * and fire the RX interrupt. The driver can then query the READ index and
1615 * process as many packets as possible, moving the WRITE index forward as it
1616 * resets the Rx queue buffers with new memory.
1617 *
1618 * The management in the driver is as follows:
1619 * + A list of pre-allocated SKBs is stored in iwl->rxq->rx_free. When
1620 * iwl->rxq->free_count drops to or below RX_LOW_WATERMARK, work is scheduled
Ian Schram01ebd062007-10-25 17:15:22 +08001621 * to replenish the iwl->rxq->rx_free.
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001622 * + In iwl3945_rx_replenish (scheduled) if 'processed' != 'read' then the
Zhu Yib481de92007-09-25 17:54:57 -07001623 * iwl->rxq is replenished and the READ INDEX is updated (updating the
1624 * 'processed' and 'read' driver indexes as well)
1625 * + A received packet is processed and handed to the kernel network stack,
1626 * detached from the iwl->rxq. The driver 'processed' index is updated.
1627 * + The Host/Firmware iwl->rxq is replenished at tasklet time from the rx_free
1628 * list. If there are no allocated buffers in iwl->rxq->rx_free, the READ
1629 * INDEX is not incremented and iwl->status(RX_STALLED) is set. If there
1630 * were enough free buffers and RX_STALLED is set it is cleared.
1631 *
1632 *
1633 * Driver sequence:
1634 *
Ben Cahill9fbab512007-11-29 11:09:47 +08001635 * iwl3945_rx_replenish() Replenishes rx_free list from rx_used, and calls
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001636 * iwl3945_rx_queue_restock
Ben Cahill9fbab512007-11-29 11:09:47 +08001637 * iwl3945_rx_queue_restock() Moves available buffers from rx_free into Rx
Zhu Yib481de92007-09-25 17:54:57 -07001638 * queue, updates firmware pointers, and updates
1639 * the WRITE index. If insufficient rx_free buffers
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001640 * are available, schedules iwl3945_rx_replenish
Zhu Yib481de92007-09-25 17:54:57 -07001641 *
1642 * -- enable interrupts --
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001643 * ISR - iwl3945_rx() Detach iwl_rx_mem_buffers from pool up to the
Zhu Yib481de92007-09-25 17:54:57 -07001644 * READ INDEX, detaching the SKB from the pool.
1645 * Moves the packet buffer from queue to rx_used.
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001646 * Calls iwl3945_rx_queue_restock to refill any empty
Zhu Yib481de92007-09-25 17:54:57 -07001647 * slots.
1648 * ...
1649 *
1650 */
1651
1652/**
Ben Cahill9fbab512007-11-29 11:09:47 +08001653 * iwl3945_dma_addr2rbd_ptr - convert a DMA address to a uCode read buffer ptr
Zhu Yib481de92007-09-25 17:54:57 -07001654 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001655static inline __le32 iwl3945_dma_addr2rbd_ptr(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07001656 dma_addr_t dma_addr)
1657{
1658 return cpu_to_le32((u32)dma_addr);
1659}
1660
1661/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001662 * iwl3945_rx_queue_restock - refill RX queue from pre-allocated pool
Zhu Yib481de92007-09-25 17:54:57 -07001663 *
Ben Cahill9fbab512007-11-29 11:09:47 +08001664 * If there are slots in the RX queue that need to be restocked,
Zhu Yib481de92007-09-25 17:54:57 -07001665 * and we have free pre-allocated buffers, fill the ranks as much
Ben Cahill9fbab512007-11-29 11:09:47 +08001666 * as we can, pulling from rx_free.
Zhu Yib481de92007-09-25 17:54:57 -07001667 *
1668 * This moves the 'write' index forward to catch up with 'processed', and
1669 * also updates the memory address in the firmware to reference the new
1670 * target buffer.
1671 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001672static int iwl3945_rx_queue_restock(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001673{
Abhijeet Kolekarcc2f3622008-12-19 10:37:25 +08001674 struct iwl_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07001675 struct list_head *element;
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001676 struct iwl_rx_mem_buffer *rxb;
Zhu Yib481de92007-09-25 17:54:57 -07001677 unsigned long flags;
1678 int write, rc;
1679
1680 spin_lock_irqsave(&rxq->lock, flags);
1681 write = rxq->write & ~0x7;
Winkler, Tomas37d68312009-01-08 10:19:54 -08001682 while ((iwl_rx_queue_space(rxq) > 0) && (rxq->free_count)) {
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001683 /* Get next free Rx buffer, remove from free list */
Zhu Yib481de92007-09-25 17:54:57 -07001684 element = rxq->rx_free.next;
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001685 rxb = list_entry(element, struct iwl_rx_mem_buffer, list);
Zhu Yib481de92007-09-25 17:54:57 -07001686 list_del(element);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001687
1688 /* Point to Rx buffer via next RBD in circular buffer */
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001689 rxq->bd[rxq->write] = iwl3945_dma_addr2rbd_ptr(priv, rxb->real_dma_addr);
Zhu Yib481de92007-09-25 17:54:57 -07001690 rxq->queue[rxq->write] = rxb;
1691 rxq->write = (rxq->write + 1) & RX_QUEUE_MASK;
1692 rxq->free_count--;
1693 }
1694 spin_unlock_irqrestore(&rxq->lock, flags);
1695 /* If the pre-allocated buffer pool is dropping low, schedule to
1696 * refill it */
1697 if (rxq->free_count <= RX_LOW_WATERMARK)
1698 queue_work(priv->workqueue, &priv->rx_replenish);
1699
1700
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001701 /* If we've added more space for the firmware to place data, tell it.
1702 * Increment device's write pointer in multiples of 8. */
Zhu Yib481de92007-09-25 17:54:57 -07001703 if ((write != (rxq->write & ~0x7))
1704 || (abs(rxq->write - rxq->read) > 7)) {
1705 spin_lock_irqsave(&rxq->lock, flags);
1706 rxq->need_update = 1;
1707 spin_unlock_irqrestore(&rxq->lock, flags);
Winkler, Tomas141c43a2009-01-08 10:19:53 -08001708 rc = iwl_rx_queue_update_write_ptr(priv, rxq);
Zhu Yib481de92007-09-25 17:54:57 -07001709 if (rc)
1710 return rc;
1711 }
1712
1713 return 0;
1714}
1715
1716/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001717 * iwl3945_rx_replenish - Move all used packet from rx_used to rx_free
Zhu Yib481de92007-09-25 17:54:57 -07001718 *
1719 * When moving to rx_free an SKB is allocated for the slot.
1720 *
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001721 * Also restock the Rx queue via iwl3945_rx_queue_restock.
Ian Schram01ebd062007-10-25 17:15:22 +08001722 * This is called as a scheduled work item (except for during initialization)
Zhu Yib481de92007-09-25 17:54:57 -07001723 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001724static void iwl3945_rx_allocate(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001725{
Abhijeet Kolekarcc2f3622008-12-19 10:37:25 +08001726 struct iwl_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07001727 struct list_head *element;
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001728 struct iwl_rx_mem_buffer *rxb;
Zhu Yib481de92007-09-25 17:54:57 -07001729 unsigned long flags;
1730 spin_lock_irqsave(&rxq->lock, flags);
1731 while (!list_empty(&rxq->rx_used)) {
1732 element = rxq->rx_used.next;
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001733 rxb = list_entry(element, struct iwl_rx_mem_buffer, list);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001734
1735 /* Alloc a new receive buffer */
Zhu Yib481de92007-09-25 17:54:57 -07001736 rxb->skb =
Winkler, Tomas1e33dc62009-01-08 10:19:57 -08001737 alloc_skb(priv->hw_params.rx_buf_size,
1738 __GFP_NOWARN | GFP_ATOMIC);
Zhu Yib481de92007-09-25 17:54:57 -07001739 if (!rxb->skb) {
1740 if (net_ratelimit())
Tomas Winkler978785a2008-12-19 10:37:31 +08001741 IWL_CRIT(priv, ": Can not allocate SKB buffers\n");
Zhu Yib481de92007-09-25 17:54:57 -07001742 /* We don't reschedule replenish work here -- we will
1743 * call the restock method and if it still needs
1744 * more buffers it will schedule replenish */
1745 break;
1746 }
Zhu Yi12342c42007-12-20 11:27:32 +08001747
1748 /* If radiotap head is required, reserve some headroom here.
1749 * The physical head count is a variable rx_stats->phy_count.
1750 * We reserve 4 bytes here. Plus these extra bytes, the
1751 * headroom of the physical head should be enough for the
1752 * radiotap head that iwl3945 supported. See iwl3945_rt.
1753 */
1754 skb_reserve(rxb->skb, 4);
1755
Zhu Yib481de92007-09-25 17:54:57 -07001756 priv->alloc_rxb_skb++;
1757 list_del(element);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001758
1759 /* Get physical address of RB/SKB */
Winkler, Tomas1e33dc62009-01-08 10:19:57 -08001760 rxb->real_dma_addr = pci_map_single(priv->pci_dev,
1761 rxb->skb->data,
1762 priv->hw_params.rx_buf_size,
1763 PCI_DMA_FROMDEVICE);
Zhu Yib481de92007-09-25 17:54:57 -07001764 list_add_tail(&rxb->list, &rxq->rx_free);
1765 rxq->free_count++;
1766 }
1767 spin_unlock_irqrestore(&rxq->lock, flags);
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001768}
1769
1770/*
1771 * this should be called while priv->lock is locked
1772 */
Tomas Winkler4fd1f842007-12-05 20:59:58 +02001773static void __iwl3945_rx_replenish(void *data)
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001774{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001775 struct iwl_priv *priv = data;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001776
1777 iwl3945_rx_allocate(priv);
1778 iwl3945_rx_queue_restock(priv);
1779}
1780
1781
1782void iwl3945_rx_replenish(void *data)
1783{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001784 struct iwl_priv *priv = data;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001785 unsigned long flags;
1786
1787 iwl3945_rx_allocate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001788
1789 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001790 iwl3945_rx_queue_restock(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001791 spin_unlock_irqrestore(&priv->lock, flags);
1792}
1793
Zhu Yib481de92007-09-25 17:54:57 -07001794/* Convert linear signal-to-noise ratio into dB */
1795static u8 ratio2dB[100] = {
1796/* 0 1 2 3 4 5 6 7 8 9 */
1797 0, 0, 6, 10, 12, 14, 16, 17, 18, 19, /* 00 - 09 */
1798 20, 21, 22, 22, 23, 23, 24, 25, 26, 26, /* 10 - 19 */
1799 26, 26, 26, 27, 27, 28, 28, 28, 29, 29, /* 20 - 29 */
1800 29, 30, 30, 30, 31, 31, 31, 31, 32, 32, /* 30 - 39 */
1801 32, 32, 32, 33, 33, 33, 33, 33, 34, 34, /* 40 - 49 */
1802 34, 34, 34, 34, 35, 35, 35, 35, 35, 35, /* 50 - 59 */
1803 36, 36, 36, 36, 36, 36, 36, 37, 37, 37, /* 60 - 69 */
1804 37, 37, 37, 37, 37, 38, 38, 38, 38, 38, /* 70 - 79 */
1805 38, 38, 38, 38, 38, 39, 39, 39, 39, 39, /* 80 - 89 */
1806 39, 39, 39, 39, 39, 40, 40, 40, 40, 40 /* 90 - 99 */
1807};
1808
1809/* Calculates a relative dB value from a ratio of linear
1810 * (i.e. not dB) signal levels.
1811 * Conversion assumes that levels are voltages (20*log), not powers (10*log). */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001812int iwl3945_calc_db_from_ratio(int sig_ratio)
Zhu Yib481de92007-09-25 17:54:57 -07001813{
Adrian Bunk221c80c2008-02-02 23:19:01 +02001814 /* 1000:1 or higher just report as 60 dB */
1815 if (sig_ratio >= 1000)
Zhu Yib481de92007-09-25 17:54:57 -07001816 return 60;
1817
Adrian Bunk221c80c2008-02-02 23:19:01 +02001818 /* 100:1 or higher, divide by 10 and use table,
Zhu Yib481de92007-09-25 17:54:57 -07001819 * add 20 dB to make up for divide by 10 */
Adrian Bunk221c80c2008-02-02 23:19:01 +02001820 if (sig_ratio >= 100)
Tomas Winkler3ac7f142008-07-21 02:40:14 +03001821 return 20 + (int)ratio2dB[sig_ratio/10];
Zhu Yib481de92007-09-25 17:54:57 -07001822
1823 /* We shouldn't see this */
1824 if (sig_ratio < 1)
1825 return 0;
1826
1827 /* Use table for ratios 1:1 - 99:1 */
1828 return (int)ratio2dB[sig_ratio];
1829}
1830
1831#define PERFECT_RSSI (-20) /* dBm */
1832#define WORST_RSSI (-95) /* dBm */
1833#define RSSI_RANGE (PERFECT_RSSI - WORST_RSSI)
1834
1835/* Calculate an indication of rx signal quality (a percentage, not dBm!).
1836 * See http://www.ces.clemson.edu/linux/signal_quality.shtml for info
1837 * about formulas used below. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001838int iwl3945_calc_sig_qual(int rssi_dbm, int noise_dbm)
Zhu Yib481de92007-09-25 17:54:57 -07001839{
1840 int sig_qual;
1841 int degradation = PERFECT_RSSI - rssi_dbm;
1842
1843 /* If we get a noise measurement, use signal-to-noise ratio (SNR)
1844 * as indicator; formula is (signal dbm - noise dbm).
1845 * SNR at or above 40 is a great signal (100%).
1846 * Below that, scale to fit SNR of 0 - 40 dB within 0 - 100% indicator.
1847 * Weakest usable signal is usually 10 - 15 dB SNR. */
1848 if (noise_dbm) {
1849 if (rssi_dbm - noise_dbm >= 40)
1850 return 100;
1851 else if (rssi_dbm < noise_dbm)
1852 return 0;
1853 sig_qual = ((rssi_dbm - noise_dbm) * 5) / 2;
1854
1855 /* Else use just the signal level.
1856 * This formula is a least squares fit of data points collected and
1857 * compared with a reference system that had a percentage (%) display
1858 * for signal quality. */
1859 } else
1860 sig_qual = (100 * (RSSI_RANGE * RSSI_RANGE) - degradation *
1861 (15 * RSSI_RANGE + 62 * degradation)) /
1862 (RSSI_RANGE * RSSI_RANGE);
1863
1864 if (sig_qual > 100)
1865 sig_qual = 100;
1866 else if (sig_qual < 1)
1867 sig_qual = 0;
1868
1869 return sig_qual;
1870}
1871
1872/**
Ben Cahill9fbab512007-11-29 11:09:47 +08001873 * iwl3945_rx_handle - Main entry function for receiving responses from uCode
Zhu Yib481de92007-09-25 17:54:57 -07001874 *
1875 * Uses the priv->rx_handlers callback function array to invoke
1876 * the appropriate handlers, including command responses,
1877 * frame-received notifications, and other notifications.
1878 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001879static void iwl3945_rx_handle(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001880{
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001881 struct iwl_rx_mem_buffer *rxb;
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001882 struct iwl_rx_packet *pkt;
Abhijeet Kolekarcc2f3622008-12-19 10:37:25 +08001883 struct iwl_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07001884 u32 r, i;
1885 int reclaim;
1886 unsigned long flags;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001887 u8 fill_rx = 0;
Mohamed Abbasd68ab682008-02-07 13:16:33 -08001888 u32 count = 8;
Zhu Yib481de92007-09-25 17:54:57 -07001889
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001890 /* uCode's read index (stored in shared DRAM) indicates the last Rx
1891 * buffer that the driver may process (last buffer filled by ucode). */
Winkler, Tomas8cd812b2008-12-19 10:37:43 +08001892 r = le16_to_cpu(rxq->rb_stts->closed_rb_num) & 0x0FFF;
Zhu Yib481de92007-09-25 17:54:57 -07001893 i = rxq->read;
1894
Winkler, Tomas37d68312009-01-08 10:19:54 -08001895 if (iwl_rx_queue_space(rxq) > (RX_QUEUE_SIZE / 2))
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001896 fill_rx = 1;
Zhu Yib481de92007-09-25 17:54:57 -07001897 /* Rx interrupt, but nothing sent from uCode */
1898 if (i == r)
Tomas Winklere1623442009-01-27 14:27:56 -08001899 IWL_DEBUG(priv, IWL_DL_RX | IWL_DL_ISR, "r = %d, i = %d\n", r, i);
Zhu Yib481de92007-09-25 17:54:57 -07001900
1901 while (i != r) {
1902 rxb = rxq->queue[i];
1903
Ben Cahill9fbab512007-11-29 11:09:47 +08001904 /* If an RXB doesn't have a Rx queue slot associated with it,
Zhu Yib481de92007-09-25 17:54:57 -07001905 * then a bug has been introduced in the queue refilling
1906 * routines -- catch it here */
1907 BUG_ON(rxb == NULL);
1908
1909 rxq->queue[i] = NULL;
1910
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001911 pci_dma_sync_single_for_cpu(priv->pci_dev, rxb->real_dma_addr,
Winkler, Tomas1e33dc62009-01-08 10:19:57 -08001912 priv->hw_params.rx_buf_size,
Zhu Yib481de92007-09-25 17:54:57 -07001913 PCI_DMA_FROMDEVICE);
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08001914 pkt = (struct iwl_rx_packet *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07001915
1916 /* Reclaim a command buffer only if this packet is a response
1917 * to a (driver-originated) command.
1918 * If the packet (e.g. Rx frame) originated from uCode,
1919 * there is no command buffer to reclaim.
1920 * Ucode should set SEQ_RX_FRAME bit if ucode-originated,
1921 * but apparently a few don't get set; catch them here. */
1922 reclaim = !(pkt->hdr.sequence & SEQ_RX_FRAME) &&
1923 (pkt->hdr.cmd != STATISTICS_NOTIFICATION) &&
1924 (pkt->hdr.cmd != REPLY_TX);
1925
1926 /* Based on type of command response or notification,
1927 * handle those that need handling via function in
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001928 * rx_handlers table. See iwl3945_setup_rx_handlers() */
Zhu Yib481de92007-09-25 17:54:57 -07001929 if (priv->rx_handlers[pkt->hdr.cmd]) {
Tomas Winklere1623442009-01-27 14:27:56 -08001930 IWL_DEBUG(priv, IWL_DL_HCMD | IWL_DL_RX | IWL_DL_ISR,
Zhu Yib481de92007-09-25 17:54:57 -07001931 "r = %d, i = %d, %s, 0x%02x\n", r, i,
1932 get_cmd_string(pkt->hdr.cmd), pkt->hdr.cmd);
1933 priv->rx_handlers[pkt->hdr.cmd] (priv, rxb);
1934 } else {
1935 /* No handling needed */
Tomas Winklere1623442009-01-27 14:27:56 -08001936 IWL_DEBUG(priv, IWL_DL_HCMD | IWL_DL_RX | IWL_DL_ISR,
Zhu Yib481de92007-09-25 17:54:57 -07001937 "r %d i %d No handler needed for %s, 0x%02x\n",
1938 r, i, get_cmd_string(pkt->hdr.cmd),
1939 pkt->hdr.cmd);
1940 }
1941
1942 if (reclaim) {
Ben Cahill9fbab512007-11-29 11:09:47 +08001943 /* Invoke any callbacks, transfer the skb to caller, and
Samuel Ortiz518099a2009-01-19 15:30:27 -08001944 * fire off the (possibly) blocking iwl_send_cmd()
Zhu Yib481de92007-09-25 17:54:57 -07001945 * as we reclaim the driver command queue */
1946 if (rxb && rxb->skb)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001947 iwl3945_tx_cmd_complete(priv, rxb);
Zhu Yib481de92007-09-25 17:54:57 -07001948 else
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001949 IWL_WARN(priv, "Claim null rxb?\n");
Zhu Yib481de92007-09-25 17:54:57 -07001950 }
1951
1952 /* For now we just don't re-use anything. We can tweak this
1953 * later to try and re-use notification packets and SKBs that
1954 * fail to Rx correctly */
1955 if (rxb->skb != NULL) {
1956 priv->alloc_rxb_skb--;
1957 dev_kfree_skb_any(rxb->skb);
1958 rxb->skb = NULL;
1959 }
1960
Abhijeet Kolekar6100b582008-12-19 10:37:24 +08001961 pci_unmap_single(priv->pci_dev, rxb->real_dma_addr,
Winkler, Tomas1e33dc62009-01-08 10:19:57 -08001962 priv->hw_params.rx_buf_size,
1963 PCI_DMA_FROMDEVICE);
Zhu Yib481de92007-09-25 17:54:57 -07001964 spin_lock_irqsave(&rxq->lock, flags);
1965 list_add_tail(&rxb->list, &priv->rxq.rx_used);
1966 spin_unlock_irqrestore(&rxq->lock, flags);
1967 i = (i + 1) & RX_QUEUE_MASK;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001968 /* If there are a lot of unused frames,
1969 * restock the Rx queue so ucode won't assert. */
1970 if (fill_rx) {
1971 count++;
1972 if (count >= 8) {
1973 priv->rxq.read = i;
1974 __iwl3945_rx_replenish(priv);
1975 count = 0;
1976 }
1977 }
Zhu Yib481de92007-09-25 17:54:57 -07001978 }
1979
1980 /* Backtrack one entry */
1981 priv->rxq.read = i;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001982 iwl3945_rx_queue_restock(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001983}
1984
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001985/* call this function to flush any scheduled tasklet */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08001986static inline void iwl_synchronize_irq(struct iwl_priv *priv)
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001987{
Tomas Winklera96a27f2008-10-23 23:48:56 -07001988 /* wait to make sure we flush pending tasklet*/
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001989 synchronize_irq(priv->pci_dev->irq);
1990 tasklet_kill(&priv->irq_tasklet);
1991}
1992
Zhu Yib481de92007-09-25 17:54:57 -07001993static const char *desc_lookup(int i)
1994{
1995 switch (i) {
1996 case 1:
1997 return "FAIL";
1998 case 2:
1999 return "BAD_PARAM";
2000 case 3:
2001 return "BAD_CHECKSUM";
2002 case 4:
2003 return "NMI_INTERRUPT";
2004 case 5:
2005 return "SYSASSERT";
2006 case 6:
2007 return "FATAL_ERROR";
2008 }
2009
2010 return "UNKNOWN";
2011}
2012
2013#define ERROR_START_OFFSET (1 * sizeof(u32))
2014#define ERROR_ELEM_SIZE (7 * sizeof(u32))
2015
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002016static void iwl3945_dump_nic_error_log(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002017{
2018 u32 i;
2019 u32 desc, time, count, base, data1;
2020 u32 blink1, blink2, ilink1, ilink2;
2021 int rc;
2022
2023 base = le32_to_cpu(priv->card_alive.error_event_table_ptr);
2024
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002025 if (!iwl3945_hw_valid_rtc_data_addr(base)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002026 IWL_ERR(priv, "Not valid error log pointer 0x%08X\n", base);
Zhu Yib481de92007-09-25 17:54:57 -07002027 return;
2028 }
2029
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002030 rc = iwl_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002031 if (rc) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002032 IWL_WARN(priv, "Can not read from adapter at this time.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002033 return;
2034 }
2035
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002036 count = iwl_read_targ_mem(priv, base);
Zhu Yib481de92007-09-25 17:54:57 -07002037
2038 if (ERROR_START_OFFSET <= count * ERROR_ELEM_SIZE) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002039 IWL_ERR(priv, "Start IWL Error Log Dump:\n");
2040 IWL_ERR(priv, "Status: 0x%08lX, count: %d\n",
2041 priv->status, count);
Zhu Yib481de92007-09-25 17:54:57 -07002042 }
2043
Winkler, Tomas15b16872008-12-19 10:37:33 +08002044 IWL_ERR(priv, "Desc Time asrtPC blink2 "
Zhu Yib481de92007-09-25 17:54:57 -07002045 "ilink1 nmiPC Line\n");
2046 for (i = ERROR_START_OFFSET;
2047 i < (count * ERROR_ELEM_SIZE) + ERROR_START_OFFSET;
2048 i += ERROR_ELEM_SIZE) {
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002049 desc = iwl_read_targ_mem(priv, base + i);
Zhu Yib481de92007-09-25 17:54:57 -07002050 time =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002051 iwl_read_targ_mem(priv, base + i + 1 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07002052 blink1 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002053 iwl_read_targ_mem(priv, base + i + 2 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07002054 blink2 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002055 iwl_read_targ_mem(priv, base + i + 3 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07002056 ilink1 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002057 iwl_read_targ_mem(priv, base + i + 4 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07002058 ilink2 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002059 iwl_read_targ_mem(priv, base + i + 5 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07002060 data1 =
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002061 iwl_read_targ_mem(priv, base + i + 6 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07002062
Winkler, Tomas15b16872008-12-19 10:37:33 +08002063 IWL_ERR(priv,
2064 "%-13s (#%d) %010u 0x%05X 0x%05X 0x%05X 0x%05X %u\n\n",
2065 desc_lookup(desc), desc, time, blink1, blink2,
2066 ilink1, ilink2, data1);
Zhu Yib481de92007-09-25 17:54:57 -07002067 }
2068
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002069 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002070
2071}
2072
Ben Cahillf58177b2007-11-29 11:09:43 +08002073#define EVENT_START_OFFSET (6 * sizeof(u32))
Zhu Yib481de92007-09-25 17:54:57 -07002074
2075/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002076 * iwl3945_print_event_log - Dump error event log to syslog
Zhu Yib481de92007-09-25 17:54:57 -07002077 *
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002078 * NOTE: Must be called with iwl_grab_nic_access() already obtained!
Zhu Yib481de92007-09-25 17:54:57 -07002079 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002080static void iwl3945_print_event_log(struct iwl_priv *priv, u32 start_idx,
Zhu Yib481de92007-09-25 17:54:57 -07002081 u32 num_events, u32 mode)
2082{
2083 u32 i;
2084 u32 base; /* SRAM byte address of event log header */
2085 u32 event_size; /* 2 u32s, or 3 u32s if timestamp recorded */
2086 u32 ptr; /* SRAM byte address of log data */
2087 u32 ev, time, data; /* event log data */
2088
2089 if (num_events == 0)
2090 return;
2091
2092 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
2093
2094 if (mode == 0)
2095 event_size = 2 * sizeof(u32);
2096 else
2097 event_size = 3 * sizeof(u32);
2098
2099 ptr = base + EVENT_START_OFFSET + (start_idx * event_size);
2100
2101 /* "time" is actually "data" for mode 0 (no timestamp).
2102 * place event id # at far right for easier visual parsing. */
2103 for (i = 0; i < num_events; i++) {
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002104 ev = iwl_read_targ_mem(priv, ptr);
Zhu Yib481de92007-09-25 17:54:57 -07002105 ptr += sizeof(u32);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002106 time = iwl_read_targ_mem(priv, ptr);
Zhu Yib481de92007-09-25 17:54:57 -07002107 ptr += sizeof(u32);
Winkler, Tomas15b16872008-12-19 10:37:33 +08002108 if (mode == 0) {
2109 /* data, ev */
2110 IWL_ERR(priv, "0x%08x\t%04u\n", time, ev);
2111 } else {
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002112 data = iwl_read_targ_mem(priv, ptr);
Zhu Yib481de92007-09-25 17:54:57 -07002113 ptr += sizeof(u32);
Winkler, Tomas15b16872008-12-19 10:37:33 +08002114 IWL_ERR(priv, "%010u\t0x%08x\t%04u\n", time, data, ev);
Zhu Yib481de92007-09-25 17:54:57 -07002115 }
2116 }
2117}
2118
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002119static void iwl3945_dump_nic_event_log(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002120{
2121 int rc;
2122 u32 base; /* SRAM byte address of event log header */
2123 u32 capacity; /* event log capacity in # entries */
2124 u32 mode; /* 0 - no timestamp, 1 - timestamp recorded */
2125 u32 num_wraps; /* # times uCode wrapped to top of log */
2126 u32 next_entry; /* index of next entry to be written by uCode */
2127 u32 size; /* # entries that we'll print */
2128
2129 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002130 if (!iwl3945_hw_valid_rtc_data_addr(base)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002131 IWL_ERR(priv, "Invalid event log pointer 0x%08X\n", base);
Zhu Yib481de92007-09-25 17:54:57 -07002132 return;
2133 }
2134
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002135 rc = iwl_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002136 if (rc) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002137 IWL_WARN(priv, "Can not read from adapter at this time.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002138 return;
2139 }
2140
2141 /* event log header */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002142 capacity = iwl_read_targ_mem(priv, base);
2143 mode = iwl_read_targ_mem(priv, base + (1 * sizeof(u32)));
2144 num_wraps = iwl_read_targ_mem(priv, base + (2 * sizeof(u32)));
2145 next_entry = iwl_read_targ_mem(priv, base + (3 * sizeof(u32)));
Zhu Yib481de92007-09-25 17:54:57 -07002146
2147 size = num_wraps ? capacity : next_entry;
2148
2149 /* bail out if nothing in log */
2150 if (size == 0) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002151 IWL_ERR(priv, "Start IWL Event Log Dump: nothing in log\n");
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002152 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002153 return;
2154 }
2155
Winkler, Tomas15b16872008-12-19 10:37:33 +08002156 IWL_ERR(priv, "Start IWL Event Log Dump: display count %d, wraps %d\n",
Zhu Yib481de92007-09-25 17:54:57 -07002157 size, num_wraps);
2158
2159 /* if uCode has wrapped back to top of log, start at the oldest entry,
2160 * i.e the next one that uCode would fill. */
2161 if (num_wraps)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002162 iwl3945_print_event_log(priv, next_entry,
Zhu Yib481de92007-09-25 17:54:57 -07002163 capacity - next_entry, mode);
2164
2165 /* (then/else) start at top of log */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002166 iwl3945_print_event_log(priv, 0, next_entry, mode);
Zhu Yib481de92007-09-25 17:54:57 -07002167
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002168 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002169}
2170
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002171static void iwl3945_error_recovery(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002172{
2173 unsigned long flags;
2174
Samuel Ortiz8ccde882009-01-27 14:27:52 -08002175 memcpy(&priv->staging_rxon, &priv->recovery_rxon,
2176 sizeof(priv->staging_rxon));
2177 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002178 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002179
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002180 iwl3945_add_station(priv, priv->bssid, 1, 0);
Zhu Yib481de92007-09-25 17:54:57 -07002181
2182 spin_lock_irqsave(&priv->lock, flags);
Samuel Ortiz8ccde882009-01-27 14:27:52 -08002183 priv->assoc_id = le16_to_cpu(priv->staging_rxon.assoc_id);
Zhu Yib481de92007-09-25 17:54:57 -07002184 priv->error_recovering = 0;
2185 spin_unlock_irqrestore(&priv->lock, flags);
2186}
2187
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002188static void iwl3945_irq_tasklet(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002189{
2190 u32 inta, handled = 0;
2191 u32 inta_fh;
2192 unsigned long flags;
Samuel Ortizd08853a2009-01-23 13:45:17 -08002193#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07002194 u32 inta_mask;
2195#endif
2196
2197 spin_lock_irqsave(&priv->lock, flags);
2198
2199 /* Ack/clear/reset pending uCode interrupts.
2200 * Note: Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS,
2201 * and will clear only when CSR_FH_INT_STATUS gets cleared. */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002202 inta = iwl_read32(priv, CSR_INT);
2203 iwl_write32(priv, CSR_INT, inta);
Zhu Yib481de92007-09-25 17:54:57 -07002204
2205 /* Ack/clear/reset pending flow-handler (DMA) interrupts.
2206 * Any new interrupts that happen after this, either while we're
2207 * in this tasklet, or later, will show up in next ISR/tasklet. */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002208 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
2209 iwl_write32(priv, CSR_FH_INT_STATUS, inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -07002210
Samuel Ortizd08853a2009-01-23 13:45:17 -08002211#ifdef CONFIG_IWLWIFI_DEBUG
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08002212 if (priv->debug_level & IWL_DL_ISR) {
Ben Cahill9fbab512007-11-29 11:09:47 +08002213 /* just for debug */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002214 inta_mask = iwl_read32(priv, CSR_INT_MASK);
Tomas Winklere1623442009-01-27 14:27:56 -08002215 IWL_DEBUG_ISR(priv, "inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
Zhu Yib481de92007-09-25 17:54:57 -07002216 inta, inta_mask, inta_fh);
2217 }
2218#endif
2219
2220 /* Since CSR_INT and CSR_FH_INT_STATUS reads and clears are not
2221 * atomic, make sure that inta covers all the interrupts that
2222 * we've discovered, even if FH interrupt came in just after
2223 * reading CSR_INT. */
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08002224 if (inta_fh & CSR39_FH_INT_RX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07002225 inta |= CSR_INT_BIT_FH_RX;
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08002226 if (inta_fh & CSR39_FH_INT_TX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07002227 inta |= CSR_INT_BIT_FH_TX;
2228
2229 /* Now service all interrupt bits discovered above. */
2230 if (inta & CSR_INT_BIT_HW_ERR) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002231 IWL_ERR(priv, "Microcode HW error detected. Restarting.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002232
2233 /* Tell the device to stop sending interrupts */
Abhijeet Kolekared3b9322009-02-18 15:54:30 -08002234 iwl_disable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002235
Samuel Ortiz8ccde882009-01-27 14:27:52 -08002236 iwl_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002237
2238 handled |= CSR_INT_BIT_HW_ERR;
2239
2240 spin_unlock_irqrestore(&priv->lock, flags);
2241
2242 return;
2243 }
2244
Samuel Ortizd08853a2009-01-23 13:45:17 -08002245#ifdef CONFIG_IWLWIFI_DEBUG
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08002246 if (priv->debug_level & (IWL_DL_ISR)) {
Zhu Yib481de92007-09-25 17:54:57 -07002247 /* NIC fires this, but we don't use it, redundant with WAKEUP */
Joonwoo Park25c03d82008-01-23 10:15:20 -08002248 if (inta & CSR_INT_BIT_SCD)
Tomas Winklere1623442009-01-27 14:27:56 -08002249 IWL_DEBUG_ISR(priv, "Scheduler finished to transmit "
Joonwoo Park25c03d82008-01-23 10:15:20 -08002250 "the frame/frames.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002251
2252 /* Alive notification via Rx interrupt will do the real work */
2253 if (inta & CSR_INT_BIT_ALIVE)
Tomas Winklere1623442009-01-27 14:27:56 -08002254 IWL_DEBUG_ISR(priv, "Alive interrupt\n");
Zhu Yib481de92007-09-25 17:54:57 -07002255 }
2256#endif
2257 /* Safely ignore these bits for debug checks below */
Joonwoo Park25c03d82008-01-23 10:15:20 -08002258 inta &= ~(CSR_INT_BIT_SCD | CSR_INT_BIT_ALIVE);
Zhu Yib481de92007-09-25 17:54:57 -07002259
Zhu Yib481de92007-09-25 17:54:57 -07002260 /* Error detected by uCode */
2261 if (inta & CSR_INT_BIT_SW_ERR) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002262 IWL_ERR(priv, "Microcode SW error detected. "
2263 "Restarting 0x%X.\n", inta);
Samuel Ortiz8ccde882009-01-27 14:27:52 -08002264 iwl_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002265 handled |= CSR_INT_BIT_SW_ERR;
2266 }
2267
2268 /* uCode wakes up after power-down sleep */
2269 if (inta & CSR_INT_BIT_WAKEUP) {
Tomas Winklere1623442009-01-27 14:27:56 -08002270 IWL_DEBUG_ISR(priv, "Wakeup interrupt\n");
Winkler, Tomas141c43a2009-01-08 10:19:53 -08002271 iwl_rx_queue_update_write_ptr(priv, &priv->rxq);
Samuel Ortiz4f3602c2009-01-19 15:30:25 -08002272 iwl_txq_update_write_ptr(priv, &priv->txq[0]);
2273 iwl_txq_update_write_ptr(priv, &priv->txq[1]);
2274 iwl_txq_update_write_ptr(priv, &priv->txq[2]);
2275 iwl_txq_update_write_ptr(priv, &priv->txq[3]);
2276 iwl_txq_update_write_ptr(priv, &priv->txq[4]);
2277 iwl_txq_update_write_ptr(priv, &priv->txq[5]);
Zhu Yib481de92007-09-25 17:54:57 -07002278
2279 handled |= CSR_INT_BIT_WAKEUP;
2280 }
2281
2282 /* All uCode command responses, including Tx command responses,
2283 * Rx "responses" (frame-received notification), and other
2284 * notifications from uCode come through here*/
2285 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002286 iwl3945_rx_handle(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002287 handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX);
2288 }
2289
2290 if (inta & CSR_INT_BIT_FH_TX) {
Tomas Winklere1623442009-01-27 14:27:56 -08002291 IWL_DEBUG_ISR(priv, "Tx interrupt\n");
Zhu Yib481de92007-09-25 17:54:57 -07002292
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002293 iwl_write32(priv, CSR_FH_INT_STATUS, (1 << 6));
2294 if (!iwl_grab_nic_access(priv)) {
2295 iwl_write_direct32(priv, FH39_TCSR_CREDIT
Tomas Winklerbddadf82008-12-19 10:37:01 +08002296 (FH39_SRVC_CHNL), 0x0);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002297 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002298 }
2299 handled |= CSR_INT_BIT_FH_TX;
2300 }
2301
2302 if (inta & ~handled)
Winkler, Tomas15b16872008-12-19 10:37:33 +08002303 IWL_ERR(priv, "Unhandled INTA bits 0x%08x\n", inta & ~handled);
Zhu Yib481de92007-09-25 17:54:57 -07002304
2305 if (inta & ~CSR_INI_SET_MASK) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002306 IWL_WARN(priv, "Disabled INTA bits 0x%08x were pending\n",
Zhu Yib481de92007-09-25 17:54:57 -07002307 inta & ~CSR_INI_SET_MASK);
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002308 IWL_WARN(priv, " with FH_INT = 0x%08x\n", inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -07002309 }
2310
2311 /* Re-enable all interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07002312 /* only Re-enable if disabled by irq */
2313 if (test_bit(STATUS_INT_ENABLED, &priv->status))
Abhijeet Kolekared3b9322009-02-18 15:54:30 -08002314 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002315
Samuel Ortizd08853a2009-01-23 13:45:17 -08002316#ifdef CONFIG_IWLWIFI_DEBUG
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08002317 if (priv->debug_level & (IWL_DL_ISR)) {
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002318 inta = iwl_read32(priv, CSR_INT);
2319 inta_mask = iwl_read32(priv, CSR_INT_MASK);
2320 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
Tomas Winklere1623442009-01-27 14:27:56 -08002321 IWL_DEBUG_ISR(priv, "End inta 0x%08x, enabled 0x%08x, fh 0x%08x, "
Zhu Yib481de92007-09-25 17:54:57 -07002322 "flags 0x%08lx\n", inta, inta_mask, inta_fh, flags);
2323 }
2324#endif
2325 spin_unlock_irqrestore(&priv->lock, flags);
2326}
2327
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002328static int iwl3945_get_channels_for_scan(struct iwl_priv *priv,
Johannes Berg8318d782008-01-24 19:38:38 +01002329 enum ieee80211_band band,
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08002330 u8 is_active, u8 n_probes,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002331 struct iwl3945_scan_channel *scan_ch)
Zhu Yib481de92007-09-25 17:54:57 -07002332{
2333 const struct ieee80211_channel *channels = NULL;
Johannes Berg8318d782008-01-24 19:38:38 +01002334 const struct ieee80211_supported_band *sband;
Samuel Ortizd20b3c62008-12-19 10:37:15 +08002335 const struct iwl_channel_info *ch_info;
Zhu Yib481de92007-09-25 17:54:57 -07002336 u16 passive_dwell = 0;
2337 u16 active_dwell = 0;
2338 int added, i;
2339
Kolekar, Abhijeetcbba18c2008-12-19 10:37:42 +08002340 sband = iwl_get_hw_mode(priv, band);
Johannes Berg8318d782008-01-24 19:38:38 +01002341 if (!sband)
Zhu Yib481de92007-09-25 17:54:57 -07002342 return 0;
2343
Johannes Berg8318d782008-01-24 19:38:38 +01002344 channels = sband->channels;
Zhu Yib481de92007-09-25 17:54:57 -07002345
Samuel Ortiz77fecfb82009-01-23 13:45:12 -08002346 active_dwell = iwl_get_active_dwell_time(priv, band, n_probes);
2347 passive_dwell = iwl_get_passive_dwell_time(priv, band);
Zhu Yib481de92007-09-25 17:54:57 -07002348
Abhijeet Kolekar8f4807a2008-09-03 11:26:31 +08002349 if (passive_dwell <= active_dwell)
2350 passive_dwell = active_dwell + 1;
2351
Johannes Berg8318d782008-01-24 19:38:38 +01002352 for (i = 0, added = 0; i < sband->n_channels; i++) {
Johannes Berg182e2e62008-04-04 10:41:56 +02002353 if (channels[i].flags & IEEE80211_CHAN_DISABLED)
2354 continue;
2355
Johannes Berg8318d782008-01-24 19:38:38 +01002356 scan_ch->channel = channels[i].hw_value;
Zhu Yib481de92007-09-25 17:54:57 -07002357
Samuel Ortize6148912009-01-23 13:45:15 -08002358 ch_info = iwl_get_channel_info(priv, band, scan_ch->channel);
Zhu Yib481de92007-09-25 17:54:57 -07002359 if (!is_channel_valid(ch_info)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002360 IWL_DEBUG_SCAN(priv, "Channel %d is INVALID for this band.\n",
Zhu Yib481de92007-09-25 17:54:57 -07002361 scan_ch->channel);
2362 continue;
2363 }
2364
Zhu Yib481de92007-09-25 17:54:57 -07002365 scan_ch->active_dwell = cpu_to_le16(active_dwell);
2366 scan_ch->passive_dwell = cpu_to_le16(passive_dwell);
Abhijeet Kolekar011a0332008-12-02 12:14:07 -08002367 /* If passive , set up for auto-switch
2368 * and use long active_dwell time.
2369 */
2370 if (!is_active || is_channel_passive(ch_info) ||
2371 (channels[i].flags & IEEE80211_CHAN_PASSIVE_SCAN)) {
2372 scan_ch->type = 0; /* passive */
2373 if (IWL_UCODE_API(priv->ucode_ver) == 1)
2374 scan_ch->active_dwell = cpu_to_le16(passive_dwell - 1);
2375 } else {
2376 scan_ch->type = 1; /* active */
2377 }
2378
2379 /* Set direct probe bits. These may be used both for active
2380 * scan channels (probes gets sent right away),
2381 * or for passive channels (probes get se sent only after
2382 * hearing clear Rx packet).*/
2383 if (IWL_UCODE_API(priv->ucode_ver) >= 2) {
2384 if (n_probes)
Winkler, Tomas0d210442009-01-23 13:45:21 -08002385 scan_ch->type |= IWL39_SCAN_PROBE_MASK(n_probes);
Abhijeet Kolekar011a0332008-12-02 12:14:07 -08002386 } else {
2387 /* uCode v1 does not allow setting direct probe bits on
2388 * passive channel. */
2389 if ((scan_ch->type & 1) && n_probes)
Winkler, Tomas0d210442009-01-23 13:45:21 -08002390 scan_ch->type |= IWL39_SCAN_PROBE_MASK(n_probes);
Abhijeet Kolekar011a0332008-12-02 12:14:07 -08002391 }
Zhu Yib481de92007-09-25 17:54:57 -07002392
Ben Cahill9fbab512007-11-29 11:09:47 +08002393 /* Set txpower levels to defaults */
Zhu Yib481de92007-09-25 17:54:57 -07002394 scan_ch->tpc.dsp_atten = 110;
2395 /* scan_pwr_info->tpc.dsp_atten; */
2396
2397 /*scan_pwr_info->tpc.tx_gain; */
Johannes Berg8318d782008-01-24 19:38:38 +01002398 if (band == IEEE80211_BAND_5GHZ)
Zhu Yib481de92007-09-25 17:54:57 -07002399 scan_ch->tpc.tx_gain = ((1 << 5) | (3 << 3)) | 3;
2400 else {
2401 scan_ch->tpc.tx_gain = ((1 << 5) | (5 << 3));
2402 /* NOTE: if we were doing 6Mb OFDM for scans we'd use
Ben Cahill9fbab512007-11-29 11:09:47 +08002403 * power level:
Reinette Chatre8a1b0242008-01-14 17:46:25 -08002404 * scan_ch->tpc.tx_gain = ((1 << 5) | (2 << 3)) | 3;
Zhu Yib481de92007-09-25 17:54:57 -07002405 */
2406 }
2407
Tomas Winklere1623442009-01-27 14:27:56 -08002408 IWL_DEBUG_SCAN(priv, "Scanning %d [%s %d]\n",
Zhu Yib481de92007-09-25 17:54:57 -07002409 scan_ch->channel,
2410 (scan_ch->type & 1) ? "ACTIVE" : "PASSIVE",
2411 (scan_ch->type & 1) ?
2412 active_dwell : passive_dwell);
2413
2414 scan_ch++;
2415 added++;
2416 }
2417
Tomas Winklere1623442009-01-27 14:27:56 -08002418 IWL_DEBUG_SCAN(priv, "total channels to scan %d \n", added);
Zhu Yib481de92007-09-25 17:54:57 -07002419 return added;
2420}
2421
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002422static void iwl3945_init_hw_rates(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07002423 struct ieee80211_rate *rates)
2424{
2425 int i;
2426
2427 for (i = 0; i < IWL_RATE_COUNT; i++) {
Johannes Berg8318d782008-01-24 19:38:38 +01002428 rates[i].bitrate = iwl3945_rates[i].ieee * 5;
2429 rates[i].hw_value = i; /* Rate scaling will work on indexes */
2430 rates[i].hw_value_short = i;
2431 rates[i].flags = 0;
Samuel Ortizd9829a62008-12-19 10:37:12 +08002432 if ((i > IWL39_LAST_OFDM_RATE) || (i < IWL_FIRST_OFDM_RATE)) {
Zhu Yib481de92007-09-25 17:54:57 -07002433 /*
Johannes Berg8318d782008-01-24 19:38:38 +01002434 * If CCK != 1M then set short preamble rate flag.
Zhu Yib481de92007-09-25 17:54:57 -07002435 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002436 rates[i].flags |= (iwl3945_rates[i].plcp == 10) ?
Johannes Berg8318d782008-01-24 19:38:38 +01002437 0 : IEEE80211_RATE_SHORT_PREAMBLE;
Zhu Yib481de92007-09-25 17:54:57 -07002438 }
Zhu Yib481de92007-09-25 17:54:57 -07002439 }
2440}
2441
Zhu Yib481de92007-09-25 17:54:57 -07002442/******************************************************************************
2443 *
2444 * uCode download functions
2445 *
2446 ******************************************************************************/
2447
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002448static void iwl3945_dealloc_ucode_pci(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002449{
Tomas Winkler98c92212008-01-14 17:46:20 -08002450 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_code);
2451 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data);
2452 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
2453 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init);
2454 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init_data);
2455 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_boot);
Zhu Yib481de92007-09-25 17:54:57 -07002456}
2457
2458/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002459 * iwl3945_verify_inst_full - verify runtime uCode image in card vs. host,
Zhu Yib481de92007-09-25 17:54:57 -07002460 * looking at all data.
2461 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002462static int iwl3945_verify_inst_full(struct iwl_priv *priv, __le32 *image, u32 len)
Zhu Yib481de92007-09-25 17:54:57 -07002463{
2464 u32 val;
2465 u32 save_len = len;
2466 int rc = 0;
2467 u32 errcnt;
2468
Tomas Winklere1623442009-01-27 14:27:56 -08002469 IWL_DEBUG_INFO(priv, "ucode inst image size is %u\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002470
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002471 rc = iwl_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002472 if (rc)
2473 return rc;
2474
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002475 iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR,
Samuel Ortiz250bdd22008-12-19 10:37:11 +08002476 IWL39_RTC_INST_LOWER_BOUND);
Zhu Yib481de92007-09-25 17:54:57 -07002477
2478 errcnt = 0;
2479 for (; len > 0; len -= sizeof(u32), image++) {
2480 /* read data comes through single port, auto-incr addr */
2481 /* NOTE: Use the debugless read so we don't flood kernel log
2482 * if IWL_DL_IO is set */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002483 val = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Zhu Yib481de92007-09-25 17:54:57 -07002484 if (val != le32_to_cpu(*image)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002485 IWL_ERR(priv, "uCode INST section is invalid at "
Zhu Yib481de92007-09-25 17:54:57 -07002486 "offset 0x%x, is 0x%x, s/b 0x%x\n",
2487 save_len - len, val, le32_to_cpu(*image));
2488 rc = -EIO;
2489 errcnt++;
2490 if (errcnt >= 20)
2491 break;
2492 }
2493 }
2494
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002495 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002496
2497 if (!errcnt)
Tomas Winklere1623442009-01-27 14:27:56 -08002498 IWL_DEBUG_INFO(priv,
2499 "ucode image in INSTRUCTION memory is good\n");
Zhu Yib481de92007-09-25 17:54:57 -07002500
2501 return rc;
2502}
2503
2504
2505/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002506 * iwl3945_verify_inst_sparse - verify runtime uCode image in card vs. host,
Zhu Yib481de92007-09-25 17:54:57 -07002507 * using sample data 100 bytes apart. If these sample points are good,
2508 * it's a pretty good bet that everything between them is good, too.
2509 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002510static int iwl3945_verify_inst_sparse(struct iwl_priv *priv, __le32 *image, u32 len)
Zhu Yib481de92007-09-25 17:54:57 -07002511{
2512 u32 val;
2513 int rc = 0;
2514 u32 errcnt = 0;
2515 u32 i;
2516
Tomas Winklere1623442009-01-27 14:27:56 -08002517 IWL_DEBUG_INFO(priv, "ucode inst image size is %u\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002518
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002519 rc = iwl_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002520 if (rc)
2521 return rc;
2522
2523 for (i = 0; i < len; i += 100, image += 100/sizeof(u32)) {
2524 /* read data comes through single port, auto-incr addr */
2525 /* NOTE: Use the debugless read so we don't flood kernel log
2526 * if IWL_DL_IO is set */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002527 iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR,
Samuel Ortiz250bdd22008-12-19 10:37:11 +08002528 i + IWL39_RTC_INST_LOWER_BOUND);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002529 val = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Zhu Yib481de92007-09-25 17:54:57 -07002530 if (val != le32_to_cpu(*image)) {
2531#if 0 /* Enable this if you want to see details */
Winkler, Tomas15b16872008-12-19 10:37:33 +08002532 IWL_ERR(priv, "uCode INST section is invalid at "
Zhu Yib481de92007-09-25 17:54:57 -07002533 "offset 0x%x, is 0x%x, s/b 0x%x\n",
2534 i, val, *image);
2535#endif
2536 rc = -EIO;
2537 errcnt++;
2538 if (errcnt >= 3)
2539 break;
2540 }
2541 }
2542
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002543 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002544
2545 return rc;
2546}
2547
2548
2549/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002550 * iwl3945_verify_ucode - determine which instruction image is in SRAM,
Zhu Yib481de92007-09-25 17:54:57 -07002551 * and verify its contents
2552 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002553static int iwl3945_verify_ucode(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002554{
2555 __le32 *image;
2556 u32 len;
2557 int rc = 0;
2558
2559 /* Try bootstrap */
2560 image = (__le32 *)priv->ucode_boot.v_addr;
2561 len = priv->ucode_boot.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002562 rc = iwl3945_verify_inst_sparse(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07002563 if (rc == 0) {
Tomas Winklere1623442009-01-27 14:27:56 -08002564 IWL_DEBUG_INFO(priv, "Bootstrap uCode is good in inst SRAM\n");
Zhu Yib481de92007-09-25 17:54:57 -07002565 return 0;
2566 }
2567
2568 /* Try initialize */
2569 image = (__le32 *)priv->ucode_init.v_addr;
2570 len = priv->ucode_init.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002571 rc = iwl3945_verify_inst_sparse(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07002572 if (rc == 0) {
Tomas Winklere1623442009-01-27 14:27:56 -08002573 IWL_DEBUG_INFO(priv, "Initialize uCode is good in inst SRAM\n");
Zhu Yib481de92007-09-25 17:54:57 -07002574 return 0;
2575 }
2576
2577 /* Try runtime/protocol */
2578 image = (__le32 *)priv->ucode_code.v_addr;
2579 len = priv->ucode_code.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002580 rc = iwl3945_verify_inst_sparse(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07002581 if (rc == 0) {
Tomas Winklere1623442009-01-27 14:27:56 -08002582 IWL_DEBUG_INFO(priv, "Runtime uCode is good in inst SRAM\n");
Zhu Yib481de92007-09-25 17:54:57 -07002583 return 0;
2584 }
2585
Winkler, Tomas15b16872008-12-19 10:37:33 +08002586 IWL_ERR(priv, "NO VALID UCODE IMAGE IN INSTRUCTION SRAM!!\n");
Zhu Yib481de92007-09-25 17:54:57 -07002587
Ben Cahill9fbab512007-11-29 11:09:47 +08002588 /* Since nothing seems to match, show first several data entries in
2589 * instruction SRAM, so maybe visual inspection will give a clue.
2590 * Selection of bootstrap image (vs. other images) is arbitrary. */
Zhu Yib481de92007-09-25 17:54:57 -07002591 image = (__le32 *)priv->ucode_boot.v_addr;
2592 len = priv->ucode_boot.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002593 rc = iwl3945_verify_inst_full(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07002594
2595 return rc;
2596}
2597
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002598static void iwl3945_nic_start(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002599{
2600 /* Remove all resets to allow NIC to operate */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002601 iwl_write32(priv, CSR_RESET, 0);
Zhu Yib481de92007-09-25 17:54:57 -07002602}
2603
2604/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002605 * iwl3945_read_ucode - Read uCode images from disk file.
Zhu Yib481de92007-09-25 17:54:57 -07002606 *
2607 * Copy into buffers for card to fetch via bus-mastering
2608 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002609static int iwl3945_read_ucode(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002610{
Kolekar, Abhijeeta78fe752008-12-19 10:37:21 +08002611 struct iwl_ucode *ucode;
Reinette Chatrea0987a82008-12-02 12:14:06 -08002612 int ret = -EINVAL, index;
Zhu Yib481de92007-09-25 17:54:57 -07002613 const struct firmware *ucode_raw;
2614 /* firmware file name contains uCode/driver compatibility version */
Reinette Chatrea0987a82008-12-02 12:14:06 -08002615 const char *name_pre = priv->cfg->fw_name_pre;
2616 const unsigned int api_max = priv->cfg->ucode_api_max;
2617 const unsigned int api_min = priv->cfg->ucode_api_min;
2618 char buf[25];
Zhu Yib481de92007-09-25 17:54:57 -07002619 u8 *src;
2620 size_t len;
Reinette Chatrea0987a82008-12-02 12:14:06 -08002621 u32 api_ver, inst_size, data_size, init_size, init_data_size, boot_size;
Zhu Yib481de92007-09-25 17:54:57 -07002622
2623 /* Ask kernel firmware_class module to get the boot firmware off disk.
2624 * request_firmware() is synchronous, file is in memory on return. */
Reinette Chatrea0987a82008-12-02 12:14:06 -08002625 for (index = api_max; index >= api_min; index--) {
2626 sprintf(buf, "%s%u%s", name_pre, index, ".ucode");
2627 ret = request_firmware(&ucode_raw, buf, &priv->pci_dev->dev);
2628 if (ret < 0) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002629 IWL_ERR(priv, "%s firmware file req failed: %d\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08002630 buf, ret);
2631 if (ret == -ENOENT)
2632 continue;
2633 else
2634 goto error;
2635 } else {
2636 if (index < api_max)
Winkler, Tomas15b16872008-12-19 10:37:33 +08002637 IWL_ERR(priv, "Loaded firmware %s, "
2638 "which is deprecated. "
2639 " Please use API v%u instead.\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08002640 buf, api_max);
Tomas Winklere1623442009-01-27 14:27:56 -08002641 IWL_DEBUG_INFO(priv, "Got firmware '%s' file "
2642 "(%zd bytes) from disk\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08002643 buf, ucode_raw->size);
2644 break;
2645 }
Zhu Yib481de92007-09-25 17:54:57 -07002646 }
2647
Reinette Chatrea0987a82008-12-02 12:14:06 -08002648 if (ret < 0)
2649 goto error;
Zhu Yib481de92007-09-25 17:54:57 -07002650
2651 /* Make sure that we got at least our header! */
2652 if (ucode_raw->size < sizeof(*ucode)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002653 IWL_ERR(priv, "File size way too small!\n");
Tomas Winkler90e759d2007-11-29 11:09:41 +08002654 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002655 goto err_release;
2656 }
2657
2658 /* Data from ucode file: header followed by uCode images */
2659 ucode = (void *)ucode_raw->data;
2660
Chatre, Reinettec02b3ac2008-12-02 12:14:05 -08002661 priv->ucode_ver = le32_to_cpu(ucode->ver);
Reinette Chatrea0987a82008-12-02 12:14:06 -08002662 api_ver = IWL_UCODE_API(priv->ucode_ver);
Zhu Yib481de92007-09-25 17:54:57 -07002663 inst_size = le32_to_cpu(ucode->inst_size);
2664 data_size = le32_to_cpu(ucode->data_size);
2665 init_size = le32_to_cpu(ucode->init_size);
2666 init_data_size = le32_to_cpu(ucode->init_data_size);
2667 boot_size = le32_to_cpu(ucode->boot_size);
2668
Reinette Chatrea0987a82008-12-02 12:14:06 -08002669 /* api_ver should match the api version forming part of the
2670 * firmware filename ... but we don't check for that and only rely
2671 * on the API version read from firware header from here on forward */
2672
2673 if (api_ver < api_min || api_ver > api_max) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002674 IWL_ERR(priv, "Driver unable to support your firmware API. "
Reinette Chatrea0987a82008-12-02 12:14:06 -08002675 "Driver supports v%u, firmware is v%u.\n",
2676 api_max, api_ver);
2677 priv->ucode_ver = 0;
2678 ret = -EINVAL;
2679 goto err_release;
2680 }
2681 if (api_ver != api_max)
Winkler, Tomas15b16872008-12-19 10:37:33 +08002682 IWL_ERR(priv, "Firmware has old API version. Expected %u, "
Reinette Chatrea0987a82008-12-02 12:14:06 -08002683 "got %u. New firmware can be obtained "
2684 "from http://www.intellinuxwireless.org.\n",
2685 api_max, api_ver);
2686
Tomas Winkler978785a2008-12-19 10:37:31 +08002687 IWL_INFO(priv, "loaded firmware version %u.%u.%u.%u\n",
2688 IWL_UCODE_MAJOR(priv->ucode_ver),
2689 IWL_UCODE_MINOR(priv->ucode_ver),
2690 IWL_UCODE_API(priv->ucode_ver),
2691 IWL_UCODE_SERIAL(priv->ucode_ver));
2692
Tomas Winklere1623442009-01-27 14:27:56 -08002693 IWL_DEBUG_INFO(priv, "f/w package hdr ucode version raw = 0x%x\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08002694 priv->ucode_ver);
Tomas Winklere1623442009-01-27 14:27:56 -08002695 IWL_DEBUG_INFO(priv, "f/w package hdr runtime inst size = %u\n",
2696 inst_size);
2697 IWL_DEBUG_INFO(priv, "f/w package hdr runtime data size = %u\n",
2698 data_size);
2699 IWL_DEBUG_INFO(priv, "f/w package hdr init inst size = %u\n",
2700 init_size);
2701 IWL_DEBUG_INFO(priv, "f/w package hdr init data size = %u\n",
2702 init_data_size);
2703 IWL_DEBUG_INFO(priv, "f/w package hdr boot inst size = %u\n",
2704 boot_size);
Zhu Yib481de92007-09-25 17:54:57 -07002705
Reinette Chatrea0987a82008-12-02 12:14:06 -08002706
Zhu Yib481de92007-09-25 17:54:57 -07002707 /* Verify size of file vs. image size info in file's header */
2708 if (ucode_raw->size < sizeof(*ucode) +
2709 inst_size + data_size + init_size +
2710 init_data_size + boot_size) {
2711
Tomas Winklere1623442009-01-27 14:27:56 -08002712 IWL_DEBUG_INFO(priv, "uCode file size %zd too small\n",
2713 ucode_raw->size);
Tomas Winkler90e759d2007-11-29 11:09:41 +08002714 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002715 goto err_release;
2716 }
2717
2718 /* Verify that uCode images will fit in card's SRAM */
Samuel Ortiz250bdd22008-12-19 10:37:11 +08002719 if (inst_size > IWL39_MAX_INST_SIZE) {
Tomas Winklere1623442009-01-27 14:27:56 -08002720 IWL_DEBUG_INFO(priv, "uCode instr len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08002721 inst_size);
2722 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002723 goto err_release;
2724 }
2725
Samuel Ortiz250bdd22008-12-19 10:37:11 +08002726 if (data_size > IWL39_MAX_DATA_SIZE) {
Tomas Winklere1623442009-01-27 14:27:56 -08002727 IWL_DEBUG_INFO(priv, "uCode data len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08002728 data_size);
2729 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002730 goto err_release;
2731 }
Samuel Ortiz250bdd22008-12-19 10:37:11 +08002732 if (init_size > IWL39_MAX_INST_SIZE) {
Tomas Winklere1623442009-01-27 14:27:56 -08002733 IWL_DEBUG_INFO(priv,
2734 "uCode init instr len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08002735 init_size);
2736 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002737 goto err_release;
2738 }
Samuel Ortiz250bdd22008-12-19 10:37:11 +08002739 if (init_data_size > IWL39_MAX_DATA_SIZE) {
Tomas Winklere1623442009-01-27 14:27:56 -08002740 IWL_DEBUG_INFO(priv,
2741 "uCode init data len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08002742 init_data_size);
2743 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002744 goto err_release;
2745 }
Samuel Ortiz250bdd22008-12-19 10:37:11 +08002746 if (boot_size > IWL39_MAX_BSM_SIZE) {
Tomas Winklere1623442009-01-27 14:27:56 -08002747 IWL_DEBUG_INFO(priv,
2748 "uCode boot instr len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08002749 boot_size);
2750 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002751 goto err_release;
2752 }
2753
2754 /* Allocate ucode buffers for card's bus-master loading ... */
2755
2756 /* Runtime instructions and 2 copies of data:
2757 * 1) unmodified from disk
2758 * 2) backup cache for save/restore during power-downs */
2759 priv->ucode_code.len = inst_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002760 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_code);
Zhu Yib481de92007-09-25 17:54:57 -07002761
2762 priv->ucode_data.len = data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002763 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data);
Zhu Yib481de92007-09-25 17:54:57 -07002764
2765 priv->ucode_data_backup.len = data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002766 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
Zhu Yib481de92007-09-25 17:54:57 -07002767
2768 if (!priv->ucode_code.v_addr || !priv->ucode_data.v_addr ||
Tomas Winkler90e759d2007-11-29 11:09:41 +08002769 !priv->ucode_data_backup.v_addr)
Zhu Yib481de92007-09-25 17:54:57 -07002770 goto err_pci_alloc;
2771
Tomas Winkler90e759d2007-11-29 11:09:41 +08002772 /* Initialization instructions and data */
2773 if (init_size && init_data_size) {
2774 priv->ucode_init.len = init_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002775 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init);
Tomas Winkler90e759d2007-11-29 11:09:41 +08002776
2777 priv->ucode_init_data.len = init_data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002778 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init_data);
Tomas Winkler90e759d2007-11-29 11:09:41 +08002779
2780 if (!priv->ucode_init.v_addr || !priv->ucode_init_data.v_addr)
2781 goto err_pci_alloc;
2782 }
2783
2784 /* Bootstrap (instructions only, no data) */
2785 if (boot_size) {
2786 priv->ucode_boot.len = boot_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002787 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_boot);
Tomas Winkler90e759d2007-11-29 11:09:41 +08002788
2789 if (!priv->ucode_boot.v_addr)
2790 goto err_pci_alloc;
2791 }
2792
Zhu Yib481de92007-09-25 17:54:57 -07002793 /* Copy images into buffers for card's bus-master reads ... */
2794
2795 /* Runtime instructions (first block of data in file) */
2796 src = &ucode->data[0];
2797 len = priv->ucode_code.len;
Tomas Winklere1623442009-01-27 14:27:56 -08002798 IWL_DEBUG_INFO(priv,
2799 "Copying (but not loading) uCode instr len %zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002800 memcpy(priv->ucode_code.v_addr, src, len);
Tomas Winklere1623442009-01-27 14:27:56 -08002801 IWL_DEBUG_INFO(priv, "uCode instr buf vaddr = 0x%p, paddr = 0x%08x\n",
Zhu Yib481de92007-09-25 17:54:57 -07002802 priv->ucode_code.v_addr, (u32)priv->ucode_code.p_addr);
2803
2804 /* Runtime data (2nd block)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002805 * NOTE: Copy into backup buffer will be done in iwl3945_up() */
Zhu Yib481de92007-09-25 17:54:57 -07002806 src = &ucode->data[inst_size];
2807 len = priv->ucode_data.len;
Tomas Winklere1623442009-01-27 14:27:56 -08002808 IWL_DEBUG_INFO(priv,
2809 "Copying (but not loading) uCode data len %zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002810 memcpy(priv->ucode_data.v_addr, src, len);
2811 memcpy(priv->ucode_data_backup.v_addr, src, len);
2812
2813 /* Initialization instructions (3rd block) */
2814 if (init_size) {
2815 src = &ucode->data[inst_size + data_size];
2816 len = priv->ucode_init.len;
Tomas Winklere1623442009-01-27 14:27:56 -08002817 IWL_DEBUG_INFO(priv,
2818 "Copying (but not loading) init instr len %zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002819 memcpy(priv->ucode_init.v_addr, src, len);
2820 }
2821
2822 /* Initialization data (4th block) */
2823 if (init_data_size) {
2824 src = &ucode->data[inst_size + data_size + init_size];
2825 len = priv->ucode_init_data.len;
Tomas Winklere1623442009-01-27 14:27:56 -08002826 IWL_DEBUG_INFO(priv,
2827 "Copying (but not loading) init data len %zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002828 memcpy(priv->ucode_init_data.v_addr, src, len);
2829 }
2830
2831 /* Bootstrap instructions (5th block) */
2832 src = &ucode->data[inst_size + data_size + init_size + init_data_size];
2833 len = priv->ucode_boot.len;
Tomas Winklere1623442009-01-27 14:27:56 -08002834 IWL_DEBUG_INFO(priv,
2835 "Copying (but not loading) boot instr len %zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002836 memcpy(priv->ucode_boot.v_addr, src, len);
2837
2838 /* We have our copies now, allow OS release its copies */
2839 release_firmware(ucode_raw);
2840 return 0;
2841
2842 err_pci_alloc:
Winkler, Tomas15b16872008-12-19 10:37:33 +08002843 IWL_ERR(priv, "failed to allocate pci memory\n");
Tomas Winkler90e759d2007-11-29 11:09:41 +08002844 ret = -ENOMEM;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002845 iwl3945_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002846
2847 err_release:
2848 release_firmware(ucode_raw);
2849
2850 error:
Tomas Winkler90e759d2007-11-29 11:09:41 +08002851 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07002852}
2853
2854
2855/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002856 * iwl3945_set_ucode_ptrs - Set uCode address location
Zhu Yib481de92007-09-25 17:54:57 -07002857 *
2858 * Tell initialization uCode where to find runtime uCode.
2859 *
2860 * BSM registers initially contain pointers to initialization uCode.
2861 * We need to replace them to load runtime uCode inst and data,
2862 * and to save runtime data when powering down.
2863 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002864static int iwl3945_set_ucode_ptrs(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002865{
2866 dma_addr_t pinst;
2867 dma_addr_t pdata;
2868 int rc = 0;
2869 unsigned long flags;
2870
2871 /* bits 31:0 for 3945 */
2872 pinst = priv->ucode_code.p_addr;
2873 pdata = priv->ucode_data_backup.p_addr;
2874
2875 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002876 rc = iwl_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002877 if (rc) {
2878 spin_unlock_irqrestore(&priv->lock, flags);
2879 return rc;
2880 }
2881
2882 /* Tell bootstrap uCode where to find image to load */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002883 iwl_write_prph(priv, BSM_DRAM_INST_PTR_REG, pinst);
2884 iwl_write_prph(priv, BSM_DRAM_DATA_PTR_REG, pdata);
2885 iwl_write_prph(priv, BSM_DRAM_DATA_BYTECOUNT_REG,
Zhu Yib481de92007-09-25 17:54:57 -07002886 priv->ucode_data.len);
2887
Tomas Winklera96a27f2008-10-23 23:48:56 -07002888 /* Inst byte count must be last to set up, bit 31 signals uCode
Zhu Yib481de92007-09-25 17:54:57 -07002889 * that all new ptr/size info is in place */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002890 iwl_write_prph(priv, BSM_DRAM_INST_BYTECOUNT_REG,
Zhu Yib481de92007-09-25 17:54:57 -07002891 priv->ucode_code.len | BSM_DRAM_INST_LOAD);
2892
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002893 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002894
2895 spin_unlock_irqrestore(&priv->lock, flags);
2896
Tomas Winklere1623442009-01-27 14:27:56 -08002897 IWL_DEBUG_INFO(priv, "Runtime uCode pointers are set.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002898
2899 return rc;
2900}
2901
2902/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002903 * iwl3945_init_alive_start - Called after REPLY_ALIVE notification received
Zhu Yib481de92007-09-25 17:54:57 -07002904 *
2905 * Called after REPLY_ALIVE notification received from "initialize" uCode.
2906 *
Zhu Yib481de92007-09-25 17:54:57 -07002907 * Tell "initialize" uCode to go ahead and load the runtime uCode.
Ben Cahill9fbab512007-11-29 11:09:47 +08002908 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002909static void iwl3945_init_alive_start(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002910{
2911 /* Check alive response for "valid" sign from uCode */
2912 if (priv->card_alive_init.is_valid != UCODE_VALID_OK) {
2913 /* We had an error bringing up the hardware, so take it
2914 * all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002915 IWL_DEBUG_INFO(priv, "Initialize Alive failed.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002916 goto restart;
2917 }
2918
2919 /* Bootstrap uCode has loaded initialize uCode ... verify inst image.
2920 * This is a paranoid check, because we would not have gotten the
2921 * "initialize" alive if code weren't properly loaded. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002922 if (iwl3945_verify_ucode(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002923 /* Runtime instruction load was bad;
2924 * take it all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002925 IWL_DEBUG_INFO(priv, "Bad \"initialize\" uCode load.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002926 goto restart;
2927 }
2928
2929 /* Send pointers to protocol/runtime uCode image ... init code will
2930 * load and launch runtime uCode, which will send us another "Alive"
2931 * notification. */
Tomas Winklere1623442009-01-27 14:27:56 -08002932 IWL_DEBUG_INFO(priv, "Initialization Alive received.\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002933 if (iwl3945_set_ucode_ptrs(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002934 /* Runtime instruction load won't happen;
2935 * take it all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002936 IWL_DEBUG_INFO(priv, "Couldn't set up uCode pointers.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002937 goto restart;
2938 }
2939 return;
2940
2941 restart:
2942 queue_work(priv->workqueue, &priv->restart);
2943}
2944
2945
Mohamed Abbas9bdf5ec2008-11-07 09:58:35 -08002946/* temporary */
2947static int iwl3945_mac_beacon_update(struct ieee80211_hw *hw,
2948 struct sk_buff *skb);
2949
Zhu Yib481de92007-09-25 17:54:57 -07002950/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002951 * iwl3945_alive_start - called after REPLY_ALIVE notification received
Zhu Yib481de92007-09-25 17:54:57 -07002952 * from protocol/runtime uCode (initialization uCode's
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002953 * Alive gets handled by iwl3945_init_alive_start()).
Zhu Yib481de92007-09-25 17:54:57 -07002954 */
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08002955static void iwl3945_alive_start(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002956{
2957 int rc = 0;
2958 int thermal_spin = 0;
2959 u32 rfkill;
2960
Tomas Winklere1623442009-01-27 14:27:56 -08002961 IWL_DEBUG_INFO(priv, "Runtime Alive received.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002962
2963 if (priv->card_alive.is_valid != UCODE_VALID_OK) {
2964 /* We had an error bringing up the hardware, so take it
2965 * all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002966 IWL_DEBUG_INFO(priv, "Alive failed.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002967 goto restart;
2968 }
2969
2970 /* Initialize uCode has loaded Runtime uCode ... verify inst image.
2971 * This is a paranoid check, because we would not have gotten the
2972 * "runtime" alive if code weren't properly loaded. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002973 if (iwl3945_verify_ucode(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002974 /* Runtime instruction load was bad;
2975 * take it all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002976 IWL_DEBUG_INFO(priv, "Bad runtime uCode load.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002977 goto restart;
2978 }
2979
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002980 iwl3945_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002981
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002982 rc = iwl_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002983 if (rc) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002984 IWL_WARN(priv, "Can not read RFKILL status from adapter\n");
Zhu Yib481de92007-09-25 17:54:57 -07002985 return;
2986 }
2987
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002988 rfkill = iwl_read_prph(priv, APMG_RFKILL_REG);
Tomas Winklere1623442009-01-27 14:27:56 -08002989 IWL_DEBUG_INFO(priv, "RFKILL status: 0x%x\n", rfkill);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08002990 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002991
2992 if (rfkill & 0x1) {
2993 clear_bit(STATUS_RF_KILL_HW, &priv->status);
Tomas Winklera96a27f2008-10-23 23:48:56 -07002994 /* if RFKILL is not on, then wait for thermal
Zhu Yib481de92007-09-25 17:54:57 -07002995 * sensor in adapter to kick in */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002996 while (iwl3945_hw_get_temperature(priv) == 0) {
Zhu Yib481de92007-09-25 17:54:57 -07002997 thermal_spin++;
2998 udelay(10);
2999 }
3000
3001 if (thermal_spin)
Tomas Winklere1623442009-01-27 14:27:56 -08003002 IWL_DEBUG_INFO(priv, "Thermal calibration took %dus\n",
Zhu Yib481de92007-09-25 17:54:57 -07003003 thermal_spin * 10);
3004 } else
3005 set_bit(STATUS_RF_KILL_HW, &priv->status);
3006
Ben Cahill9fbab512007-11-29 11:09:47 +08003007 /* After the ALIVE response, we can send commands to 3945 uCode */
Zhu Yib481de92007-09-25 17:54:57 -07003008 set_bit(STATUS_ALIVE, &priv->status);
3009
3010 /* Clear out the uCode error bit if it is set */
3011 clear_bit(STATUS_FW_ERROR, &priv->status);
3012
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08003013 if (iwl_is_rfkill(priv))
Zhu Yib481de92007-09-25 17:54:57 -07003014 return;
3015
Johannes Berg36d68252008-05-15 12:55:26 +02003016 ieee80211_wake_queues(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07003017
3018 priv->active_rate = priv->rates_mask;
3019 priv->active_rate_basic = priv->rates_mask & IWL_BASIC_RATES_MASK;
3020
Winkler, Tomasd25aabb2009-01-27 14:27:58 -08003021 iwl_power_update_mode(priv, false);
Zhu Yib481de92007-09-25 17:54:57 -07003022
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003023 if (iwl_is_associated(priv)) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003024 struct iwl3945_rxon_cmd *active_rxon =
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003025 (struct iwl3945_rxon_cmd *)(&priv->active_rxon);
Zhu Yib481de92007-09-25 17:54:57 -07003026
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003027 memcpy(&priv->staging_rxon, &priv->active_rxon,
3028 sizeof(priv->staging_rxon));
Zhu Yib481de92007-09-25 17:54:57 -07003029 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
3030 } else {
3031 /* Initialize our rx_config data */
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003032 iwl_connection_init_rx_config(priv, priv->iw_mode);
Zhu Yib481de92007-09-25 17:54:57 -07003033 }
3034
Ben Cahill9fbab512007-11-29 11:09:47 +08003035 /* Configure Bluetooth device coexistence support */
Samuel Ortiz17f841c2009-01-23 13:45:20 -08003036 iwl_send_bt_config(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003037
3038 /* Configure the adapter for unassociated operation */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003039 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003040
Zhu Yib481de92007-09-25 17:54:57 -07003041 iwl3945_reg_txpower_periodic(priv);
3042
Reinette Chatrefe00b5a2008-04-03 16:05:23 -07003043 iwl3945_led_register(priv);
3044
Tomas Winklere1623442009-01-27 14:27:56 -08003045 IWL_DEBUG_INFO(priv, "ALIVE processing complete.\n");
Rick Farringtona9f46782008-03-18 14:57:49 -07003046 set_bit(STATUS_READY, &priv->status);
Zhu Yi5a66926a2008-01-14 17:46:18 -08003047 wake_up_interruptible(&priv->wait_command_queue);
Zhu Yib481de92007-09-25 17:54:57 -07003048
3049 if (priv->error_recovering)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003050 iwl3945_error_recovery(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003051
Mohamed Abbas9bdf5ec2008-11-07 09:58:35 -08003052 /* reassociate for ADHOC mode */
3053 if (priv->vif && (priv->iw_mode == NL80211_IFTYPE_ADHOC)) {
3054 struct sk_buff *beacon = ieee80211_beacon_get(priv->hw,
3055 priv->vif);
3056 if (beacon)
3057 iwl3945_mac_beacon_update(priv->hw, beacon);
3058 }
3059
Zhu Yib481de92007-09-25 17:54:57 -07003060 return;
3061
3062 restart:
3063 queue_work(priv->workqueue, &priv->restart);
3064}
3065
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003066static void iwl3945_cancel_deferred_work(struct iwl_priv *priv);
Zhu Yib481de92007-09-25 17:54:57 -07003067
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003068static void __iwl3945_down(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003069{
3070 unsigned long flags;
3071 int exit_pending = test_bit(STATUS_EXIT_PENDING, &priv->status);
3072 struct ieee80211_conf *conf = NULL;
3073
Tomas Winklere1623442009-01-27 14:27:56 -08003074 IWL_DEBUG_INFO(priv, DRV_NAME " is going down\n");
Zhu Yib481de92007-09-25 17:54:57 -07003075
3076 conf = ieee80211_get_hw_conf(priv->hw);
3077
3078 if (!exit_pending)
3079 set_bit(STATUS_EXIT_PENDING, &priv->status);
3080
Mohamed Abbasab53d8a2008-03-25 16:33:36 -07003081 iwl3945_led_unregister(priv);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003082 iwl3945_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003083
3084 /* Unblock any waiting calls */
3085 wake_up_interruptible_all(&priv->wait_command_queue);
3086
Zhu Yib481de92007-09-25 17:54:57 -07003087 /* Wipe out the EXIT_PENDING status bit if we are not actually
3088 * exiting the module */
3089 if (!exit_pending)
3090 clear_bit(STATUS_EXIT_PENDING, &priv->status);
3091
3092 /* stop and reset the on-board processor */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003093 iwl_write32(priv, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET);
Zhu Yib481de92007-09-25 17:54:57 -07003094
3095 /* tell the device to stop sending interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003096 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekared3b9322009-02-18 15:54:30 -08003097 iwl_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003098 spin_unlock_irqrestore(&priv->lock, flags);
3099 iwl_synchronize_irq(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003100
3101 if (priv->mac80211_registered)
3102 ieee80211_stop_queues(priv->hw);
3103
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003104 /* If we have not previously called iwl3945_init() then
Zhu Yib481de92007-09-25 17:54:57 -07003105 * clear all bits but the RF Kill and SUSPEND bits and return */
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08003106 if (!iwl_is_init(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07003107 priv->status = test_bit(STATUS_RF_KILL_HW, &priv->status) <<
3108 STATUS_RF_KILL_HW |
3109 test_bit(STATUS_RF_KILL_SW, &priv->status) <<
3110 STATUS_RF_KILL_SW |
Reinette Chatre97888642008-02-06 11:20:38 -08003111 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
3112 STATUS_GEO_CONFIGURED |
Zhu Yib481de92007-09-25 17:54:57 -07003113 test_bit(STATUS_IN_SUSPEND, &priv->status) <<
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08003114 STATUS_IN_SUSPEND |
3115 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
3116 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07003117 goto exit;
3118 }
3119
3120 /* ...otherwise clear out all the status bits but the RF Kill and
3121 * SUSPEND bits and continue taking the NIC down. */
3122 priv->status &= test_bit(STATUS_RF_KILL_HW, &priv->status) <<
3123 STATUS_RF_KILL_HW |
3124 test_bit(STATUS_RF_KILL_SW, &priv->status) <<
3125 STATUS_RF_KILL_SW |
Reinette Chatre97888642008-02-06 11:20:38 -08003126 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
3127 STATUS_GEO_CONFIGURED |
Zhu Yib481de92007-09-25 17:54:57 -07003128 test_bit(STATUS_IN_SUSPEND, &priv->status) <<
3129 STATUS_IN_SUSPEND |
3130 test_bit(STATUS_FW_ERROR, &priv->status) <<
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08003131 STATUS_FW_ERROR |
3132 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
3133 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07003134
Abbas, Mohamede9414b62009-01-20 21:33:55 -08003135 priv->cfg->ops->lib->apm_ops.reset(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003136 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003137 iwl_clear_bit(priv, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
Zhu Yib481de92007-09-25 17:54:57 -07003138 spin_unlock_irqrestore(&priv->lock, flags);
3139
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003140 iwl3945_hw_txq_ctx_stop(priv);
3141 iwl3945_hw_rxq_stop(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003142
3143 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003144 if (!iwl_grab_nic_access(priv)) {
3145 iwl_write_prph(priv, APMG_CLK_DIS_REG,
Zhu Yib481de92007-09-25 17:54:57 -07003146 APMG_CLK_VAL_DMA_CLK_RQT);
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003147 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003148 }
3149 spin_unlock_irqrestore(&priv->lock, flags);
3150
3151 udelay(5);
3152
Abbas, Mohamede9414b62009-01-20 21:33:55 -08003153 if (exit_pending || test_bit(STATUS_IN_SUSPEND, &priv->status))
3154 priv->cfg->ops->lib->apm_ops.stop(priv);
3155 else
3156 priv->cfg->ops->lib->apm_ops.reset(priv);
3157
Zhu Yib481de92007-09-25 17:54:57 -07003158 exit:
Tomas Winkler3d24a9f2008-12-19 10:37:07 +08003159 memset(&priv->card_alive, 0, sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07003160
3161 if (priv->ibss_beacon)
3162 dev_kfree_skb(priv->ibss_beacon);
3163 priv->ibss_beacon = NULL;
3164
3165 /* clear out any free frames */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003166 iwl3945_clear_free_frames(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003167}
3168
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003169static void iwl3945_down(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003170{
3171 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003172 __iwl3945_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003173 mutex_unlock(&priv->mutex);
Zhu Yib24d22b2007-12-19 13:59:52 +08003174
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003175 iwl3945_cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003176}
3177
3178#define MAX_HW_RESTARTS 5
3179
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003180static int __iwl3945_up(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003181{
3182 int rc, i;
3183
3184 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003185 IWL_WARN(priv, "Exit pending; will not bring the NIC up\n");
Zhu Yib481de92007-09-25 17:54:57 -07003186 return -EIO;
3187 }
3188
3189 if (test_bit(STATUS_RF_KILL_SW, &priv->status)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003190 IWL_WARN(priv, "Radio disabled by SW RF kill (module "
Zhu Yib481de92007-09-25 17:54:57 -07003191 "parameter)\n");
Zhu Yie655b9f2008-01-24 02:19:38 -08003192 return -ENODEV;
3193 }
3194
Reinette Chatree903fbd2008-01-30 22:05:15 -08003195 if (!priv->ucode_data_backup.v_addr || !priv->ucode_data.v_addr) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003196 IWL_ERR(priv, "ucode not available for device bring up\n");
Reinette Chatree903fbd2008-01-30 22:05:15 -08003197 return -EIO;
3198 }
3199
Zhu Yie655b9f2008-01-24 02:19:38 -08003200 /* If platform's RF_KILL switch is NOT set to KILL */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003201 if (iwl_read32(priv, CSR_GP_CNTRL) &
Zhu Yie655b9f2008-01-24 02:19:38 -08003202 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
3203 clear_bit(STATUS_RF_KILL_HW, &priv->status);
3204 else {
3205 set_bit(STATUS_RF_KILL_HW, &priv->status);
3206 if (!test_bit(STATUS_IN_SUSPEND, &priv->status)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003207 IWL_WARN(priv, "Radio disabled by HW RF Kill switch\n");
Zhu Yie655b9f2008-01-24 02:19:38 -08003208 return -ENODEV;
3209 }
Zhu Yib481de92007-09-25 17:54:57 -07003210 }
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02003211
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003212 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
Zhu Yib481de92007-09-25 17:54:57 -07003213
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003214 rc = iwl3945_hw_nic_init(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003215 if (rc) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003216 IWL_ERR(priv, "Unable to int nic\n");
Zhu Yib481de92007-09-25 17:54:57 -07003217 return rc;
3218 }
3219
3220 /* make sure rfkill handshake bits are cleared */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003221 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
3222 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR,
Zhu Yib481de92007-09-25 17:54:57 -07003223 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
3224
3225 /* clear (again), then enable host interrupts */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003226 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
Abhijeet Kolekared3b9322009-02-18 15:54:30 -08003227 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003228
3229 /* really make sure rfkill handshake bits are cleared */
Abhijeet Kolekar5d49f492008-12-19 10:37:29 +08003230 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
3231 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
Zhu Yib481de92007-09-25 17:54:57 -07003232
3233 /* Copy original ucode data image from disk into backup cache.
3234 * This will be used to initialize the on-board processor's
3235 * data SRAM for a clean start when the runtime program first loads. */
3236 memcpy(priv->ucode_data_backup.v_addr, priv->ucode_data.v_addr,
Zhu Yi5a66926a2008-01-14 17:46:18 -08003237 priv->ucode_data.len);
Zhu Yib481de92007-09-25 17:54:57 -07003238
Zhu Yie655b9f2008-01-24 02:19:38 -08003239 /* We return success when we resume from suspend and rf_kill is on. */
3240 if (test_bit(STATUS_RF_KILL_HW, &priv->status))
3241 return 0;
3242
Zhu Yib481de92007-09-25 17:54:57 -07003243 for (i = 0; i < MAX_HW_RESTARTS; i++) {
3244
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003245 iwl3945_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003246
3247 /* load bootstrap state machine,
3248 * load bootstrap program into processor's memory,
3249 * prepare to load the "initialize" uCode */
Kolekar, Abhijeet0164b9b2008-12-19 10:37:37 +08003250 priv->cfg->ops->lib->load_ucode(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003251
3252 if (rc) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003253 IWL_ERR(priv,
3254 "Unable to set up bootstrap uCode: %d\n", rc);
Zhu Yib481de92007-09-25 17:54:57 -07003255 continue;
3256 }
3257
3258 /* start card; "initialize" will load runtime ucode */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003259 iwl3945_nic_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003260
Tomas Winklere1623442009-01-27 14:27:56 -08003261 IWL_DEBUG_INFO(priv, DRV_NAME " is coming up\n");
Zhu Yib481de92007-09-25 17:54:57 -07003262
3263 return 0;
3264 }
3265
3266 set_bit(STATUS_EXIT_PENDING, &priv->status);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003267 __iwl3945_down(priv);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08003268 clear_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07003269
3270 /* tried to restart and config the device for as long as our
3271 * patience could withstand */
Winkler, Tomas15b16872008-12-19 10:37:33 +08003272 IWL_ERR(priv, "Unable to initialize device after %d attempts.\n", i);
Zhu Yib481de92007-09-25 17:54:57 -07003273 return -EIO;
3274}
3275
3276
3277/*****************************************************************************
3278 *
3279 * Workqueue callbacks
3280 *
3281 *****************************************************************************/
3282
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003283static void iwl3945_bg_init_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07003284{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003285 struct iwl_priv *priv =
3286 container_of(data, struct iwl_priv, init_alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07003287
3288 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3289 return;
3290
3291 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003292 iwl3945_init_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003293 mutex_unlock(&priv->mutex);
3294}
3295
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003296static void iwl3945_bg_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07003297{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003298 struct iwl_priv *priv =
3299 container_of(data, struct iwl_priv, alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07003300
3301 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3302 return;
3303
3304 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003305 iwl3945_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003306 mutex_unlock(&priv->mutex);
3307}
3308
Helmut Schaa26635162009-01-15 09:38:44 +01003309static void iwl3945_rfkill_poll(struct work_struct *data)
3310{
3311 struct iwl_priv *priv =
3312 container_of(data, struct iwl_priv, rfkill_poll.work);
3313 unsigned long status = priv->status;
3314
3315 if (iwl_read32(priv, CSR_GP_CNTRL) & CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
3316 clear_bit(STATUS_RF_KILL_HW, &priv->status);
3317 else
3318 set_bit(STATUS_RF_KILL_HW, &priv->status);
3319
3320 if (test_bit(STATUS_RF_KILL_HW, &status) != test_bit(STATUS_RF_KILL_HW, &priv->status))
3321 queue_work(priv->workqueue, &priv->rf_kill);
3322
3323 queue_delayed_work(priv->workqueue, &priv->rfkill_poll,
3324 round_jiffies_relative(2 * HZ));
3325
3326}
3327
Zhu Yib481de92007-09-25 17:54:57 -07003328#define IWL_SCAN_CHECK_WATCHDOG (7 * HZ)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003329static void iwl3945_bg_request_scan(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07003330{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003331 struct iwl_priv *priv =
3332 container_of(data, struct iwl_priv, request_scan);
Winkler, Tomasc2d79b482008-12-19 10:37:34 +08003333 struct iwl_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -07003334 .id = REPLY_SCAN_CMD,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003335 .len = sizeof(struct iwl3945_scan_cmd),
Zhu Yib481de92007-09-25 17:54:57 -07003336 .meta.flags = CMD_SIZE_HUGE,
3337 };
3338 int rc = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003339 struct iwl3945_scan_cmd *scan;
Zhu Yib481de92007-09-25 17:54:57 -07003340 struct ieee80211_conf *conf = NULL;
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08003341 u8 n_probes = 2;
Johannes Berg8318d782008-01-24 19:38:38 +01003342 enum ieee80211_band band;
John W. Linville9387b7c2008-09-30 20:59:05 -04003343 DECLARE_SSID_BUF(ssid);
Zhu Yib481de92007-09-25 17:54:57 -07003344
3345 conf = ieee80211_get_hw_conf(priv->hw);
3346
3347 mutex_lock(&priv->mutex);
3348
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08003349 if (!iwl_is_ready(priv)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003350 IWL_WARN(priv, "request scan called when driver not ready.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003351 goto done;
3352 }
3353
Tomas Winklera96a27f2008-10-23 23:48:56 -07003354 /* Make sure the scan wasn't canceled before this queued work
Zhu Yib481de92007-09-25 17:54:57 -07003355 * was given the chance to run... */
3356 if (!test_bit(STATUS_SCANNING, &priv->status))
3357 goto done;
3358
3359 /* This should never be called or scheduled if there is currently
3360 * a scan active in the hardware. */
3361 if (test_bit(STATUS_SCAN_HW, &priv->status)) {
Tomas Winklere1623442009-01-27 14:27:56 -08003362 IWL_DEBUG_INFO(priv, "Multiple concurrent scan requests "
3363 "Ignoring second request.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003364 rc = -EIO;
3365 goto done;
3366 }
3367
3368 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
Tomas Winklere1623442009-01-27 14:27:56 -08003369 IWL_DEBUG_SCAN(priv, "Aborting scan due to device shutdown\n");
Zhu Yib481de92007-09-25 17:54:57 -07003370 goto done;
3371 }
3372
3373 if (test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
Tomas Winklere1623442009-01-27 14:27:56 -08003374 IWL_DEBUG_HC(priv,
3375 "Scan request while abort pending. Queuing.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003376 goto done;
3377 }
3378
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08003379 if (iwl_is_rfkill(priv)) {
Tomas Winklere1623442009-01-27 14:27:56 -08003380 IWL_DEBUG_HC(priv, "Aborting scan due to RF Kill activation\n");
Zhu Yib481de92007-09-25 17:54:57 -07003381 goto done;
3382 }
3383
3384 if (!test_bit(STATUS_READY, &priv->status)) {
Tomas Winklere1623442009-01-27 14:27:56 -08003385 IWL_DEBUG_HC(priv,
3386 "Scan request while uninitialized. Queuing.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003387 goto done;
3388 }
3389
3390 if (!priv->scan_bands) {
Tomas Winklere1623442009-01-27 14:27:56 -08003391 IWL_DEBUG_HC(priv, "Aborting scan due to no requested bands\n");
Zhu Yib481de92007-09-25 17:54:57 -07003392 goto done;
3393 }
3394
Winkler, Tomas805cee52009-01-19 15:30:28 -08003395 if (!priv->scan) {
3396 priv->scan = kmalloc(sizeof(struct iwl3945_scan_cmd) +
Zhu Yib481de92007-09-25 17:54:57 -07003397 IWL_MAX_SCAN_SIZE, GFP_KERNEL);
Winkler, Tomas805cee52009-01-19 15:30:28 -08003398 if (!priv->scan) {
Zhu Yib481de92007-09-25 17:54:57 -07003399 rc = -ENOMEM;
3400 goto done;
3401 }
3402 }
Winkler, Tomas805cee52009-01-19 15:30:28 -08003403 scan = priv->scan;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003404 memset(scan, 0, sizeof(struct iwl3945_scan_cmd) + IWL_MAX_SCAN_SIZE);
Zhu Yib481de92007-09-25 17:54:57 -07003405
3406 scan->quiet_plcp_th = IWL_PLCP_QUIET_THRESH;
3407 scan->quiet_time = IWL_ACTIVE_QUIET_TIME;
3408
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003409 if (iwl_is_associated(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07003410 u16 interval = 0;
3411 u32 extra;
3412 u32 suspend_time = 100;
3413 u32 scan_suspend_time = 100;
3414 unsigned long flags;
3415
Tomas Winklere1623442009-01-27 14:27:56 -08003416 IWL_DEBUG_INFO(priv, "Scanning while associated...\n");
Zhu Yib481de92007-09-25 17:54:57 -07003417
3418 spin_lock_irqsave(&priv->lock, flags);
3419 interval = priv->beacon_int;
3420 spin_unlock_irqrestore(&priv->lock, flags);
3421
3422 scan->suspend_time = 0;
Mohamed Abbas15e869d2007-10-25 17:15:46 +08003423 scan->max_out_time = cpu_to_le32(200 * 1024);
Zhu Yib481de92007-09-25 17:54:57 -07003424 if (!interval)
3425 interval = suspend_time;
3426 /*
3427 * suspend time format:
3428 * 0-19: beacon interval in usec (time before exec.)
3429 * 20-23: 0
3430 * 24-31: number of beacons (suspend between channels)
3431 */
3432
3433 extra = (suspend_time / interval) << 24;
3434 scan_suspend_time = 0xFF0FFFFF &
3435 (extra | ((suspend_time % interval) * 1024));
3436
3437 scan->suspend_time = cpu_to_le32(scan_suspend_time);
Tomas Winklere1623442009-01-27 14:27:56 -08003438 IWL_DEBUG_SCAN(priv, "suspend_time 0x%X beacon interval %d\n",
Zhu Yib481de92007-09-25 17:54:57 -07003439 scan_suspend_time, interval);
3440 }
3441
3442 /* We should add the ability for user to lock to PASSIVE ONLY */
3443 if (priv->one_direct_scan) {
Tomas Winklere1623442009-01-27 14:27:56 -08003444 IWL_DEBUG_SCAN(priv, "Kicking off one direct scan for '%s'\n",
3445 print_ssid(ssid, priv->direct_ssid,
John W. Linville9387b7c2008-09-30 20:59:05 -04003446 priv->direct_ssid_len));
Zhu Yib481de92007-09-25 17:54:57 -07003447 scan->direct_scan[0].id = WLAN_EID_SSID;
3448 scan->direct_scan[0].len = priv->direct_ssid_len;
3449 memcpy(scan->direct_scan[0].ssid,
3450 priv->direct_ssid, priv->direct_ssid_len);
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08003451 n_probes++;
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08003452 } else
Tomas Winklere1623442009-01-27 14:27:56 -08003453 IWL_DEBUG_SCAN(priv, "Kicking off one indirect scan.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003454
3455 /* We don't build a direct scan probe request; the uCode will do
3456 * that based on the direct_mask added to each channel entry */
Zhu Yib481de92007-09-25 17:54:57 -07003457 scan->tx_cmd.tx_flags = TX_CMD_FLG_SEQ_CTL_MSK;
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08003458 scan->tx_cmd.sta_id = priv->hw_params.bcast_sta_id;
Zhu Yib481de92007-09-25 17:54:57 -07003459 scan->tx_cmd.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
3460
3461 /* flags + rate selection */
3462
Ron Rindjunsky66b50042008-06-25 16:46:31 +08003463 if (priv->scan_bands & BIT(IEEE80211_BAND_2GHZ)) {
Zhu Yib481de92007-09-25 17:54:57 -07003464 scan->flags = RXON_FLG_BAND_24G_MSK | RXON_FLG_AUTO_DETECT_MSK;
3465 scan->tx_cmd.rate = IWL_RATE_1M_PLCP;
3466 scan->good_CRC_th = 0;
Johannes Berg8318d782008-01-24 19:38:38 +01003467 band = IEEE80211_BAND_2GHZ;
Ron Rindjunsky66b50042008-06-25 16:46:31 +08003468 } else if (priv->scan_bands & BIT(IEEE80211_BAND_5GHZ)) {
Zhu Yib481de92007-09-25 17:54:57 -07003469 scan->tx_cmd.rate = IWL_RATE_6M_PLCP;
3470 scan->good_CRC_th = IWL_GOOD_CRC_TH;
Johannes Berg8318d782008-01-24 19:38:38 +01003471 band = IEEE80211_BAND_5GHZ;
Ron Rindjunsky66b50042008-06-25 16:46:31 +08003472 } else {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003473 IWL_WARN(priv, "Invalid scan band count\n");
Zhu Yib481de92007-09-25 17:54:57 -07003474 goto done;
3475 }
3476
Samuel Ortiz77fecfb82009-01-23 13:45:12 -08003477 scan->tx_cmd.len = cpu_to_le16(
3478 iwl_fill_probe_req(priv, band,
3479 (struct ieee80211_mgmt *)scan->data,
3480 IWL_MAX_SCAN_SIZE - sizeof(*scan)));
3481
Zhu Yib481de92007-09-25 17:54:57 -07003482 /* select Rx antennas */
3483 scan->flags |= iwl3945_get_antenna_flags(priv);
3484
Johannes Berg05c914f2008-09-11 00:01:58 +02003485 if (priv->iw_mode == NL80211_IFTYPE_MONITOR)
Zhu Yib481de92007-09-25 17:54:57 -07003486 scan->filter_flags = RXON_FILTER_PROMISC_MSK;
3487
Abhijeet Kolekarf9340522008-09-03 11:26:58 +08003488 scan->channel_count =
3489 iwl3945_get_channels_for_scan(priv, band, 1, /* active */
3490 n_probes,
3491 (void *)&scan->data[le16_to_cpu(scan->tx_cmd.len)]);
Zhu Yib481de92007-09-25 17:54:57 -07003492
Reinette Chatre14b54332008-11-04 12:21:35 -08003493 if (scan->channel_count == 0) {
Tomas Winklere1623442009-01-27 14:27:56 -08003494 IWL_DEBUG_SCAN(priv, "channel count %d\n", scan->channel_count);
Reinette Chatre14b54332008-11-04 12:21:35 -08003495 goto done;
3496 }
3497
Zhu Yib481de92007-09-25 17:54:57 -07003498 cmd.len += le16_to_cpu(scan->tx_cmd.len) +
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003499 scan->channel_count * sizeof(struct iwl3945_scan_channel);
Zhu Yib481de92007-09-25 17:54:57 -07003500 cmd.data = scan;
3501 scan->len = cpu_to_le16(cmd.len);
3502
3503 set_bit(STATUS_SCAN_HW, &priv->status);
Samuel Ortiz518099a2009-01-19 15:30:27 -08003504 rc = iwl_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -07003505 if (rc)
3506 goto done;
3507
3508 queue_delayed_work(priv->workqueue, &priv->scan_check,
3509 IWL_SCAN_CHECK_WATCHDOG);
3510
3511 mutex_unlock(&priv->mutex);
3512 return;
3513
3514 done:
Mohamed Abbas2420ebc2008-11-04 12:21:34 -08003515 /* can not perform scan make sure we clear scanning
3516 * bits from status so next scan request can be performed.
3517 * if we dont clear scanning status bit here all next scan
3518 * will fail
3519 */
3520 clear_bit(STATUS_SCAN_HW, &priv->status);
3521 clear_bit(STATUS_SCANNING, &priv->status);
3522
Ian Schram01ebd062007-10-25 17:15:22 +08003523 /* inform mac80211 scan aborted */
Zhu Yib481de92007-09-25 17:54:57 -07003524 queue_work(priv->workqueue, &priv->scan_completed);
3525 mutex_unlock(&priv->mutex);
3526}
3527
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003528static void iwl3945_bg_up(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07003529{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003530 struct iwl_priv *priv = container_of(data, struct iwl_priv, up);
Zhu Yib481de92007-09-25 17:54:57 -07003531
3532 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3533 return;
3534
3535 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003536 __iwl3945_up(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003537 mutex_unlock(&priv->mutex);
Samuel Ortizc0af96a2009-01-21 18:27:54 +01003538 iwl_rfkill_set_hw_state(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003539}
3540
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003541static void iwl3945_bg_restart(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07003542{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003543 struct iwl_priv *priv = container_of(data, struct iwl_priv, restart);
Zhu Yib481de92007-09-25 17:54:57 -07003544
3545 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3546 return;
3547
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003548 iwl3945_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003549 queue_work(priv->workqueue, &priv->up);
3550}
3551
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003552static void iwl3945_bg_rx_replenish(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07003553{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003554 struct iwl_priv *priv =
3555 container_of(data, struct iwl_priv, rx_replenish);
Zhu Yib481de92007-09-25 17:54:57 -07003556
3557 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3558 return;
3559
3560 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003561 iwl3945_rx_replenish(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003562 mutex_unlock(&priv->mutex);
3563}
3564
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08003565#define IWL_DELAY_NEXT_SCAN (HZ*2)
3566
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003567static void iwl3945_post_associate(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003568{
Zhu Yib481de92007-09-25 17:54:57 -07003569 int rc = 0;
3570 struct ieee80211_conf *conf = NULL;
3571
Johannes Berg05c914f2008-09-11 00:01:58 +02003572 if (priv->iw_mode == NL80211_IFTYPE_AP) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003573 IWL_ERR(priv, "%s Should not be called in AP mode\n", __func__);
Zhu Yib481de92007-09-25 17:54:57 -07003574 return;
3575 }
3576
3577
Tomas Winklere1623442009-01-27 14:27:56 -08003578 IWL_DEBUG_ASSOC(priv, "Associated as %d to: %pM\n",
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003579 priv->assoc_id, priv->active_rxon.bssid_addr);
Zhu Yib481de92007-09-25 17:54:57 -07003580
3581 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3582 return;
3583
Abhijeet Kolekar322a9812008-09-03 11:26:27 +08003584 if (!priv->vif || !priv->is_open)
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08003585 return;
Abhijeet Kolekar322a9812008-09-03 11:26:27 +08003586
Winkler, Tomasaf0053d2009-01-19 15:30:23 -08003587 iwl_scan_cancel_timeout(priv, 200);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08003588
Zhu Yib481de92007-09-25 17:54:57 -07003589 conf = ieee80211_get_hw_conf(priv->hw);
3590
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003591 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003592 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003593
Tomas Winkler28afaf92008-12-19 10:37:06 +08003594 memset(&priv->rxon_timing, 0, sizeof(struct iwl_rxon_time_cmd));
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003595 iwl3945_setup_rxon_timing(priv);
Samuel Ortiz518099a2009-01-19 15:30:27 -08003596 rc = iwl_send_cmd_pdu(priv, REPLY_RXON_TIMING,
Zhu Yib481de92007-09-25 17:54:57 -07003597 sizeof(priv->rxon_timing), &priv->rxon_timing);
3598 if (rc)
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003599 IWL_WARN(priv, "REPLY_RXON_TIMING failed - "
Zhu Yib481de92007-09-25 17:54:57 -07003600 "Attempting to continue.\n");
3601
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003602 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003603
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003604 priv->staging_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
Zhu Yib481de92007-09-25 17:54:57 -07003605
Tomas Winklere1623442009-01-27 14:27:56 -08003606 IWL_DEBUG_ASSOC(priv, "assoc id %d beacon interval %d\n",
Zhu Yib481de92007-09-25 17:54:57 -07003607 priv->assoc_id, priv->beacon_int);
3608
3609 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003610 priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003611 else
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003612 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003613
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003614 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) {
Zhu Yib481de92007-09-25 17:54:57 -07003615 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_SLOT_TIME)
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003616 priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003617 else
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003618 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003619
Johannes Berg05c914f2008-09-11 00:01:58 +02003620 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003621 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003622
3623 }
3624
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003625 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003626
3627 switch (priv->iw_mode) {
Johannes Berg05c914f2008-09-11 00:01:58 +02003628 case NL80211_IFTYPE_STATION:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003629 iwl3945_rate_scale_init(priv->hw, IWL_AP_ID);
Zhu Yib481de92007-09-25 17:54:57 -07003630 break;
3631
Johannes Berg05c914f2008-09-11 00:01:58 +02003632 case NL80211_IFTYPE_ADHOC:
Zhu Yib481de92007-09-25 17:54:57 -07003633
Abhijeet Kolekarce546fd2008-11-19 15:32:22 -08003634 priv->assoc_id = 1;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003635 iwl3945_add_station(priv, priv->bssid, 0, 0);
Zhu Yib481de92007-09-25 17:54:57 -07003636 iwl3945_sync_sta(priv, IWL_STA_ID,
Johannes Berg8318d782008-01-24 19:38:38 +01003637 (priv->band == IEEE80211_BAND_5GHZ) ?
Zhu Yib481de92007-09-25 17:54:57 -07003638 IWL_RATE_6M_PLCP : IWL_RATE_1M_PLCP,
3639 CMD_ASYNC);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003640 iwl3945_rate_scale_init(priv->hw, IWL_STA_ID);
3641 iwl3945_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003642
3643 break;
3644
3645 default:
Winkler, Tomas15b16872008-12-19 10:37:33 +08003646 IWL_ERR(priv, "%s Should not be called in %d mode\n",
Tomas Winkler3ac7f142008-07-21 02:40:14 +03003647 __func__, priv->iw_mode);
Zhu Yib481de92007-09-25 17:54:57 -07003648 break;
3649 }
3650
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003651 iwl3945_activate_qos(priv, 0);
Ron Rindjunsky292ae172008-02-06 11:20:39 -08003652
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08003653 /* we have just associated, don't start scan too early */
3654 priv->next_scan_jiffies = jiffies + IWL_DELAY_NEXT_SCAN;
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08003655}
3656
Johannes Berge8975582008-10-09 12:18:51 +02003657static int iwl3945_mac_config(struct ieee80211_hw *hw, u32 changed);
Zhu Yi76bb77e2007-11-22 10:53:22 +08003658
Zhu Yib481de92007-09-25 17:54:57 -07003659/*****************************************************************************
3660 *
3661 * mac80211 entry point functions
3662 *
3663 *****************************************************************************/
3664
Zhu Yi5a66926a2008-01-14 17:46:18 -08003665#define UCODE_READY_TIMEOUT (2 * HZ)
3666
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003667static int iwl3945_mac_start(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07003668{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003669 struct iwl_priv *priv = hw->priv;
Zhu Yi5a66926a2008-01-14 17:46:18 -08003670 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07003671
Tomas Winklere1623442009-01-27 14:27:56 -08003672 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07003673
3674 /* we should be verifying the device is ready to be opened */
3675 mutex_lock(&priv->mutex);
3676
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003677 memset(&priv->staging_rxon, 0, sizeof(priv->staging_rxon));
Zhu Yi5a66926a2008-01-14 17:46:18 -08003678 /* fetch ucode file from disk, alloc and copy to bus-master buffers ...
3679 * ucode filename and max sizes are card-specific. */
3680
3681 if (!priv->ucode_code.len) {
3682 ret = iwl3945_read_ucode(priv);
3683 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003684 IWL_ERR(priv, "Could not read microcode: %d\n", ret);
Zhu Yi5a66926a2008-01-14 17:46:18 -08003685 mutex_unlock(&priv->mutex);
3686 goto out_release_irq;
3687 }
3688 }
3689
Zhu Yie655b9f2008-01-24 02:19:38 -08003690 ret = __iwl3945_up(priv);
Zhu Yi5a66926a2008-01-14 17:46:18 -08003691
Zhu Yib481de92007-09-25 17:54:57 -07003692 mutex_unlock(&priv->mutex);
Zhu Yi5a66926a2008-01-14 17:46:18 -08003693
Samuel Ortizc0af96a2009-01-21 18:27:54 +01003694 iwl_rfkill_set_hw_state(priv);
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02003695
Zhu Yie655b9f2008-01-24 02:19:38 -08003696 if (ret)
3697 goto out_release_irq;
3698
Tomas Winklere1623442009-01-27 14:27:56 -08003699 IWL_DEBUG_INFO(priv, "Start UP work.\n");
Zhu Yie655b9f2008-01-24 02:19:38 -08003700
3701 if (test_bit(STATUS_IN_SUSPEND, &priv->status))
3702 return 0;
3703
Zhu Yi5a66926a2008-01-14 17:46:18 -08003704 /* Wait for START_ALIVE from ucode. Otherwise callbacks from
3705 * mac80211 will not be run successfully. */
3706 ret = wait_event_interruptible_timeout(priv->wait_command_queue,
3707 test_bit(STATUS_READY, &priv->status),
3708 UCODE_READY_TIMEOUT);
3709 if (!ret) {
3710 if (!test_bit(STATUS_READY, &priv->status)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003711 IWL_ERR(priv,
3712 "Wait for START_ALIVE timeout after %dms.\n",
3713 jiffies_to_msecs(UCODE_READY_TIMEOUT));
Zhu Yi5a66926a2008-01-14 17:46:18 -08003714 ret = -ETIMEDOUT;
3715 goto out_release_irq;
3716 }
3717 }
3718
Helmut Schaa26635162009-01-15 09:38:44 +01003719 /* ucode is running and will send rfkill notifications,
3720 * no need to poll the killswitch state anymore */
3721 cancel_delayed_work(&priv->rfkill_poll);
3722
Zhu Yie655b9f2008-01-24 02:19:38 -08003723 priv->is_open = 1;
Tomas Winklere1623442009-01-27 14:27:56 -08003724 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07003725 return 0;
Zhu Yi5a66926a2008-01-14 17:46:18 -08003726
3727out_release_irq:
Zhu Yie655b9f2008-01-24 02:19:38 -08003728 priv->is_open = 0;
Tomas Winklere1623442009-01-27 14:27:56 -08003729 IWL_DEBUG_MAC80211(priv, "leave - failed\n");
Zhu Yi5a66926a2008-01-14 17:46:18 -08003730 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07003731}
3732
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003733static void iwl3945_mac_stop(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07003734{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003735 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07003736
Tomas Winklere1623442009-01-27 14:27:56 -08003737 IWL_DEBUG_MAC80211(priv, "enter\n");
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08003738
Zhu Yie655b9f2008-01-24 02:19:38 -08003739 if (!priv->is_open) {
Tomas Winklere1623442009-01-27 14:27:56 -08003740 IWL_DEBUG_MAC80211(priv, "leave - skip\n");
Zhu Yie655b9f2008-01-24 02:19:38 -08003741 return;
3742 }
3743
Zhu Yib481de92007-09-25 17:54:57 -07003744 priv->is_open = 0;
Zhu Yi5a66926a2008-01-14 17:46:18 -08003745
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08003746 if (iwl_is_ready_rf(priv)) {
Zhu Yie655b9f2008-01-24 02:19:38 -08003747 /* stop mac, cancel any scan request and clear
3748 * RXON_FILTER_ASSOC_MSK BIT
3749 */
Zhu Yi5a66926a2008-01-14 17:46:18 -08003750 mutex_lock(&priv->mutex);
Winkler, Tomasaf0053d2009-01-19 15:30:23 -08003751 iwl_scan_cancel_timeout(priv, 100);
Mohamed Abbasfde35712007-11-29 11:10:15 +08003752 mutex_unlock(&priv->mutex);
Mohamed Abbasfde35712007-11-29 11:10:15 +08003753 }
3754
Zhu Yi5a66926a2008-01-14 17:46:18 -08003755 iwl3945_down(priv);
3756
3757 flush_workqueue(priv->workqueue);
Helmut Schaa26635162009-01-15 09:38:44 +01003758
3759 /* start polling the killswitch state again */
3760 queue_delayed_work(priv->workqueue, &priv->rfkill_poll,
3761 round_jiffies_relative(2 * HZ));
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08003762
Tomas Winklere1623442009-01-27 14:27:56 -08003763 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07003764}
3765
Johannes Berge039fa42008-05-15 12:55:29 +02003766static int iwl3945_mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07003767{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003768 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07003769
Tomas Winklere1623442009-01-27 14:27:56 -08003770 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07003771
Tomas Winklere1623442009-01-27 14:27:56 -08003772 IWL_DEBUG_TX(priv, "dev->xmit(%d bytes) at rate 0x%02x\n", skb->len,
Johannes Berge039fa42008-05-15 12:55:29 +02003773 ieee80211_get_tx_rate(hw, IEEE80211_SKB_CB(skb))->bitrate);
Zhu Yib481de92007-09-25 17:54:57 -07003774
Johannes Berge039fa42008-05-15 12:55:29 +02003775 if (iwl3945_tx_skb(priv, skb))
Zhu Yib481de92007-09-25 17:54:57 -07003776 dev_kfree_skb_any(skb);
3777
Tomas Winklere1623442009-01-27 14:27:56 -08003778 IWL_DEBUG_MAC80211(priv, "leave\n");
Reinette Chatre637f8832009-01-19 15:30:32 -08003779 return NETDEV_TX_OK;
Zhu Yib481de92007-09-25 17:54:57 -07003780}
3781
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003782static int iwl3945_mac_add_interface(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07003783 struct ieee80211_if_init_conf *conf)
3784{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003785 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07003786 unsigned long flags;
3787
Tomas Winklere1623442009-01-27 14:27:56 -08003788 IWL_DEBUG_MAC80211(priv, "enter: type %d\n", conf->type);
Zhu Yib481de92007-09-25 17:54:57 -07003789
Johannes Berg32bfd352007-12-19 01:31:26 +01003790 if (priv->vif) {
Tomas Winklere1623442009-01-27 14:27:56 -08003791 IWL_DEBUG_MAC80211(priv, "leave - vif != NULL\n");
Tomas Winkler864792e2007-11-27 21:00:52 +02003792 return -EOPNOTSUPP;
Zhu Yib481de92007-09-25 17:54:57 -07003793 }
3794
3795 spin_lock_irqsave(&priv->lock, flags);
Johannes Berg32bfd352007-12-19 01:31:26 +01003796 priv->vif = conf->vif;
Zhu, Yi60294de2008-10-29 14:05:45 -07003797 priv->iw_mode = conf->type;
Zhu Yib481de92007-09-25 17:54:57 -07003798
3799 spin_unlock_irqrestore(&priv->lock, flags);
3800
3801 mutex_lock(&priv->mutex);
Tomas Winkler864792e2007-11-27 21:00:52 +02003802
3803 if (conf->mac_addr) {
Tomas Winklere1623442009-01-27 14:27:56 -08003804 IWL_DEBUG_MAC80211(priv, "Set: %pM\n", conf->mac_addr);
Tomas Winkler864792e2007-11-27 21:00:52 +02003805 memcpy(priv->mac_addr, conf->mac_addr, ETH_ALEN);
3806 }
3807
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08003808 if (iwl_is_ready(priv))
Zhu Yi5a66926a2008-01-14 17:46:18 -08003809 iwl3945_set_mode(priv, conf->type);
Zhu Yib481de92007-09-25 17:54:57 -07003810
Zhu Yib481de92007-09-25 17:54:57 -07003811 mutex_unlock(&priv->mutex);
3812
Tomas Winklere1623442009-01-27 14:27:56 -08003813 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07003814 return 0;
3815}
3816
3817/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003818 * iwl3945_mac_config - mac80211 config callback
Zhu Yib481de92007-09-25 17:54:57 -07003819 *
3820 * We ignore conf->flags & IEEE80211_CONF_SHORT_SLOT_TIME since it seems to
3821 * be set inappropriately and the driver currently sets the hardware up to
3822 * use it whenever needed.
3823 */
Johannes Berge8975582008-10-09 12:18:51 +02003824static int iwl3945_mac_config(struct ieee80211_hw *hw, u32 changed)
Zhu Yib481de92007-09-25 17:54:57 -07003825{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003826 struct iwl_priv *priv = hw->priv;
Samuel Ortizd20b3c62008-12-19 10:37:15 +08003827 const struct iwl_channel_info *ch_info;
Johannes Berge8975582008-10-09 12:18:51 +02003828 struct ieee80211_conf *conf = &hw->conf;
Zhu Yib481de92007-09-25 17:54:57 -07003829 unsigned long flags;
Zhu Yi76bb77e2007-11-22 10:53:22 +08003830 int ret = 0;
Zhu Yib481de92007-09-25 17:54:57 -07003831
3832 mutex_lock(&priv->mutex);
Tomas Winklere1623442009-01-27 14:27:56 -08003833 IWL_DEBUG_MAC80211(priv, "enter to channel %d\n",
3834 conf->channel->hw_value);
Zhu Yib481de92007-09-25 17:54:57 -07003835
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08003836 if (!iwl_is_ready(priv)) {
Tomas Winklere1623442009-01-27 14:27:56 -08003837 IWL_DEBUG_MAC80211(priv, "leave - not ready\n");
Zhu Yi76bb77e2007-11-22 10:53:22 +08003838 ret = -EIO;
3839 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07003840 }
3841
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08003842 if (unlikely(!iwl3945_mod_params.disable_hw_scan &&
Zhu Yib481de92007-09-25 17:54:57 -07003843 test_bit(STATUS_SCANNING, &priv->status))) {
Tomas Winklere1623442009-01-27 14:27:56 -08003844 IWL_DEBUG_MAC80211(priv, "leave - scanning\n");
Zhu Yia0646472007-12-20 14:10:01 +08003845 set_bit(STATUS_CONF_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07003846 mutex_unlock(&priv->mutex);
Zhu Yia0646472007-12-20 14:10:01 +08003847 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07003848 }
3849
3850 spin_lock_irqsave(&priv->lock, flags);
3851
Samuel Ortize6148912009-01-23 13:45:15 -08003852 ch_info = iwl_get_channel_info(priv, conf->channel->band,
3853 conf->channel->hw_value);
Zhu Yib481de92007-09-25 17:54:57 -07003854 if (!is_channel_valid(ch_info)) {
Tomas Winklere1623442009-01-27 14:27:56 -08003855 IWL_DEBUG_SCAN(priv,
3856 "Channel %d [%d] is INVALID for this band.\n",
3857 conf->channel->hw_value, conf->channel->band);
3858 IWL_DEBUG_MAC80211(priv, "leave - invalid channel\n");
Zhu Yib481de92007-09-25 17:54:57 -07003859 spin_unlock_irqrestore(&priv->lock, flags);
Zhu Yi76bb77e2007-11-22 10:53:22 +08003860 ret = -EINVAL;
3861 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07003862 }
3863
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003864 iwl_set_rxon_channel(priv, conf->channel);
Zhu Yib481de92007-09-25 17:54:57 -07003865
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003866 iwl_set_flags_for_band(priv, conf->channel->band);
Zhu Yib481de92007-09-25 17:54:57 -07003867
3868 /* The list of supported rates and rate mask can be different
3869 * for each phymode; since the phymode may have changed, reset
3870 * the rate mask to what mac80211 lists */
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003871 iwl_set_rate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003872
3873 spin_unlock_irqrestore(&priv->lock, flags);
3874
3875#ifdef IEEE80211_CONF_CHANNEL_SWITCH
3876 if (conf->flags & IEEE80211_CONF_CHANNEL_SWITCH) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003877 iwl3945_hw_channel_switch(priv, conf->channel);
Zhu Yi76bb77e2007-11-22 10:53:22 +08003878 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07003879 }
3880#endif
3881
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003882 iwl3945_radio_kill_sw(priv, !conf->radio_enabled);
Zhu Yib481de92007-09-25 17:54:57 -07003883
3884 if (!conf->radio_enabled) {
Tomas Winklere1623442009-01-27 14:27:56 -08003885 IWL_DEBUG_MAC80211(priv, "leave - radio disabled\n");
Zhu Yi76bb77e2007-11-22 10:53:22 +08003886 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07003887 }
3888
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08003889 if (iwl_is_rfkill(priv)) {
Tomas Winklere1623442009-01-27 14:27:56 -08003890 IWL_DEBUG_MAC80211(priv, "leave - RF kill\n");
Zhu Yi76bb77e2007-11-22 10:53:22 +08003891 ret = -EIO;
3892 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07003893 }
3894
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003895 iwl_set_rate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003896
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003897 if (memcmp(&priv->active_rxon,
3898 &priv->staging_rxon, sizeof(priv->staging_rxon)))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003899 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003900 else
Tomas Winklere1623442009-01-27 14:27:56 -08003901 IWL_DEBUG_INFO(priv, "Not re-sending same RXON configuration\n");
Zhu Yib481de92007-09-25 17:54:57 -07003902
Tomas Winklere1623442009-01-27 14:27:56 -08003903 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07003904
Zhu Yi76bb77e2007-11-22 10:53:22 +08003905out:
Zhu Yia0646472007-12-20 14:10:01 +08003906 clear_bit(STATUS_CONF_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07003907 mutex_unlock(&priv->mutex);
Zhu Yi76bb77e2007-11-22 10:53:22 +08003908 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07003909}
3910
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003911static void iwl3945_config_ap(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003912{
3913 int rc = 0;
3914
Maarten Lankhorstd986bcd2008-01-23 10:15:16 -08003915 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
Zhu Yib481de92007-09-25 17:54:57 -07003916 return;
3917
3918 /* The following should be done only at AP bring up */
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003919 if (!(iwl_is_associated(priv))) {
Zhu Yib481de92007-09-25 17:54:57 -07003920
3921 /* RXON - unassoc (to set timing command) */
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003922 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003923 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003924
3925 /* RXON Timing */
Tomas Winkler28afaf92008-12-19 10:37:06 +08003926 memset(&priv->rxon_timing, 0, sizeof(struct iwl_rxon_time_cmd));
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003927 iwl3945_setup_rxon_timing(priv);
Samuel Ortiz518099a2009-01-19 15:30:27 -08003928 rc = iwl_send_cmd_pdu(priv, REPLY_RXON_TIMING,
3929 sizeof(priv->rxon_timing),
3930 &priv->rxon_timing);
Zhu Yib481de92007-09-25 17:54:57 -07003931 if (rc)
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003932 IWL_WARN(priv, "REPLY_RXON_TIMING failed - "
Zhu Yib481de92007-09-25 17:54:57 -07003933 "Attempting to continue.\n");
3934
3935 /* FIXME: what should be the assoc_id for AP? */
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003936 priv->staging_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
Zhu Yib481de92007-09-25 17:54:57 -07003937 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003938 priv->staging_rxon.flags |=
Zhu Yib481de92007-09-25 17:54:57 -07003939 RXON_FLG_SHORT_PREAMBLE_MSK;
3940 else
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003941 priv->staging_rxon.flags &=
Zhu Yib481de92007-09-25 17:54:57 -07003942 ~RXON_FLG_SHORT_PREAMBLE_MSK;
3943
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003944 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) {
Zhu Yib481de92007-09-25 17:54:57 -07003945 if (priv->assoc_capability &
3946 WLAN_CAPABILITY_SHORT_SLOT_TIME)
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003947 priv->staging_rxon.flags |=
Zhu Yib481de92007-09-25 17:54:57 -07003948 RXON_FLG_SHORT_SLOT_MSK;
3949 else
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003950 priv->staging_rxon.flags &=
Zhu Yib481de92007-09-25 17:54:57 -07003951 ~RXON_FLG_SHORT_SLOT_MSK;
3952
Johannes Berg05c914f2008-09-11 00:01:58 +02003953 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003954 priv->staging_rxon.flags &=
Zhu Yib481de92007-09-25 17:54:57 -07003955 ~RXON_FLG_SHORT_SLOT_MSK;
3956 }
3957 /* restore RXON assoc */
Samuel Ortiz8ccde882009-01-27 14:27:52 -08003958 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003959 iwl3945_commit_rxon(priv);
Kolekar, Abhijeetb5323d32008-12-19 10:37:22 +08003960 iwl3945_add_station(priv, iwl_bcast_addr, 0, 0);
Zhu Yi556f8db2007-09-27 11:27:33 +08003961 }
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003962 iwl3945_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003963
3964 /* FIXME - we need to add code here to detect a totally new
3965 * configuration, reset the AP, unassoc, rxon timing, assoc,
3966 * clear sta table, add BCAST sta... */
3967}
3968
Johannes Berg32bfd352007-12-19 01:31:26 +01003969static int iwl3945_mac_config_interface(struct ieee80211_hw *hw,
3970 struct ieee80211_vif *vif,
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003971 struct ieee80211_if_conf *conf)
Zhu Yib481de92007-09-25 17:54:57 -07003972{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08003973 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07003974 int rc;
3975
3976 if (conf == NULL)
3977 return -EIO;
3978
Emmanuel Grumbachb716bb92008-03-04 18:09:32 -08003979 if (priv->vif != vif) {
Tomas Winklere1623442009-01-27 14:27:56 -08003980 IWL_DEBUG_MAC80211(priv, "leave - priv->vif != vif\n");
Emmanuel Grumbachb716bb92008-03-04 18:09:32 -08003981 return 0;
3982 }
3983
Johannes Berg9d139c82008-07-09 14:40:37 +02003984 /* handle this temporarily here */
Johannes Berg05c914f2008-09-11 00:01:58 +02003985 if (priv->iw_mode == NL80211_IFTYPE_ADHOC &&
Johannes Berg9d139c82008-07-09 14:40:37 +02003986 conf->changed & IEEE80211_IFCC_BEACON) {
3987 struct sk_buff *beacon = ieee80211_beacon_get(hw, vif);
3988 if (!beacon)
3989 return -ENOMEM;
Mohamed Abbas9bdf5ec2008-11-07 09:58:35 -08003990 mutex_lock(&priv->mutex);
Johannes Berg9d139c82008-07-09 14:40:37 +02003991 rc = iwl3945_mac_beacon_update(hw, beacon);
Mohamed Abbas9bdf5ec2008-11-07 09:58:35 -08003992 mutex_unlock(&priv->mutex);
Johannes Berg9d139c82008-07-09 14:40:37 +02003993 if (rc)
3994 return rc;
3995 }
3996
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08003997 if (!iwl_is_alive(priv))
Zhu Yi5a66926a2008-01-14 17:46:18 -08003998 return -EAGAIN;
3999
Zhu Yib481de92007-09-25 17:54:57 -07004000 mutex_lock(&priv->mutex);
4001
Zhu Yib481de92007-09-25 17:54:57 -07004002 if (conf->bssid)
Tomas Winklere1623442009-01-27 14:27:56 -08004003 IWL_DEBUG_MAC80211(priv, "bssid: %pM\n", conf->bssid);
Zhu Yib481de92007-09-25 17:54:57 -07004004
Johannes Berg4150c572007-09-17 01:29:23 -04004005/*
4006 * very dubious code was here; the probe filtering flag is never set:
4007 *
Zhu Yib481de92007-09-25 17:54:57 -07004008 if (unlikely(test_bit(STATUS_SCANNING, &priv->status)) &&
4009 !(priv->hw->flags & IEEE80211_HW_NO_PROBE_FILTERING)) {
Johannes Berg4150c572007-09-17 01:29:23 -04004010 */
Zhu Yib481de92007-09-25 17:54:57 -07004011
Johannes Berg05c914f2008-09-11 00:01:58 +02004012 if (priv->iw_mode == NL80211_IFTYPE_AP) {
Zhu Yib481de92007-09-25 17:54:57 -07004013 if (!conf->bssid) {
4014 conf->bssid = priv->mac_addr;
4015 memcpy(priv->bssid, priv->mac_addr, ETH_ALEN);
Tomas Winklere1623442009-01-27 14:27:56 -08004016 IWL_DEBUG_MAC80211(priv, "bssid was set to: %pM\n",
Johannes Berge1749612008-10-27 15:59:26 -07004017 conf->bssid);
Zhu Yib481de92007-09-25 17:54:57 -07004018 }
4019 if (priv->ibss_beacon)
4020 dev_kfree_skb(priv->ibss_beacon);
4021
Johannes Berg9d139c82008-07-09 14:40:37 +02004022 priv->ibss_beacon = ieee80211_beacon_get(hw, vif);
Zhu Yib481de92007-09-25 17:54:57 -07004023 }
4024
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08004025 if (iwl_is_rfkill(priv))
Mohamed Abbasfde35712007-11-29 11:10:15 +08004026 goto done;
4027
Zhu Yib481de92007-09-25 17:54:57 -07004028 if (conf->bssid && !is_zero_ether_addr(conf->bssid) &&
4029 !is_multicast_ether_addr(conf->bssid)) {
4030 /* If there is currently a HW scan going on in the background
4031 * then we need to cancel it else the RXON below will fail. */
Winkler, Tomasaf0053d2009-01-19 15:30:23 -08004032 if (iwl_scan_cancel_timeout(priv, 100)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08004033 IWL_WARN(priv, "Aborted scan still in progress "
Zhu Yib481de92007-09-25 17:54:57 -07004034 "after 100ms\n");
Tomas Winklere1623442009-01-27 14:27:56 -08004035 IWL_DEBUG_MAC80211(priv, "leaving:scan abort failed\n");
Zhu Yib481de92007-09-25 17:54:57 -07004036 mutex_unlock(&priv->mutex);
4037 return -EAGAIN;
4038 }
Samuel Ortiz8ccde882009-01-27 14:27:52 -08004039 memcpy(priv->staging_rxon.bssid_addr, conf->bssid, ETH_ALEN);
Zhu Yib481de92007-09-25 17:54:57 -07004040
4041 /* TODO: Audit driver for usage of these members and see
4042 * if mac80211 deprecates them (priv->bssid looks like it
4043 * shouldn't be there, but I haven't scanned the IBSS code
4044 * to verify) - jpk */
4045 memcpy(priv->bssid, conf->bssid, ETH_ALEN);
4046
Johannes Berg05c914f2008-09-11 00:01:58 +02004047 if (priv->iw_mode == NL80211_IFTYPE_AP)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004048 iwl3945_config_ap(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004049 else {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004050 rc = iwl3945_commit_rxon(priv);
Johannes Berg05c914f2008-09-11 00:01:58 +02004051 if ((priv->iw_mode == NL80211_IFTYPE_STATION) && rc)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004052 iwl3945_add_station(priv,
Samuel Ortiz8ccde882009-01-27 14:27:52 -08004053 priv->active_rxon.bssid_addr, 1, 0);
Zhu Yib481de92007-09-25 17:54:57 -07004054 }
4055
4056 } else {
Winkler, Tomasaf0053d2009-01-19 15:30:23 -08004057 iwl_scan_cancel_timeout(priv, 100);
Samuel Ortiz8ccde882009-01-27 14:27:52 -08004058 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004059 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004060 }
4061
Mohamed Abbasfde35712007-11-29 11:10:15 +08004062 done:
Tomas Winklere1623442009-01-27 14:27:56 -08004063 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07004064 mutex_unlock(&priv->mutex);
4065
4066 return 0;
4067}
4068
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004069static void iwl3945_mac_remove_interface(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07004070 struct ieee80211_if_init_conf *conf)
4071{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004072 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07004073
Tomas Winklere1623442009-01-27 14:27:56 -08004074 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07004075
4076 mutex_lock(&priv->mutex);
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08004077
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08004078 if (iwl_is_ready_rf(priv)) {
Winkler, Tomasaf0053d2009-01-19 15:30:23 -08004079 iwl_scan_cancel_timeout(priv, 100);
Samuel Ortiz8ccde882009-01-27 14:27:52 -08004080 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Mohamed Abbasfde35712007-11-29 11:10:15 +08004081 iwl3945_commit_rxon(priv);
4082 }
Johannes Berg32bfd352007-12-19 01:31:26 +01004083 if (priv->vif == conf->vif) {
4084 priv->vif = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07004085 memset(priv->bssid, 0, ETH_ALEN);
Zhu Yib481de92007-09-25 17:54:57 -07004086 }
4087 mutex_unlock(&priv->mutex);
4088
Tomas Winklere1623442009-01-27 14:27:56 -08004089 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07004090}
4091
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08004092#define IWL_DELAY_NEXT_SCAN_AFTER_ASSOC (HZ*6)
4093
4094static void iwl3945_bss_info_changed(struct ieee80211_hw *hw,
4095 struct ieee80211_vif *vif,
4096 struct ieee80211_bss_conf *bss_conf,
4097 u32 changes)
4098{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004099 struct iwl_priv *priv = hw->priv;
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08004100
Tomas Winklere1623442009-01-27 14:27:56 -08004101 IWL_DEBUG_MAC80211(priv, "changes = 0x%X\n", changes);
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08004102
4103 if (changes & BSS_CHANGED_ERP_PREAMBLE) {
Tomas Winklere1623442009-01-27 14:27:56 -08004104 IWL_DEBUG_MAC80211(priv, "ERP_PREAMBLE %d\n",
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08004105 bss_conf->use_short_preamble);
4106 if (bss_conf->use_short_preamble)
Samuel Ortiz8ccde882009-01-27 14:27:52 -08004107 priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08004108 else
Samuel Ortiz8ccde882009-01-27 14:27:52 -08004109 priv->staging_rxon.flags &=
4110 ~RXON_FLG_SHORT_PREAMBLE_MSK;
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08004111 }
4112
4113 if (changes & BSS_CHANGED_ERP_CTS_PROT) {
Tomas Winklere1623442009-01-27 14:27:56 -08004114 IWL_DEBUG_MAC80211(priv, "ERP_CTS %d\n",
4115 bss_conf->use_cts_prot);
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08004116 if (bss_conf->use_cts_prot && (priv->band != IEEE80211_BAND_5GHZ))
Samuel Ortiz8ccde882009-01-27 14:27:52 -08004117 priv->staging_rxon.flags |= RXON_FLG_TGG_PROTECT_MSK;
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08004118 else
Samuel Ortiz8ccde882009-01-27 14:27:52 -08004119 priv->staging_rxon.flags &= ~RXON_FLG_TGG_PROTECT_MSK;
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08004120 }
4121
4122 if (changes & BSS_CHANGED_ASSOC) {
Tomas Winklere1623442009-01-27 14:27:56 -08004123 IWL_DEBUG_MAC80211(priv, "ASSOC %d\n", bss_conf->assoc);
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08004124 /* This should never happen as this function should
4125 * never be called from interrupt context. */
4126 if (WARN_ON_ONCE(in_interrupt()))
4127 return;
4128 if (bss_conf->assoc) {
4129 priv->assoc_id = bss_conf->aid;
4130 priv->beacon_int = bss_conf->beacon_int;
Tomas Winkler28afaf92008-12-19 10:37:06 +08004131 priv->timestamp = bss_conf->timestamp;
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08004132 priv->assoc_capability = bss_conf->assoc_capability;
Winkler, Tomas3dae0c42009-01-19 15:30:30 -08004133 priv->power_data.dtim_period = bss_conf->dtim_period;
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08004134 priv->next_scan_jiffies = jiffies +
4135 IWL_DELAY_NEXT_SCAN_AFTER_ASSOC;
4136 mutex_lock(&priv->mutex);
4137 iwl3945_post_associate(priv);
4138 mutex_unlock(&priv->mutex);
4139 } else {
4140 priv->assoc_id = 0;
Tomas Winklere1623442009-01-27 14:27:56 -08004141 IWL_DEBUG_MAC80211(priv,
4142 "DISASSOC %d\n", bss_conf->assoc);
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08004143 }
Samuel Ortiz8ccde882009-01-27 14:27:52 -08004144 } else if (changes && iwl_is_associated(priv) && priv->assoc_id) {
Tomas Winklere1623442009-01-27 14:27:56 -08004145 IWL_DEBUG_MAC80211(priv,
4146 "Associated Changes %d\n", changes);
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08004147 iwl3945_send_rxon_assoc(priv);
4148 }
4149
4150}
4151
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004152static int iwl3945_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
Johannes Bergdc822b52008-12-29 12:55:09 +01004153 struct ieee80211_vif *vif,
4154 struct ieee80211_sta *sta,
4155 struct ieee80211_key_conf *key)
Zhu Yib481de92007-09-25 17:54:57 -07004156{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004157 struct iwl_priv *priv = hw->priv;
Johannes Bergdc822b52008-12-29 12:55:09 +01004158 const u8 *addr;
Winkler, Tomas42986792009-01-19 15:30:22 -08004159 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07004160 u8 sta_id;
4161
Tomas Winklere1623442009-01-27 14:27:56 -08004162 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07004163
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08004164 if (iwl3945_mod_params.sw_crypto) {
Tomas Winklere1623442009-01-27 14:27:56 -08004165 IWL_DEBUG_MAC80211(priv, "leave - hwcrypto disabled\n");
Zhu Yib481de92007-09-25 17:54:57 -07004166 return -EOPNOTSUPP;
4167 }
4168
Winkler, Tomas42986792009-01-19 15:30:22 -08004169 addr = sta ? sta->addr : iwl_bcast_addr;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004170 sta_id = iwl3945_hw_find_station(priv, addr);
Zhu Yib481de92007-09-25 17:54:57 -07004171 if (sta_id == IWL_INVALID_STATION) {
Tomas Winklere1623442009-01-27 14:27:56 -08004172 IWL_DEBUG_MAC80211(priv, "leave - %pM not in station map.\n",
Johannes Berge1749612008-10-27 15:59:26 -07004173 addr);
Zhu Yib481de92007-09-25 17:54:57 -07004174 return -EINVAL;
4175 }
4176
4177 mutex_lock(&priv->mutex);
4178
Winkler, Tomasaf0053d2009-01-19 15:30:23 -08004179 iwl_scan_cancel_timeout(priv, 100);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08004180
Zhu Yib481de92007-09-25 17:54:57 -07004181 switch (cmd) {
4182 case SET_KEY:
Winkler, Tomas42986792009-01-19 15:30:22 -08004183 ret = iwl3945_update_sta_key_info(priv, key, sta_id);
4184 if (!ret) {
Samuel Ortiz8ccde882009-01-27 14:27:52 -08004185 iwl_set_rxon_hwcrypto(priv, 1);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004186 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004187 key->hw_key_idx = sta_id;
Tomas Winklere1623442009-01-27 14:27:56 -08004188 IWL_DEBUG_MAC80211(priv,
4189 "set_key success, using hwcrypto\n");
Zhu Yib481de92007-09-25 17:54:57 -07004190 key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
4191 }
4192 break;
4193 case DISABLE_KEY:
Winkler, Tomas42986792009-01-19 15:30:22 -08004194 ret = iwl3945_clear_sta_key_info(priv, sta_id);
4195 if (!ret) {
Samuel Ortiz8ccde882009-01-27 14:27:52 -08004196 iwl_set_rxon_hwcrypto(priv, 0);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004197 iwl3945_commit_rxon(priv);
Tomas Winklere1623442009-01-27 14:27:56 -08004198 IWL_DEBUG_MAC80211(priv, "disable hwcrypto key\n");
Zhu Yib481de92007-09-25 17:54:57 -07004199 }
4200 break;
4201 default:
Winkler, Tomas42986792009-01-19 15:30:22 -08004202 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07004203 }
4204
Tomas Winklere1623442009-01-27 14:27:56 -08004205 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07004206 mutex_unlock(&priv->mutex);
4207
Winkler, Tomas42986792009-01-19 15:30:22 -08004208 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07004209}
4210
Johannes Berge100bb62008-04-30 18:51:21 +02004211static int iwl3945_mac_conf_tx(struct ieee80211_hw *hw, u16 queue,
Zhu Yib481de92007-09-25 17:54:57 -07004212 const struct ieee80211_tx_queue_params *params)
4213{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004214 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07004215 unsigned long flags;
4216 int q;
Zhu Yib481de92007-09-25 17:54:57 -07004217
Tomas Winklere1623442009-01-27 14:27:56 -08004218 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07004219
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08004220 if (!iwl_is_ready_rf(priv)) {
Tomas Winklere1623442009-01-27 14:27:56 -08004221 IWL_DEBUG_MAC80211(priv, "leave - RF not ready\n");
Zhu Yib481de92007-09-25 17:54:57 -07004222 return -EIO;
4223 }
4224
4225 if (queue >= AC_NUM) {
Tomas Winklere1623442009-01-27 14:27:56 -08004226 IWL_DEBUG_MAC80211(priv, "leave - queue >= AC_NUM %d\n", queue);
Zhu Yib481de92007-09-25 17:54:57 -07004227 return 0;
4228 }
4229
Zhu Yib481de92007-09-25 17:54:57 -07004230 q = AC_NUM - 1 - queue;
4231
4232 spin_lock_irqsave(&priv->lock, flags);
4233
4234 priv->qos_data.def_qos_parm.ac[q].cw_min = cpu_to_le16(params->cw_min);
4235 priv->qos_data.def_qos_parm.ac[q].cw_max = cpu_to_le16(params->cw_max);
4236 priv->qos_data.def_qos_parm.ac[q].aifsn = params->aifs;
4237 priv->qos_data.def_qos_parm.ac[q].edca_txop =
Johannes Berg3330d7b2008-02-10 16:49:38 +01004238 cpu_to_le16((params->txop * 32));
Zhu Yib481de92007-09-25 17:54:57 -07004239
4240 priv->qos_data.def_qos_parm.ac[q].reserved1 = 0;
4241 priv->qos_data.qos_active = 1;
4242
4243 spin_unlock_irqrestore(&priv->lock, flags);
4244
4245 mutex_lock(&priv->mutex);
Johannes Berg05c914f2008-09-11 00:01:58 +02004246 if (priv->iw_mode == NL80211_IFTYPE_AP)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004247 iwl3945_activate_qos(priv, 1);
Samuel Ortiz8ccde882009-01-27 14:27:52 -08004248 else if (priv->assoc_id && iwl_is_associated(priv))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004249 iwl3945_activate_qos(priv, 0);
Zhu Yib481de92007-09-25 17:54:57 -07004250
4251 mutex_unlock(&priv->mutex);
4252
Tomas Winklere1623442009-01-27 14:27:56 -08004253 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07004254 return 0;
4255}
4256
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004257static int iwl3945_mac_get_tx_stats(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07004258 struct ieee80211_tx_queue_stats *stats)
4259{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004260 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07004261 int i, avail;
Samuel Ortiz188cf6c2008-12-22 11:31:16 +08004262 struct iwl_tx_queue *txq;
Samuel Ortizd20b3c62008-12-19 10:37:15 +08004263 struct iwl_queue *q;
Zhu Yib481de92007-09-25 17:54:57 -07004264 unsigned long flags;
4265
Tomas Winklere1623442009-01-27 14:27:56 -08004266 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07004267
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08004268 if (!iwl_is_ready_rf(priv)) {
Tomas Winklere1623442009-01-27 14:27:56 -08004269 IWL_DEBUG_MAC80211(priv, "leave - RF not ready\n");
Zhu Yib481de92007-09-25 17:54:57 -07004270 return -EIO;
4271 }
4272
4273 spin_lock_irqsave(&priv->lock, flags);
4274
4275 for (i = 0; i < AC_NUM; i++) {
Samuel Ortiz188cf6c2008-12-22 11:31:16 +08004276 txq = &priv->txq[i];
Zhu Yib481de92007-09-25 17:54:57 -07004277 q = &txq->q;
Samuel Ortizd20b3c62008-12-19 10:37:15 +08004278 avail = iwl_queue_space(q);
Zhu Yib481de92007-09-25 17:54:57 -07004279
Johannes Berg57ffc582008-04-29 17:18:59 +02004280 stats[i].len = q->n_window - avail;
4281 stats[i].limit = q->n_window - q->high_mark;
4282 stats[i].count = q->n_window;
Zhu Yib481de92007-09-25 17:54:57 -07004283
4284 }
4285 spin_unlock_irqrestore(&priv->lock, flags);
4286
Tomas Winklere1623442009-01-27 14:27:56 -08004287 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07004288
4289 return 0;
4290}
4291
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004292static void iwl3945_mac_reset_tsf(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07004293{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004294 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07004295 unsigned long flags;
4296
4297 mutex_lock(&priv->mutex);
Tomas Winklere1623442009-01-27 14:27:56 -08004298 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07004299
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08004300 iwl_reset_qos(priv);
Ron Rindjunsky292ae172008-02-06 11:20:39 -08004301
Zhu Yib481de92007-09-25 17:54:57 -07004302 spin_lock_irqsave(&priv->lock, flags);
4303 priv->assoc_id = 0;
4304 priv->assoc_capability = 0;
Zhu Yib481de92007-09-25 17:54:57 -07004305
4306 /* new association get rid of ibss beacon skb */
4307 if (priv->ibss_beacon)
4308 dev_kfree_skb(priv->ibss_beacon);
4309
4310 priv->ibss_beacon = NULL;
4311
4312 priv->beacon_int = priv->hw->conf.beacon_int;
Tomas Winkler28afaf92008-12-19 10:37:06 +08004313 priv->timestamp = 0;
Johannes Berg05c914f2008-09-11 00:01:58 +02004314 if ((priv->iw_mode == NL80211_IFTYPE_STATION))
Zhu Yib481de92007-09-25 17:54:57 -07004315 priv->beacon_int = 0;
4316
4317 spin_unlock_irqrestore(&priv->lock, flags);
4318
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08004319 if (!iwl_is_ready_rf(priv)) {
Tomas Winklere1623442009-01-27 14:27:56 -08004320 IWL_DEBUG_MAC80211(priv, "leave - not ready\n");
Mohamed Abbasfde35712007-11-29 11:10:15 +08004321 mutex_unlock(&priv->mutex);
4322 return;
4323 }
4324
Mohamed Abbas15e869d2007-10-25 17:15:46 +08004325 /* we are restarting association process
4326 * clear RXON_FILTER_ASSOC_MSK bit
4327 */
Johannes Berg05c914f2008-09-11 00:01:58 +02004328 if (priv->iw_mode != NL80211_IFTYPE_AP) {
Winkler, Tomasaf0053d2009-01-19 15:30:23 -08004329 iwl_scan_cancel_timeout(priv, 100);
Samuel Ortiz8ccde882009-01-27 14:27:52 -08004330 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004331 iwl3945_commit_rxon(priv);
Mohamed Abbas15e869d2007-10-25 17:15:46 +08004332 }
4333
Zhu Yib481de92007-09-25 17:54:57 -07004334 /* Per mac80211.h: This is only used in IBSS mode... */
Johannes Berg05c914f2008-09-11 00:01:58 +02004335 if (priv->iw_mode != NL80211_IFTYPE_ADHOC) {
Mohamed Abbas15e869d2007-10-25 17:15:46 +08004336
Tomas Winklere1623442009-01-27 14:27:56 -08004337 IWL_DEBUG_MAC80211(priv, "leave - not in IBSS\n");
Zhu Yib481de92007-09-25 17:54:57 -07004338 mutex_unlock(&priv->mutex);
4339 return;
4340 }
4341
Samuel Ortiz8ccde882009-01-27 14:27:52 -08004342 iwl_set_rate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004343
4344 mutex_unlock(&priv->mutex);
4345
Tomas Winklere1623442009-01-27 14:27:56 -08004346 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07004347
4348}
4349
Johannes Berge039fa42008-05-15 12:55:29 +02004350static int iwl3945_mac_beacon_update(struct ieee80211_hw *hw, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07004351{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004352 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07004353 unsigned long flags;
4354
Tomas Winklere1623442009-01-27 14:27:56 -08004355 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07004356
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08004357 if (!iwl_is_ready_rf(priv)) {
Tomas Winklere1623442009-01-27 14:27:56 -08004358 IWL_DEBUG_MAC80211(priv, "leave - RF not ready\n");
Zhu Yib481de92007-09-25 17:54:57 -07004359 return -EIO;
4360 }
4361
Johannes Berg05c914f2008-09-11 00:01:58 +02004362 if (priv->iw_mode != NL80211_IFTYPE_ADHOC) {
Tomas Winklere1623442009-01-27 14:27:56 -08004363 IWL_DEBUG_MAC80211(priv, "leave - not IBSS\n");
Zhu Yib481de92007-09-25 17:54:57 -07004364 return -EIO;
4365 }
4366
4367 spin_lock_irqsave(&priv->lock, flags);
4368
4369 if (priv->ibss_beacon)
4370 dev_kfree_skb(priv->ibss_beacon);
4371
4372 priv->ibss_beacon = skb;
4373
4374 priv->assoc_id = 0;
4375
Tomas Winklere1623442009-01-27 14:27:56 -08004376 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07004377 spin_unlock_irqrestore(&priv->lock, flags);
4378
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08004379 iwl_reset_qos(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004380
Abhijeet Kolekardc4b1e72008-09-03 11:26:30 +08004381 iwl3945_post_associate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004382
Zhu Yib481de92007-09-25 17:54:57 -07004383
4384 return 0;
4385}
4386
4387/*****************************************************************************
4388 *
4389 * sysfs attributes
4390 *
4391 *****************************************************************************/
4392
Samuel Ortizd08853a2009-01-23 13:45:17 -08004393#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07004394
4395/*
4396 * The following adds a new attribute to the sysfs representation
4397 * of this device driver (i.e. a new file in /sys/bus/pci/drivers/iwl/)
4398 * used for controlling the debug level.
4399 *
4400 * See the level definitions in iwl for details.
4401 */
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08004402static ssize_t show_debug_level(struct device *d,
4403 struct device_attribute *attr, char *buf)
Zhu Yib481de92007-09-25 17:54:57 -07004404{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004405 struct iwl_priv *priv = d->driver_data;
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08004406
4407 return sprintf(buf, "0x%08X\n", priv->debug_level);
Zhu Yib481de92007-09-25 17:54:57 -07004408}
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08004409static ssize_t store_debug_level(struct device *d,
4410 struct device_attribute *attr,
Zhu Yib481de92007-09-25 17:54:57 -07004411 const char *buf, size_t count)
4412{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004413 struct iwl_priv *priv = d->driver_data;
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08004414 unsigned long val;
4415 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07004416
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08004417 ret = strict_strtoul(buf, 0, &val);
4418 if (ret)
Tomas Winkler978785a2008-12-19 10:37:31 +08004419 IWL_INFO(priv, "%s is not in hex or decimal form.\n", buf);
Zhu Yib481de92007-09-25 17:54:57 -07004420 else
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08004421 priv->debug_level = val;
Zhu Yib481de92007-09-25 17:54:57 -07004422
4423 return strnlen(buf, count);
4424}
4425
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08004426static DEVICE_ATTR(debug_level, S_IWUSR | S_IRUGO,
4427 show_debug_level, store_debug_level);
Zhu Yib481de92007-09-25 17:54:57 -07004428
Samuel Ortizd08853a2009-01-23 13:45:17 -08004429#endif /* CONFIG_IWLWIFI_DEBUG */
Zhu Yib481de92007-09-25 17:54:57 -07004430
Zhu Yib481de92007-09-25 17:54:57 -07004431static ssize_t show_temperature(struct device *d,
4432 struct device_attribute *attr, char *buf)
4433{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004434 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07004435
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08004436 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07004437 return -EAGAIN;
4438
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004439 return sprintf(buf, "%d\n", iwl3945_hw_get_temperature(priv));
Zhu Yib481de92007-09-25 17:54:57 -07004440}
4441
4442static DEVICE_ATTR(temperature, S_IRUGO, show_temperature, NULL);
4443
Zhu Yib481de92007-09-25 17:54:57 -07004444static ssize_t show_tx_power(struct device *d,
4445 struct device_attribute *attr, char *buf)
4446{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004447 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Winkler, Tomas62ea9c52009-01-19 15:30:29 -08004448 return sprintf(buf, "%d\n", priv->tx_power_user_lmt);
Zhu Yib481de92007-09-25 17:54:57 -07004449}
4450
4451static ssize_t store_tx_power(struct device *d,
4452 struct device_attribute *attr,
4453 const char *buf, size_t count)
4454{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004455 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07004456 char *p = (char *)buf;
4457 u32 val;
4458
4459 val = simple_strtoul(p, &p, 10);
4460 if (p == buf)
Tomas Winkler978785a2008-12-19 10:37:31 +08004461 IWL_INFO(priv, ": %s is not in decimal form.\n", buf);
Zhu Yib481de92007-09-25 17:54:57 -07004462 else
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004463 iwl3945_hw_reg_set_txpower(priv, val);
Zhu Yib481de92007-09-25 17:54:57 -07004464
4465 return count;
4466}
4467
4468static DEVICE_ATTR(tx_power, S_IWUSR | S_IRUGO, show_tx_power, store_tx_power);
4469
4470static ssize_t show_flags(struct device *d,
4471 struct device_attribute *attr, char *buf)
4472{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004473 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07004474
Samuel Ortiz8ccde882009-01-27 14:27:52 -08004475 return sprintf(buf, "0x%04X\n", priv->active_rxon.flags);
Zhu Yib481de92007-09-25 17:54:57 -07004476}
4477
4478static ssize_t store_flags(struct device *d,
4479 struct device_attribute *attr,
4480 const char *buf, size_t count)
4481{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004482 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07004483 u32 flags = simple_strtoul(buf, NULL, 0);
4484
4485 mutex_lock(&priv->mutex);
Samuel Ortiz8ccde882009-01-27 14:27:52 -08004486 if (le32_to_cpu(priv->staging_rxon.flags) != flags) {
Zhu Yib481de92007-09-25 17:54:57 -07004487 /* Cancel any currently running scans... */
Winkler, Tomasaf0053d2009-01-19 15:30:23 -08004488 if (iwl_scan_cancel_timeout(priv, 100))
Winkler, Tomas39aadf82008-12-19 10:37:32 +08004489 IWL_WARN(priv, "Could not cancel scan.\n");
Zhu Yib481de92007-09-25 17:54:57 -07004490 else {
Tomas Winklere1623442009-01-27 14:27:56 -08004491 IWL_DEBUG_INFO(priv, "Committing rxon.flags = 0x%04X\n",
Zhu Yib481de92007-09-25 17:54:57 -07004492 flags);
Samuel Ortiz8ccde882009-01-27 14:27:52 -08004493 priv->staging_rxon.flags = cpu_to_le32(flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004494 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004495 }
4496 }
4497 mutex_unlock(&priv->mutex);
4498
4499 return count;
4500}
4501
4502static DEVICE_ATTR(flags, S_IWUSR | S_IRUGO, show_flags, store_flags);
4503
4504static ssize_t show_filter_flags(struct device *d,
4505 struct device_attribute *attr, char *buf)
4506{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004507 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07004508
4509 return sprintf(buf, "0x%04X\n",
Samuel Ortiz8ccde882009-01-27 14:27:52 -08004510 le32_to_cpu(priv->active_rxon.filter_flags));
Zhu Yib481de92007-09-25 17:54:57 -07004511}
4512
4513static ssize_t store_filter_flags(struct device *d,
4514 struct device_attribute *attr,
4515 const char *buf, size_t count)
4516{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004517 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07004518 u32 filter_flags = simple_strtoul(buf, NULL, 0);
4519
4520 mutex_lock(&priv->mutex);
Samuel Ortiz8ccde882009-01-27 14:27:52 -08004521 if (le32_to_cpu(priv->staging_rxon.filter_flags) != filter_flags) {
Zhu Yib481de92007-09-25 17:54:57 -07004522 /* Cancel any currently running scans... */
Winkler, Tomasaf0053d2009-01-19 15:30:23 -08004523 if (iwl_scan_cancel_timeout(priv, 100))
Winkler, Tomas39aadf82008-12-19 10:37:32 +08004524 IWL_WARN(priv, "Could not cancel scan.\n");
Zhu Yib481de92007-09-25 17:54:57 -07004525 else {
Tomas Winklere1623442009-01-27 14:27:56 -08004526 IWL_DEBUG_INFO(priv, "Committing rxon.filter_flags = "
Zhu Yib481de92007-09-25 17:54:57 -07004527 "0x%04X\n", filter_flags);
Samuel Ortiz8ccde882009-01-27 14:27:52 -08004528 priv->staging_rxon.filter_flags =
Zhu Yib481de92007-09-25 17:54:57 -07004529 cpu_to_le32(filter_flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004530 iwl3945_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004531 }
4532 }
4533 mutex_unlock(&priv->mutex);
4534
4535 return count;
4536}
4537
4538static DEVICE_ATTR(filter_flags, S_IWUSR | S_IRUGO, show_filter_flags,
4539 store_filter_flags);
4540
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08004541#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -07004542
4543static ssize_t show_measurement(struct device *d,
4544 struct device_attribute *attr, char *buf)
4545{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004546 struct iwl_priv *priv = dev_get_drvdata(d);
Tomas Winkler600c0e12008-12-19 10:37:04 +08004547 struct iwl_spectrum_notification measure_report;
Zhu Yib481de92007-09-25 17:54:57 -07004548 u32 size = sizeof(measure_report), len = 0, ofs = 0;
Tomas Winkler3ac7f142008-07-21 02:40:14 +03004549 u8 *data = (u8 *)&measure_report;
Zhu Yib481de92007-09-25 17:54:57 -07004550 unsigned long flags;
4551
4552 spin_lock_irqsave(&priv->lock, flags);
4553 if (!(priv->measurement_status & MEASUREMENT_READY)) {
4554 spin_unlock_irqrestore(&priv->lock, flags);
4555 return 0;
4556 }
4557 memcpy(&measure_report, &priv->measure_report, size);
4558 priv->measurement_status = 0;
4559 spin_unlock_irqrestore(&priv->lock, flags);
4560
4561 while (size && (PAGE_SIZE - len)) {
4562 hex_dump_to_buffer(data + ofs, size, 16, 1, buf + len,
4563 PAGE_SIZE - len, 1);
4564 len = strlen(buf);
4565 if (PAGE_SIZE - len)
4566 buf[len++] = '\n';
4567
4568 ofs += 16;
4569 size -= min(size, 16U);
4570 }
4571
4572 return len;
4573}
4574
4575static ssize_t store_measurement(struct device *d,
4576 struct device_attribute *attr,
4577 const char *buf, size_t count)
4578{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004579 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07004580 struct ieee80211_measurement_params params = {
Samuel Ortiz8ccde882009-01-27 14:27:52 -08004581 .channel = le16_to_cpu(priv->active_rxon.channel),
Zhu Yib481de92007-09-25 17:54:57 -07004582 .start_time = cpu_to_le64(priv->last_tsf),
4583 .duration = cpu_to_le16(1),
4584 };
4585 u8 type = IWL_MEASURE_BASIC;
4586 u8 buffer[32];
4587 u8 channel;
4588
4589 if (count) {
4590 char *p = buffer;
4591 strncpy(buffer, buf, min(sizeof(buffer), count));
4592 channel = simple_strtoul(p, NULL, 0);
4593 if (channel)
4594 params.channel = channel;
4595
4596 p = buffer;
4597 while (*p && *p != ' ')
4598 p++;
4599 if (*p)
4600 type = simple_strtoul(p + 1, NULL, 0);
4601 }
4602
Tomas Winklere1623442009-01-27 14:27:56 -08004603 IWL_DEBUG_INFO(priv, "Invoking measurement of type %d on "
Zhu Yib481de92007-09-25 17:54:57 -07004604 "channel %d (for '%s')\n", type, params.channel, buf);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004605 iwl3945_get_measurement(priv, &params, type);
Zhu Yib481de92007-09-25 17:54:57 -07004606
4607 return count;
4608}
4609
4610static DEVICE_ATTR(measurement, S_IRUSR | S_IWUSR,
4611 show_measurement, store_measurement);
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08004612#endif /* CONFIG_IWL3945_SPECTRUM_MEASUREMENT */
Zhu Yib481de92007-09-25 17:54:57 -07004613
Zhu Yib481de92007-09-25 17:54:57 -07004614static ssize_t store_retry_rate(struct device *d,
4615 struct device_attribute *attr,
4616 const char *buf, size_t count)
4617{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004618 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07004619
4620 priv->retry_rate = simple_strtoul(buf, NULL, 0);
4621 if (priv->retry_rate <= 0)
4622 priv->retry_rate = 1;
4623
4624 return count;
4625}
4626
4627static ssize_t show_retry_rate(struct device *d,
4628 struct device_attribute *attr, char *buf)
4629{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004630 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07004631 return sprintf(buf, "%d", priv->retry_rate);
4632}
4633
4634static DEVICE_ATTR(retry_rate, S_IWUSR | S_IRUSR, show_retry_rate,
4635 store_retry_rate);
4636
Winkler, Tomasd25aabb2009-01-27 14:27:58 -08004637
Zhu Yib481de92007-09-25 17:54:57 -07004638static ssize_t store_power_level(struct device *d,
4639 struct device_attribute *attr,
4640 const char *buf, size_t count)
4641{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004642 struct iwl_priv *priv = dev_get_drvdata(d);
Winkler, Tomasd25aabb2009-01-27 14:27:58 -08004643 int ret;
4644 unsigned long mode;
Zhu Yib481de92007-09-25 17:54:57 -07004645
Winkler, Tomasd25aabb2009-01-27 14:27:58 -08004646
Zhu Yib481de92007-09-25 17:54:57 -07004647 mutex_lock(&priv->mutex);
4648
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08004649 if (!iwl_is_ready(priv)) {
Winkler, Tomasd25aabb2009-01-27 14:27:58 -08004650 ret = -EAGAIN;
Zhu Yib481de92007-09-25 17:54:57 -07004651 goto out;
4652 }
4653
Winkler, Tomasd25aabb2009-01-27 14:27:58 -08004654 ret = strict_strtoul(buf, 10, &mode);
4655 if (ret)
4656 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07004657
Winkler, Tomasd25aabb2009-01-27 14:27:58 -08004658 ret = iwl_power_set_user_mode(priv, mode);
4659 if (ret) {
4660 IWL_DEBUG_MAC80211(priv, "failed setting power mode.\n");
4661 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07004662 }
Winkler, Tomasd25aabb2009-01-27 14:27:58 -08004663 ret = count;
Zhu Yib481de92007-09-25 17:54:57 -07004664
4665 out:
4666 mutex_unlock(&priv->mutex);
Winkler, Tomasd25aabb2009-01-27 14:27:58 -08004667 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07004668}
4669
Winkler, Tomasd25aabb2009-01-27 14:27:58 -08004670static ssize_t show_power_level(struct device *d,
4671 struct device_attribute *attr, char *buf)
4672{
4673 struct iwl_priv *priv = dev_get_drvdata(d);
4674 int mode = priv->power_data.user_power_setting;
4675 int system = priv->power_data.system_power_setting;
4676 int level = priv->power_data.power_mode;
4677 char *p = buf;
4678
4679 switch (system) {
4680 case IWL_POWER_SYS_AUTO:
4681 p += sprintf(p, "SYSTEM:auto");
4682 break;
4683 case IWL_POWER_SYS_AC:
4684 p += sprintf(p, "SYSTEM:ac");
4685 break;
4686 case IWL_POWER_SYS_BATTERY:
4687 p += sprintf(p, "SYSTEM:battery");
4688 break;
4689 }
4690
4691 p += sprintf(p, "\tMODE:%s", (mode < IWL_POWER_AUTO) ?
4692 "fixed" : "auto");
4693 p += sprintf(p, "\tINDEX:%d", level);
4694 p += sprintf(p, "\n");
4695 return p - buf + 1;
4696}
4697
4698static DEVICE_ATTR(power_level, S_IWUSR | S_IRUSR,
4699 show_power_level, store_power_level);
4700
Zhu Yib481de92007-09-25 17:54:57 -07004701#define MAX_WX_STRING 80
4702
4703/* Values are in microsecond */
4704static const s32 timeout_duration[] = {
4705 350000,
4706 250000,
4707 75000,
4708 37000,
4709 25000,
4710};
4711static const s32 period_duration[] = {
4712 400000,
4713 700000,
4714 1000000,
4715 1000000,
4716 1000000
4717};
4718
Zhu Yib481de92007-09-25 17:54:57 -07004719static ssize_t show_channels(struct device *d,
4720 struct device_attribute *attr, char *buf)
4721{
Johannes Berg8318d782008-01-24 19:38:38 +01004722 /* all this shit doesn't belong into sysfs anyway */
4723 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07004724}
4725
4726static DEVICE_ATTR(channels, S_IRUSR, show_channels, NULL);
4727
4728static ssize_t show_statistics(struct device *d,
4729 struct device_attribute *attr, char *buf)
4730{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004731 struct iwl_priv *priv = dev_get_drvdata(d);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004732 u32 size = sizeof(struct iwl3945_notif_statistics);
Zhu Yib481de92007-09-25 17:54:57 -07004733 u32 len = 0, ofs = 0;
Abhijeet Kolekarf2c7e522008-12-19 10:37:27 +08004734 u8 *data = (u8 *)&priv->statistics_39;
Zhu Yib481de92007-09-25 17:54:57 -07004735 int rc = 0;
4736
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08004737 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07004738 return -EAGAIN;
4739
4740 mutex_lock(&priv->mutex);
Samuel Ortiz17f841c2009-01-23 13:45:20 -08004741 rc = iwl_send_statistics_request(priv, 0);
Zhu Yib481de92007-09-25 17:54:57 -07004742 mutex_unlock(&priv->mutex);
4743
4744 if (rc) {
4745 len = sprintf(buf,
4746 "Error sending statistics request: 0x%08X\n", rc);
4747 return len;
4748 }
4749
4750 while (size && (PAGE_SIZE - len)) {
4751 hex_dump_to_buffer(data + ofs, size, 16, 1, buf + len,
4752 PAGE_SIZE - len, 1);
4753 len = strlen(buf);
4754 if (PAGE_SIZE - len)
4755 buf[len++] = '\n';
4756
4757 ofs += 16;
4758 size -= min(size, 16U);
4759 }
4760
4761 return len;
4762}
4763
4764static DEVICE_ATTR(statistics, S_IRUGO, show_statistics, NULL);
4765
4766static ssize_t show_antenna(struct device *d,
4767 struct device_attribute *attr, char *buf)
4768{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004769 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07004770
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08004771 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07004772 return -EAGAIN;
4773
Samuel Ortiz7e4bca52009-01-23 13:45:18 -08004774 return sprintf(buf, "%d\n", iwl3945_mod_params.antenna);
Zhu Yib481de92007-09-25 17:54:57 -07004775}
4776
4777static ssize_t store_antenna(struct device *d,
4778 struct device_attribute *attr,
4779 const char *buf, size_t count)
4780{
Winkler, Tomas7530f852009-01-27 14:27:53 -08004781 struct iwl_priv *priv __maybe_unused = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07004782 int ant;
Zhu Yib481de92007-09-25 17:54:57 -07004783
4784 if (count == 0)
4785 return 0;
4786
4787 if (sscanf(buf, "%1i", &ant) != 1) {
Tomas Winklere1623442009-01-27 14:27:56 -08004788 IWL_DEBUG_INFO(priv, "not in hex or decimal form.\n");
Zhu Yib481de92007-09-25 17:54:57 -07004789 return count;
4790 }
4791
4792 if ((ant >= 0) && (ant <= 2)) {
Tomas Winklere1623442009-01-27 14:27:56 -08004793 IWL_DEBUG_INFO(priv, "Setting antenna select to %d.\n", ant);
Samuel Ortiz7e4bca52009-01-23 13:45:18 -08004794 iwl3945_mod_params.antenna = (enum iwl3945_antenna)ant;
Zhu Yib481de92007-09-25 17:54:57 -07004795 } else
Tomas Winklere1623442009-01-27 14:27:56 -08004796 IWL_DEBUG_INFO(priv, "Bad antenna select value %d.\n", ant);
Zhu Yib481de92007-09-25 17:54:57 -07004797
4798
4799 return count;
4800}
4801
4802static DEVICE_ATTR(antenna, S_IWUSR | S_IRUGO, show_antenna, store_antenna);
4803
4804static ssize_t show_status(struct device *d,
4805 struct device_attribute *attr, char *buf)
4806{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004807 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Kolekar, Abhijeet775a6e22008-12-19 10:37:36 +08004808 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07004809 return -EAGAIN;
4810 return sprintf(buf, "0x%08x\n", (int)priv->status);
4811}
4812
4813static DEVICE_ATTR(status, S_IRUGO, show_status, NULL);
4814
4815static ssize_t dump_error_log(struct device *d,
4816 struct device_attribute *attr,
4817 const char *buf, size_t count)
4818{
4819 char *p = (char *)buf;
4820
4821 if (p[0] == '1')
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004822 iwl3945_dump_nic_error_log((struct iwl_priv *)d->driver_data);
Zhu Yib481de92007-09-25 17:54:57 -07004823
4824 return strnlen(buf, count);
4825}
4826
4827static DEVICE_ATTR(dump_errors, S_IWUSR, NULL, dump_error_log);
4828
4829static ssize_t dump_event_log(struct device *d,
4830 struct device_attribute *attr,
4831 const char *buf, size_t count)
4832{
4833 char *p = (char *)buf;
4834
4835 if (p[0] == '1')
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004836 iwl3945_dump_nic_event_log((struct iwl_priv *)d->driver_data);
Zhu Yib481de92007-09-25 17:54:57 -07004837
4838 return strnlen(buf, count);
4839}
4840
4841static DEVICE_ATTR(dump_events, S_IWUSR, NULL, dump_event_log);
4842
4843/*****************************************************************************
4844 *
Tomas Winklera96a27f2008-10-23 23:48:56 -07004845 * driver setup and tear down
Zhu Yib481de92007-09-25 17:54:57 -07004846 *
4847 *****************************************************************************/
4848
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004849static void iwl3945_setup_deferred_work(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004850{
Reinette Chatred21050c2009-02-13 11:51:18 -08004851 priv->workqueue = create_singlethread_workqueue(DRV_NAME);
Zhu Yib481de92007-09-25 17:54:57 -07004852
4853 init_waitqueue_head(&priv->wait_command_queue);
4854
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004855 INIT_WORK(&priv->up, iwl3945_bg_up);
4856 INIT_WORK(&priv->restart, iwl3945_bg_restart);
4857 INIT_WORK(&priv->rx_replenish, iwl3945_bg_rx_replenish);
Samuel Ortizc0af96a2009-01-21 18:27:54 +01004858 INIT_WORK(&priv->rf_kill, iwl_bg_rf_kill);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004859 INIT_WORK(&priv->beacon_update, iwl3945_bg_beacon_update);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004860 INIT_DELAYED_WORK(&priv->init_alive_start, iwl3945_bg_init_alive_start);
4861 INIT_DELAYED_WORK(&priv->alive_start, iwl3945_bg_alive_start);
Helmut Schaa26635162009-01-15 09:38:44 +01004862 INIT_DELAYED_WORK(&priv->rfkill_poll, iwl3945_rfkill_poll);
Samuel Ortiz77fecfb82009-01-23 13:45:12 -08004863 INIT_WORK(&priv->scan_completed, iwl_bg_scan_completed);
4864 INIT_WORK(&priv->request_scan, iwl3945_bg_request_scan);
4865 INIT_WORK(&priv->abort_scan, iwl_bg_abort_scan);
4866 INIT_DELAYED_WORK(&priv->scan_check, iwl_bg_scan_check);
Zhu Yib481de92007-09-25 17:54:57 -07004867
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004868 iwl3945_hw_setup_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004869
4870 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004871 iwl3945_irq_tasklet, (unsigned long)priv);
Zhu Yib481de92007-09-25 17:54:57 -07004872}
4873
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08004874static void iwl3945_cancel_deferred_work(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004875{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004876 iwl3945_hw_cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004877
Joonwoo Parke47eb6a2007-11-29 10:42:49 +09004878 cancel_delayed_work_sync(&priv->init_alive_start);
Zhu Yib481de92007-09-25 17:54:57 -07004879 cancel_delayed_work(&priv->scan_check);
4880 cancel_delayed_work(&priv->alive_start);
Zhu Yib481de92007-09-25 17:54:57 -07004881 cancel_work_sync(&priv->beacon_update);
4882}
4883
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004884static struct attribute *iwl3945_sysfs_entries[] = {
Zhu Yib481de92007-09-25 17:54:57 -07004885 &dev_attr_antenna.attr,
4886 &dev_attr_channels.attr,
4887 &dev_attr_dump_errors.attr,
4888 &dev_attr_dump_events.attr,
4889 &dev_attr_flags.attr,
4890 &dev_attr_filter_flags.attr,
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08004891#ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -07004892 &dev_attr_measurement.attr,
4893#endif
4894 &dev_attr_power_level.attr,
Zhu Yib481de92007-09-25 17:54:57 -07004895 &dev_attr_retry_rate.attr,
Zhu Yib481de92007-09-25 17:54:57 -07004896 &dev_attr_statistics.attr,
4897 &dev_attr_status.attr,
4898 &dev_attr_temperature.attr,
Zhu Yib481de92007-09-25 17:54:57 -07004899 &dev_attr_tx_power.attr,
Samuel Ortizd08853a2009-01-23 13:45:17 -08004900#ifdef CONFIG_IWLWIFI_DEBUG
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08004901 &dev_attr_debug_level.attr,
4902#endif
Zhu Yib481de92007-09-25 17:54:57 -07004903 NULL
4904};
4905
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004906static struct attribute_group iwl3945_attribute_group = {
Zhu Yib481de92007-09-25 17:54:57 -07004907 .name = NULL, /* put in device directory */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004908 .attrs = iwl3945_sysfs_entries,
Zhu Yib481de92007-09-25 17:54:57 -07004909};
4910
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004911static struct ieee80211_ops iwl3945_hw_ops = {
4912 .tx = iwl3945_mac_tx,
4913 .start = iwl3945_mac_start,
4914 .stop = iwl3945_mac_stop,
4915 .add_interface = iwl3945_mac_add_interface,
4916 .remove_interface = iwl3945_mac_remove_interface,
4917 .config = iwl3945_mac_config,
4918 .config_interface = iwl3945_mac_config_interface,
Samuel Ortiz8ccde882009-01-27 14:27:52 -08004919 .configure_filter = iwl_configure_filter,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004920 .set_key = iwl3945_mac_set_key,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004921 .get_tx_stats = iwl3945_mac_get_tx_stats,
4922 .conf_tx = iwl3945_mac_conf_tx,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004923 .reset_tsf = iwl3945_mac_reset_tsf,
Abhijeet Kolekarcd56d332008-09-03 11:26:21 +08004924 .bss_info_changed = iwl3945_bss_info_changed,
Abhijeet Kolekare9dde6f62009-02-18 15:54:27 -08004925 .hw_scan = iwl_mac_hw_scan
Zhu Yib481de92007-09-25 17:54:57 -07004926};
4927
Winkler, Tomase52119c2008-12-22 11:31:19 +08004928static int iwl3945_init_drv(struct iwl_priv *priv)
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004929{
4930 int ret;
Samuel Ortize6148912009-01-23 13:45:15 -08004931 struct iwl3945_eeprom *eeprom = (struct iwl3945_eeprom *)priv->eeprom;
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004932
4933 priv->retry_rate = 1;
4934 priv->ibss_beacon = NULL;
4935
4936 spin_lock_init(&priv->lock);
Winkler, Tomas3dae0c42009-01-19 15:30:30 -08004937 spin_lock_init(&priv->power_data.lock);
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004938 spin_lock_init(&priv->sta_lock);
4939 spin_lock_init(&priv->hcmd_lock);
4940
4941 INIT_LIST_HEAD(&priv->free_frames);
4942
4943 mutex_init(&priv->mutex);
4944
4945 /* Clear the driver's (not device's) station table */
4946 iwl3945_clear_stations_table(priv);
4947
4948 priv->data_retry_limit = -1;
4949 priv->ieee_channels = NULL;
4950 priv->ieee_rates = NULL;
4951 priv->band = IEEE80211_BAND_2GHZ;
4952
4953 priv->iw_mode = NL80211_IFTYPE_STATION;
4954
4955 iwl_reset_qos(priv);
4956
4957 priv->qos_data.qos_active = 0;
4958 priv->qos_data.qos_cap.val = 0;
4959
4960 priv->rates_mask = IWL_RATES_MASK;
Winkler, Tomasd25aabb2009-01-27 14:27:58 -08004961 /* If power management is turned on, default to CAM mode */
4962 priv->power_mode = IWL_POWER_MODE_CAM;
Winkler, Tomas62ea9c52009-01-19 15:30:29 -08004963 priv->tx_power_user_lmt = IWL_DEFAULT_TX_POWER;
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004964
Samuel Ortize6148912009-01-23 13:45:15 -08004965 if (eeprom->version < EEPROM_3945_EEPROM_VERSION) {
4966 IWL_WARN(priv, "Unsupported EEPROM version: 0x%04X\n",
4967 eeprom->version);
4968 ret = -EINVAL;
4969 goto err;
4970 }
4971 ret = iwl_init_channel_map(priv);
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004972 if (ret) {
4973 IWL_ERR(priv, "initializing regulatory failed: %d\n", ret);
4974 goto err;
4975 }
4976
Samuel Ortize6148912009-01-23 13:45:15 -08004977 /* Set up txpower settings in driver for all channels */
4978 if (iwl3945_txpower_set_from_eeprom(priv)) {
4979 ret = -EIO;
4980 goto err_free_channel_map;
4981 }
4982
Samuel Ortiz534166d2009-01-23 13:45:16 -08004983 ret = iwlcore_init_geos(priv);
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004984 if (ret) {
4985 IWL_ERR(priv, "initializing geos failed: %d\n", ret);
4986 goto err_free_channel_map;
4987 }
Samuel Ortiz534166d2009-01-23 13:45:16 -08004988 iwl3945_init_hw_rates(priv, priv->ieee_rates);
4989
4990 if (priv->bands[IEEE80211_BAND_2GHZ].n_channels)
4991 priv->hw->wiphy->bands[IEEE80211_BAND_2GHZ] =
4992 &priv->bands[IEEE80211_BAND_2GHZ];
4993 if (priv->bands[IEEE80211_BAND_5GHZ].n_channels)
4994 priv->hw->wiphy->bands[IEEE80211_BAND_5GHZ] =
4995 &priv->bands[IEEE80211_BAND_5GHZ];
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08004996
4997 return 0;
4998
4999err_free_channel_map:
Samuel Ortize6148912009-01-23 13:45:15 -08005000 iwl_free_channel_map(priv);
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08005001err:
5002 return ret;
5003}
5004
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005005static int iwl3945_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
Zhu Yib481de92007-09-25 17:54:57 -07005006{
5007 int err = 0;
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005008 struct iwl_priv *priv;
Zhu Yib481de92007-09-25 17:54:57 -07005009 struct ieee80211_hw *hw;
Kolekar, Abhijeetc0f20d92008-12-19 10:37:19 +08005010 struct iwl_cfg *cfg = (struct iwl_cfg *)(ent->driver_data);
Samuel Ortize6148912009-01-23 13:45:15 -08005011 struct iwl3945_eeprom *eeprom;
Mohamed Abbas0359fac2008-03-28 16:21:08 -07005012 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07005013
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08005014 /***********************
5015 * 1. Allocating HW data
5016 * ********************/
5017
Zhu Yib481de92007-09-25 17:54:57 -07005018 /* mac80211 allocates memory for this device instance, including
5019 * space for this driver's private structure */
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08005020 hw = iwl_alloc_all(cfg, &iwl3945_hw_ops);
Zhu Yib481de92007-09-25 17:54:57 -07005021 if (hw == NULL) {
Samuel Ortiza3139c52008-12-19 10:37:09 +08005022 printk(KERN_ERR DRV_NAME "Can not allocate network device\n");
Zhu Yib481de92007-09-25 17:54:57 -07005023 err = -ENOMEM;
5024 goto out;
5025 }
Zhu Yib481de92007-09-25 17:54:57 -07005026 priv = hw->priv;
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08005027 SET_IEEE80211_DEV(hw, &pdev->dev);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08005028
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08005029 if ((iwl3945_mod_params.num_of_queues > IWL39_MAX_NUM_QUEUES) ||
5030 (iwl3945_mod_params.num_of_queues < IWL_MIN_NUM_QUEUES)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08005031 IWL_ERR(priv,
5032 "invalid queues_num, should be between %d and %d\n",
5033 IWL_MIN_NUM_QUEUES, IWL39_MAX_NUM_QUEUES);
Samuel Ortiza3139c52008-12-19 10:37:09 +08005034 err = -EINVAL;
5035 goto out;
5036 }
5037
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08005038 /*
5039 * Disabling hardware scan means that mac80211 will perform scans
5040 * "the hard way", rather than using device's scan.
5041 */
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08005042 if (iwl3945_mod_params.disable_hw_scan) {
Tomas Winklere1623442009-01-27 14:27:56 -08005043 IWL_DEBUG_INFO(priv, "Disabling hw_scan\n");
Samuel Ortiz40b8ec02008-12-19 10:37:08 +08005044 iwl3945_hw_ops.hw_scan = NULL;
5045 }
5046
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08005047
Tomas Winklere1623442009-01-27 14:27:56 -08005048 IWL_DEBUG_INFO(priv, "*** LOAD DRIVER ***\n");
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08005049 priv->cfg = cfg;
5050 priv->pci_dev = pdev;
5051
Samuel Ortizd08853a2009-01-23 13:45:17 -08005052#ifdef CONFIG_IWLWIFI_DEBUG
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08005053 priv->debug_level = iwl3945_mod_params.debug;
5054 atomic_set(&priv->restrict_refcnt, 0);
5055#endif
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08005056 hw->rate_control_algorithm = "iwl-3945-rs";
5057 hw->sta_data_size = sizeof(struct iwl3945_sta_priv);
5058
Bruno Randolf566bfe52008-05-08 19:15:40 +02005059 /* Tell mac80211 our characteristics */
Johannes Berg605a0bd2008-07-15 10:10:01 +02005060 hw->flags = IEEE80211_HW_SIGNAL_DBM |
Bruno Randolf566bfe52008-05-08 19:15:40 +02005061 IEEE80211_HW_NOISE_DBM;
Zhu Yib481de92007-09-25 17:54:57 -07005062
Luis R. Rodriguezf59ac042008-08-29 16:26:43 -07005063 hw->wiphy->interface_modes =
Luis R. Rodriguezf59ac042008-08-29 16:26:43 -07005064 BIT(NL80211_IFTYPE_STATION) |
5065 BIT(NL80211_IFTYPE_ADHOC);
5066
Luis R. Rodriguez2a44f912009-01-22 15:05:49 -08005067 hw->wiphy->custom_regulatory = true;
Luis R. Rodriguezea4a82dc2008-11-12 14:22:04 -08005068
Johannes Berg2a519312009-02-10 21:25:55 +01005069 hw->wiphy->max_scan_ssids = 1;
5070
Cahill, Ben M6440adb2007-11-29 11:09:55 +08005071 /* 4 EDCA QOS priorities */
Zhu Yib481de92007-09-25 17:54:57 -07005072 hw->queues = 4;
5073
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08005074 /***************************
5075 * 2. Initializing PCI bus
5076 * *************************/
Zhu Yib481de92007-09-25 17:54:57 -07005077 if (pci_enable_device(pdev)) {
5078 err = -ENODEV;
5079 goto out_ieee80211_free_hw;
5080 }
5081
5082 pci_set_master(pdev);
5083
Zhu Yib481de92007-09-25 17:54:57 -07005084 err = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
5085 if (!err)
5086 err = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK);
5087 if (err) {
Tomas Winkler978785a2008-12-19 10:37:31 +08005088 IWL_WARN(priv, "No suitable DMA available.\n");
Zhu Yib481de92007-09-25 17:54:57 -07005089 goto out_pci_disable_device;
5090 }
5091
5092 pci_set_drvdata(pdev, priv);
5093 err = pci_request_regions(pdev, DRV_NAME);
5094 if (err)
5095 goto out_pci_disable_device;
Cahill, Ben M6440adb2007-11-29 11:09:55 +08005096
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08005097 /***********************
5098 * 3. Read REV Register
5099 * ********************/
Zhu Yib481de92007-09-25 17:54:57 -07005100 priv->hw_base = pci_iomap(pdev, 0, 0);
5101 if (!priv->hw_base) {
5102 err = -ENODEV;
5103 goto out_pci_release_regions;
5104 }
5105
Tomas Winklere1623442009-01-27 14:27:56 -08005106 IWL_DEBUG_INFO(priv, "pci_resource_len = 0x%08llx\n",
Zhu Yib481de92007-09-25 17:54:57 -07005107 (unsigned long long) pci_resource_len(pdev, 0));
Tomas Winklere1623442009-01-27 14:27:56 -08005108 IWL_DEBUG_INFO(priv, "pci_resource_base = %p\n", priv->hw_base);
Zhu Yib481de92007-09-25 17:54:57 -07005109
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08005110 /* We disable the RETRY_TIMEOUT register (0x41) to keep
5111 * PCI Tx retries from interfering with C3 CPU state */
5112 pci_write_config_byte(pdev, 0x41, 0x00);
Zhu Yib481de92007-09-25 17:54:57 -07005113
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08005114 /* amp init */
5115 err = priv->cfg->ops->lib->apm_ops.init(priv);
Tomas Winkler3ac7f142008-07-21 02:40:14 +03005116 if (err < 0) {
Tomas Winklere1623442009-01-27 14:27:56 -08005117 IWL_DEBUG_INFO(priv, "Failed to init APMG\n");
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08005118 goto out_iounmap;
Tomas Winkler3ac7f142008-07-21 02:40:14 +03005119 }
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08005120
5121 /***********************
5122 * 4. Read EEPROM
5123 * ********************/
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08005124
Zhu Yi5a66926a2008-01-14 17:46:18 -08005125 /* Read the EEPROM */
Samuel Ortize6148912009-01-23 13:45:15 -08005126 err = iwl_eeprom_init(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005127 if (err) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08005128 IWL_ERR(priv, "Unable to init EEPROM\n");
Zhu Yi5a66926a2008-01-14 17:46:18 -08005129 goto out_remove_sysfs;
5130 }
5131 /* MAC Address location in EEPROM same for 3945/4965 */
Samuel Ortize6148912009-01-23 13:45:15 -08005132 eeprom = (struct iwl3945_eeprom *)priv->eeprom;
5133 memcpy(priv->mac_addr, eeprom->mac_address, ETH_ALEN);
Tomas Winklere1623442009-01-27 14:27:56 -08005134 IWL_DEBUG_INFO(priv, "MAC address: %pM\n", priv->mac_addr);
Zhu Yi5a66926a2008-01-14 17:46:18 -08005135 SET_IEEE80211_PERM_ADDR(priv->hw, priv->mac_addr);
5136
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08005137 /***********************
5138 * 5. Setup HW Constants
5139 * ********************/
5140 /* Device-specific setup */
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08005141 if (iwl3945_hw_set_hw_params(priv)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08005142 IWL_ERR(priv, "failed to set hw settings\n");
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08005143 goto out_iounmap;
5144 }
5145
5146 /***********************
5147 * 6. Setup priv
5148 * ********************/
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08005149
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08005150 err = iwl3945_init_drv(priv);
Reinette Chatre849e0dc2008-01-23 10:15:18 -08005151 if (err) {
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08005152 IWL_ERR(priv, "initializing driver failed\n");
5153 goto out_free_geos;
Reinette Chatre849e0dc2008-01-23 10:15:18 -08005154 }
Reinette Chatre849e0dc2008-01-23 10:15:18 -08005155
Tomas Winkler978785a2008-12-19 10:37:31 +08005156 IWL_INFO(priv, "Detected Intel Wireless WiFi Link %s\n",
5157 priv->cfg->name);
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08005158
5159 /***********************************
5160 * 7. Initialize Module Parameters
5161 * **********************************/
5162
5163 /* Initialize module parameter values here */
5164 /* Disable radio (SW RF KILL) via parameter when loading driver */
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08005165 if (iwl3945_mod_params.disable) {
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08005166 set_bit(STATUS_RF_KILL_SW, &priv->status);
Tomas Winklere1623442009-01-27 14:27:56 -08005167 IWL_DEBUG_INFO(priv, "Radio disabled.\n");
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08005168 }
5169
5170
5171 /***********************
5172 * 8. Setup Services
5173 * ********************/
5174
5175 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekared3b9322009-02-18 15:54:30 -08005176 iwl_disable_interrupts(priv);
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08005177 spin_unlock_irqrestore(&priv->lock, flags);
5178
Helmut Schaa26635162009-01-15 09:38:44 +01005179 pci_enable_msi(priv->pci_dev);
5180
Abhijeet Kolekarf17d08a2009-02-18 15:54:31 -08005181 err = request_irq(priv->pci_dev->irq, iwl_isr, IRQF_SHARED,
Helmut Schaa26635162009-01-15 09:38:44 +01005182 DRV_NAME, priv);
5183 if (err) {
5184 IWL_ERR(priv, "Error allocating IRQ %d\n", priv->pci_dev->irq);
5185 goto out_disable_msi;
5186 }
5187
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08005188 err = sysfs_create_group(&pdev->dev.kobj, &iwl3945_attribute_group);
5189 if (err) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08005190 IWL_ERR(priv, "failed to create sysfs device attributes\n");
Kolekar, Abhijeet90a30a02008-12-19 10:37:40 +08005191 goto out_release_irq;
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08005192 }
5193
Samuel Ortiz8ccde882009-01-27 14:27:52 -08005194 iwl_set_rxon_channel(priv,
5195 &priv->bands[IEEE80211_BAND_2GHZ].channels[5]);
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08005196 iwl3945_setup_deferred_work(priv);
5197 iwl3945_setup_rx_handlers(priv);
5198
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08005199 /*********************************
Helmut Schaa26635162009-01-15 09:38:44 +01005200 * 9. Setup and Register mac80211
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08005201 * *******************************/
5202
Zhu Yi5a66926a2008-01-14 17:46:18 -08005203 err = ieee80211_register_hw(priv->hw);
5204 if (err) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08005205 IWL_ERR(priv, "Failed to register network device: %d\n", err);
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08005206 goto out_remove_sysfs;
Zhu Yib481de92007-09-25 17:54:57 -07005207 }
5208
Zhu Yi5a66926a2008-01-14 17:46:18 -08005209 priv->hw->conf.beacon_int = 100;
5210 priv->mac80211_registered = 1;
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08005211
Samuel Ortizc0af96a2009-01-21 18:27:54 +01005212 err = iwl_rfkill_init(priv);
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08005213 if (err)
Winkler, Tomas15b16872008-12-19 10:37:33 +08005214 IWL_ERR(priv, "Unable to initialize RFKILL system. "
Abhijeet Kolekarebef2002008-06-30 17:23:18 +08005215 "Ignoring error: %d\n", err);
5216
Helmut Schaa26635162009-01-15 09:38:44 +01005217 /* Start monitoring the killswitch */
5218 queue_delayed_work(priv->workqueue, &priv->rfkill_poll,
5219 2 * HZ);
5220
Zhu Yib481de92007-09-25 17:54:57 -07005221 return 0;
5222
Kolekar, Abhijeetcee53dd2008-11-12 13:14:04 -08005223 out_remove_sysfs:
5224 sysfs_remove_group(&pdev->dev.kobj, &iwl3945_attribute_group);
Reinette Chatre849e0dc2008-01-23 10:15:18 -08005225 out_free_geos:
Samuel Ortiz534166d2009-01-23 13:45:16 -08005226 iwlcore_free_geos(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005227
5228 out_release_irq:
Helmut Schaa26635162009-01-15 09:38:44 +01005229 free_irq(priv->pci_dev->irq, priv);
Zhu Yib481de92007-09-25 17:54:57 -07005230 destroy_workqueue(priv->workqueue);
5231 priv->workqueue = NULL;
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08005232 iwl3945_unset_hw_params(priv);
Helmut Schaa26635162009-01-15 09:38:44 +01005233 out_disable_msi:
5234 pci_disable_msi(priv->pci_dev);
Zhu Yib481de92007-09-25 17:54:57 -07005235 out_iounmap:
5236 pci_iounmap(pdev, priv->hw_base);
5237 out_pci_release_regions:
5238 pci_release_regions(pdev);
5239 out_pci_disable_device:
5240 pci_disable_device(pdev);
5241 pci_set_drvdata(pdev, NULL);
5242 out_ieee80211_free_hw:
5243 ieee80211_free_hw(priv->hw);
5244 out:
5245 return err;
5246}
5247
Reinette Chatrec83dbf62008-03-21 13:53:41 -07005248static void __devexit iwl3945_pci_remove(struct pci_dev *pdev)
Zhu Yib481de92007-09-25 17:54:57 -07005249{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005250 struct iwl_priv *priv = pci_get_drvdata(pdev);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07005251 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07005252
5253 if (!priv)
5254 return;
5255
Tomas Winklere1623442009-01-27 14:27:56 -08005256 IWL_DEBUG_INFO(priv, "*** UNLOAD DRIVER ***\n");
Zhu Yib481de92007-09-25 17:54:57 -07005257
Zhu Yib481de92007-09-25 17:54:57 -07005258 set_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib24d22b2007-12-19 13:59:52 +08005259
Kolekar, Abhijeetd552bfb2008-12-19 10:37:41 +08005260 if (priv->mac80211_registered) {
5261 ieee80211_unregister_hw(priv->hw);
5262 priv->mac80211_registered = 0;
5263 } else {
5264 iwl3945_down(priv);
5265 }
Zhu Yib481de92007-09-25 17:54:57 -07005266
Mohamed Abbas0359fac2008-03-28 16:21:08 -07005267 /* make sure we flush any pending irq or
5268 * tasklet for the driver
5269 */
5270 spin_lock_irqsave(&priv->lock, flags);
Abhijeet Kolekared3b9322009-02-18 15:54:30 -08005271 iwl_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07005272 spin_unlock_irqrestore(&priv->lock, flags);
5273
5274 iwl_synchronize_irq(priv);
5275
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005276 sysfs_remove_group(&pdev->dev.kobj, &iwl3945_attribute_group);
Zhu Yib481de92007-09-25 17:54:57 -07005277
Samuel Ortizc0af96a2009-01-21 18:27:54 +01005278 iwl_rfkill_unregister(priv);
Helmut Schaa26635162009-01-15 09:38:44 +01005279 cancel_delayed_work(&priv->rfkill_poll);
5280
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005281 iwl3945_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005282
5283 if (priv->rxq.bd)
Winkler, Tomas51af3d32008-12-22 11:31:23 +08005284 iwl_rx_queue_free(priv, &priv->rxq);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005285 iwl3945_hw_txq_ctx_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005286
Abhijeet Kolekar3832ec92008-12-19 10:37:26 +08005287 iwl3945_unset_hw_params(priv);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005288 iwl3945_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005289
Mohamed Abbas6ef89d02007-10-25 17:15:47 +08005290 /*netif_stop_queue(dev); */
5291 flush_workqueue(priv->workqueue);
5292
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005293 /* ieee80211_unregister_hw calls iwl3945_mac_stop, which flushes
Zhu Yib481de92007-09-25 17:54:57 -07005294 * priv->workqueue... so we can't take down the workqueue
5295 * until now... */
5296 destroy_workqueue(priv->workqueue);
5297 priv->workqueue = NULL;
5298
Helmut Schaa26635162009-01-15 09:38:44 +01005299 free_irq(pdev->irq, priv);
5300 pci_disable_msi(pdev);
5301
Zhu Yib481de92007-09-25 17:54:57 -07005302 pci_iounmap(pdev, priv->hw_base);
5303 pci_release_regions(pdev);
5304 pci_disable_device(pdev);
5305 pci_set_drvdata(pdev, NULL);
5306
Samuel Ortize6148912009-01-23 13:45:15 -08005307 iwl_free_channel_map(priv);
Samuel Ortiz534166d2009-01-23 13:45:16 -08005308 iwlcore_free_geos(priv);
Winkler, Tomas805cee52009-01-19 15:30:28 -08005309 kfree(priv->scan);
Zhu Yib481de92007-09-25 17:54:57 -07005310 if (priv->ibss_beacon)
5311 dev_kfree_skb(priv->ibss_beacon);
5312
5313 ieee80211_free_hw(priv->hw);
5314}
5315
5316#ifdef CONFIG_PM
5317
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005318static int iwl3945_pci_suspend(struct pci_dev *pdev, pm_message_t state)
Zhu Yib481de92007-09-25 17:54:57 -07005319{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005320 struct iwl_priv *priv = pci_get_drvdata(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07005321
Zhu Yie655b9f2008-01-24 02:19:38 -08005322 if (priv->is_open) {
5323 set_bit(STATUS_IN_SUSPEND, &priv->status);
5324 iwl3945_mac_stop(priv->hw);
5325 priv->is_open = 1;
5326 }
Helmut Schaa26635162009-01-15 09:38:44 +01005327 pci_save_state(pdev);
5328 pci_disable_device(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07005329 pci_set_power_state(pdev, PCI_D3hot);
5330
Zhu Yib481de92007-09-25 17:54:57 -07005331 return 0;
5332}
5333
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005334static int iwl3945_pci_resume(struct pci_dev *pdev)
Zhu Yib481de92007-09-25 17:54:57 -07005335{
Abhijeet Kolekar4a8a4322008-12-19 10:37:28 +08005336 struct iwl_priv *priv = pci_get_drvdata(pdev);
Winkler, Tomas450154e2009-01-27 14:27:55 -08005337 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07005338
Zhu Yib481de92007-09-25 17:54:57 -07005339 pci_set_power_state(pdev, PCI_D0);
Winkler, Tomas450154e2009-01-27 14:27:55 -08005340 ret = pci_enable_device(pdev);
5341 if (ret)
5342 return ret;
Helmut Schaa26635162009-01-15 09:38:44 +01005343 pci_restore_state(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07005344
Zhu Yie655b9f2008-01-24 02:19:38 -08005345 if (priv->is_open)
5346 iwl3945_mac_start(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07005347
Zhu Yie655b9f2008-01-24 02:19:38 -08005348 clear_bit(STATUS_IN_SUSPEND, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07005349 return 0;
5350}
5351
5352#endif /* CONFIG_PM */
5353
5354/*****************************************************************************
5355 *
5356 * driver and module entry point
5357 *
5358 *****************************************************************************/
5359
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005360static struct pci_driver iwl3945_driver = {
Zhu Yib481de92007-09-25 17:54:57 -07005361 .name = DRV_NAME,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005362 .id_table = iwl3945_hw_card_ids,
5363 .probe = iwl3945_pci_probe,
5364 .remove = __devexit_p(iwl3945_pci_remove),
Zhu Yib481de92007-09-25 17:54:57 -07005365#ifdef CONFIG_PM
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005366 .suspend = iwl3945_pci_suspend,
5367 .resume = iwl3945_pci_resume,
Zhu Yib481de92007-09-25 17:54:57 -07005368#endif
5369};
5370
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005371static int __init iwl3945_init(void)
Zhu Yib481de92007-09-25 17:54:57 -07005372{
5373
5374 int ret;
5375 printk(KERN_INFO DRV_NAME ": " DRV_DESCRIPTION ", " DRV_VERSION "\n");
5376 printk(KERN_INFO DRV_NAME ": " DRV_COPYRIGHT "\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07005377
5378 ret = iwl3945_rate_control_register();
5379 if (ret) {
Samuel Ortiza3139c52008-12-19 10:37:09 +08005380 printk(KERN_ERR DRV_NAME
5381 "Unable to register rate control algorithm: %d\n", ret);
Reinette Chatre897e1cf2008-03-28 16:21:09 -07005382 return ret;
5383 }
5384
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005385 ret = pci_register_driver(&iwl3945_driver);
Zhu Yib481de92007-09-25 17:54:57 -07005386 if (ret) {
Samuel Ortiza3139c52008-12-19 10:37:09 +08005387 printk(KERN_ERR DRV_NAME "Unable to initialize PCI module\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07005388 goto error_register;
Zhu Yib481de92007-09-25 17:54:57 -07005389 }
Zhu Yib481de92007-09-25 17:54:57 -07005390
5391 return ret;
Reinette Chatre897e1cf2008-03-28 16:21:09 -07005392
Reinette Chatre897e1cf2008-03-28 16:21:09 -07005393error_register:
5394 iwl3945_rate_control_unregister();
5395 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07005396}
5397
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005398static void __exit iwl3945_exit(void)
Zhu Yib481de92007-09-25 17:54:57 -07005399{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005400 pci_unregister_driver(&iwl3945_driver);
Reinette Chatre897e1cf2008-03-28 16:21:09 -07005401 iwl3945_rate_control_unregister();
Zhu Yib481de92007-09-25 17:54:57 -07005402}
5403
Reinette Chatrea0987a82008-12-02 12:14:06 -08005404MODULE_FIRMWARE(IWL3945_MODULE_FIRMWARE(IWL3945_UCODE_API_MAX));
Zhu Yi25cb6ca2008-09-11 11:45:22 +08005405
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08005406module_param_named(antenna, iwl3945_mod_params.antenna, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07005407MODULE_PARM_DESC(antenna, "select antenna (1=Main, 2=Aux, default 0 [both])");
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08005408module_param_named(disable, iwl3945_mod_params.disable, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07005409MODULE_PARM_DESC(disable, "manually disable the radio (default 0 [radio on])");
Samuel Ortiz9c74d9f2009-01-08 10:19:59 -08005410module_param_named(swcrypto, iwl3945_mod_params.sw_crypto, int, 0444);
5411MODULE_PARM_DESC(swcrypto,
5412 "using software crypto (default 1 [software])\n");
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08005413module_param_named(debug, iwl3945_mod_params.debug, uint, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07005414MODULE_PARM_DESC(debug, "debug output mask");
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08005415module_param_named(disable_hw_scan, iwl3945_mod_params.disable_hw_scan, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07005416MODULE_PARM_DESC(disable_hw_scan, "disable hardware scanning (default 0)");
5417
Kolekar, Abhijeetdf878d82008-12-19 10:37:35 +08005418module_param_named(queues_num, iwl3945_mod_params.num_of_queues, int, 0444);
Zhu Yib481de92007-09-25 17:54:57 -07005419MODULE_PARM_DESC(queues_num, "number of hw queues.");
5420
Samuel Ortizaf48d042009-01-23 13:45:19 -08005421module_param_named(fw_restart3945, iwl3945_mod_params.restart_fw, int, 0444);
5422MODULE_PARM_DESC(fw_restart3945, "restart firmware in case of error");
5423
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005424module_exit(iwl3945_exit);
5425module_init(iwl3945_init);