blob: 8427bc9a9bbccd5a7e0814b3802a97cfec4e7425 [file] [log] [blame]
Zhu Yib481de92007-09-25 17:54:57 -07001/******************************************************************************
2 *
Reinette Chatreeb7ae892008-03-11 16:17:17 -07003 * Copyright(c) 2003 - 2008 Intel Corporation. All rights reserved.
Zhu Yib481de92007-09-25 17:54:57 -07004 *
5 * Portions of this file are derived from the ipw3945 project, as well
6 * as portions of the ieee80211 subsystem header files.
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of version 2 of the GNU General Public License as
10 * published by the Free Software Foundation.
11 *
12 * This program is distributed in the hope that it will be useful, but WITHOUT
13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
15 * more details.
16 *
17 * You should have received a copy of the GNU General Public License along with
18 * this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
20 *
21 * The full GNU General Public License is included in this distribution in the
22 * file called LICENSE.
23 *
24 * Contact Information:
25 * James P. Ketrenos <ipw2100-admin@linux.intel.com>
26 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
27 *
28 *****************************************************************************/
29
Zhu Yib481de92007-09-25 17:54:57 -070030#include <linux/kernel.h>
31#include <linux/module.h>
32#include <linux/version.h>
33#include <linux/init.h>
34#include <linux/pci.h>
35#include <linux/dma-mapping.h>
36#include <linux/delay.h>
37#include <linux/skbuff.h>
38#include <linux/netdevice.h>
39#include <linux/wireless.h>
40#include <linux/firmware.h>
Zhu Yib481de92007-09-25 17:54:57 -070041#include <linux/etherdevice.h>
42#include <linux/if_arp.h>
43
Zhu Yib481de92007-09-25 17:54:57 -070044#include <net/mac80211.h>
45
46#include <asm/div64.h>
47
Assaf Krauss6bc913b2008-03-11 16:17:18 -070048#include "iwl-eeprom.h"
Tomas Winkler3e0d4cb2008-04-24 11:55:38 -070049#include "iwl-dev.h"
Tomas Winklerfee12472008-04-03 16:05:21 -070050#include "iwl-core.h"
Tomas Winkler3395f6e2008-03-25 16:33:37 -070051#include "iwl-io.h"
Zhu Yib481de92007-09-25 17:54:57 -070052#include "iwl-helpers.h"
Emmanuel Grumbach6974e362008-04-14 21:16:06 -070053#include "iwl-sta.h"
Emmanuel Grumbachf0832f12008-04-16 16:34:47 -070054#include "iwl-calib.h"
Zhu Yib481de92007-09-25 17:54:57 -070055
Tomas Winklerc79dd5b2008-03-12 16:58:50 -070056static int iwl4965_tx_queue_update_write_ptr(struct iwl_priv *priv,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -080057 struct iwl4965_tx_queue *txq);
Christoph Hellwig416e1432007-10-25 17:15:49 +080058
Zhu Yib481de92007-09-25 17:54:57 -070059/******************************************************************************
60 *
61 * module boiler plate
62 *
63 ******************************************************************************/
64
Zhu Yib481de92007-09-25 17:54:57 -070065/*
66 * module name, copyright, version, etc.
67 * NOTE: DRV_NAME is defined in iwlwifi.h for use by iwl-debug.h and printk
68 */
69
70#define DRV_DESCRIPTION "Intel(R) Wireless WiFi Link 4965AGN driver for Linux"
71
Tomas Winkler0a6857e2008-03-12 16:58:49 -070072#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -070073#define VD "d"
74#else
75#define VD
76#endif
77
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +080078#ifdef CONFIG_IWL4965_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -070079#define VS "s"
80#else
81#define VS
82#endif
83
Tomas Winklerdf48c322008-03-06 10:40:19 -080084#define DRV_VERSION IWLWIFI_VERSION VD VS
Zhu Yib481de92007-09-25 17:54:57 -070085
Zhu Yib481de92007-09-25 17:54:57 -070086
87MODULE_DESCRIPTION(DRV_DESCRIPTION);
88MODULE_VERSION(DRV_VERSION);
89MODULE_AUTHOR(DRV_COPYRIGHT);
90MODULE_LICENSE("GPL");
91
92__le16 *ieee80211_get_qos_ctrl(struct ieee80211_hdr *hdr)
93{
94 u16 fc = le16_to_cpu(hdr->frame_control);
95 int hdr_len = ieee80211_get_hdrlen(fc);
96
97 if ((fc & 0x00cc) == (IEEE80211_STYPE_QOS_DATA | IEEE80211_FTYPE_DATA))
98 return (__le16 *) ((u8 *) hdr + hdr_len - QOS_CONTROL_LEN);
99 return NULL;
100}
101
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700102static const struct ieee80211_supported_band *iwl_get_hw_mode(
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700103 struct iwl_priv *priv, enum ieee80211_band band)
Zhu Yib481de92007-09-25 17:54:57 -0700104{
Johannes Berg8318d782008-01-24 19:38:38 +0100105 return priv->hw->wiphy->bands[band];
Zhu Yib481de92007-09-25 17:54:57 -0700106}
107
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800108static int iwl4965_is_empty_essid(const char *essid, int essid_len)
Zhu Yib481de92007-09-25 17:54:57 -0700109{
110 /* Single white space is for Linksys APs */
111 if (essid_len == 1 && essid[0] == ' ')
112 return 1;
113
114 /* Otherwise, if the entire essid is 0, we assume it is hidden */
115 while (essid_len) {
116 essid_len--;
117 if (essid[essid_len] != '\0')
118 return 0;
119 }
120
121 return 1;
122}
123
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800124static const char *iwl4965_escape_essid(const char *essid, u8 essid_len)
Zhu Yib481de92007-09-25 17:54:57 -0700125{
126 static char escaped[IW_ESSID_MAX_SIZE * 2 + 1];
127 const char *s = essid;
128 char *d = escaped;
129
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800130 if (iwl4965_is_empty_essid(essid, essid_len)) {
Zhu Yib481de92007-09-25 17:54:57 -0700131 memcpy(escaped, "<hidden>", sizeof("<hidden>"));
132 return escaped;
133 }
134
135 essid_len = min(essid_len, (u8) IW_ESSID_MAX_SIZE);
136 while (essid_len--) {
137 if (*s == '\0') {
138 *d++ = '\\';
139 *d++ = '0';
140 s++;
141 } else
142 *d++ = *s++;
143 }
144 *d = '\0';
145 return escaped;
146}
147
Zhu Yib481de92007-09-25 17:54:57 -0700148/*************** DMA-QUEUE-GENERAL-FUNCTIONS *****
149 * DMA services
150 *
151 * Theory of operation
152 *
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800153 * A Tx or Rx queue resides in host DRAM, and is comprised of a circular buffer
154 * of buffer descriptors, each of which points to one or more data buffers for
155 * the device to read from or fill. Driver and device exchange status of each
156 * queue via "read" and "write" pointers. Driver keeps minimum of 2 empty
157 * entries in each circular buffer, to protect against confusing empty and full
158 * queue states.
159 *
160 * The device reads or writes the data in the queues via the device's several
161 * DMA/FIFO channels. Each queue is mapped to a single DMA channel.
Zhu Yib481de92007-09-25 17:54:57 -0700162 *
163 * For Tx queue, there are low mark and high mark limits. If, after queuing
164 * the packet for Tx, free space become < low mark, Tx queue stopped. When
165 * reclaiming packets (on 'tx done IRQ), if free space become > high mark,
166 * Tx queue resumed.
167 *
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800168 * The 4965 operates with up to 17 queues: One receive queue, one transmit
169 * queue (#4) for sending commands to the device firmware, and 15 other
170 * Tx queues that may be mapped to prioritized Tx DMA/FIFO channels.
Ben Cahille3851442007-11-29 11:10:07 +0800171 *
172 * See more detailed info in iwl-4965-hw.h.
Zhu Yib481de92007-09-25 17:54:57 -0700173 ***************************************************/
174
Ron Rindjunskyfe01b472008-01-28 14:07:24 +0200175int iwl4965_queue_space(const struct iwl4965_queue *q)
Zhu Yib481de92007-09-25 17:54:57 -0700176{
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800177 int s = q->read_ptr - q->write_ptr;
Zhu Yib481de92007-09-25 17:54:57 -0700178
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800179 if (q->read_ptr > q->write_ptr)
Zhu Yib481de92007-09-25 17:54:57 -0700180 s -= q->n_bd;
181
182 if (s <= 0)
183 s += q->n_window;
184 /* keep some reserve to not confuse empty and full situations */
185 s -= 2;
186 if (s < 0)
187 s = 0;
188 return s;
189}
190
Zhu Yib481de92007-09-25 17:54:57 -0700191
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800192static inline int x2_queue_used(const struct iwl4965_queue *q, int i)
Zhu Yib481de92007-09-25 17:54:57 -0700193{
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800194 return q->write_ptr > q->read_ptr ?
195 (i >= q->read_ptr && i < q->write_ptr) :
196 !(i < q->read_ptr && i >= q->write_ptr);
Zhu Yib481de92007-09-25 17:54:57 -0700197}
198
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800199static inline u8 get_cmd_index(struct iwl4965_queue *q, u32 index, int is_huge)
Zhu Yib481de92007-09-25 17:54:57 -0700200{
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800201 /* This is for scan command, the big buffer at end of command array */
Zhu Yib481de92007-09-25 17:54:57 -0700202 if (is_huge)
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800203 return q->n_window; /* must be power of 2 */
Zhu Yib481de92007-09-25 17:54:57 -0700204
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800205 /* Otherwise, use normal size buffers */
Zhu Yib481de92007-09-25 17:54:57 -0700206 return index & (q->n_window - 1);
207}
208
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800209/**
210 * iwl4965_queue_init - Initialize queue's high/low-water and read/write indexes
211 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700212static int iwl4965_queue_init(struct iwl_priv *priv, struct iwl4965_queue *q,
Zhu Yib481de92007-09-25 17:54:57 -0700213 int count, int slots_num, u32 id)
214{
215 q->n_bd = count;
216 q->n_window = slots_num;
217 q->id = id;
218
Tomas Winklerc54b6792008-03-06 17:36:53 -0800219 /* count must be power-of-two size, otherwise iwl_queue_inc_wrap
220 * and iwl_queue_dec_wrap are broken. */
Zhu Yib481de92007-09-25 17:54:57 -0700221 BUG_ON(!is_power_of_2(count));
222
223 /* slots_num must be power-of-two size, otherwise
224 * get_cmd_index is broken. */
225 BUG_ON(!is_power_of_2(slots_num));
226
227 q->low_mark = q->n_window / 4;
228 if (q->low_mark < 4)
229 q->low_mark = 4;
230
231 q->high_mark = q->n_window / 8;
232 if (q->high_mark < 2)
233 q->high_mark = 2;
234
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800235 q->write_ptr = q->read_ptr = 0;
Zhu Yib481de92007-09-25 17:54:57 -0700236
237 return 0;
238}
239
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800240/**
241 * iwl4965_tx_queue_alloc - Alloc driver data and TFD CB for one Tx/cmd queue
242 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700243static int iwl4965_tx_queue_alloc(struct iwl_priv *priv,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800244 struct iwl4965_tx_queue *txq, u32 id)
Zhu Yib481de92007-09-25 17:54:57 -0700245{
246 struct pci_dev *dev = priv->pci_dev;
247
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800248 /* Driver private data, only for Tx (not command) queues,
249 * not shared with device. */
Zhu Yib481de92007-09-25 17:54:57 -0700250 if (id != IWL_CMD_QUEUE_NUM) {
251 txq->txb = kmalloc(sizeof(txq->txb[0]) *
252 TFD_QUEUE_SIZE_MAX, GFP_KERNEL);
253 if (!txq->txb) {
Ian Schram01ebd062007-10-25 17:15:22 +0800254 IWL_ERROR("kmalloc for auxiliary BD "
Zhu Yib481de92007-09-25 17:54:57 -0700255 "structures failed\n");
256 goto error;
257 }
258 } else
259 txq->txb = NULL;
260
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800261 /* Circular buffer of transmit frame descriptors (TFDs),
262 * shared with device */
Zhu Yib481de92007-09-25 17:54:57 -0700263 txq->bd = pci_alloc_consistent(dev,
264 sizeof(txq->bd[0]) * TFD_QUEUE_SIZE_MAX,
265 &txq->q.dma_addr);
266
267 if (!txq->bd) {
268 IWL_ERROR("pci_alloc_consistent(%zd) failed\n",
269 sizeof(txq->bd[0]) * TFD_QUEUE_SIZE_MAX);
270 goto error;
271 }
272 txq->q.id = id;
273
274 return 0;
275
276 error:
277 if (txq->txb) {
278 kfree(txq->txb);
279 txq->txb = NULL;
280 }
281
282 return -ENOMEM;
283}
284
Cahill, Ben M8b6eaea2007-11-29 11:09:54 +0800285/**
286 * iwl4965_tx_queue_init - Allocate and initialize one tx/cmd queue
287 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700288int iwl4965_tx_queue_init(struct iwl_priv *priv,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800289 struct iwl4965_tx_queue *txq, int slots_num, u32 txq_id)
Zhu Yib481de92007-09-25 17:54:57 -0700290{
291 struct pci_dev *dev = priv->pci_dev;
292 int len;
293 int rc = 0;
294
Cahill, Ben M8b6eaea2007-11-29 11:09:54 +0800295 /*
296 * Alloc buffer array for commands (Tx or other types of commands).
297 * For the command queue (#4), allocate command space + one big
298 * command for scan, since scan command is very huge; the system will
299 * not have two scans at the same time, so only one is needed.
Tomas Winklerbb542442007-12-05 20:59:59 +0200300 * For normal Tx queues (all other queues), no super-size command
Cahill, Ben M8b6eaea2007-11-29 11:09:54 +0800301 * space is needed.
302 */
Tomas Winkler857485c2008-03-21 13:53:44 -0700303 len = sizeof(struct iwl_cmd) * slots_num;
Zhu Yib481de92007-09-25 17:54:57 -0700304 if (txq_id == IWL_CMD_QUEUE_NUM)
305 len += IWL_MAX_SCAN_SIZE;
306 txq->cmd = pci_alloc_consistent(dev, len, &txq->dma_addr_cmd);
307 if (!txq->cmd)
308 return -ENOMEM;
309
Cahill, Ben M8b6eaea2007-11-29 11:09:54 +0800310 /* Alloc driver data array and TFD circular buffer */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800311 rc = iwl4965_tx_queue_alloc(priv, txq, txq_id);
Zhu Yib481de92007-09-25 17:54:57 -0700312 if (rc) {
313 pci_free_consistent(dev, len, txq->cmd, txq->dma_addr_cmd);
314
315 return -ENOMEM;
316 }
317 txq->need_update = 0;
318
319 /* TFD_QUEUE_SIZE_MAX must be power-of-two size, otherwise
Tomas Winklerc54b6792008-03-06 17:36:53 -0800320 * iwl_queue_inc_wrap and iwl_queue_dec_wrap are broken. */
Zhu Yib481de92007-09-25 17:54:57 -0700321 BUILD_BUG_ON(TFD_QUEUE_SIZE_MAX & (TFD_QUEUE_SIZE_MAX - 1));
Cahill, Ben M8b6eaea2007-11-29 11:09:54 +0800322
323 /* Initialize queue's high/low-water marks, and head/tail indexes */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800324 iwl4965_queue_init(priv, &txq->q, TFD_QUEUE_SIZE_MAX, slots_num, txq_id);
Zhu Yib481de92007-09-25 17:54:57 -0700325
Cahill, Ben M8b6eaea2007-11-29 11:09:54 +0800326 /* Tell device where to find queue */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800327 iwl4965_hw_tx_queue_init(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -0700328
329 return 0;
330}
331
332/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800333 * iwl4965_tx_queue_free - Deallocate DMA queue.
Zhu Yib481de92007-09-25 17:54:57 -0700334 * @txq: Transmit queue to deallocate.
335 *
336 * Empty queue by removing and destroying all BD's.
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800337 * Free all buffers.
338 * 0-fill, but do not free "txq" descriptor structure.
Zhu Yib481de92007-09-25 17:54:57 -0700339 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700340void iwl4965_tx_queue_free(struct iwl_priv *priv, struct iwl4965_tx_queue *txq)
Zhu Yib481de92007-09-25 17:54:57 -0700341{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800342 struct iwl4965_queue *q = &txq->q;
Zhu Yib481de92007-09-25 17:54:57 -0700343 struct pci_dev *dev = priv->pci_dev;
344 int len;
345
346 if (q->n_bd == 0)
347 return;
348
349 /* first, empty all BD's */
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800350 for (; q->write_ptr != q->read_ptr;
Tomas Winklerc54b6792008-03-06 17:36:53 -0800351 q->read_ptr = iwl_queue_inc_wrap(q->read_ptr, q->n_bd))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800352 iwl4965_hw_txq_free_tfd(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -0700353
Tomas Winkler857485c2008-03-21 13:53:44 -0700354 len = sizeof(struct iwl_cmd) * q->n_window;
Zhu Yib481de92007-09-25 17:54:57 -0700355 if (q->id == IWL_CMD_QUEUE_NUM)
356 len += IWL_MAX_SCAN_SIZE;
357
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800358 /* De-alloc array of command/tx buffers */
Zhu Yib481de92007-09-25 17:54:57 -0700359 pci_free_consistent(dev, len, txq->cmd, txq->dma_addr_cmd);
360
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800361 /* De-alloc circular buffer of TFDs */
Zhu Yib481de92007-09-25 17:54:57 -0700362 if (txq->q.n_bd)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800363 pci_free_consistent(dev, sizeof(struct iwl4965_tfd_frame) *
Zhu Yib481de92007-09-25 17:54:57 -0700364 txq->q.n_bd, txq->bd, txq->q.dma_addr);
365
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800366 /* De-alloc array of per-TFD driver data */
Zhu Yib481de92007-09-25 17:54:57 -0700367 if (txq->txb) {
368 kfree(txq->txb);
369 txq->txb = NULL;
370 }
371
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800372 /* 0-fill queue descriptor structure */
Zhu Yib481de92007-09-25 17:54:57 -0700373 memset(txq, 0, sizeof(*txq));
374}
375
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800376const u8 iwl4965_broadcast_addr[ETH_ALEN] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF };
Zhu Yib481de92007-09-25 17:54:57 -0700377
378/*************** STATION TABLE MANAGEMENT ****
Ben Cahill9fbab512007-11-29 11:09:47 +0800379 * mac80211 should be examined to determine if sta_info is duplicating
Zhu Yib481de92007-09-25 17:54:57 -0700380 * the functionality provided here
381 */
382
383/**************************************************************/
384
Ian Schram01ebd062007-10-25 17:15:22 +0800385#if 0 /* temporary disable till we add real remove station */
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800386/**
387 * iwl4965_remove_station - Remove driver's knowledge of station.
388 *
389 * NOTE: This does not remove station from device's station table.
390 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700391static u8 iwl4965_remove_station(struct iwl_priv *priv, const u8 *addr, int is_ap)
Zhu Yib481de92007-09-25 17:54:57 -0700392{
393 int index = IWL_INVALID_STATION;
394 int i;
395 unsigned long flags;
396
397 spin_lock_irqsave(&priv->sta_lock, flags);
398
399 if (is_ap)
400 index = IWL_AP_ID;
401 else if (is_broadcast_ether_addr(addr))
Tomas Winkler5425e492008-04-15 16:01:38 -0700402 index = priv->hw_params.bcast_sta_id;
Zhu Yib481de92007-09-25 17:54:57 -0700403 else
Tomas Winkler5425e492008-04-15 16:01:38 -0700404 for (i = IWL_STA_ID; i < priv->hw_params.max_stations; i++)
Zhu Yib481de92007-09-25 17:54:57 -0700405 if (priv->stations[i].used &&
406 !compare_ether_addr(priv->stations[i].sta.sta.addr,
407 addr)) {
408 index = i;
409 break;
410 }
411
412 if (unlikely(index == IWL_INVALID_STATION))
413 goto out;
414
415 if (priv->stations[index].used) {
416 priv->stations[index].used = 0;
417 priv->num_stations--;
418 }
419
420 BUG_ON(priv->num_stations < 0);
421
422out:
423 spin_unlock_irqrestore(&priv->sta_lock, flags);
424 return 0;
425}
Zhu Yi556f8db2007-09-27 11:27:33 +0800426#endif
Zhu Yib481de92007-09-25 17:54:57 -0700427
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800428/**
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800429 * iwl4965_add_station_flags - Add station to tables in driver and device
430 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700431u8 iwl4965_add_station_flags(struct iwl_priv *priv, const u8 *addr,
Ron Rindjunsky67d62032007-11-26 16:14:40 +0200432 int is_ap, u8 flags, void *ht_data)
Zhu Yib481de92007-09-25 17:54:57 -0700433{
434 int i;
435 int index = IWL_INVALID_STATION;
Tomas Winkler6def9762008-05-05 10:22:31 +0800436 struct iwl_station_entry *station;
Zhu Yib481de92007-09-25 17:54:57 -0700437 unsigned long flags_spin;
Joe Perches0795af52007-10-03 17:59:30 -0700438 DECLARE_MAC_BUF(mac);
Zhu Yib481de92007-09-25 17:54:57 -0700439
440 spin_lock_irqsave(&priv->sta_lock, flags_spin);
441 if (is_ap)
442 index = IWL_AP_ID;
443 else if (is_broadcast_ether_addr(addr))
Tomas Winkler5425e492008-04-15 16:01:38 -0700444 index = priv->hw_params.bcast_sta_id;
Zhu Yib481de92007-09-25 17:54:57 -0700445 else
Tomas Winkler5425e492008-04-15 16:01:38 -0700446 for (i = IWL_STA_ID; i < priv->hw_params.max_stations; i++) {
Zhu Yib481de92007-09-25 17:54:57 -0700447 if (!compare_ether_addr(priv->stations[i].sta.sta.addr,
448 addr)) {
449 index = i;
450 break;
451 }
452
453 if (!priv->stations[i].used &&
454 index == IWL_INVALID_STATION)
455 index = i;
456 }
457
458
Ben Cahill9fbab512007-11-29 11:09:47 +0800459 /* These two conditions have the same outcome, but keep them separate
460 since they have different meanings */
Zhu Yib481de92007-09-25 17:54:57 -0700461 if (unlikely(index == IWL_INVALID_STATION)) {
462 spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
463 return index;
464 }
465
466 if (priv->stations[index].used &&
467 !compare_ether_addr(priv->stations[index].sta.sta.addr, addr)) {
468 spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
469 return index;
470 }
471
472
Joe Perches0795af52007-10-03 17:59:30 -0700473 IWL_DEBUG_ASSOC("Add STA ID %d: %s\n", index, print_mac(mac, addr));
Zhu Yib481de92007-09-25 17:54:57 -0700474 station = &priv->stations[index];
475 station->used = 1;
476 priv->num_stations++;
477
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800478 /* Set up the REPLY_ADD_STA command to send to device */
Tomas Winkler133636d2008-05-05 10:22:34 +0800479 memset(&station->sta, 0, sizeof(struct iwl_addsta_cmd));
Zhu Yib481de92007-09-25 17:54:57 -0700480 memcpy(station->sta.sta.addr, addr, ETH_ALEN);
481 station->sta.mode = 0;
482 station->sta.sta.sta_id = index;
483 station->sta.station_flags = 0;
484
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +0800485#ifdef CONFIG_IWL4965_HT
Zhu Yib481de92007-09-25 17:54:57 -0700486 /* BCAST station and IBSS stations do not work in HT mode */
Tomas Winkler5425e492008-04-15 16:01:38 -0700487 if (index != priv->hw_params.bcast_sta_id &&
Zhu Yib481de92007-09-25 17:54:57 -0700488 priv->iw_mode != IEEE80211_IF_TYPE_IBSS)
Ron Rindjunsky67d62032007-11-26 16:14:40 +0200489 iwl4965_set_ht_add_station(priv, index,
490 (struct ieee80211_ht_info *) ht_data);
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +0800491#endif /*CONFIG_IWL4965_HT*/
Zhu Yib481de92007-09-25 17:54:57 -0700492
493 spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800494
495 /* Add station to device's station table */
Tomas Winkler133636d2008-05-05 10:22:34 +0800496 iwl_send_add_sta(priv, &station->sta, flags);
Zhu Yib481de92007-09-25 17:54:57 -0700497 return index;
498
499}
500
Zhu Yib481de92007-09-25 17:54:57 -0700501
Zhu Yib481de92007-09-25 17:54:57 -0700502
503/*************** HOST COMMAND QUEUE FUNCTIONS *****/
504
Zhu Yib481de92007-09-25 17:54:57 -0700505/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800506 * iwl4965_enqueue_hcmd - enqueue a uCode command
Zhu Yib481de92007-09-25 17:54:57 -0700507 * @priv: device private data point
508 * @cmd: a point to the ucode command structure
509 *
510 * The function returns < 0 values to indicate the operation is
511 * failed. On success, it turns the index (> 0) of command in the
512 * command queue.
513 */
Tomas Winkler857485c2008-03-21 13:53:44 -0700514int iwl4965_enqueue_hcmd(struct iwl_priv *priv, struct iwl_host_cmd *cmd)
Zhu Yib481de92007-09-25 17:54:57 -0700515{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800516 struct iwl4965_tx_queue *txq = &priv->txq[IWL_CMD_QUEUE_NUM];
517 struct iwl4965_queue *q = &txq->q;
518 struct iwl4965_tfd_frame *tfd;
Zhu Yib481de92007-09-25 17:54:57 -0700519 u32 *control_flags;
Tomas Winkler857485c2008-03-21 13:53:44 -0700520 struct iwl_cmd *out_cmd;
Zhu Yib481de92007-09-25 17:54:57 -0700521 u32 idx;
522 u16 fix_size = (u16)(cmd->len + sizeof(out_cmd->hdr));
523 dma_addr_t phys_addr;
524 int ret;
525 unsigned long flags;
526
527 /* If any of the command structures end up being larger than
528 * the TFD_MAX_PAYLOAD_SIZE, and it sent as a 'small' command then
529 * we will need to increase the size of the TFD entries */
530 BUG_ON((fix_size > TFD_MAX_PAYLOAD_SIZE) &&
531 !(cmd->meta.flags & CMD_SIZE_HUGE));
532
Tomas Winklerfee12472008-04-03 16:05:21 -0700533 if (iwl_is_rfkill(priv)) {
Gregory Greenmanc342a1b2008-02-06 11:20:40 -0800534 IWL_DEBUG_INFO("Not sending command - RF KILL");
535 return -EIO;
536 }
537
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800538 if (iwl4965_queue_space(q) < ((cmd->meta.flags & CMD_ASYNC) ? 2 : 1)) {
Zhu Yib481de92007-09-25 17:54:57 -0700539 IWL_ERROR("No space for Tx\n");
540 return -ENOSPC;
541 }
542
543 spin_lock_irqsave(&priv->hcmd_lock, flags);
544
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800545 tfd = &txq->bd[q->write_ptr];
Zhu Yib481de92007-09-25 17:54:57 -0700546 memset(tfd, 0, sizeof(*tfd));
547
548 control_flags = (u32 *) tfd;
549
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800550 idx = get_cmd_index(q, q->write_ptr, cmd->meta.flags & CMD_SIZE_HUGE);
Zhu Yib481de92007-09-25 17:54:57 -0700551 out_cmd = &txq->cmd[idx];
552
553 out_cmd->hdr.cmd = cmd->id;
554 memcpy(&out_cmd->meta, &cmd->meta, sizeof(cmd->meta));
555 memcpy(&out_cmd->cmd.payload, cmd->data, cmd->len);
556
557 /* At this point, the out_cmd now has all of the incoming cmd
558 * information */
559
560 out_cmd->hdr.flags = 0;
561 out_cmd->hdr.sequence = cpu_to_le16(QUEUE_TO_SEQ(IWL_CMD_QUEUE_NUM) |
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800562 INDEX_TO_SEQ(q->write_ptr));
Zhu Yib481de92007-09-25 17:54:57 -0700563 if (out_cmd->meta.flags & CMD_SIZE_HUGE)
564 out_cmd->hdr.sequence |= cpu_to_le16(SEQ_HUGE_FRAME);
565
566 phys_addr = txq->dma_addr_cmd + sizeof(txq->cmd[0]) * idx +
Tomas Winkler857485c2008-03-21 13:53:44 -0700567 offsetof(struct iwl_cmd, hdr);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800568 iwl4965_hw_txq_attach_buf_to_tfd(priv, tfd, phys_addr, fix_size);
Zhu Yib481de92007-09-25 17:54:57 -0700569
570 IWL_DEBUG_HC("Sending command %s (#%x), seq: 0x%04X, "
571 "%d bytes at %d[%d]:%d\n",
572 get_cmd_string(out_cmd->hdr.cmd),
573 out_cmd->hdr.cmd, le16_to_cpu(out_cmd->hdr.sequence),
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800574 fix_size, q->write_ptr, idx, IWL_CMD_QUEUE_NUM);
Zhu Yib481de92007-09-25 17:54:57 -0700575
576 txq->need_update = 1;
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800577
578 /* Set up entry in queue's byte count circular buffer */
Tomas Winklere2a722e2008-04-14 21:16:10 -0700579 priv->cfg->ops->lib->txq_update_byte_cnt_tbl(priv, txq, 0);
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800580
581 /* Increment and update queue's write index */
Tomas Winklerc54b6792008-03-06 17:36:53 -0800582 q->write_ptr = iwl_queue_inc_wrap(q->write_ptr, q->n_bd);
Tomas Winklere2a722e2008-04-14 21:16:10 -0700583 ret = iwl4965_tx_queue_update_write_ptr(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -0700584
585 spin_unlock_irqrestore(&priv->hcmd_lock, flags);
586 return ret ? ret : idx;
587}
588
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -0700589static void iwl4965_set_rxon_hwcrypto(struct iwl_priv *priv, int hw_decrypt)
590{
591 struct iwl4965_rxon_cmd *rxon = &priv->staging_rxon;
592
593 if (hw_decrypt)
594 rxon->filter_flags &= ~RXON_FILTER_DIS_DECRYPT_MSK;
595 else
596 rxon->filter_flags |= RXON_FILTER_DIS_DECRYPT_MSK;
597
598}
599
Zhu Yib481de92007-09-25 17:54:57 -0700600/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800601 * iwl4965_rxon_add_station - add station into station table.
Zhu Yib481de92007-09-25 17:54:57 -0700602 *
603 * there is only one AP station with id= IWL_AP_ID
Ben Cahill9fbab512007-11-29 11:09:47 +0800604 * NOTE: mutex must be held before calling this fnction
605 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700606static int iwl4965_rxon_add_station(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -0700607 const u8 *addr, int is_ap)
608{
Zhu Yi556f8db2007-09-27 11:27:33 +0800609 u8 sta_id;
Zhu Yib481de92007-09-25 17:54:57 -0700610
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800611 /* Add station to device's station table */
Ron Rindjunsky67d62032007-11-26 16:14:40 +0200612#ifdef CONFIG_IWL4965_HT
613 struct ieee80211_conf *conf = &priv->hw->conf;
614 struct ieee80211_ht_info *cur_ht_config = &conf->ht_conf;
615
616 if ((is_ap) &&
617 (conf->flags & IEEE80211_CONF_SUPPORT_HT_MODE) &&
618 (priv->iw_mode == IEEE80211_IF_TYPE_STA))
619 sta_id = iwl4965_add_station_flags(priv, addr, is_ap,
620 0, cur_ht_config);
621 else
622#endif /* CONFIG_IWL4965_HT */
623 sta_id = iwl4965_add_station_flags(priv, addr, is_ap,
624 0, NULL);
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800625
626 /* Set up default rate scaling table in device's station table */
Zhu Yib481de92007-09-25 17:54:57 -0700627 iwl4965_add_station(priv, addr, is_ap);
628
Zhu Yi556f8db2007-09-27 11:27:33 +0800629 return sta_id;
Zhu Yib481de92007-09-25 17:54:57 -0700630}
631
632/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800633 * iwl4965_check_rxon_cmd - validate RXON structure is valid
Zhu Yib481de92007-09-25 17:54:57 -0700634 *
635 * NOTE: This is really only useful during development and can eventually
636 * be #ifdef'd out once the driver is stable and folks aren't actively
637 * making changes
638 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800639static int iwl4965_check_rxon_cmd(struct iwl4965_rxon_cmd *rxon)
Zhu Yib481de92007-09-25 17:54:57 -0700640{
641 int error = 0;
642 int counter = 1;
643
644 if (rxon->flags & RXON_FLG_BAND_24G_MSK) {
645 error |= le32_to_cpu(rxon->flags &
646 (RXON_FLG_TGJ_NARROW_BAND_MSK |
647 RXON_FLG_RADAR_DETECT_MSK));
648 if (error)
649 IWL_WARNING("check 24G fields %d | %d\n",
650 counter++, error);
651 } else {
652 error |= (rxon->flags & RXON_FLG_SHORT_SLOT_MSK) ?
653 0 : le32_to_cpu(RXON_FLG_SHORT_SLOT_MSK);
654 if (error)
655 IWL_WARNING("check 52 fields %d | %d\n",
656 counter++, error);
657 error |= le32_to_cpu(rxon->flags & RXON_FLG_CCK_MSK);
658 if (error)
659 IWL_WARNING("check 52 CCK %d | %d\n",
660 counter++, error);
661 }
662 error |= (rxon->node_addr[0] | rxon->bssid_addr[0]) & 0x1;
663 if (error)
664 IWL_WARNING("check mac addr %d | %d\n", counter++, error);
665
666 /* make sure basic rates 6Mbps and 1Mbps are supported */
667 error |= (((rxon->ofdm_basic_rates & IWL_RATE_6M_MASK) == 0) &&
668 ((rxon->cck_basic_rates & IWL_RATE_1M_MASK) == 0));
669 if (error)
670 IWL_WARNING("check basic rate %d | %d\n", counter++, error);
671
672 error |= (le16_to_cpu(rxon->assoc_id) > 2007);
673 if (error)
674 IWL_WARNING("check assoc id %d | %d\n", counter++, error);
675
676 error |= ((rxon->flags & (RXON_FLG_CCK_MSK | RXON_FLG_SHORT_SLOT_MSK))
677 == (RXON_FLG_CCK_MSK | RXON_FLG_SHORT_SLOT_MSK));
678 if (error)
679 IWL_WARNING("check CCK and short slot %d | %d\n",
680 counter++, error);
681
682 error |= ((rxon->flags & (RXON_FLG_CCK_MSK | RXON_FLG_AUTO_DETECT_MSK))
683 == (RXON_FLG_CCK_MSK | RXON_FLG_AUTO_DETECT_MSK));
684 if (error)
685 IWL_WARNING("check CCK & auto detect %d | %d\n",
686 counter++, error);
687
688 error |= ((rxon->flags & (RXON_FLG_AUTO_DETECT_MSK |
689 RXON_FLG_TGG_PROTECT_MSK)) == RXON_FLG_TGG_PROTECT_MSK);
690 if (error)
691 IWL_WARNING("check TGG and auto detect %d | %d\n",
692 counter++, error);
693
694 if (error)
695 IWL_WARNING("Tuning to channel %d\n",
696 le16_to_cpu(rxon->channel));
697
698 if (error) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800699 IWL_ERROR("Not a valid iwl4965_rxon_assoc_cmd field values\n");
Zhu Yib481de92007-09-25 17:54:57 -0700700 return -1;
701 }
702 return 0;
703}
704
705/**
Ben Cahill9fbab512007-11-29 11:09:47 +0800706 * iwl4965_full_rxon_required - check if full RXON (vs RXON_ASSOC) cmd is needed
Ian Schram01ebd062007-10-25 17:15:22 +0800707 * @priv: staging_rxon is compared to active_rxon
Zhu Yib481de92007-09-25 17:54:57 -0700708 *
Ben Cahill9fbab512007-11-29 11:09:47 +0800709 * If the RXON structure is changing enough to require a new tune,
710 * or is clearing the RXON_FILTER_ASSOC_MSK, then return 1 to indicate that
711 * a new tune (full RXON command, rather than RXON_ASSOC cmd) is required.
Zhu Yib481de92007-09-25 17:54:57 -0700712 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700713static int iwl4965_full_rxon_required(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700714{
715
716 /* These items are only settable from the full RXON command */
717 if (!(priv->active_rxon.filter_flags & RXON_FILTER_ASSOC_MSK) ||
718 compare_ether_addr(priv->staging_rxon.bssid_addr,
719 priv->active_rxon.bssid_addr) ||
720 compare_ether_addr(priv->staging_rxon.node_addr,
721 priv->active_rxon.node_addr) ||
722 compare_ether_addr(priv->staging_rxon.wlap_bssid_addr,
723 priv->active_rxon.wlap_bssid_addr) ||
724 (priv->staging_rxon.dev_type != priv->active_rxon.dev_type) ||
725 (priv->staging_rxon.channel != priv->active_rxon.channel) ||
726 (priv->staging_rxon.air_propagation !=
727 priv->active_rxon.air_propagation) ||
728 (priv->staging_rxon.ofdm_ht_single_stream_basic_rates !=
729 priv->active_rxon.ofdm_ht_single_stream_basic_rates) ||
730 (priv->staging_rxon.ofdm_ht_dual_stream_basic_rates !=
731 priv->active_rxon.ofdm_ht_dual_stream_basic_rates) ||
732 (priv->staging_rxon.rx_chain != priv->active_rxon.rx_chain) ||
733 (priv->staging_rxon.assoc_id != priv->active_rxon.assoc_id))
734 return 1;
735
736 /* flags, filter_flags, ofdm_basic_rates, and cck_basic_rates can
737 * be updated with the RXON_ASSOC command -- however only some
738 * flag transitions are allowed using RXON_ASSOC */
739
740 /* Check if we are not switching bands */
741 if ((priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) !=
742 (priv->active_rxon.flags & RXON_FLG_BAND_24G_MSK))
743 return 1;
744
745 /* Check if we are switching association toggle */
746 if ((priv->staging_rxon.filter_flags & RXON_FILTER_ASSOC_MSK) !=
747 (priv->active_rxon.filter_flags & RXON_FILTER_ASSOC_MSK))
748 return 1;
749
750 return 0;
751}
752
Zhu Yib481de92007-09-25 17:54:57 -0700753/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800754 * iwl4965_commit_rxon - commit staging_rxon to hardware
Zhu Yib481de92007-09-25 17:54:57 -0700755 *
Ian Schram01ebd062007-10-25 17:15:22 +0800756 * The RXON command in staging_rxon is committed to the hardware and
Zhu Yib481de92007-09-25 17:54:57 -0700757 * the active_rxon structure is updated with the new data. This
758 * function correctly transitions out of the RXON_ASSOC_MSK state if
759 * a HW tune is required based on the RXON structure changes.
760 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700761static int iwl4965_commit_rxon(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700762{
763 /* cast away the const for active_rxon in this function */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800764 struct iwl4965_rxon_cmd *active_rxon = (void *)&priv->active_rxon;
Joe Perches0795af52007-10-03 17:59:30 -0700765 DECLARE_MAC_BUF(mac);
Zhu Yib481de92007-09-25 17:54:57 -0700766 int rc = 0;
767
Tomas Winklerfee12472008-04-03 16:05:21 -0700768 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -0700769 return -1;
770
771 /* always get timestamp with Rx frame */
772 priv->staging_rxon.flags |= RXON_FLG_TSF2HOST_MSK;
773
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800774 rc = iwl4965_check_rxon_cmd(&priv->staging_rxon);
Zhu Yib481de92007-09-25 17:54:57 -0700775 if (rc) {
776 IWL_ERROR("Invalid RXON configuration. Not committing.\n");
777 return -EINVAL;
778 }
779
780 /* If we don't need to send a full RXON, we can use
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800781 * iwl4965_rxon_assoc_cmd which is used to reconfigure filter
Zhu Yib481de92007-09-25 17:54:57 -0700782 * and other flags for the current radio configuration. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800783 if (!iwl4965_full_rxon_required(priv)) {
Tomas Winkler7e8c5192008-04-15 16:01:43 -0700784 rc = iwl_send_rxon_assoc(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700785 if (rc) {
786 IWL_ERROR("Error setting RXON_ASSOC "
787 "configuration (%d).\n", rc);
788 return rc;
789 }
790
791 memcpy(active_rxon, &priv->staging_rxon, sizeof(*active_rxon));
792
793 return 0;
794 }
795
796 /* station table will be cleared */
797 priv->assoc_station_added = 0;
798
Zhu Yib481de92007-09-25 17:54:57 -0700799 /* If we are currently associated and the new config requires
800 * an RXON_ASSOC and the new config wants the associated mask enabled,
801 * we must clear the associated from the active configuration
802 * before we apply the new config */
Tomas Winkler3109ece2008-03-28 16:33:35 -0700803 if (iwl_is_associated(priv) &&
Zhu Yib481de92007-09-25 17:54:57 -0700804 (priv->staging_rxon.filter_flags & RXON_FILTER_ASSOC_MSK)) {
805 IWL_DEBUG_INFO("Toggling associated bit on current RXON\n");
806 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
807
Tomas Winkler857485c2008-03-21 13:53:44 -0700808 rc = iwl_send_cmd_pdu(priv, REPLY_RXON,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800809 sizeof(struct iwl4965_rxon_cmd),
Zhu Yib481de92007-09-25 17:54:57 -0700810 &priv->active_rxon);
811
812 /* If the mask clearing failed then we set
813 * active_rxon back to what it was previously */
814 if (rc) {
815 active_rxon->filter_flags |= RXON_FILTER_ASSOC_MSK;
816 IWL_ERROR("Error clearing ASSOC_MSK on current "
817 "configuration (%d).\n", rc);
818 return rc;
819 }
Zhu Yib481de92007-09-25 17:54:57 -0700820 }
821
822 IWL_DEBUG_INFO("Sending RXON\n"
823 "* with%s RXON_FILTER_ASSOC_MSK\n"
824 "* channel = %d\n"
Joe Perches0795af52007-10-03 17:59:30 -0700825 "* bssid = %s\n",
Zhu Yib481de92007-09-25 17:54:57 -0700826 ((priv->staging_rxon.filter_flags &
827 RXON_FILTER_ASSOC_MSK) ? "" : "out"),
828 le16_to_cpu(priv->staging_rxon.channel),
Joe Perches0795af52007-10-03 17:59:30 -0700829 print_mac(mac, priv->staging_rxon.bssid_addr));
Zhu Yib481de92007-09-25 17:54:57 -0700830
Ron Rindjunsky099b40b2008-04-21 15:41:53 -0700831 iwl4965_set_rxon_hwcrypto(priv, !priv->hw_params.sw_crypto);
Zhu Yib481de92007-09-25 17:54:57 -0700832 /* Apply the new configuration */
Tomas Winkler857485c2008-03-21 13:53:44 -0700833 rc = iwl_send_cmd_pdu(priv, REPLY_RXON,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800834 sizeof(struct iwl4965_rxon_cmd), &priv->staging_rxon);
Zhu Yib481de92007-09-25 17:54:57 -0700835 if (rc) {
836 IWL_ERROR("Error setting new configuration (%d).\n", rc);
837 return rc;
838 }
839
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700840 iwlcore_clear_stations_table(priv);
Zhu Yi556f8db2007-09-27 11:27:33 +0800841
Zhu Yib481de92007-09-25 17:54:57 -0700842 if (!priv->error_recovering)
843 priv->start_calib = 0;
844
Emmanuel Grumbachf0832f12008-04-16 16:34:47 -0700845 iwl_init_sensitivity(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700846
847 memcpy(active_rxon, &priv->staging_rxon, sizeof(*active_rxon));
848
849 /* If we issue a new RXON command which required a tune then we must
850 * send a new TXPOWER command or we won't be able to Tx any frames */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800851 rc = iwl4965_hw_reg_send_txpower(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700852 if (rc) {
853 IWL_ERROR("Error setting Tx power (%d).\n", rc);
854 return rc;
855 }
856
857 /* Add the broadcast address so we can send broadcast frames */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800858 if (iwl4965_rxon_add_station(priv, iwl4965_broadcast_addr, 0) ==
Zhu Yib481de92007-09-25 17:54:57 -0700859 IWL_INVALID_STATION) {
860 IWL_ERROR("Error adding BROADCAST address for transmit.\n");
861 return -EIO;
862 }
863
864 /* If we have set the ASSOC_MSK and we are in BSS mode then
865 * add the IWL_AP_ID to the station rate table */
Tomas Winkler3109ece2008-03-28 16:33:35 -0700866 if (iwl_is_associated(priv) &&
Zhu Yib481de92007-09-25 17:54:57 -0700867 (priv->iw_mode == IEEE80211_IF_TYPE_STA)) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800868 if (iwl4965_rxon_add_station(priv, priv->active_rxon.bssid_addr, 1)
Zhu Yib481de92007-09-25 17:54:57 -0700869 == IWL_INVALID_STATION) {
870 IWL_ERROR("Error adding AP address for transmit.\n");
871 return -EIO;
872 }
873 priv->assoc_station_added = 1;
Emmanuel Grumbach6974e362008-04-14 21:16:06 -0700874 if (priv->default_wep_key &&
875 iwl_send_static_wepkey_cmd(priv, 0))
876 IWL_ERROR("Could not send WEP static key.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700877 }
878
879 return 0;
880}
881
Mohamed Abbas5da4b552008-04-21 15:41:51 -0700882void iwl4965_update_chain_flags(struct iwl_priv *priv)
883{
884
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -0700885 iwl_set_rxon_chain(priv);
Mohamed Abbas5da4b552008-04-21 15:41:51 -0700886 iwl4965_commit_rxon(priv);
887}
888
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700889static int iwl4965_send_bt_config(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700890{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800891 struct iwl4965_bt_cmd bt_cmd = {
Zhu Yib481de92007-09-25 17:54:57 -0700892 .flags = 3,
893 .lead_time = 0xAA,
894 .max_kill = 1,
895 .kill_ack_mask = 0,
896 .kill_cts_mask = 0,
897 };
898
Tomas Winkler857485c2008-03-21 13:53:44 -0700899 return iwl_send_cmd_pdu(priv, REPLY_BT_CONFIG,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800900 sizeof(struct iwl4965_bt_cmd), &bt_cmd);
Zhu Yib481de92007-09-25 17:54:57 -0700901}
902
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700903static int iwl4965_send_scan_abort(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700904{
Tomas Winklerdb11d632008-05-05 10:22:33 +0800905 int ret = 0;
906 struct iwl_rx_packet *res;
Tomas Winkler857485c2008-03-21 13:53:44 -0700907 struct iwl_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -0700908 .id = REPLY_SCAN_ABORT_CMD,
909 .meta.flags = CMD_WANT_SKB,
910 };
911
912 /* If there isn't a scan actively going on in the hardware
913 * then we are in between scan bands and not actually
914 * actively scanning, so don't send the abort command */
915 if (!test_bit(STATUS_SCAN_HW, &priv->status)) {
916 clear_bit(STATUS_SCAN_ABORTING, &priv->status);
917 return 0;
918 }
919
Tomas Winklerdb11d632008-05-05 10:22:33 +0800920 ret = iwl_send_cmd_sync(priv, &cmd);
921 if (ret) {
Zhu Yib481de92007-09-25 17:54:57 -0700922 clear_bit(STATUS_SCAN_ABORTING, &priv->status);
Tomas Winklerdb11d632008-05-05 10:22:33 +0800923 return ret;
Zhu Yib481de92007-09-25 17:54:57 -0700924 }
925
Tomas Winklerdb11d632008-05-05 10:22:33 +0800926 res = (struct iwl_rx_packet *)cmd.meta.u.skb->data;
Zhu Yib481de92007-09-25 17:54:57 -0700927 if (res->u.status != CAN_ABORT_STATUS) {
928 /* The scan abort will return 1 for success or
929 * 2 for "failure". A failure condition can be
930 * due to simply not being in an active scan which
931 * can occur if we send the scan abort before we
932 * the microcode has notified us that a scan is
933 * completed. */
934 IWL_DEBUG_INFO("SCAN_ABORT returned %d.\n", res->u.status);
935 clear_bit(STATUS_SCAN_ABORTING, &priv->status);
936 clear_bit(STATUS_SCAN_HW, &priv->status);
937 }
938
939 dev_kfree_skb_any(cmd.meta.u.skb);
940
Tomas Winklerdb11d632008-05-05 10:22:33 +0800941 return ret;
Zhu Yib481de92007-09-25 17:54:57 -0700942}
943
Zhu Yib481de92007-09-25 17:54:57 -0700944/*
945 * CARD_STATE_CMD
946 *
Ben Cahill9fbab512007-11-29 11:09:47 +0800947 * Use: Sets the device's internal card state to enable, disable, or halt
Zhu Yib481de92007-09-25 17:54:57 -0700948 *
949 * When in the 'enable' state the card operates as normal.
950 * When in the 'disable' state, the card enters into a low power mode.
951 * When in the 'halt' state, the card is shut down and must be fully
952 * restarted to come back on.
953 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700954static int iwl4965_send_card_state(struct iwl_priv *priv, u32 flags, u8 meta_flag)
Zhu Yib481de92007-09-25 17:54:57 -0700955{
Tomas Winkler857485c2008-03-21 13:53:44 -0700956 struct iwl_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -0700957 .id = REPLY_CARD_STATE_CMD,
958 .len = sizeof(u32),
959 .data = &flags,
960 .meta.flags = meta_flag,
961 };
962
Tomas Winkler857485c2008-03-21 13:53:44 -0700963 return iwl_send_cmd(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -0700964}
965
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700966static void iwl4965_clear_free_frames(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700967{
968 struct list_head *element;
969
970 IWL_DEBUG_INFO("%d frames on pre-allocated heap on clear.\n",
971 priv->frames_count);
972
973 while (!list_empty(&priv->free_frames)) {
974 element = priv->free_frames.next;
975 list_del(element);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800976 kfree(list_entry(element, struct iwl4965_frame, list));
Zhu Yib481de92007-09-25 17:54:57 -0700977 priv->frames_count--;
978 }
979
980 if (priv->frames_count) {
981 IWL_WARNING("%d frames still in use. Did we lose one?\n",
982 priv->frames_count);
983 priv->frames_count = 0;
984 }
985}
986
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700987static struct iwl4965_frame *iwl4965_get_free_frame(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700988{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800989 struct iwl4965_frame *frame;
Zhu Yib481de92007-09-25 17:54:57 -0700990 struct list_head *element;
991 if (list_empty(&priv->free_frames)) {
992 frame = kzalloc(sizeof(*frame), GFP_KERNEL);
993 if (!frame) {
994 IWL_ERROR("Could not allocate frame!\n");
995 return NULL;
996 }
997
998 priv->frames_count++;
999 return frame;
1000 }
1001
1002 element = priv->free_frames.next;
1003 list_del(element);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001004 return list_entry(element, struct iwl4965_frame, list);
Zhu Yib481de92007-09-25 17:54:57 -07001005}
1006
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001007static void iwl4965_free_frame(struct iwl_priv *priv, struct iwl4965_frame *frame)
Zhu Yib481de92007-09-25 17:54:57 -07001008{
1009 memset(frame, 0, sizeof(*frame));
1010 list_add(&frame->list, &priv->free_frames);
1011}
1012
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001013unsigned int iwl4965_fill_beacon_frame(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07001014 struct ieee80211_hdr *hdr,
1015 const u8 *dest, int left)
1016{
1017
Tomas Winkler3109ece2008-03-28 16:33:35 -07001018 if (!iwl_is_associated(priv) || !priv->ibss_beacon ||
Zhu Yib481de92007-09-25 17:54:57 -07001019 ((priv->iw_mode != IEEE80211_IF_TYPE_IBSS) &&
1020 (priv->iw_mode != IEEE80211_IF_TYPE_AP)))
1021 return 0;
1022
1023 if (priv->ibss_beacon->len > left)
1024 return 0;
1025
1026 memcpy(hdr, priv->ibss_beacon->data, priv->ibss_beacon->len);
1027
1028 return priv->ibss_beacon->len;
1029}
1030
Guy Cohen39e88502008-04-23 17:14:57 -07001031static u8 iwl4965_rate_get_lowest_plcp(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001032{
Guy Cohen39e88502008-04-23 17:14:57 -07001033 int i;
1034 int rate_mask;
Zhu Yib481de92007-09-25 17:54:57 -07001035
Guy Cohen39e88502008-04-23 17:14:57 -07001036 /* Set rate mask*/
1037 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK)
1038 rate_mask = priv->active_rate_basic & 0xF;
1039 else
1040 rate_mask = priv->active_rate_basic & 0xFF0;
1041
1042 /* Find lowest valid rate */
Zhu Yib481de92007-09-25 17:54:57 -07001043 for (i = IWL_RATE_1M_INDEX; i != IWL_RATE_INVALID;
Guy Cohen39e88502008-04-23 17:14:57 -07001044 i = iwl4965_rates[i].next_ieee) {
Zhu Yib481de92007-09-25 17:54:57 -07001045 if (rate_mask & (1 << i))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001046 return iwl4965_rates[i].plcp;
Zhu Yib481de92007-09-25 17:54:57 -07001047 }
1048
Guy Cohen39e88502008-04-23 17:14:57 -07001049 /* No valid rate was found. Assign the lowest one */
1050 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK)
1051 return IWL_RATE_1M_PLCP;
1052 else
1053 return IWL_RATE_6M_PLCP;
Zhu Yib481de92007-09-25 17:54:57 -07001054}
1055
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001056static int iwl4965_send_beacon_cmd(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001057{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001058 struct iwl4965_frame *frame;
Zhu Yib481de92007-09-25 17:54:57 -07001059 unsigned int frame_size;
1060 int rc;
1061 u8 rate;
1062
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001063 frame = iwl4965_get_free_frame(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001064
1065 if (!frame) {
1066 IWL_ERROR("Could not obtain free frame buffer for beacon "
1067 "command.\n");
1068 return -ENOMEM;
1069 }
1070
Guy Cohen39e88502008-04-23 17:14:57 -07001071 rate = iwl4965_rate_get_lowest_plcp(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001072
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001073 frame_size = iwl4965_hw_get_beacon_cmd(priv, frame, rate);
Zhu Yib481de92007-09-25 17:54:57 -07001074
Tomas Winkler857485c2008-03-21 13:53:44 -07001075 rc = iwl_send_cmd_pdu(priv, REPLY_TX_BEACON, frame_size,
Zhu Yib481de92007-09-25 17:54:57 -07001076 &frame->u.cmd[0]);
1077
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001078 iwl4965_free_frame(priv, frame);
Zhu Yib481de92007-09-25 17:54:57 -07001079
1080 return rc;
1081}
1082
1083/******************************************************************************
1084 *
Zhu Yib481de92007-09-25 17:54:57 -07001085 * Misc. internal state and helper functions
1086 *
1087 ******************************************************************************/
Zhu Yib481de92007-09-25 17:54:57 -07001088
Zhu Yib481de92007-09-25 17:54:57 -07001089/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001090 * iwl4965_supported_rate_to_ie - fill in the supported rate in IE field
Zhu Yib481de92007-09-25 17:54:57 -07001091 *
1092 * return : set the bit for each supported rate insert in ie
1093 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001094static u16 iwl4965_supported_rate_to_ie(u8 *ie, u16 supported_rate,
Tomas Winklerc7c46672007-10-18 02:04:15 +02001095 u16 basic_rate, int *left)
Zhu Yib481de92007-09-25 17:54:57 -07001096{
1097 u16 ret_rates = 0, bit;
1098 int i;
Tomas Winklerc7c46672007-10-18 02:04:15 +02001099 u8 *cnt = ie;
1100 u8 *rates = ie + 1;
Zhu Yib481de92007-09-25 17:54:57 -07001101
1102 for (bit = 1, i = 0; i < IWL_RATE_COUNT; i++, bit <<= 1) {
1103 if (bit & supported_rate) {
1104 ret_rates |= bit;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001105 rates[*cnt] = iwl4965_rates[i].ieee |
Tomas Winklerc7c46672007-10-18 02:04:15 +02001106 ((bit & basic_rate) ? 0x80 : 0x00);
1107 (*cnt)++;
1108 (*left)--;
1109 if ((*left <= 0) ||
1110 (*cnt >= IWL_SUPPORTED_RATES_IE_LEN))
Zhu Yib481de92007-09-25 17:54:57 -07001111 break;
1112 }
1113 }
1114
1115 return ret_rates;
1116}
1117
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -07001118#ifdef CONFIG_IWL4965_HT
1119static void iwl4965_ht_conf(struct iwl_priv *priv,
1120 struct ieee80211_bss_conf *bss_conf)
1121{
1122 struct ieee80211_ht_info *ht_conf = bss_conf->ht_conf;
1123 struct ieee80211_ht_bss_info *ht_bss_conf = bss_conf->ht_bss_conf;
1124 struct iwl_ht_info *iwl_conf = &priv->current_ht_config;
1125
1126 IWL_DEBUG_MAC80211("enter: \n");
1127
1128 iwl_conf->is_ht = bss_conf->assoc_ht;
1129
1130 if (!iwl_conf->is_ht)
1131 return;
1132
1133 priv->ps_mode = (u8)((ht_conf->cap & IEEE80211_HT_CAP_MIMO_PS) >> 2);
1134
1135 if (ht_conf->cap & IEEE80211_HT_CAP_SGI_20)
1136 iwl_conf->sgf |= 0x1;
1137 if (ht_conf->cap & IEEE80211_HT_CAP_SGI_40)
1138 iwl_conf->sgf |= 0x2;
1139
1140 iwl_conf->is_green_field = !!(ht_conf->cap & IEEE80211_HT_CAP_GRN_FLD);
1141 iwl_conf->max_amsdu_size =
1142 !!(ht_conf->cap & IEEE80211_HT_CAP_MAX_AMSDU);
1143
1144 iwl_conf->supported_chan_width =
1145 !!(ht_conf->cap & IEEE80211_HT_CAP_SUP_WIDTH);
1146 iwl_conf->extension_chan_offset =
1147 ht_bss_conf->bss_cap & IEEE80211_HT_IE_CHA_SEC_OFFSET;
1148 /* If no above or below channel supplied disable FAT channel */
1149 if (iwl_conf->extension_chan_offset != IWL_EXT_CHANNEL_OFFSET_ABOVE &&
1150 iwl_conf->extension_chan_offset != IWL_EXT_CHANNEL_OFFSET_BELOW)
1151 iwl_conf->supported_chan_width = 0;
1152
1153 iwl_conf->tx_mimo_ps_mode =
1154 (u8)((ht_conf->cap & IEEE80211_HT_CAP_MIMO_PS) >> 2);
1155 memcpy(iwl_conf->supp_mcs_set, ht_conf->supp_mcs_set, 16);
1156
1157 iwl_conf->control_channel = ht_bss_conf->primary_channel;
1158 iwl_conf->tx_chan_width =
1159 !!(ht_bss_conf->bss_cap & IEEE80211_HT_IE_CHA_WIDTH);
1160 iwl_conf->ht_protection =
1161 ht_bss_conf->bss_op_mode & IEEE80211_HT_IE_HT_PROTECTION;
1162 iwl_conf->non_GF_STA_present =
1163 !!(ht_bss_conf->bss_op_mode & IEEE80211_HT_IE_NON_GF_STA_PRSNT);
1164
1165 IWL_DEBUG_MAC80211("control channel %d\n", iwl_conf->control_channel);
1166 IWL_DEBUG_MAC80211("leave\n");
1167}
1168
1169static void iwl_ht_cap_to_ie(const struct ieee80211_supported_band *sband,
1170 u8 *pos, int *left)
1171{
1172 struct ieee80211_ht_cap *ht_cap;
1173
1174 if (!sband || !sband->ht_info.ht_supported)
1175 return;
1176
1177 if (*left < sizeof(struct ieee80211_ht_cap))
1178 return;
1179
1180 *pos++ = sizeof(struct ieee80211_ht_cap);
1181 ht_cap = (struct ieee80211_ht_cap *) pos;
1182
1183 ht_cap->cap_info = cpu_to_le16(sband->ht_info.cap);
1184 memcpy(ht_cap->supp_mcs_set, sband->ht_info.supp_mcs_set, 16);
1185 ht_cap->ampdu_params_info =
1186 (sband->ht_info.ampdu_factor & IEEE80211_HT_CAP_AMPDU_FACTOR) |
1187 ((sband->ht_info.ampdu_density << 2) &
1188 IEEE80211_HT_CAP_AMPDU_DENSITY);
1189 *left -= sizeof(struct ieee80211_ht_cap);
1190}
1191#else
1192static inline void iwl4965_ht_conf(struct iwl_priv *priv,
1193 struct ieee80211_bss_conf *bss_conf)
1194{
1195}
1196static void iwl_ht_cap_to_ie(const struct ieee80211_supported_band *sband,
1197 u8 *pos, int *left)
1198{
1199}
1200#endif
1201
1202
Zhu Yib481de92007-09-25 17:54:57 -07001203/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001204 * iwl4965_fill_probe_req - fill in all required fields and IE for probe request
Zhu Yib481de92007-09-25 17:54:57 -07001205 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001206static u16 iwl4965_fill_probe_req(struct iwl_priv *priv,
Tomas Winkler78330fd2008-02-06 02:37:18 +02001207 enum ieee80211_band band,
1208 struct ieee80211_mgmt *frame,
1209 int left, int is_direct)
Zhu Yib481de92007-09-25 17:54:57 -07001210{
1211 int len = 0;
1212 u8 *pos = NULL;
mabbasbee488d2007-10-25 17:15:42 +08001213 u16 active_rates, ret_rates, cck_rates, active_rate_basic;
Tomas Winkler78330fd2008-02-06 02:37:18 +02001214 const struct ieee80211_supported_band *sband =
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -07001215 iwl_get_hw_mode(priv, band);
Zhu Yib481de92007-09-25 17:54:57 -07001216
1217 /* Make sure there is enough space for the probe request,
1218 * two mandatory IEs and the data */
1219 left -= 24;
1220 if (left < 0)
1221 return 0;
1222 len += 24;
1223
1224 frame->frame_control = cpu_to_le16(IEEE80211_STYPE_PROBE_REQ);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001225 memcpy(frame->da, iwl4965_broadcast_addr, ETH_ALEN);
Zhu Yib481de92007-09-25 17:54:57 -07001226 memcpy(frame->sa, priv->mac_addr, ETH_ALEN);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001227 memcpy(frame->bssid, iwl4965_broadcast_addr, ETH_ALEN);
Zhu Yib481de92007-09-25 17:54:57 -07001228 frame->seq_ctrl = 0;
1229
1230 /* fill in our indirect SSID IE */
1231 /* ...next IE... */
1232
1233 left -= 2;
1234 if (left < 0)
1235 return 0;
1236 len += 2;
1237 pos = &(frame->u.probe_req.variable[0]);
1238 *pos++ = WLAN_EID_SSID;
1239 *pos++ = 0;
1240
1241 /* fill in our direct SSID IE... */
1242 if (is_direct) {
1243 /* ...next IE... */
1244 left -= 2 + priv->essid_len;
1245 if (left < 0)
1246 return 0;
1247 /* ... fill it in... */
1248 *pos++ = WLAN_EID_SSID;
1249 *pos++ = priv->essid_len;
1250 memcpy(pos, priv->essid, priv->essid_len);
1251 pos += priv->essid_len;
1252 len += 2 + priv->essid_len;
1253 }
1254
1255 /* fill in supported rate */
1256 /* ...next IE... */
1257 left -= 2;
1258 if (left < 0)
1259 return 0;
Tomas Winklerc7c46672007-10-18 02:04:15 +02001260
Zhu Yib481de92007-09-25 17:54:57 -07001261 /* ... fill it in... */
1262 *pos++ = WLAN_EID_SUPP_RATES;
1263 *pos = 0;
Tomas Winklerc7c46672007-10-18 02:04:15 +02001264
mabbasbee488d2007-10-25 17:15:42 +08001265 /* exclude 60M rate */
1266 active_rates = priv->rates_mask;
1267 active_rates &= ~IWL_RATE_60M_MASK;
1268
1269 active_rate_basic = active_rates & IWL_BASIC_RATES_MASK;
Zhu Yib481de92007-09-25 17:54:57 -07001270
Tomas Winklerc7c46672007-10-18 02:04:15 +02001271 cck_rates = IWL_CCK_RATES_MASK & active_rates;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001272 ret_rates = iwl4965_supported_rate_to_ie(pos, cck_rates,
mabbasbee488d2007-10-25 17:15:42 +08001273 active_rate_basic, &left);
Tomas Winklerc7c46672007-10-18 02:04:15 +02001274 active_rates &= ~ret_rates;
1275
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001276 ret_rates = iwl4965_supported_rate_to_ie(pos, active_rates,
mabbasbee488d2007-10-25 17:15:42 +08001277 active_rate_basic, &left);
Tomas Winklerc7c46672007-10-18 02:04:15 +02001278 active_rates &= ~ret_rates;
1279
Zhu Yib481de92007-09-25 17:54:57 -07001280 len += 2 + *pos;
1281 pos += (*pos) + 1;
Tomas Winklerc7c46672007-10-18 02:04:15 +02001282 if (active_rates == 0)
Zhu Yib481de92007-09-25 17:54:57 -07001283 goto fill_end;
1284
1285 /* fill in supported extended rate */
1286 /* ...next IE... */
1287 left -= 2;
1288 if (left < 0)
1289 return 0;
1290 /* ... fill it in... */
1291 *pos++ = WLAN_EID_EXT_SUPP_RATES;
1292 *pos = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001293 iwl4965_supported_rate_to_ie(pos, active_rates,
mabbasbee488d2007-10-25 17:15:42 +08001294 active_rate_basic, &left);
Zhu Yib481de92007-09-25 17:54:57 -07001295 if (*pos > 0)
1296 len += 2 + *pos;
1297
Zhu Yib481de92007-09-25 17:54:57 -07001298 fill_end:
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -07001299 /* fill in HT IE */
1300 left -= 2;
1301 if (left < 0)
1302 return 0;
1303
1304 *pos++ = WLAN_EID_HT_CAPABILITY;
1305 *pos = 0;
1306
1307 iwl_ht_cap_to_ie(sband, pos, &left);
1308
1309 if (*pos > 0)
1310 len += 2 + *pos;
Zhu Yib481de92007-09-25 17:54:57 -07001311 return (u16)len;
1312}
1313
1314/*
1315 * QoS support
1316*/
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001317static int iwl4965_send_qos_params_command(struct iwl_priv *priv,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001318 struct iwl4965_qosparam_cmd *qos)
Zhu Yib481de92007-09-25 17:54:57 -07001319{
1320
Tomas Winkler857485c2008-03-21 13:53:44 -07001321 return iwl_send_cmd_pdu(priv, REPLY_QOS_PARAM,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001322 sizeof(struct iwl4965_qosparam_cmd), qos);
Zhu Yib481de92007-09-25 17:54:57 -07001323}
1324
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001325static void iwl4965_activate_qos(struct iwl_priv *priv, u8 force)
Zhu Yib481de92007-09-25 17:54:57 -07001326{
1327 unsigned long flags;
1328
Zhu Yib481de92007-09-25 17:54:57 -07001329 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
1330 return;
1331
1332 if (!priv->qos_data.qos_enable)
1333 return;
1334
1335 spin_lock_irqsave(&priv->lock, flags);
1336 priv->qos_data.def_qos_parm.qos_flags = 0;
1337
1338 if (priv->qos_data.qos_cap.q_AP.queue_request &&
1339 !priv->qos_data.qos_cap.q_AP.txop_request)
1340 priv->qos_data.def_qos_parm.qos_flags |=
1341 QOS_PARAM_FLG_TXOP_TYPE_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07001342 if (priv->qos_data.qos_active)
1343 priv->qos_data.def_qos_parm.qos_flags |=
1344 QOS_PARAM_FLG_UPDATE_EDCA_MSK;
1345
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08001346#ifdef CONFIG_IWL4965_HT
Ron Rindjunskyfd105e72007-11-26 16:14:39 +02001347 if (priv->current_ht_config.is_ht)
Tomas Winklerf1f1f5c2007-10-25 17:15:26 +08001348 priv->qos_data.def_qos_parm.qos_flags |= QOS_PARAM_FLG_TGN_MSK;
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08001349#endif /* CONFIG_IWL4965_HT */
Tomas Winklerf1f1f5c2007-10-25 17:15:26 +08001350
Zhu Yib481de92007-09-25 17:54:57 -07001351 spin_unlock_irqrestore(&priv->lock, flags);
1352
Tomas Winkler3109ece2008-03-28 16:33:35 -07001353 if (force || iwl_is_associated(priv)) {
Tomas Winklerf1f1f5c2007-10-25 17:15:26 +08001354 IWL_DEBUG_QOS("send QoS cmd with Qos active=%d FLAGS=0x%X\n",
1355 priv->qos_data.qos_active,
1356 priv->qos_data.def_qos_parm.qos_flags);
Zhu Yib481de92007-09-25 17:54:57 -07001357
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001358 iwl4965_send_qos_params_command(priv,
Zhu Yib481de92007-09-25 17:54:57 -07001359 &(priv->qos_data.def_qos_parm));
1360 }
1361}
1362
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001363int iwl4965_is_network_packet(struct iwl_priv *priv, struct ieee80211_hdr *header)
Zhu Yib481de92007-09-25 17:54:57 -07001364{
1365 /* Filter incoming packets to determine if they are targeted toward
1366 * this network, discarding packets coming from ourselves */
1367 switch (priv->iw_mode) {
1368 case IEEE80211_IF_TYPE_IBSS: /* Header: Dest. | Source | BSSID */
1369 /* packets from our adapter are dropped (echo) */
1370 if (!compare_ether_addr(header->addr2, priv->mac_addr))
1371 return 0;
1372 /* {broad,multi}cast packets to our IBSS go through */
1373 if (is_multicast_ether_addr(header->addr1))
1374 return !compare_ether_addr(header->addr3, priv->bssid);
1375 /* packets to our adapter go through */
1376 return !compare_ether_addr(header->addr1, priv->mac_addr);
1377 case IEEE80211_IF_TYPE_STA: /* Header: Dest. | AP{BSSID} | Source */
1378 /* packets from our adapter are dropped (echo) */
1379 if (!compare_ether_addr(header->addr3, priv->mac_addr))
1380 return 0;
1381 /* {broad,multi}cast packets to our BSS go through */
1382 if (is_multicast_ether_addr(header->addr1))
1383 return !compare_ether_addr(header->addr2, priv->bssid);
1384 /* packets to our adapter go through */
1385 return !compare_ether_addr(header->addr1, priv->mac_addr);
Tomas Winkler69dc5d92008-03-25 16:33:41 -07001386 default:
1387 break;
Zhu Yib481de92007-09-25 17:54:57 -07001388 }
1389
1390 return 1;
1391}
1392
1393#define TX_STATUS_ENTRY(x) case TX_STATUS_FAIL_ ## x: return #x
1394
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001395static const char *iwl4965_get_tx_fail_reason(u32 status)
Zhu Yib481de92007-09-25 17:54:57 -07001396{
1397 switch (status & TX_STATUS_MSK) {
1398 case TX_STATUS_SUCCESS:
1399 return "SUCCESS";
1400 TX_STATUS_ENTRY(SHORT_LIMIT);
1401 TX_STATUS_ENTRY(LONG_LIMIT);
1402 TX_STATUS_ENTRY(FIFO_UNDERRUN);
1403 TX_STATUS_ENTRY(MGMNT_ABORT);
1404 TX_STATUS_ENTRY(NEXT_FRAG);
1405 TX_STATUS_ENTRY(LIFE_EXPIRE);
1406 TX_STATUS_ENTRY(DEST_PS);
1407 TX_STATUS_ENTRY(ABORTED);
1408 TX_STATUS_ENTRY(BT_RETRY);
1409 TX_STATUS_ENTRY(STA_INVALID);
1410 TX_STATUS_ENTRY(FRAG_DROPPED);
1411 TX_STATUS_ENTRY(TID_DISABLE);
1412 TX_STATUS_ENTRY(FRAME_FLUSHED);
1413 TX_STATUS_ENTRY(INSUFFICIENT_CF_POLL);
1414 TX_STATUS_ENTRY(TX_LOCKED);
1415 TX_STATUS_ENTRY(NO_BEACON_ON_RADAR);
1416 }
1417
1418 return "UNKNOWN";
1419}
1420
1421/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001422 * iwl4965_scan_cancel - Cancel any currently executing HW scan
Zhu Yib481de92007-09-25 17:54:57 -07001423 *
1424 * NOTE: priv->mutex is not required before calling this function
1425 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001426static int iwl4965_scan_cancel(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001427{
1428 if (!test_bit(STATUS_SCAN_HW, &priv->status)) {
1429 clear_bit(STATUS_SCANNING, &priv->status);
1430 return 0;
1431 }
1432
1433 if (test_bit(STATUS_SCANNING, &priv->status)) {
1434 if (!test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
1435 IWL_DEBUG_SCAN("Queuing scan abort.\n");
1436 set_bit(STATUS_SCAN_ABORTING, &priv->status);
1437 queue_work(priv->workqueue, &priv->abort_scan);
1438
1439 } else
1440 IWL_DEBUG_SCAN("Scan abort already in progress.\n");
1441
1442 return test_bit(STATUS_SCANNING, &priv->status);
1443 }
1444
1445 return 0;
1446}
1447
1448/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001449 * iwl4965_scan_cancel_timeout - Cancel any currently executing HW scan
Zhu Yib481de92007-09-25 17:54:57 -07001450 * @ms: amount of time to wait (in milliseconds) for scan to abort
1451 *
1452 * NOTE: priv->mutex must be held before calling this function
1453 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001454static int iwl4965_scan_cancel_timeout(struct iwl_priv *priv, unsigned long ms)
Zhu Yib481de92007-09-25 17:54:57 -07001455{
1456 unsigned long now = jiffies;
1457 int ret;
1458
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001459 ret = iwl4965_scan_cancel(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001460 if (ret && ms) {
1461 mutex_unlock(&priv->mutex);
1462 while (!time_after(jiffies, now + msecs_to_jiffies(ms)) &&
1463 test_bit(STATUS_SCANNING, &priv->status))
1464 msleep(1);
1465 mutex_lock(&priv->mutex);
1466
1467 return test_bit(STATUS_SCANNING, &priv->status);
1468 }
1469
1470 return ret;
1471}
1472
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001473static void iwl4965_sequence_reset(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001474{
1475 /* Reset ieee stats */
1476
1477 /* We don't reset the net_device_stats (ieee->stats) on
1478 * re-association */
1479
1480 priv->last_seq_num = -1;
1481 priv->last_frag_num = -1;
1482 priv->last_packet_time = 0;
1483
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001484 iwl4965_scan_cancel(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001485}
1486
1487#define MAX_UCODE_BEACON_INTERVAL 4096
1488#define INTEL_CONN_LISTEN_INTERVAL __constant_cpu_to_le16(0xA)
1489
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001490static __le16 iwl4965_adjust_beacon_interval(u16 beacon_val)
Zhu Yib481de92007-09-25 17:54:57 -07001491{
1492 u16 new_val = 0;
1493 u16 beacon_factor = 0;
1494
1495 beacon_factor =
1496 (beacon_val + MAX_UCODE_BEACON_INTERVAL)
1497 / MAX_UCODE_BEACON_INTERVAL;
1498 new_val = beacon_val / beacon_factor;
1499
1500 return cpu_to_le16(new_val);
1501}
1502
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001503static void iwl4965_setup_rxon_timing(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001504{
1505 u64 interval_tm_unit;
1506 u64 tsf, result;
1507 unsigned long flags;
1508 struct ieee80211_conf *conf = NULL;
1509 u16 beacon_int = 0;
1510
1511 conf = ieee80211_get_hw_conf(priv->hw);
1512
1513 spin_lock_irqsave(&priv->lock, flags);
Tomas Winkler3109ece2008-03-28 16:33:35 -07001514 priv->rxon_timing.timestamp.dw[1] = cpu_to_le32(priv->timestamp >> 32);
1515 priv->rxon_timing.timestamp.dw[0] =
1516 cpu_to_le32(priv->timestamp & 0xFFFFFFFF);
Zhu Yib481de92007-09-25 17:54:57 -07001517
1518 priv->rxon_timing.listen_interval = INTEL_CONN_LISTEN_INTERVAL;
1519
Tomas Winkler3109ece2008-03-28 16:33:35 -07001520 tsf = priv->timestamp;
Zhu Yib481de92007-09-25 17:54:57 -07001521
1522 beacon_int = priv->beacon_int;
1523 spin_unlock_irqrestore(&priv->lock, flags);
1524
1525 if (priv->iw_mode == IEEE80211_IF_TYPE_STA) {
1526 if (beacon_int == 0) {
1527 priv->rxon_timing.beacon_interval = cpu_to_le16(100);
1528 priv->rxon_timing.beacon_init_val = cpu_to_le32(102400);
1529 } else {
1530 priv->rxon_timing.beacon_interval =
1531 cpu_to_le16(beacon_int);
1532 priv->rxon_timing.beacon_interval =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001533 iwl4965_adjust_beacon_interval(
Zhu Yib481de92007-09-25 17:54:57 -07001534 le16_to_cpu(priv->rxon_timing.beacon_interval));
1535 }
1536
1537 priv->rxon_timing.atim_window = 0;
1538 } else {
1539 priv->rxon_timing.beacon_interval =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001540 iwl4965_adjust_beacon_interval(conf->beacon_int);
Zhu Yib481de92007-09-25 17:54:57 -07001541 /* TODO: we need to get atim_window from upper stack
1542 * for now we set to 0 */
1543 priv->rxon_timing.atim_window = 0;
1544 }
1545
1546 interval_tm_unit =
1547 (le16_to_cpu(priv->rxon_timing.beacon_interval) * 1024);
1548 result = do_div(tsf, interval_tm_unit);
1549 priv->rxon_timing.beacon_init_val =
1550 cpu_to_le32((u32) ((u64) interval_tm_unit - result));
1551
1552 IWL_DEBUG_ASSOC
1553 ("beacon interval %d beacon timer %d beacon tim %d\n",
1554 le16_to_cpu(priv->rxon_timing.beacon_interval),
1555 le32_to_cpu(priv->rxon_timing.beacon_init_val),
1556 le16_to_cpu(priv->rxon_timing.atim_window));
1557}
1558
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001559static int iwl4965_scan_initiate(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001560{
1561 if (priv->iw_mode == IEEE80211_IF_TYPE_AP) {
1562 IWL_ERROR("APs don't scan.\n");
1563 return 0;
1564 }
1565
Tomas Winklerfee12472008-04-03 16:05:21 -07001566 if (!iwl_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07001567 IWL_DEBUG_SCAN("Aborting scan due to not ready.\n");
1568 return -EIO;
1569 }
1570
1571 if (test_bit(STATUS_SCANNING, &priv->status)) {
1572 IWL_DEBUG_SCAN("Scan already in progress.\n");
1573 return -EAGAIN;
1574 }
1575
1576 if (test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
1577 IWL_DEBUG_SCAN("Scan request while abort pending. "
1578 "Queuing.\n");
1579 return -EAGAIN;
1580 }
1581
1582 IWL_DEBUG_INFO("Starting scan...\n");
1583 priv->scan_bands = 2;
1584 set_bit(STATUS_SCANNING, &priv->status);
1585 priv->scan_start = jiffies;
1586 priv->scan_pass_start = priv->scan_start;
1587
1588 queue_work(priv->workqueue, &priv->request_scan);
1589
1590 return 0;
1591}
1592
Zhu Yib481de92007-09-25 17:54:57 -07001593
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001594static void iwl4965_set_flags_for_phymode(struct iwl_priv *priv,
Johannes Berg8318d782008-01-24 19:38:38 +01001595 enum ieee80211_band band)
Zhu Yib481de92007-09-25 17:54:57 -07001596{
Johannes Berg8318d782008-01-24 19:38:38 +01001597 if (band == IEEE80211_BAND_5GHZ) {
Zhu Yib481de92007-09-25 17:54:57 -07001598 priv->staging_rxon.flags &=
1599 ~(RXON_FLG_BAND_24G_MSK | RXON_FLG_AUTO_DETECT_MSK
1600 | RXON_FLG_CCK_MSK);
1601 priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
1602 } else {
Reinette Chatre508e32e2008-04-14 21:16:13 -07001603 /* Copied from iwl4965_post_associate() */
Zhu Yib481de92007-09-25 17:54:57 -07001604 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_SLOT_TIME)
1605 priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
1606 else
1607 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
1608
1609 if (priv->iw_mode == IEEE80211_IF_TYPE_IBSS)
1610 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
1611
1612 priv->staging_rxon.flags |= RXON_FLG_BAND_24G_MSK;
1613 priv->staging_rxon.flags |= RXON_FLG_AUTO_DETECT_MSK;
1614 priv->staging_rxon.flags &= ~RXON_FLG_CCK_MSK;
1615 }
1616}
1617
1618/*
Ian Schram01ebd062007-10-25 17:15:22 +08001619 * initialize rxon structure with default values from eeprom
Zhu Yib481de92007-09-25 17:54:57 -07001620 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001621static void iwl4965_connection_init_rx_config(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001622{
Assaf Kraussbf85ea42008-03-14 10:38:49 -07001623 const struct iwl_channel_info *ch_info;
Zhu Yib481de92007-09-25 17:54:57 -07001624
1625 memset(&priv->staging_rxon, 0, sizeof(priv->staging_rxon));
1626
1627 switch (priv->iw_mode) {
1628 case IEEE80211_IF_TYPE_AP:
1629 priv->staging_rxon.dev_type = RXON_DEV_TYPE_AP;
1630 break;
1631
1632 case IEEE80211_IF_TYPE_STA:
1633 priv->staging_rxon.dev_type = RXON_DEV_TYPE_ESS;
1634 priv->staging_rxon.filter_flags = RXON_FILTER_ACCEPT_GRP_MSK;
1635 break;
1636
1637 case IEEE80211_IF_TYPE_IBSS:
1638 priv->staging_rxon.dev_type = RXON_DEV_TYPE_IBSS;
1639 priv->staging_rxon.flags = RXON_FLG_SHORT_PREAMBLE_MSK;
1640 priv->staging_rxon.filter_flags = RXON_FILTER_BCON_AWARE_MSK |
1641 RXON_FILTER_ACCEPT_GRP_MSK;
1642 break;
1643
1644 case IEEE80211_IF_TYPE_MNTR:
1645 priv->staging_rxon.dev_type = RXON_DEV_TYPE_SNIFFER;
1646 priv->staging_rxon.filter_flags = RXON_FILTER_PROMISC_MSK |
1647 RXON_FILTER_CTL2HOST_MSK | RXON_FILTER_ACCEPT_GRP_MSK;
1648 break;
Tomas Winkler69dc5d92008-03-25 16:33:41 -07001649 default:
1650 IWL_ERROR("Unsupported interface type %d\n", priv->iw_mode);
1651 break;
Zhu Yib481de92007-09-25 17:54:57 -07001652 }
1653
1654#if 0
1655 /* TODO: Figure out when short_preamble would be set and cache from
1656 * that */
1657 if (!hw_to_local(priv->hw)->short_preamble)
1658 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
1659 else
1660 priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
1661#endif
1662
Assaf Krauss8622e702008-03-21 13:53:43 -07001663 ch_info = iwl_get_channel_info(priv, priv->band,
Zhu Yib481de92007-09-25 17:54:57 -07001664 le16_to_cpu(priv->staging_rxon.channel));
1665
1666 if (!ch_info)
1667 ch_info = &priv->channel_info[0];
1668
1669 /*
1670 * in some case A channels are all non IBSS
1671 * in this case force B/G channel
1672 */
1673 if ((priv->iw_mode == IEEE80211_IF_TYPE_IBSS) &&
1674 !(is_channel_ibss(ch_info)))
1675 ch_info = &priv->channel_info[0];
1676
1677 priv->staging_rxon.channel = cpu_to_le16(ch_info->channel);
Johannes Berg8318d782008-01-24 19:38:38 +01001678 priv->band = ch_info->band;
Zhu Yib481de92007-09-25 17:54:57 -07001679
Johannes Berg8318d782008-01-24 19:38:38 +01001680 iwl4965_set_flags_for_phymode(priv, priv->band);
Zhu Yib481de92007-09-25 17:54:57 -07001681
1682 priv->staging_rxon.ofdm_basic_rates =
1683 (IWL_OFDM_RATES_MASK >> IWL_FIRST_OFDM_RATE) & 0xFF;
1684 priv->staging_rxon.cck_basic_rates =
1685 (IWL_CCK_RATES_MASK >> IWL_FIRST_CCK_RATE) & 0xF;
1686
1687 priv->staging_rxon.flags &= ~(RXON_FLG_CHANNEL_MODE_MIXED_MSK |
1688 RXON_FLG_CHANNEL_MODE_PURE_40_MSK);
1689 memcpy(priv->staging_rxon.node_addr, priv->mac_addr, ETH_ALEN);
1690 memcpy(priv->staging_rxon.wlap_bssid_addr, priv->mac_addr, ETH_ALEN);
1691 priv->staging_rxon.ofdm_ht_single_stream_basic_rates = 0xff;
1692 priv->staging_rxon.ofdm_ht_dual_stream_basic_rates = 0xff;
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -07001693 iwl_set_rxon_chain(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001694}
1695
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001696static int iwl4965_set_mode(struct iwl_priv *priv, int mode)
Zhu Yib481de92007-09-25 17:54:57 -07001697{
Zhu Yib481de92007-09-25 17:54:57 -07001698 if (mode == IEEE80211_IF_TYPE_IBSS) {
Assaf Kraussbf85ea42008-03-14 10:38:49 -07001699 const struct iwl_channel_info *ch_info;
Zhu Yib481de92007-09-25 17:54:57 -07001700
Assaf Krauss8622e702008-03-21 13:53:43 -07001701 ch_info = iwl_get_channel_info(priv,
Johannes Berg8318d782008-01-24 19:38:38 +01001702 priv->band,
Zhu Yib481de92007-09-25 17:54:57 -07001703 le16_to_cpu(priv->staging_rxon.channel));
1704
1705 if (!ch_info || !is_channel_ibss(ch_info)) {
1706 IWL_ERROR("channel %d not IBSS channel\n",
1707 le16_to_cpu(priv->staging_rxon.channel));
1708 return -EINVAL;
1709 }
1710 }
1711
Zhu Yib481de92007-09-25 17:54:57 -07001712 priv->iw_mode = mode;
1713
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001714 iwl4965_connection_init_rx_config(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001715 memcpy(priv->staging_rxon.node_addr, priv->mac_addr, ETH_ALEN);
1716
Assaf Kraussbf85ea42008-03-14 10:38:49 -07001717 iwlcore_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001718
Mohamed Abbasfde35712007-11-29 11:10:15 +08001719 /* dont commit rxon if rf-kill is on*/
Tomas Winklerfee12472008-04-03 16:05:21 -07001720 if (!iwl_is_ready_rf(priv))
Mohamed Abbasfde35712007-11-29 11:10:15 +08001721 return -EAGAIN;
1722
1723 cancel_delayed_work(&priv->scan_check);
1724 if (iwl4965_scan_cancel_timeout(priv, 100)) {
1725 IWL_WARNING("Aborted scan still in progress after 100ms\n");
1726 IWL_DEBUG_MAC80211("leaving - scan abort failed.\n");
1727 return -EAGAIN;
1728 }
1729
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001730 iwl4965_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001731
1732 return 0;
1733}
1734
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001735static void iwl4965_build_tx_cmd_hwcrypto(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07001736 struct ieee80211_tx_control *ctl,
Tomas Winkler857485c2008-03-21 13:53:44 -07001737 struct iwl_cmd *cmd,
Zhu Yib481de92007-09-25 17:54:57 -07001738 struct sk_buff *skb_frag,
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07001739 int sta_id)
Zhu Yib481de92007-09-25 17:54:57 -07001740{
Tomas Winkler6def9762008-05-05 10:22:31 +08001741 struct iwl_hw_key *keyinfo = &priv->stations[sta_id].keyinfo;
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07001742 struct iwl_wep_key *wepkey;
1743 int keyidx = 0;
1744
Ivo van Doorn1c014422008-04-17 19:41:02 +02001745 BUG_ON(ctl->hw_key->hw_key_idx > 3);
Zhu Yib481de92007-09-25 17:54:57 -07001746
1747 switch (keyinfo->alg) {
1748 case ALG_CCMP:
1749 cmd->cmd.tx.sec_ctl = TX_CMD_SEC_CCM;
1750 memcpy(cmd->cmd.tx.key, keyinfo->key, keyinfo->keylen);
Max Stepanov8236e182008-03-12 16:58:48 -07001751 if (ctl->flags & IEEE80211_TXCTL_AMPDU)
1752 cmd->cmd.tx.tx_flags |= TX_CMD_FLG_AGG_CCMP_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07001753 IWL_DEBUG_TX("tx_cmd with aes hwcrypto\n");
1754 break;
1755
1756 case ALG_TKIP:
Zhu Yib481de92007-09-25 17:54:57 -07001757 cmd->cmd.tx.sec_ctl = TX_CMD_SEC_TKIP;
Emmanuel Grumbach2bc75082008-03-19 16:41:45 -07001758 ieee80211_get_tkip_key(keyinfo->conf, skb_frag,
1759 IEEE80211_TKIP_P2_KEY, cmd->cmd.tx.key);
1760 IWL_DEBUG_TX("tx_cmd with tkip hwcrypto\n");
Zhu Yib481de92007-09-25 17:54:57 -07001761 break;
1762
1763 case ALG_WEP:
Ivo van Doorn1c014422008-04-17 19:41:02 +02001764 wepkey = &priv->wep_keys[ctl->hw_key->hw_key_idx];
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07001765 cmd->cmd.tx.sec_ctl = 0;
1766 if (priv->default_wep_key) {
1767 /* the WEP key was sent as static */
Ivo van Doorn1c014422008-04-17 19:41:02 +02001768 keyidx = ctl->hw_key->hw_key_idx;
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07001769 memcpy(&cmd->cmd.tx.key[3], wepkey->key,
1770 wepkey->key_size);
1771 if (wepkey->key_size == WEP_KEY_LEN_128)
1772 cmd->cmd.tx.sec_ctl |= TX_CMD_SEC_KEY128;
1773 } else {
Emmanuel Grumbach0211ddd2008-04-14 21:16:07 -07001774 /* the WEP key was sent as dynamic */
1775 keyidx = keyinfo->keyidx;
1776 memcpy(&cmd->cmd.tx.key[3], keyinfo->key,
1777 keyinfo->keylen);
1778 if (keyinfo->keylen == WEP_KEY_LEN_128)
1779 cmd->cmd.tx.sec_ctl |= TX_CMD_SEC_KEY128;
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07001780 }
Zhu Yib481de92007-09-25 17:54:57 -07001781
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07001782 cmd->cmd.tx.sec_ctl |= (TX_CMD_SEC_WEP |
1783 (keyidx & TX_CMD_SEC_MSK) << TX_CMD_SEC_SHIFT);
Zhu Yib481de92007-09-25 17:54:57 -07001784
1785 IWL_DEBUG_TX("Configuring packet for WEP encryption "
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07001786 "with key %d\n", keyidx);
Zhu Yib481de92007-09-25 17:54:57 -07001787 break;
1788
Zhu Yib481de92007-09-25 17:54:57 -07001789 default:
1790 printk(KERN_ERR "Unknown encode alg %d\n", keyinfo->alg);
1791 break;
1792 }
1793}
1794
1795/*
1796 * handle build REPLY_TX command notification.
1797 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001798static void iwl4965_build_tx_cmd_basic(struct iwl_priv *priv,
Tomas Winkler857485c2008-03-21 13:53:44 -07001799 struct iwl_cmd *cmd,
Zhu Yib481de92007-09-25 17:54:57 -07001800 struct ieee80211_tx_control *ctrl,
1801 struct ieee80211_hdr *hdr,
1802 int is_unicast, u8 std_id)
1803{
1804 __le16 *qc;
1805 u16 fc = le16_to_cpu(hdr->frame_control);
1806 __le32 tx_flags = cmd->cmd.tx.tx_flags;
1807
1808 cmd->cmd.tx.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
1809 if (!(ctrl->flags & IEEE80211_TXCTL_NO_ACK)) {
1810 tx_flags |= TX_CMD_FLG_ACK_MSK;
1811 if ((fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_MGMT)
1812 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
1813 if (ieee80211_is_probe_response(fc) &&
1814 !(le16_to_cpu(hdr->seq_ctrl) & 0xf))
1815 tx_flags |= TX_CMD_FLG_TSF_MSK;
1816 } else {
1817 tx_flags &= (~TX_CMD_FLG_ACK_MSK);
1818 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
1819 }
1820
Tomas Winkler87e4f7d2008-01-14 17:46:16 -08001821 if (ieee80211_is_back_request(fc))
1822 tx_flags |= TX_CMD_FLG_ACK_MSK | TX_CMD_FLG_IMM_BA_RSP_MASK;
1823
1824
Zhu Yib481de92007-09-25 17:54:57 -07001825 cmd->cmd.tx.sta_id = std_id;
1826 if (ieee80211_get_morefrag(hdr))
1827 tx_flags |= TX_CMD_FLG_MORE_FRAG_MSK;
1828
1829 qc = ieee80211_get_qos_ctrl(hdr);
1830 if (qc) {
1831 cmd->cmd.tx.tid_tspec = (u8) (le16_to_cpu(*qc) & 0xf);
1832 tx_flags &= ~TX_CMD_FLG_SEQ_CTL_MSK;
1833 } else
1834 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
1835
1836 if (ctrl->flags & IEEE80211_TXCTL_USE_RTS_CTS) {
1837 tx_flags |= TX_CMD_FLG_RTS_MSK;
1838 tx_flags &= ~TX_CMD_FLG_CTS_MSK;
1839 } else if (ctrl->flags & IEEE80211_TXCTL_USE_CTS_PROTECT) {
1840 tx_flags &= ~TX_CMD_FLG_RTS_MSK;
1841 tx_flags |= TX_CMD_FLG_CTS_MSK;
1842 }
1843
1844 if ((tx_flags & TX_CMD_FLG_RTS_MSK) || (tx_flags & TX_CMD_FLG_CTS_MSK))
1845 tx_flags |= TX_CMD_FLG_FULL_TXOP_PROT_MSK;
1846
1847 tx_flags &= ~(TX_CMD_FLG_ANT_SEL_MSK);
1848 if ((fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_MGMT) {
1849 if ((fc & IEEE80211_FCTL_STYPE) == IEEE80211_STYPE_ASSOC_REQ ||
1850 (fc & IEEE80211_FCTL_STYPE) == IEEE80211_STYPE_REASSOC_REQ)
Ian Schrambc434dd2007-10-25 17:15:29 +08001851 cmd->cmd.tx.timeout.pm_frame_timeout = cpu_to_le16(3);
Zhu Yib481de92007-09-25 17:54:57 -07001852 else
Ian Schrambc434dd2007-10-25 17:15:29 +08001853 cmd->cmd.tx.timeout.pm_frame_timeout = cpu_to_le16(2);
Mohamed Abbasab53d8a2008-03-25 16:33:36 -07001854 } else {
Zhu Yib481de92007-09-25 17:54:57 -07001855 cmd->cmd.tx.timeout.pm_frame_timeout = 0;
Mohamed Abbasab53d8a2008-03-25 16:33:36 -07001856 }
Zhu Yib481de92007-09-25 17:54:57 -07001857
1858 cmd->cmd.tx.driver_txop = 0;
1859 cmd->cmd.tx.tx_flags = tx_flags;
1860 cmd->cmd.tx.next_frame_len = 0;
1861}
Tomas Winkler19758be2008-03-12 16:58:51 -07001862static void iwl_update_tx_stats(struct iwl_priv *priv, u16 fc, u16 len)
1863{
1864 /* 0 - mgmt, 1 - cnt, 2 - data */
1865 int idx = (fc & IEEE80211_FCTL_FTYPE) >> 2;
1866 priv->tx_stats[idx].cnt++;
1867 priv->tx_stats[idx].bytes += len;
1868}
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001869/**
1870 * iwl4965_get_sta_id - Find station's index within station table
1871 *
1872 * If new IBSS station, create new entry in station table
1873 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001874static int iwl4965_get_sta_id(struct iwl_priv *priv,
Ben Cahill9fbab512007-11-29 11:09:47 +08001875 struct ieee80211_hdr *hdr)
Zhu Yib481de92007-09-25 17:54:57 -07001876{
1877 int sta_id;
1878 u16 fc = le16_to_cpu(hdr->frame_control);
Joe Perches0795af52007-10-03 17:59:30 -07001879 DECLARE_MAC_BUF(mac);
Zhu Yib481de92007-09-25 17:54:57 -07001880
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001881 /* If this frame is broadcast or management, use broadcast station id */
Zhu Yib481de92007-09-25 17:54:57 -07001882 if (((fc & IEEE80211_FCTL_FTYPE) != IEEE80211_FTYPE_DATA) ||
1883 is_multicast_ether_addr(hdr->addr1))
Tomas Winkler5425e492008-04-15 16:01:38 -07001884 return priv->hw_params.bcast_sta_id;
Zhu Yib481de92007-09-25 17:54:57 -07001885
1886 switch (priv->iw_mode) {
1887
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001888 /* If we are a client station in a BSS network, use the special
1889 * AP station entry (that's the only station we communicate with) */
Zhu Yib481de92007-09-25 17:54:57 -07001890 case IEEE80211_IF_TYPE_STA:
1891 return IWL_AP_ID;
1892
1893 /* If we are an AP, then find the station, or use BCAST */
1894 case IEEE80211_IF_TYPE_AP:
Tomas Winkler947b13a2008-04-16 16:34:48 -07001895 sta_id = iwl_find_station(priv, hdr->addr1);
Zhu Yib481de92007-09-25 17:54:57 -07001896 if (sta_id != IWL_INVALID_STATION)
1897 return sta_id;
Tomas Winkler5425e492008-04-15 16:01:38 -07001898 return priv->hw_params.bcast_sta_id;
Zhu Yib481de92007-09-25 17:54:57 -07001899
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001900 /* If this frame is going out to an IBSS network, find the station,
1901 * or create a new station table entry */
Zhu Yib481de92007-09-25 17:54:57 -07001902 case IEEE80211_IF_TYPE_IBSS:
Tomas Winkler947b13a2008-04-16 16:34:48 -07001903 sta_id = iwl_find_station(priv, hdr->addr1);
Zhu Yib481de92007-09-25 17:54:57 -07001904 if (sta_id != IWL_INVALID_STATION)
1905 return sta_id;
1906
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001907 /* Create new station table entry */
Ron Rindjunsky67d62032007-11-26 16:14:40 +02001908 sta_id = iwl4965_add_station_flags(priv, hdr->addr1,
1909 0, CMD_ASYNC, NULL);
Zhu Yib481de92007-09-25 17:54:57 -07001910
1911 if (sta_id != IWL_INVALID_STATION)
1912 return sta_id;
1913
Joe Perches0795af52007-10-03 17:59:30 -07001914 IWL_DEBUG_DROP("Station %s not in station map. "
Zhu Yib481de92007-09-25 17:54:57 -07001915 "Defaulting to broadcast...\n",
Joe Perches0795af52007-10-03 17:59:30 -07001916 print_mac(mac, hdr->addr1));
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001917 iwl_print_hex_dump(IWL_DL_DROP, (u8 *) hdr, sizeof(*hdr));
Tomas Winkler5425e492008-04-15 16:01:38 -07001918 return priv->hw_params.bcast_sta_id;
Zhu Yib481de92007-09-25 17:54:57 -07001919
1920 default:
Ian Schram01ebd062007-10-25 17:15:22 +08001921 IWL_WARNING("Unknown mode of operation: %d", priv->iw_mode);
Tomas Winkler5425e492008-04-15 16:01:38 -07001922 return priv->hw_params.bcast_sta_id;
Zhu Yib481de92007-09-25 17:54:57 -07001923 }
1924}
1925
1926/*
1927 * start REPLY_TX command process
1928 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001929static int iwl4965_tx_skb(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07001930 struct sk_buff *skb, struct ieee80211_tx_control *ctl)
1931{
1932 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001933 struct iwl4965_tfd_frame *tfd;
Zhu Yib481de92007-09-25 17:54:57 -07001934 u32 *control_flags;
1935 int txq_id = ctl->queue;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001936 struct iwl4965_tx_queue *txq = NULL;
1937 struct iwl4965_queue *q = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07001938 dma_addr_t phys_addr;
1939 dma_addr_t txcmd_phys;
Tomas Winkler87e4f7d2008-01-14 17:46:16 -08001940 dma_addr_t scratch_phys;
Tomas Winkler857485c2008-03-21 13:53:44 -07001941 struct iwl_cmd *out_cmd = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07001942 u16 len, idx, len_org;
1943 u8 id, hdr_len, unicast;
1944 u8 sta_id;
1945 u16 seq_number = 0;
1946 u16 fc;
1947 __le16 *qc;
1948 u8 wait_write_ptr = 0;
1949 unsigned long flags;
1950 int rc;
1951
1952 spin_lock_irqsave(&priv->lock, flags);
Tomas Winklerfee12472008-04-03 16:05:21 -07001953 if (iwl_is_rfkill(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07001954 IWL_DEBUG_DROP("Dropping - RF KILL\n");
1955 goto drop_unlock;
1956 }
1957
Johannes Berg32bfd352007-12-19 01:31:26 +01001958 if (!priv->vif) {
1959 IWL_DEBUG_DROP("Dropping - !priv->vif\n");
Zhu Yib481de92007-09-25 17:54:57 -07001960 goto drop_unlock;
1961 }
1962
Johannes Berg8318d782008-01-24 19:38:38 +01001963 if ((ctl->tx_rate->hw_value & 0xFF) == IWL_INVALID_RATE) {
Zhu Yib481de92007-09-25 17:54:57 -07001964 IWL_ERROR("ERROR: No TX rate available.\n");
1965 goto drop_unlock;
1966 }
1967
1968 unicast = !is_multicast_ether_addr(hdr->addr1);
1969 id = 0;
1970
1971 fc = le16_to_cpu(hdr->frame_control);
1972
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001973#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07001974 if (ieee80211_is_auth(fc))
1975 IWL_DEBUG_TX("Sending AUTH frame\n");
1976 else if (ieee80211_is_assoc_request(fc))
1977 IWL_DEBUG_TX("Sending ASSOC frame\n");
1978 else if (ieee80211_is_reassoc_request(fc))
1979 IWL_DEBUG_TX("Sending REASSOC frame\n");
1980#endif
1981
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08001982 /* drop all data frame if we are not associated */
Gregory Greenman76f39152008-01-23 10:15:21 -08001983 if (((fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_DATA) &&
Tomas Winkler3109ece2008-03-28 16:33:35 -07001984 (!iwl_is_associated(priv) ||
Reinette Chatrea6477242008-02-14 10:40:28 -08001985 ((priv->iw_mode == IEEE80211_IF_TYPE_STA) && !priv->assoc_id) ||
Gregory Greenman76f39152008-01-23 10:15:21 -08001986 !priv->assoc_station_added)) {
Tomas Winkler3109ece2008-03-28 16:33:35 -07001987 IWL_DEBUG_DROP("Dropping - !iwl_is_associated\n");
Zhu Yib481de92007-09-25 17:54:57 -07001988 goto drop_unlock;
1989 }
1990
1991 spin_unlock_irqrestore(&priv->lock, flags);
1992
1993 hdr_len = ieee80211_get_hdrlen(fc);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001994
1995 /* Find (or create) index into station table for destination station */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001996 sta_id = iwl4965_get_sta_id(priv, hdr);
Zhu Yib481de92007-09-25 17:54:57 -07001997 if (sta_id == IWL_INVALID_STATION) {
Joe Perches0795af52007-10-03 17:59:30 -07001998 DECLARE_MAC_BUF(mac);
1999
2000 IWL_DEBUG_DROP("Dropping - INVALID STATION: %s\n",
2001 print_mac(mac, hdr->addr1));
Zhu Yib481de92007-09-25 17:54:57 -07002002 goto drop;
2003 }
2004
Guy Cohen07bc28e2008-04-23 17:15:03 -07002005 IWL_DEBUG_TX("station Id %d\n", sta_id);
Zhu Yib481de92007-09-25 17:54:57 -07002006
2007 qc = ieee80211_get_qos_ctrl(hdr);
2008 if (qc) {
2009 u8 tid = (u8)(le16_to_cpu(*qc) & 0xf);
2010 seq_number = priv->stations[sta_id].tid[tid].seq_number &
2011 IEEE80211_SCTL_SEQ;
2012 hdr->seq_ctrl = cpu_to_le16(seq_number) |
2013 (hdr->seq_ctrl &
2014 __constant_cpu_to_le16(IEEE80211_SCTL_FRAG));
2015 seq_number += 0x10;
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08002016#ifdef CONFIG_IWL4965_HT
Zhu Yib481de92007-09-25 17:54:57 -07002017 /* aggregation is on for this <sta,tid> */
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02002018 if (ctl->flags & IEEE80211_TXCTL_AMPDU)
Zhu Yib481de92007-09-25 17:54:57 -07002019 txq_id = priv->stations[sta_id].tid[tid].agg.txq_id;
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02002020 priv->stations[sta_id].tid[tid].tfds_in_queue++;
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08002021#endif /* CONFIG_IWL4965_HT */
Zhu Yib481de92007-09-25 17:54:57 -07002022 }
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002023
2024 /* Descriptor for chosen Tx queue */
Zhu Yib481de92007-09-25 17:54:57 -07002025 txq = &priv->txq[txq_id];
2026 q = &txq->q;
2027
2028 spin_lock_irqsave(&priv->lock, flags);
2029
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002030 /* Set up first empty TFD within this queue's circular TFD buffer */
Tomas Winklerfc4b6852007-10-25 17:15:24 +08002031 tfd = &txq->bd[q->write_ptr];
Zhu Yib481de92007-09-25 17:54:57 -07002032 memset(tfd, 0, sizeof(*tfd));
2033 control_flags = (u32 *) tfd;
Tomas Winklerfc4b6852007-10-25 17:15:24 +08002034 idx = get_cmd_index(q, q->write_ptr, 0);
Zhu Yib481de92007-09-25 17:54:57 -07002035
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002036 /* Set up driver data for this TFD */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002037 memset(&(txq->txb[q->write_ptr]), 0, sizeof(struct iwl4965_tx_info));
Tomas Winklerfc4b6852007-10-25 17:15:24 +08002038 txq->txb[q->write_ptr].skb[0] = skb;
2039 memcpy(&(txq->txb[q->write_ptr].status.control),
Zhu Yib481de92007-09-25 17:54:57 -07002040 ctl, sizeof(struct ieee80211_tx_control));
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002041
2042 /* Set up first empty entry in queue's array of Tx/cmd buffers */
Zhu Yib481de92007-09-25 17:54:57 -07002043 out_cmd = &txq->cmd[idx];
2044 memset(&out_cmd->hdr, 0, sizeof(out_cmd->hdr));
2045 memset(&out_cmd->cmd.tx, 0, sizeof(out_cmd->cmd.tx));
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002046
2047 /*
2048 * Set up the Tx-command (not MAC!) header.
2049 * Store the chosen Tx queue and TFD index within the sequence field;
2050 * after Tx, uCode's Tx response will return this value so driver can
2051 * locate the frame within the tx queue and do post-tx processing.
2052 */
Zhu Yib481de92007-09-25 17:54:57 -07002053 out_cmd->hdr.cmd = REPLY_TX;
2054 out_cmd->hdr.sequence = cpu_to_le16((u16)(QUEUE_TO_SEQ(txq_id) |
Tomas Winklerfc4b6852007-10-25 17:15:24 +08002055 INDEX_TO_SEQ(q->write_ptr)));
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002056
2057 /* Copy MAC header from skb into command buffer */
Zhu Yib481de92007-09-25 17:54:57 -07002058 memcpy(out_cmd->cmd.tx.hdr, hdr, hdr_len);
2059
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002060 /*
2061 * Use the first empty entry in this queue's command buffer array
2062 * to contain the Tx command and MAC header concatenated together
2063 * (payload data will be in another buffer).
2064 * Size of this varies, due to varying MAC header length.
2065 * If end is not dword aligned, we'll have 2 extra bytes at the end
2066 * of the MAC header (device reads on dword boundaries).
2067 * We'll tell device about this padding later.
2068 */
Tomas Winkler5425e492008-04-15 16:01:38 -07002069 len = priv->hw_params.tx_cmd_len +
Tomas Winkler857485c2008-03-21 13:53:44 -07002070 sizeof(struct iwl_cmd_header) + hdr_len;
Zhu Yib481de92007-09-25 17:54:57 -07002071
2072 len_org = len;
2073 len = (len + 3) & ~3;
2074
2075 if (len_org != len)
2076 len_org = 1;
2077 else
2078 len_org = 0;
2079
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002080 /* Physical address of this Tx command's header (not MAC header!),
2081 * within command buffer array. */
Tomas Winkler857485c2008-03-21 13:53:44 -07002082 txcmd_phys = txq->dma_addr_cmd + sizeof(struct iwl_cmd) * idx +
2083 offsetof(struct iwl_cmd, hdr);
Zhu Yib481de92007-09-25 17:54:57 -07002084
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002085 /* Add buffer containing Tx command and MAC(!) header to TFD's
2086 * first entry */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002087 iwl4965_hw_txq_attach_buf_to_tfd(priv, tfd, txcmd_phys, len);
Zhu Yib481de92007-09-25 17:54:57 -07002088
2089 if (!(ctl->flags & IEEE80211_TXCTL_DO_NOT_ENCRYPT))
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07002090 iwl4965_build_tx_cmd_hwcrypto(priv, ctl, out_cmd, skb, sta_id);
Zhu Yib481de92007-09-25 17:54:57 -07002091
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002092 /* Set up TFD's 2nd entry to point directly to remainder of skb,
2093 * if any (802.11 null frames have no payload). */
Zhu Yib481de92007-09-25 17:54:57 -07002094 len = skb->len - hdr_len;
2095 if (len) {
2096 phys_addr = pci_map_single(priv->pci_dev, skb->data + hdr_len,
2097 len, PCI_DMA_TODEVICE);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002098 iwl4965_hw_txq_attach_buf_to_tfd(priv, tfd, phys_addr, len);
Zhu Yib481de92007-09-25 17:54:57 -07002099 }
2100
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002101 /* Tell 4965 about any 2-byte padding after MAC header */
Zhu Yib481de92007-09-25 17:54:57 -07002102 if (len_org)
2103 out_cmd->cmd.tx.tx_flags |= TX_CMD_FLG_MH_PAD_MSK;
2104
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002105 /* Total # bytes to be transmitted */
Zhu Yib481de92007-09-25 17:54:57 -07002106 len = (u16)skb->len;
2107 out_cmd->cmd.tx.len = cpu_to_le16(len);
2108
2109 /* TODO need this for burst mode later on */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002110 iwl4965_build_tx_cmd_basic(priv, out_cmd, ctl, hdr, unicast, sta_id);
Zhu Yib481de92007-09-25 17:54:57 -07002111
2112 /* set is_hcca to 0; it probably will never be implemented */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002113 iwl4965_hw_build_tx_cmd_rate(priv, out_cmd, ctl, hdr, sta_id, 0);
Zhu Yib481de92007-09-25 17:54:57 -07002114
Tomas Winkler19758be2008-03-12 16:58:51 -07002115 iwl_update_tx_stats(priv, fc, len);
2116
Tomas Winkler857485c2008-03-21 13:53:44 -07002117 scratch_phys = txcmd_phys + sizeof(struct iwl_cmd_header) +
Tomas Winkler87e4f7d2008-01-14 17:46:16 -08002118 offsetof(struct iwl4965_tx_cmd, scratch);
2119 out_cmd->cmd.tx.dram_lsb_ptr = cpu_to_le32(scratch_phys);
2120 out_cmd->cmd.tx.dram_msb_ptr = iwl_get_dma_hi_address(scratch_phys);
2121
Zhu Yib481de92007-09-25 17:54:57 -07002122 if (!ieee80211_get_morefrag(hdr)) {
2123 txq->need_update = 1;
2124 if (qc) {
2125 u8 tid = (u8)(le16_to_cpu(*qc) & 0xf);
2126 priv->stations[sta_id].tid[tid].seq_number = seq_number;
2127 }
2128 } else {
2129 wait_write_ptr = 1;
2130 txq->need_update = 0;
2131 }
2132
Tomas Winkler0a6857e2008-03-12 16:58:49 -07002133 iwl_print_hex_dump(IWL_DL_TX, out_cmd->cmd.payload,
Zhu Yib481de92007-09-25 17:54:57 -07002134 sizeof(out_cmd->cmd.tx));
2135
Tomas Winkler0a6857e2008-03-12 16:58:49 -07002136 iwl_print_hex_dump(IWL_DL_TX, (u8 *)out_cmd->cmd.tx.hdr,
Zhu Yib481de92007-09-25 17:54:57 -07002137 ieee80211_get_hdrlen(fc));
2138
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002139 /* Set up entry for this TFD in Tx byte-count array */
Tomas Winklere2a722e2008-04-14 21:16:10 -07002140 priv->cfg->ops->lib->txq_update_byte_cnt_tbl(priv, txq, len);
Zhu Yib481de92007-09-25 17:54:57 -07002141
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002142 /* Tell device the write index *just past* this latest filled TFD */
Tomas Winklerc54b6792008-03-06 17:36:53 -08002143 q->write_ptr = iwl_queue_inc_wrap(q->write_ptr, q->n_bd);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002144 rc = iwl4965_tx_queue_update_write_ptr(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -07002145 spin_unlock_irqrestore(&priv->lock, flags);
2146
2147 if (rc)
2148 return rc;
2149
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002150 if ((iwl4965_queue_space(q) < q->high_mark)
Zhu Yib481de92007-09-25 17:54:57 -07002151 && priv->mac80211_registered) {
2152 if (wait_write_ptr) {
2153 spin_lock_irqsave(&priv->lock, flags);
2154 txq->need_update = 1;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002155 iwl4965_tx_queue_update_write_ptr(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -07002156 spin_unlock_irqrestore(&priv->lock, flags);
2157 }
2158
2159 ieee80211_stop_queue(priv->hw, ctl->queue);
2160 }
2161
2162 return 0;
2163
2164drop_unlock:
2165 spin_unlock_irqrestore(&priv->lock, flags);
2166drop:
2167 return -1;
2168}
2169
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002170static void iwl4965_set_rate(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002171{
Johannes Berg8318d782008-01-24 19:38:38 +01002172 const struct ieee80211_supported_band *hw = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07002173 struct ieee80211_rate *rate;
2174 int i;
2175
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -07002176 hw = iwl_get_hw_mode(priv, priv->band);
Saleem Abdulrasoolc4ba9622007-11-18 23:59:08 -08002177 if (!hw) {
2178 IWL_ERROR("Failed to set rate: unable to get hw mode\n");
2179 return;
2180 }
Zhu Yib481de92007-09-25 17:54:57 -07002181
2182 priv->active_rate = 0;
2183 priv->active_rate_basic = 0;
2184
Johannes Berg8318d782008-01-24 19:38:38 +01002185 for (i = 0; i < hw->n_bitrates; i++) {
2186 rate = &(hw->bitrates[i]);
2187 if (rate->hw_value < IWL_RATE_COUNT)
2188 priv->active_rate |= (1 << rate->hw_value);
Zhu Yib481de92007-09-25 17:54:57 -07002189 }
2190
2191 IWL_DEBUG_RATE("Set active_rate = %0x, active_rate_basic = %0x\n",
2192 priv->active_rate, priv->active_rate_basic);
2193
2194 /*
2195 * If a basic rate is configured, then use it (adding IWL_RATE_1M_MASK)
2196 * otherwise set it to the default of all CCK rates and 6, 12, 24 for
2197 * OFDM
2198 */
2199 if (priv->active_rate_basic & IWL_CCK_BASIC_RATES_MASK)
2200 priv->staging_rxon.cck_basic_rates =
2201 ((priv->active_rate_basic &
2202 IWL_CCK_RATES_MASK) >> IWL_FIRST_CCK_RATE) & 0xF;
2203 else
2204 priv->staging_rxon.cck_basic_rates =
2205 (IWL_CCK_BASIC_RATES_MASK >> IWL_FIRST_CCK_RATE) & 0xF;
2206
2207 if (priv->active_rate_basic & IWL_OFDM_BASIC_RATES_MASK)
2208 priv->staging_rxon.ofdm_basic_rates =
2209 ((priv->active_rate_basic &
2210 (IWL_OFDM_BASIC_RATES_MASK | IWL_RATE_6M_MASK)) >>
2211 IWL_FIRST_OFDM_RATE) & 0xFF;
2212 else
2213 priv->staging_rxon.ofdm_basic_rates =
2214 (IWL_OFDM_BASIC_RATES_MASK >> IWL_FIRST_OFDM_RATE) & 0xFF;
2215}
2216
Mohamed Abbasad97edd2008-03-28 16:21:06 -07002217void iwl4965_radio_kill_sw(struct iwl_priv *priv, int disable_radio)
Zhu Yib481de92007-09-25 17:54:57 -07002218{
2219 unsigned long flags;
2220
2221 if (!!disable_radio == test_bit(STATUS_RF_KILL_SW, &priv->status))
2222 return;
2223
2224 IWL_DEBUG_RF_KILL("Manual SW RF KILL set to: RADIO %s\n",
2225 disable_radio ? "OFF" : "ON");
2226
2227 if (disable_radio) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002228 iwl4965_scan_cancel(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002229 /* FIXME: This is a workaround for AP */
2230 if (priv->iw_mode != IEEE80211_IF_TYPE_AP) {
2231 spin_lock_irqsave(&priv->lock, flags);
Tomas Winkler3395f6e2008-03-25 16:33:37 -07002232 iwl_write32(priv, CSR_UCODE_DRV_GP1_SET,
Zhu Yib481de92007-09-25 17:54:57 -07002233 CSR_UCODE_SW_BIT_RFKILL);
2234 spin_unlock_irqrestore(&priv->lock, flags);
Mohamed Abbasad97edd2008-03-28 16:21:06 -07002235 /* call the host command only if no hw rf-kill set */
Mohamed Abbas59003832008-04-15 16:01:46 -07002236 if (!test_bit(STATUS_RF_KILL_HW, &priv->status) &&
2237 iwl_is_ready(priv))
Mohamed Abbasad97edd2008-03-28 16:21:06 -07002238 iwl4965_send_card_state(priv,
2239 CARD_STATE_CMD_DISABLE,
2240 0);
Zhu Yib481de92007-09-25 17:54:57 -07002241 set_bit(STATUS_RF_KILL_SW, &priv->status);
Mohamed Abbasad97edd2008-03-28 16:21:06 -07002242
2243 /* make sure mac80211 stop sending Tx frame */
2244 if (priv->mac80211_registered)
2245 ieee80211_stop_queues(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07002246 }
2247 return;
2248 }
2249
2250 spin_lock_irqsave(&priv->lock, flags);
Tomas Winkler3395f6e2008-03-25 16:33:37 -07002251 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
Zhu Yib481de92007-09-25 17:54:57 -07002252
2253 clear_bit(STATUS_RF_KILL_SW, &priv->status);
2254 spin_unlock_irqrestore(&priv->lock, flags);
2255
2256 /* wake up ucode */
2257 msleep(10);
2258
2259 spin_lock_irqsave(&priv->lock, flags);
Tomas Winkler3395f6e2008-03-25 16:33:37 -07002260 iwl_read32(priv, CSR_UCODE_DRV_GP1);
2261 if (!iwl_grab_nic_access(priv))
2262 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002263 spin_unlock_irqrestore(&priv->lock, flags);
2264
2265 if (test_bit(STATUS_RF_KILL_HW, &priv->status)) {
2266 IWL_DEBUG_RF_KILL("Can not turn radio back on - "
2267 "disabled by HW switch\n");
2268 return;
2269 }
2270
2271 queue_work(priv->workqueue, &priv->restart);
2272 return;
2273}
2274
Zhu Yib481de92007-09-25 17:54:57 -07002275#define IWL_PACKET_RETRY_TIME HZ
2276
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002277int iwl4965_is_duplicate_packet(struct iwl_priv *priv, struct ieee80211_hdr *header)
Zhu Yib481de92007-09-25 17:54:57 -07002278{
2279 u16 sc = le16_to_cpu(header->seq_ctrl);
2280 u16 seq = (sc & IEEE80211_SCTL_SEQ) >> 4;
2281 u16 frag = sc & IEEE80211_SCTL_FRAG;
2282 u16 *last_seq, *last_frag;
2283 unsigned long *last_time;
2284
2285 switch (priv->iw_mode) {
2286 case IEEE80211_IF_TYPE_IBSS:{
2287 struct list_head *p;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002288 struct iwl4965_ibss_seq *entry = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07002289 u8 *mac = header->addr2;
2290 int index = mac[5] & (IWL_IBSS_MAC_HASH_SIZE - 1);
2291
2292 __list_for_each(p, &priv->ibss_mac_hash[index]) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002293 entry = list_entry(p, struct iwl4965_ibss_seq, list);
Zhu Yib481de92007-09-25 17:54:57 -07002294 if (!compare_ether_addr(entry->mac, mac))
2295 break;
2296 }
2297 if (p == &priv->ibss_mac_hash[index]) {
2298 entry = kzalloc(sizeof(*entry), GFP_ATOMIC);
2299 if (!entry) {
Ian Schrambc434dd2007-10-25 17:15:29 +08002300 IWL_ERROR("Cannot malloc new mac entry\n");
Zhu Yib481de92007-09-25 17:54:57 -07002301 return 0;
2302 }
2303 memcpy(entry->mac, mac, ETH_ALEN);
2304 entry->seq_num = seq;
2305 entry->frag_num = frag;
2306 entry->packet_time = jiffies;
Ian Schrambc434dd2007-10-25 17:15:29 +08002307 list_add(&entry->list, &priv->ibss_mac_hash[index]);
Zhu Yib481de92007-09-25 17:54:57 -07002308 return 0;
2309 }
2310 last_seq = &entry->seq_num;
2311 last_frag = &entry->frag_num;
2312 last_time = &entry->packet_time;
2313 break;
2314 }
2315 case IEEE80211_IF_TYPE_STA:
2316 last_seq = &priv->last_seq_num;
2317 last_frag = &priv->last_frag_num;
2318 last_time = &priv->last_packet_time;
2319 break;
2320 default:
2321 return 0;
2322 }
2323 if ((*last_seq == seq) &&
2324 time_after(*last_time + IWL_PACKET_RETRY_TIME, jiffies)) {
2325 if (*last_frag == frag)
2326 goto drop;
2327 if (*last_frag + 1 != frag)
2328 /* out-of-order fragment */
2329 goto drop;
2330 } else
2331 *last_seq = seq;
2332
2333 *last_frag = frag;
2334 *last_time = jiffies;
2335 return 0;
2336
2337 drop:
2338 return 1;
2339}
2340
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08002341#ifdef CONFIG_IWL4965_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -07002342
2343#include "iwl-spectrum.h"
2344
2345#define BEACON_TIME_MASK_LOW 0x00FFFFFF
2346#define BEACON_TIME_MASK_HIGH 0xFF000000
2347#define TIME_UNIT 1024
2348
2349/*
2350 * extended beacon time format
2351 * time in usec will be changed into a 32-bit value in 8:24 format
2352 * the high 1 byte is the beacon counts
2353 * the lower 3 bytes is the time in usec within one beacon interval
2354 */
2355
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002356static u32 iwl4965_usecs_to_beacons(u32 usec, u32 beacon_interval)
Zhu Yib481de92007-09-25 17:54:57 -07002357{
2358 u32 quot;
2359 u32 rem;
2360 u32 interval = beacon_interval * 1024;
2361
2362 if (!interval || !usec)
2363 return 0;
2364
2365 quot = (usec / interval) & (BEACON_TIME_MASK_HIGH >> 24);
2366 rem = (usec % interval) & BEACON_TIME_MASK_LOW;
2367
2368 return (quot << 24) + rem;
2369}
2370
2371/* base is usually what we get from ucode with each received frame,
2372 * the same as HW timer counter counting down
2373 */
2374
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002375static __le32 iwl4965_add_beacon_time(u32 base, u32 addon, u32 beacon_interval)
Zhu Yib481de92007-09-25 17:54:57 -07002376{
2377 u32 base_low = base & BEACON_TIME_MASK_LOW;
2378 u32 addon_low = addon & BEACON_TIME_MASK_LOW;
2379 u32 interval = beacon_interval * TIME_UNIT;
2380 u32 res = (base & BEACON_TIME_MASK_HIGH) +
2381 (addon & BEACON_TIME_MASK_HIGH);
2382
2383 if (base_low > addon_low)
2384 res += base_low - addon_low;
2385 else if (base_low < addon_low) {
2386 res += interval + base_low - addon_low;
2387 res += (1 << 24);
2388 } else
2389 res += (1 << 24);
2390
2391 return cpu_to_le32(res);
2392}
2393
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002394static int iwl4965_get_measurement(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07002395 struct ieee80211_measurement_params *params,
2396 u8 type)
2397{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002398 struct iwl4965_spectrum_cmd spectrum;
Tomas Winklerdb11d632008-05-05 10:22:33 +08002399 struct iwl_rx_packet *res;
Tomas Winkler857485c2008-03-21 13:53:44 -07002400 struct iwl_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -07002401 .id = REPLY_SPECTRUM_MEASUREMENT_CMD,
2402 .data = (void *)&spectrum,
2403 .meta.flags = CMD_WANT_SKB,
2404 };
2405 u32 add_time = le64_to_cpu(params->start_time);
2406 int rc;
2407 int spectrum_resp_status;
2408 int duration = le16_to_cpu(params->duration);
2409
Tomas Winkler3109ece2008-03-28 16:33:35 -07002410 if (iwl_is_associated(priv))
Zhu Yib481de92007-09-25 17:54:57 -07002411 add_time =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002412 iwl4965_usecs_to_beacons(
Zhu Yib481de92007-09-25 17:54:57 -07002413 le64_to_cpu(params->start_time) - priv->last_tsf,
2414 le16_to_cpu(priv->rxon_timing.beacon_interval));
2415
2416 memset(&spectrum, 0, sizeof(spectrum));
2417
2418 spectrum.channel_count = cpu_to_le16(1);
2419 spectrum.flags =
2420 RXON_FLG_TSF2HOST_MSK | RXON_FLG_ANT_A_MSK | RXON_FLG_DIS_DIV_MSK;
2421 spectrum.filter_flags = MEASUREMENT_FILTER_FLAG;
2422 cmd.len = sizeof(spectrum);
2423 spectrum.len = cpu_to_le16(cmd.len - sizeof(spectrum.len));
2424
Tomas Winkler3109ece2008-03-28 16:33:35 -07002425 if (iwl_is_associated(priv))
Zhu Yib481de92007-09-25 17:54:57 -07002426 spectrum.start_time =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002427 iwl4965_add_beacon_time(priv->last_beacon_time,
Zhu Yib481de92007-09-25 17:54:57 -07002428 add_time,
2429 le16_to_cpu(priv->rxon_timing.beacon_interval));
2430 else
2431 spectrum.start_time = 0;
2432
2433 spectrum.channels[0].duration = cpu_to_le32(duration * TIME_UNIT);
2434 spectrum.channels[0].channel = params->channel;
2435 spectrum.channels[0].type = type;
2436 if (priv->active_rxon.flags & RXON_FLG_BAND_24G_MSK)
2437 spectrum.flags |= RXON_FLG_BAND_24G_MSK |
2438 RXON_FLG_AUTO_DETECT_MSK | RXON_FLG_TGG_PROTECT_MSK;
2439
Tomas Winkler857485c2008-03-21 13:53:44 -07002440 rc = iwl_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -07002441 if (rc)
2442 return rc;
2443
Tomas Winklerdb11d632008-05-05 10:22:33 +08002444 res = (struct iwl_rx_packet *)cmd.meta.u.skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07002445 if (res->hdr.flags & IWL_CMD_FAILED_MSK) {
2446 IWL_ERROR("Bad return from REPLY_RX_ON_ASSOC command\n");
2447 rc = -EIO;
2448 }
2449
2450 spectrum_resp_status = le16_to_cpu(res->u.spectrum.status);
2451 switch (spectrum_resp_status) {
2452 case 0: /* Command will be handled */
2453 if (res->u.spectrum.id != 0xff) {
2454 IWL_DEBUG_INFO
2455 ("Replaced existing measurement: %d\n",
2456 res->u.spectrum.id);
2457 priv->measurement_status &= ~MEASUREMENT_READY;
2458 }
2459 priv->measurement_status |= MEASUREMENT_ACTIVE;
2460 rc = 0;
2461 break;
2462
2463 case 1: /* Command will not be handled */
2464 rc = -EAGAIN;
2465 break;
2466 }
2467
2468 dev_kfree_skb_any(cmd.meta.u.skb);
2469
2470 return rc;
2471}
2472#endif
2473
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002474static void iwl4965_txstatus_to_ieee(struct iwl_priv *priv,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002475 struct iwl4965_tx_info *tx_sta)
Zhu Yib481de92007-09-25 17:54:57 -07002476{
2477
2478 tx_sta->status.ack_signal = 0;
2479 tx_sta->status.excessive_retries = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002480
2481 if (in_interrupt())
2482 ieee80211_tx_status_irqsafe(priv->hw,
2483 tx_sta->skb[0], &(tx_sta->status));
2484 else
2485 ieee80211_tx_status(priv->hw,
2486 tx_sta->skb[0], &(tx_sta->status));
2487
2488 tx_sta->skb[0] = NULL;
2489}
2490
2491/**
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002492 * iwl4965_tx_queue_reclaim - Reclaim Tx queue entries already Tx'd
Zhu Yib481de92007-09-25 17:54:57 -07002493 *
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002494 * When FW advances 'R' index, all entries between old and new 'R' index
2495 * need to be reclaimed. As result, some free space forms. If there is
2496 * enough free space (> low mark), wake the stack that feeds us.
Zhu Yib481de92007-09-25 17:54:57 -07002497 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002498int iwl4965_tx_queue_reclaim(struct iwl_priv *priv, int txq_id, int index)
Zhu Yib481de92007-09-25 17:54:57 -07002499{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002500 struct iwl4965_tx_queue *txq = &priv->txq[txq_id];
2501 struct iwl4965_queue *q = &txq->q;
Zhu Yib481de92007-09-25 17:54:57 -07002502 int nfreed = 0;
2503
2504 if ((index >= q->n_bd) || (x2_queue_used(q, index) == 0)) {
2505 IWL_ERROR("Read index for DMA queue txq id (%d), index %d, "
2506 "is out of range [0-%d] %d %d.\n", txq_id,
Tomas Winklerfc4b6852007-10-25 17:15:24 +08002507 index, q->n_bd, q->write_ptr, q->read_ptr);
Zhu Yib481de92007-09-25 17:54:57 -07002508 return 0;
2509 }
2510
Tomas Winklerc54b6792008-03-06 17:36:53 -08002511 for (index = iwl_queue_inc_wrap(index, q->n_bd);
Tomas Winklerfc4b6852007-10-25 17:15:24 +08002512 q->read_ptr != index;
Tomas Winklerc54b6792008-03-06 17:36:53 -08002513 q->read_ptr = iwl_queue_inc_wrap(q->read_ptr, q->n_bd)) {
Zhu Yib481de92007-09-25 17:54:57 -07002514 if (txq_id != IWL_CMD_QUEUE_NUM) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002515 iwl4965_txstatus_to_ieee(priv,
Tomas Winklerfc4b6852007-10-25 17:15:24 +08002516 &(txq->txb[txq->q.read_ptr]));
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002517 iwl4965_hw_txq_free_tfd(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -07002518 } else if (nfreed > 1) {
2519 IWL_ERROR("HCMD skipped: index (%d) %d %d\n", index,
Tomas Winklerfc4b6852007-10-25 17:15:24 +08002520 q->write_ptr, q->read_ptr);
Zhu Yib481de92007-09-25 17:54:57 -07002521 queue_work(priv->workqueue, &priv->restart);
2522 }
2523 nfreed++;
2524 }
2525
Zhu Yib481de92007-09-25 17:54:57 -07002526 return nfreed;
2527}
2528
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002529static int iwl4965_is_tx_success(u32 status)
Zhu Yib481de92007-09-25 17:54:57 -07002530{
2531 status &= TX_STATUS_MSK;
2532 return (status == TX_STATUS_SUCCESS)
2533 || (status == TX_STATUS_DIRECT_DONE);
2534}
2535
2536/******************************************************************************
2537 *
2538 * Generic RX handler implementations
2539 *
2540 ******************************************************************************/
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08002541#ifdef CONFIG_IWL4965_HT
Zhu Yib481de92007-09-25 17:54:57 -07002542
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002543static inline int iwl4965_get_ra_sta_id(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07002544 struct ieee80211_hdr *hdr)
2545{
2546 if (priv->iw_mode == IEEE80211_IF_TYPE_STA)
2547 return IWL_AP_ID;
2548 else {
2549 u8 *da = ieee80211_get_DA(hdr);
Tomas Winkler947b13a2008-04-16 16:34:48 -07002550 return iwl_find_station(priv, da);
Zhu Yib481de92007-09-25 17:54:57 -07002551 }
2552}
2553
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002554static struct ieee80211_hdr *iwl4965_tx_queue_get_hdr(
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002555 struct iwl_priv *priv, int txq_id, int idx)
Zhu Yib481de92007-09-25 17:54:57 -07002556{
2557 if (priv->txq[txq_id].txb[idx].skb[0])
2558 return (struct ieee80211_hdr *)priv->txq[txq_id].
2559 txb[idx].skb[0]->data;
2560 return NULL;
2561}
2562
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002563static inline u32 iwl4965_get_scd_ssn(struct iwl4965_tx_resp *tx_resp)
Zhu Yib481de92007-09-25 17:54:57 -07002564{
2565 __le32 *scd_ssn = (__le32 *)((u32 *)&tx_resp->status +
2566 tx_resp->frame_count);
2567 return le32_to_cpu(*scd_ssn) & MAX_SN;
2568
2569}
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002570
2571/**
2572 * iwl4965_tx_status_reply_tx - Handle Tx rspnse for frames in aggregation queue
2573 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002574static int iwl4965_tx_status_reply_tx(struct iwl_priv *priv,
Tomas Winkler6def9762008-05-05 10:22:31 +08002575 struct iwl_ht_agg *agg,
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02002576 struct iwl4965_tx_resp_agg *tx_resp,
Zhu Yib481de92007-09-25 17:54:57 -07002577 u16 start_idx)
2578{
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02002579 u16 status;
2580 struct agg_tx_status *frame_status = &tx_resp->status;
Zhu Yib481de92007-09-25 17:54:57 -07002581 struct ieee80211_tx_status *tx_status = NULL;
2582 struct ieee80211_hdr *hdr = NULL;
2583 int i, sh;
2584 int txq_id, idx;
2585 u16 seq;
2586
2587 if (agg->wait_for_ba)
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002588 IWL_DEBUG_TX_REPLY("got tx response w/o block-ack\n");
Zhu Yib481de92007-09-25 17:54:57 -07002589
2590 agg->frame_count = tx_resp->frame_count;
2591 agg->start_idx = start_idx;
2592 agg->rate_n_flags = le32_to_cpu(tx_resp->rate_n_flags);
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02002593 agg->bitmap = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002594
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002595 /* # frames attempted by Tx command */
Zhu Yib481de92007-09-25 17:54:57 -07002596 if (agg->frame_count == 1) {
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002597 /* Only one frame was attempted; no block-ack will arrive */
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02002598 status = le16_to_cpu(frame_status[0].status);
2599 seq = le16_to_cpu(frame_status[0].sequence);
2600 idx = SEQ_TO_INDEX(seq);
2601 txq_id = SEQ_TO_QUEUE(seq);
Zhu Yib481de92007-09-25 17:54:57 -07002602
Zhu Yib481de92007-09-25 17:54:57 -07002603 /* FIXME: code repetition */
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02002604 IWL_DEBUG_TX_REPLY("FrameCnt = %d, StartIdx=%d idx=%d\n",
2605 agg->frame_count, agg->start_idx, idx);
Zhu Yib481de92007-09-25 17:54:57 -07002606
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02002607 tx_status = &(priv->txq[txq_id].txb[idx].status);
Zhu Yib481de92007-09-25 17:54:57 -07002608 tx_status->retry_count = tx_resp->failure_frame;
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02002609 tx_status->control.flags &= ~IEEE80211_TXCTL_AMPDU;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002610 tx_status->flags = iwl4965_is_tx_success(status)?
Zhu Yib481de92007-09-25 17:54:57 -07002611 IEEE80211_TX_STATUS_ACK : 0;
Ron Rindjunsky4c424e42008-03-04 18:09:27 -08002612 iwl4965_hwrate_to_tx_control(priv,
2613 le32_to_cpu(tx_resp->rate_n_flags),
2614 &tx_status->control);
Zhu Yib481de92007-09-25 17:54:57 -07002615 /* FIXME: code repetition end */
2616
2617 IWL_DEBUG_TX_REPLY("1 Frame 0x%x failure :%d\n",
2618 status & 0xff, tx_resp->failure_frame);
2619 IWL_DEBUG_TX_REPLY("Rate Info rate_n_flags=%x\n",
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002620 iwl4965_hw_get_rate_n_flags(tx_resp->rate_n_flags));
Zhu Yib481de92007-09-25 17:54:57 -07002621
2622 agg->wait_for_ba = 0;
2623 } else {
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002624 /* Two or more frames were attempted; expect block-ack */
Zhu Yib481de92007-09-25 17:54:57 -07002625 u64 bitmap = 0;
2626 int start = agg->start_idx;
2627
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002628 /* Construct bit-map of pending frames within Tx window */
Zhu Yib481de92007-09-25 17:54:57 -07002629 for (i = 0; i < agg->frame_count; i++) {
2630 u16 sc;
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02002631 status = le16_to_cpu(frame_status[i].status);
2632 seq = le16_to_cpu(frame_status[i].sequence);
Zhu Yib481de92007-09-25 17:54:57 -07002633 idx = SEQ_TO_INDEX(seq);
2634 txq_id = SEQ_TO_QUEUE(seq);
2635
2636 if (status & (AGG_TX_STATE_FEW_BYTES_MSK |
2637 AGG_TX_STATE_ABORT_MSK))
2638 continue;
2639
2640 IWL_DEBUG_TX_REPLY("FrameCnt = %d, txq_id=%d idx=%d\n",
2641 agg->frame_count, txq_id, idx);
2642
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002643 hdr = iwl4965_tx_queue_get_hdr(priv, txq_id, idx);
Zhu Yib481de92007-09-25 17:54:57 -07002644
2645 sc = le16_to_cpu(hdr->seq_ctrl);
2646 if (idx != (SEQ_TO_SN(sc) & 0xff)) {
2647 IWL_ERROR("BUG_ON idx doesn't match seq control"
2648 " idx=%d, seq_idx=%d, seq=%d\n",
2649 idx, SEQ_TO_SN(sc),
2650 hdr->seq_ctrl);
2651 return -1;
2652 }
2653
2654 IWL_DEBUG_TX_REPLY("AGG Frame i=%d idx %d seq=%d\n",
2655 i, idx, SEQ_TO_SN(sc));
2656
2657 sh = idx - start;
2658 if (sh > 64) {
2659 sh = (start - idx) + 0xff;
2660 bitmap = bitmap << sh;
2661 sh = 0;
2662 start = idx;
2663 } else if (sh < -64)
2664 sh = 0xff - (start - idx);
2665 else if (sh < 0) {
2666 sh = start - idx;
2667 start = idx;
2668 bitmap = bitmap << sh;
2669 sh = 0;
2670 }
2671 bitmap |= (1 << sh);
2672 IWL_DEBUG_TX_REPLY("start=%d bitmap=0x%x\n",
2673 start, (u32)(bitmap & 0xFFFFFFFF));
2674 }
2675
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02002676 agg->bitmap = bitmap;
Zhu Yib481de92007-09-25 17:54:57 -07002677 agg->start_idx = start;
2678 agg->rate_n_flags = le32_to_cpu(tx_resp->rate_n_flags);
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02002679 IWL_DEBUG_TX_REPLY("Frames %d start_idx=%d bitmap=0x%llx\n",
Zhu Yib481de92007-09-25 17:54:57 -07002680 agg->frame_count, agg->start_idx,
John W. Linville06501d22008-04-01 17:38:47 -04002681 (unsigned long long)agg->bitmap);
Zhu Yib481de92007-09-25 17:54:57 -07002682
2683 if (bitmap)
2684 agg->wait_for_ba = 1;
2685 }
2686 return 0;
2687}
2688#endif
Zhu Yib481de92007-09-25 17:54:57 -07002689
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002690/**
2691 * iwl4965_rx_reply_tx - Handle standard (non-aggregation) Tx response
2692 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002693static void iwl4965_rx_reply_tx(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +08002694 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07002695{
Tomas Winklerdb11d632008-05-05 10:22:33 +08002696 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07002697 u16 sequence = le16_to_cpu(pkt->hdr.sequence);
2698 int txq_id = SEQ_TO_QUEUE(sequence);
2699 int index = SEQ_TO_INDEX(sequence);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002700 struct iwl4965_tx_queue *txq = &priv->txq[txq_id];
Zhu Yib481de92007-09-25 17:54:57 -07002701 struct ieee80211_tx_status *tx_status;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002702 struct iwl4965_tx_resp *tx_resp = (void *)&pkt->u.raw[0];
Zhu Yib481de92007-09-25 17:54:57 -07002703 u32 status = le32_to_cpu(tx_resp->status);
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08002704#ifdef CONFIG_IWL4965_HT
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02002705 int tid = MAX_TID_COUNT, sta_id = IWL_INVALID_STATION;
2706 struct ieee80211_hdr *hdr;
2707 __le16 *qc;
Zhu Yib481de92007-09-25 17:54:57 -07002708#endif
2709
2710 if ((index >= txq->q.n_bd) || (x2_queue_used(&txq->q, index) == 0)) {
2711 IWL_ERROR("Read index for DMA queue txq_id (%d) index %d "
2712 "is out of range [0-%d] %d %d\n", txq_id,
Tomas Winklerfc4b6852007-10-25 17:15:24 +08002713 index, txq->q.n_bd, txq->q.write_ptr,
2714 txq->q.read_ptr);
Zhu Yib481de92007-09-25 17:54:57 -07002715 return;
2716 }
2717
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08002718#ifdef CONFIG_IWL4965_HT
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02002719 hdr = iwl4965_tx_queue_get_hdr(priv, txq_id, index);
2720 qc = ieee80211_get_qos_ctrl(hdr);
Zhu Yib481de92007-09-25 17:54:57 -07002721
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02002722 if (qc)
Zhu Yib481de92007-09-25 17:54:57 -07002723 tid = le16_to_cpu(*qc) & 0xf;
2724
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02002725 sta_id = iwl4965_get_ra_sta_id(priv, hdr);
2726 if (txq->sched_retry && unlikely(sta_id == IWL_INVALID_STATION)) {
2727 IWL_ERROR("Station not known\n");
2728 return;
2729 }
2730
2731 if (txq->sched_retry) {
2732 const u32 scd_ssn = iwl4965_get_scd_ssn(tx_resp);
Tomas Winkler6def9762008-05-05 10:22:31 +08002733 struct iwl_ht_agg *agg = NULL;
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02002734
2735 if (!qc)
Zhu Yib481de92007-09-25 17:54:57 -07002736 return;
Zhu Yib481de92007-09-25 17:54:57 -07002737
2738 agg = &priv->stations[sta_id].tid[tid].agg;
2739
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02002740 iwl4965_tx_status_reply_tx(priv, agg,
2741 (struct iwl4965_tx_resp_agg *)tx_resp, index);
Zhu Yib481de92007-09-25 17:54:57 -07002742
2743 if ((tx_resp->frame_count == 1) &&
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002744 !iwl4965_is_tx_success(status)) {
Zhu Yib481de92007-09-25 17:54:57 -07002745 /* TODO: send BAR */
2746 }
2747
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02002748 if (txq->q.read_ptr != (scd_ssn & 0xff)) {
Ron Rindjunsky0d0b2c12008-05-04 14:48:18 +03002749 int freed, ampdu_q;
Tomas Winklerc54b6792008-03-06 17:36:53 -08002750 index = iwl_queue_dec_wrap(scd_ssn & 0xff, txq->q.n_bd);
Zhu Yib481de92007-09-25 17:54:57 -07002751 IWL_DEBUG_TX_REPLY("Retry scheduler reclaim scd_ssn "
2752 "%d index %d\n", scd_ssn , index);
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02002753 freed = iwl4965_tx_queue_reclaim(priv, txq_id, index);
2754 priv->stations[sta_id].tid[tid].tfds_in_queue -= freed;
2755
2756 if (iwl4965_queue_space(&txq->q) > txq->q.low_mark &&
2757 txq_id >= 0 && priv->mac80211_registered &&
Ron Rindjunsky0d0b2c12008-05-04 14:48:18 +03002758 agg->state != IWL_EMPTYING_HW_QUEUE_DELBA) {
2759 /* calculate mac80211 ampdu sw queue to wake */
2760 ampdu_q = txq_id - IWL_BACK_QUEUE_FIRST_ID +
2761 priv->hw->queues;
2762 if (agg->state == IWL_AGG_OFF)
2763 ieee80211_wake_queue(priv->hw, txq_id);
2764 else
2765 ieee80211_wake_queue(priv->hw, ampdu_q);
2766 }
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02002767 iwl4965_check_empty_hw_queue(priv, sta_id, tid, txq_id);
Zhu Yib481de92007-09-25 17:54:57 -07002768 }
2769 } else {
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08002770#endif /* CONFIG_IWL4965_HT */
Tomas Winklerfc4b6852007-10-25 17:15:24 +08002771 tx_status = &(txq->txb[txq->q.read_ptr].status);
Zhu Yib481de92007-09-25 17:54:57 -07002772
2773 tx_status->retry_count = tx_resp->failure_frame;
Zhu Yib481de92007-09-25 17:54:57 -07002774 tx_status->flags =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002775 iwl4965_is_tx_success(status) ? IEEE80211_TX_STATUS_ACK : 0;
Ron Rindjunsky4c424e42008-03-04 18:09:27 -08002776 iwl4965_hwrate_to_tx_control(priv, le32_to_cpu(tx_resp->rate_n_flags),
2777 &tx_status->control);
Zhu Yib481de92007-09-25 17:54:57 -07002778
Zhu Yib481de92007-09-25 17:54:57 -07002779 IWL_DEBUG_TX("Tx queue %d Status %s (0x%08x) rate_n_flags 0x%x "
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002780 "retries %d\n", txq_id, iwl4965_get_tx_fail_reason(status),
Zhu Yib481de92007-09-25 17:54:57 -07002781 status, le32_to_cpu(tx_resp->rate_n_flags),
2782 tx_resp->failure_frame);
2783
2784 IWL_DEBUG_TX_REPLY("Tx queue reclaim %d\n", index);
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02002785 if (index != -1) {
2786 int freed = iwl4965_tx_queue_reclaim(priv, txq_id, index);
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08002787#ifdef CONFIG_IWL4965_HT
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02002788 if (tid != MAX_TID_COUNT)
2789 priv->stations[sta_id].tid[tid].tfds_in_queue -= freed;
2790 if (iwl4965_queue_space(&txq->q) > txq->q.low_mark &&
Ron Rindjunsky0d0b2c12008-05-04 14:48:18 +03002791 (txq_id >= 0) && priv->mac80211_registered)
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02002792 ieee80211_wake_queue(priv->hw, txq_id);
2793 if (tid != MAX_TID_COUNT)
2794 iwl4965_check_empty_hw_queue(priv, sta_id, tid, txq_id);
2795#endif
Zhu Yib481de92007-09-25 17:54:57 -07002796 }
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02002797#ifdef CONFIG_IWL4965_HT
2798 }
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08002799#endif /* CONFIG_IWL4965_HT */
Zhu Yib481de92007-09-25 17:54:57 -07002800
2801 if (iwl_check_bits(status, TX_ABORT_REQUIRED_MSK))
2802 IWL_ERROR("TODO: Implement Tx ABORT REQUIRED!!!\n");
2803}
2804
2805
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002806static void iwl4965_rx_reply_alive(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +08002807 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07002808{
Tomas Winklerdb11d632008-05-05 10:22:33 +08002809 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002810 struct iwl4965_alive_resp *palive;
Zhu Yib481de92007-09-25 17:54:57 -07002811 struct delayed_work *pwork;
2812
2813 palive = &pkt->u.alive_frame;
2814
2815 IWL_DEBUG_INFO("Alive ucode status 0x%08X revision "
2816 "0x%01X 0x%01X\n",
2817 palive->is_valid, palive->ver_type,
2818 palive->ver_subtype);
2819
2820 if (palive->ver_subtype == INITIALIZE_SUBTYPE) {
2821 IWL_DEBUG_INFO("Initialization Alive received.\n");
2822 memcpy(&priv->card_alive_init,
2823 &pkt->u.alive_frame,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002824 sizeof(struct iwl4965_init_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07002825 pwork = &priv->init_alive_start;
2826 } else {
2827 IWL_DEBUG_INFO("Runtime Alive received.\n");
2828 memcpy(&priv->card_alive, &pkt->u.alive_frame,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002829 sizeof(struct iwl4965_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07002830 pwork = &priv->alive_start;
2831 }
2832
2833 /* We delay the ALIVE response by 5ms to
2834 * give the HW RF Kill time to activate... */
2835 if (palive->is_valid == UCODE_VALID_OK)
2836 queue_delayed_work(priv->workqueue, pwork,
2837 msecs_to_jiffies(5));
2838 else
2839 IWL_WARNING("uCode did not respond OK.\n");
2840}
2841
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002842static void iwl4965_rx_reply_add_sta(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +08002843 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07002844{
Tomas Winklerdb11d632008-05-05 10:22:33 +08002845 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07002846
2847 IWL_DEBUG_RX("Received REPLY_ADD_STA: 0x%02X\n", pkt->u.status);
2848 return;
2849}
2850
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002851static void iwl4965_rx_reply_error(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +08002852 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07002853{
Tomas Winklerdb11d632008-05-05 10:22:33 +08002854 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07002855
2856 IWL_ERROR("Error Reply type 0x%08X cmd %s (0x%02X) "
2857 "seq 0x%04X ser 0x%08X\n",
2858 le32_to_cpu(pkt->u.err_resp.error_type),
2859 get_cmd_string(pkt->u.err_resp.cmd_id),
2860 pkt->u.err_resp.cmd_id,
2861 le16_to_cpu(pkt->u.err_resp.bad_cmd_seq_num),
2862 le32_to_cpu(pkt->u.err_resp.error_info));
2863}
2864
2865#define TX_STATUS_ENTRY(x) case TX_STATUS_FAIL_ ## x: return #x
2866
Tomas Winklera55360e2008-05-05 10:22:28 +08002867static void iwl4965_rx_csa(struct iwl_priv *priv, struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07002868{
Tomas Winklerdb11d632008-05-05 10:22:33 +08002869 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002870 struct iwl4965_rxon_cmd *rxon = (void *)&priv->active_rxon;
2871 struct iwl4965_csa_notification *csa = &(pkt->u.csa_notif);
Zhu Yib481de92007-09-25 17:54:57 -07002872 IWL_DEBUG_11H("CSA notif: channel %d, status %d\n",
2873 le16_to_cpu(csa->channel), le32_to_cpu(csa->status));
2874 rxon->channel = csa->channel;
2875 priv->staging_rxon.channel = csa->channel;
2876}
2877
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002878static void iwl4965_rx_spectrum_measure_notif(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +08002879 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07002880{
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08002881#ifdef CONFIG_IWL4965_SPECTRUM_MEASUREMENT
Tomas Winklerdb11d632008-05-05 10:22:33 +08002882 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002883 struct iwl4965_spectrum_notification *report = &(pkt->u.spectrum_notif);
Zhu Yib481de92007-09-25 17:54:57 -07002884
2885 if (!report->state) {
2886 IWL_DEBUG(IWL_DL_11H | IWL_DL_INFO,
2887 "Spectrum Measure Notification: Start\n");
2888 return;
2889 }
2890
2891 memcpy(&priv->measure_report, report, sizeof(*report));
2892 priv->measurement_status |= MEASUREMENT_READY;
2893#endif
2894}
2895
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002896static void iwl4965_rx_pm_sleep_notif(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +08002897 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07002898{
Tomas Winkler0a6857e2008-03-12 16:58:49 -07002899#ifdef CONFIG_IWLWIFI_DEBUG
Tomas Winklerdb11d632008-05-05 10:22:33 +08002900 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002901 struct iwl4965_sleep_notification *sleep = &(pkt->u.sleep_notif);
Zhu Yib481de92007-09-25 17:54:57 -07002902 IWL_DEBUG_RX("sleep mode: %d, src: %d\n",
2903 sleep->pm_sleep_mode, sleep->pm_wakeup_src);
2904#endif
2905}
2906
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002907static void iwl4965_rx_pm_debug_statistics_notif(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +08002908 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07002909{
Tomas Winklerdb11d632008-05-05 10:22:33 +08002910 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07002911 IWL_DEBUG_RADIO("Dumping %d bytes of unhandled "
2912 "notification for %s:\n",
2913 le32_to_cpu(pkt->len), get_cmd_string(pkt->hdr.cmd));
Tomas Winkler0a6857e2008-03-12 16:58:49 -07002914 iwl_print_hex_dump(IWL_DL_RADIO, pkt->u.raw, le32_to_cpu(pkt->len));
Zhu Yib481de92007-09-25 17:54:57 -07002915}
2916
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002917static void iwl4965_bg_beacon_update(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -07002918{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002919 struct iwl_priv *priv =
2920 container_of(work, struct iwl_priv, beacon_update);
Zhu Yib481de92007-09-25 17:54:57 -07002921 struct sk_buff *beacon;
2922
2923 /* Pull updated AP beacon from mac80211. will fail if not in AP mode */
Johannes Berg32bfd352007-12-19 01:31:26 +01002924 beacon = ieee80211_beacon_get(priv->hw, priv->vif, NULL);
Zhu Yib481de92007-09-25 17:54:57 -07002925
2926 if (!beacon) {
2927 IWL_ERROR("update beacon failed\n");
2928 return;
2929 }
2930
2931 mutex_lock(&priv->mutex);
2932 /* new beacon skb is allocated every time; dispose previous.*/
2933 if (priv->ibss_beacon)
2934 dev_kfree_skb(priv->ibss_beacon);
2935
2936 priv->ibss_beacon = beacon;
2937 mutex_unlock(&priv->mutex);
2938
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002939 iwl4965_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002940}
2941
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002942static void iwl4965_rx_beacon_notif(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +08002943 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07002944{
Tomas Winkler0a6857e2008-03-12 16:58:49 -07002945#ifdef CONFIG_IWLWIFI_DEBUG
Tomas Winklerdb11d632008-05-05 10:22:33 +08002946 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002947 struct iwl4965_beacon_notif *beacon = &(pkt->u.beacon_status);
2948 u8 rate = iwl4965_hw_get_rate(beacon->beacon_notify_hdr.rate_n_flags);
Zhu Yib481de92007-09-25 17:54:57 -07002949
2950 IWL_DEBUG_RX("beacon status %x retries %d iss %d "
2951 "tsf %d %d rate %d\n",
2952 le32_to_cpu(beacon->beacon_notify_hdr.status) & TX_STATUS_MSK,
2953 beacon->beacon_notify_hdr.failure_frame,
2954 le32_to_cpu(beacon->ibss_mgr_status),
2955 le32_to_cpu(beacon->high_tsf),
2956 le32_to_cpu(beacon->low_tsf), rate);
2957#endif
2958
2959 if ((priv->iw_mode == IEEE80211_IF_TYPE_AP) &&
2960 (!test_bit(STATUS_EXIT_PENDING, &priv->status)))
2961 queue_work(priv->workqueue, &priv->beacon_update);
2962}
2963
2964/* Service response to REPLY_SCAN_CMD (0x80) */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002965static void iwl4965_rx_reply_scan(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +08002966 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07002967{
Tomas Winkler0a6857e2008-03-12 16:58:49 -07002968#ifdef CONFIG_IWLWIFI_DEBUG
Tomas Winklerdb11d632008-05-05 10:22:33 +08002969 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002970 struct iwl4965_scanreq_notification *notif =
2971 (struct iwl4965_scanreq_notification *)pkt->u.raw;
Zhu Yib481de92007-09-25 17:54:57 -07002972
2973 IWL_DEBUG_RX("Scan request status = 0x%x\n", notif->status);
2974#endif
2975}
2976
2977/* Service SCAN_START_NOTIFICATION (0x82) */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002978static void iwl4965_rx_scan_start_notif(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +08002979 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07002980{
Tomas Winklerdb11d632008-05-05 10:22:33 +08002981 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002982 struct iwl4965_scanstart_notification *notif =
2983 (struct iwl4965_scanstart_notification *)pkt->u.raw;
Zhu Yib481de92007-09-25 17:54:57 -07002984 priv->scan_start_tsf = le32_to_cpu(notif->tsf_low);
2985 IWL_DEBUG_SCAN("Scan start: "
2986 "%d [802.11%s] "
2987 "(TSF: 0x%08X:%08X) - %d (beacon timer %u)\n",
2988 notif->channel,
2989 notif->band ? "bg" : "a",
2990 notif->tsf_high,
2991 notif->tsf_low, notif->status, notif->beacon_timer);
2992}
2993
2994/* Service SCAN_RESULTS_NOTIFICATION (0x83) */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002995static void iwl4965_rx_scan_results_notif(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +08002996 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07002997{
Tomas Winklerdb11d632008-05-05 10:22:33 +08002998 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002999 struct iwl4965_scanresults_notification *notif =
3000 (struct iwl4965_scanresults_notification *)pkt->u.raw;
Zhu Yib481de92007-09-25 17:54:57 -07003001
3002 IWL_DEBUG_SCAN("Scan ch.res: "
3003 "%d [802.11%s] "
3004 "(TSF: 0x%08X:%08X) - %d "
3005 "elapsed=%lu usec (%dms since last)\n",
3006 notif->channel,
3007 notif->band ? "bg" : "a",
3008 le32_to_cpu(notif->tsf_high),
3009 le32_to_cpu(notif->tsf_low),
3010 le32_to_cpu(notif->statistics[0]),
3011 le32_to_cpu(notif->tsf_low) - priv->scan_start_tsf,
3012 jiffies_to_msecs(elapsed_jiffies
3013 (priv->last_scan_jiffies, jiffies)));
3014
3015 priv->last_scan_jiffies = jiffies;
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08003016 priv->next_scan_jiffies = 0;
Zhu Yib481de92007-09-25 17:54:57 -07003017}
3018
3019/* Service SCAN_COMPLETE_NOTIFICATION (0x84) */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003020static void iwl4965_rx_scan_complete_notif(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +08003021 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003022{
Tomas Winklerdb11d632008-05-05 10:22:33 +08003023 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003024 struct iwl4965_scancomplete_notification *scan_notif = (void *)pkt->u.raw;
Zhu Yib481de92007-09-25 17:54:57 -07003025
3026 IWL_DEBUG_SCAN("Scan complete: %d channels (TSF 0x%08X:%08X) - %d\n",
3027 scan_notif->scanned_channels,
3028 scan_notif->tsf_low,
3029 scan_notif->tsf_high, scan_notif->status);
3030
3031 /* The HW is no longer scanning */
3032 clear_bit(STATUS_SCAN_HW, &priv->status);
3033
3034 /* The scan completion notification came in, so kill that timer... */
3035 cancel_delayed_work(&priv->scan_check);
3036
3037 IWL_DEBUG_INFO("Scan pass on %sGHz took %dms\n",
3038 (priv->scan_bands == 2) ? "2.4" : "5.2",
3039 jiffies_to_msecs(elapsed_jiffies
3040 (priv->scan_pass_start, jiffies)));
3041
3042 /* Remove this scanned band from the list
3043 * of pending bands to scan */
3044 priv->scan_bands--;
3045
3046 /* If a request to abort was given, or the scan did not succeed
3047 * then we reset the scan state machine and terminate,
3048 * re-queuing another scan if one has been requested */
3049 if (test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
3050 IWL_DEBUG_INFO("Aborted scan completed.\n");
3051 clear_bit(STATUS_SCAN_ABORTING, &priv->status);
3052 } else {
3053 /* If there are more bands on this scan pass reschedule */
3054 if (priv->scan_bands > 0)
3055 goto reschedule;
3056 }
3057
3058 priv->last_scan_jiffies = jiffies;
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08003059 priv->next_scan_jiffies = 0;
Zhu Yib481de92007-09-25 17:54:57 -07003060 IWL_DEBUG_INFO("Setting scan to off\n");
3061
3062 clear_bit(STATUS_SCANNING, &priv->status);
3063
3064 IWL_DEBUG_INFO("Scan took %dms\n",
3065 jiffies_to_msecs(elapsed_jiffies(priv->scan_start, jiffies)));
3066
3067 queue_work(priv->workqueue, &priv->scan_completed);
3068
3069 return;
3070
3071reschedule:
3072 priv->scan_pass_start = jiffies;
3073 queue_work(priv->workqueue, &priv->request_scan);
3074}
3075
3076/* Handle notification from uCode that card's power state is changing
3077 * due to software, hardware, or critical temperature RFKILL */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003078static void iwl4965_rx_card_state_notif(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +08003079 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003080{
Tomas Winklerdb11d632008-05-05 10:22:33 +08003081 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07003082 u32 flags = le32_to_cpu(pkt->u.card_state_notif.flags);
3083 unsigned long status = priv->status;
3084
3085 IWL_DEBUG_RF_KILL("Card state received: HW:%s SW:%s\n",
3086 (flags & HW_CARD_DISABLED) ? "Kill" : "On",
3087 (flags & SW_CARD_DISABLED) ? "Kill" : "On");
3088
3089 if (flags & (SW_CARD_DISABLED | HW_CARD_DISABLED |
3090 RF_CARD_DISABLED)) {
3091
Tomas Winkler3395f6e2008-03-25 16:33:37 -07003092 iwl_write32(priv, CSR_UCODE_DRV_GP1_SET,
Zhu Yib481de92007-09-25 17:54:57 -07003093 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
3094
Tomas Winkler3395f6e2008-03-25 16:33:37 -07003095 if (!iwl_grab_nic_access(priv)) {
3096 iwl_write_direct32(
Zhu Yib481de92007-09-25 17:54:57 -07003097 priv, HBUS_TARG_MBX_C,
3098 HBUS_TARG_MBX_C_REG_BIT_CMD_BLOCKED);
3099
Tomas Winkler3395f6e2008-03-25 16:33:37 -07003100 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003101 }
3102
3103 if (!(flags & RXON_CARD_DISABLED)) {
Tomas Winkler3395f6e2008-03-25 16:33:37 -07003104 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR,
Zhu Yib481de92007-09-25 17:54:57 -07003105 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
Tomas Winkler3395f6e2008-03-25 16:33:37 -07003106 if (!iwl_grab_nic_access(priv)) {
3107 iwl_write_direct32(
Zhu Yib481de92007-09-25 17:54:57 -07003108 priv, HBUS_TARG_MBX_C,
3109 HBUS_TARG_MBX_C_REG_BIT_CMD_BLOCKED);
3110
Tomas Winkler3395f6e2008-03-25 16:33:37 -07003111 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003112 }
3113 }
3114
3115 if (flags & RF_CARD_DISABLED) {
Tomas Winkler3395f6e2008-03-25 16:33:37 -07003116 iwl_write32(priv, CSR_UCODE_DRV_GP1_SET,
Zhu Yib481de92007-09-25 17:54:57 -07003117 CSR_UCODE_DRV_GP1_REG_BIT_CT_KILL_EXIT);
Tomas Winkler3395f6e2008-03-25 16:33:37 -07003118 iwl_read32(priv, CSR_UCODE_DRV_GP1);
3119 if (!iwl_grab_nic_access(priv))
3120 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003121 }
3122 }
3123
3124 if (flags & HW_CARD_DISABLED)
3125 set_bit(STATUS_RF_KILL_HW, &priv->status);
3126 else
3127 clear_bit(STATUS_RF_KILL_HW, &priv->status);
3128
3129
3130 if (flags & SW_CARD_DISABLED)
3131 set_bit(STATUS_RF_KILL_SW, &priv->status);
3132 else
3133 clear_bit(STATUS_RF_KILL_SW, &priv->status);
3134
3135 if (!(flags & RXON_CARD_DISABLED))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003136 iwl4965_scan_cancel(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003137
3138 if ((test_bit(STATUS_RF_KILL_HW, &status) !=
3139 test_bit(STATUS_RF_KILL_HW, &priv->status)) ||
3140 (test_bit(STATUS_RF_KILL_SW, &status) !=
3141 test_bit(STATUS_RF_KILL_SW, &priv->status)))
3142 queue_work(priv->workqueue, &priv->rf_kill);
3143 else
3144 wake_up_interruptible(&priv->wait_command_queue);
3145}
3146
3147/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003148 * iwl4965_setup_rx_handlers - Initialize Rx handler callbacks
Zhu Yib481de92007-09-25 17:54:57 -07003149 *
3150 * Setup the RX handlers for each of the reply types sent from the uCode
3151 * to the host.
3152 *
3153 * This function chains into the hardware specific files for them to setup
3154 * any hardware specific handlers as well.
3155 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003156static void iwl4965_setup_rx_handlers(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003157{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003158 priv->rx_handlers[REPLY_ALIVE] = iwl4965_rx_reply_alive;
3159 priv->rx_handlers[REPLY_ADD_STA] = iwl4965_rx_reply_add_sta;
3160 priv->rx_handlers[REPLY_ERROR] = iwl4965_rx_reply_error;
3161 priv->rx_handlers[CHANNEL_SWITCH_NOTIFICATION] = iwl4965_rx_csa;
Zhu Yib481de92007-09-25 17:54:57 -07003162 priv->rx_handlers[SPECTRUM_MEASURE_NOTIFICATION] =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003163 iwl4965_rx_spectrum_measure_notif;
3164 priv->rx_handlers[PM_SLEEP_NOTIFICATION] = iwl4965_rx_pm_sleep_notif;
Zhu Yib481de92007-09-25 17:54:57 -07003165 priv->rx_handlers[PM_DEBUG_STATISTIC_NOTIFIC] =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003166 iwl4965_rx_pm_debug_statistics_notif;
3167 priv->rx_handlers[BEACON_NOTIFICATION] = iwl4965_rx_beacon_notif;
Zhu Yib481de92007-09-25 17:54:57 -07003168
Ben Cahill9fbab512007-11-29 11:09:47 +08003169 /*
3170 * The same handler is used for both the REPLY to a discrete
3171 * statistics request from the host as well as for the periodic
3172 * statistics notifications (after received beacons) from the uCode.
Zhu Yib481de92007-09-25 17:54:57 -07003173 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003174 priv->rx_handlers[REPLY_STATISTICS_CMD] = iwl4965_hw_rx_statistics;
3175 priv->rx_handlers[STATISTICS_NOTIFICATION] = iwl4965_hw_rx_statistics;
Zhu Yib481de92007-09-25 17:54:57 -07003176
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003177 priv->rx_handlers[REPLY_SCAN_CMD] = iwl4965_rx_reply_scan;
3178 priv->rx_handlers[SCAN_START_NOTIFICATION] = iwl4965_rx_scan_start_notif;
Zhu Yib481de92007-09-25 17:54:57 -07003179 priv->rx_handlers[SCAN_RESULTS_NOTIFICATION] =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003180 iwl4965_rx_scan_results_notif;
Zhu Yib481de92007-09-25 17:54:57 -07003181 priv->rx_handlers[SCAN_COMPLETE_NOTIFICATION] =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003182 iwl4965_rx_scan_complete_notif;
3183 priv->rx_handlers[CARD_STATE_NOTIFICATION] = iwl4965_rx_card_state_notif;
3184 priv->rx_handlers[REPLY_TX] = iwl4965_rx_reply_tx;
Zhu Yib481de92007-09-25 17:54:57 -07003185
Ben Cahill9fbab512007-11-29 11:09:47 +08003186 /* Set up hardware specific Rx handlers */
Emmanuel Grumbachd4789ef2008-04-24 11:55:20 -07003187 priv->cfg->ops->lib->rx_handler_setup(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003188}
3189
3190/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003191 * iwl4965_tx_cmd_complete - Pull unused buffers off the queue and reclaim them
Zhu Yib481de92007-09-25 17:54:57 -07003192 * @rxb: Rx buffer to reclaim
3193 *
3194 * If an Rx buffer has an async callback associated with it the callback
3195 * will be executed. The attached skb (if present) will only be freed
3196 * if the callback returns 1
3197 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003198static void iwl4965_tx_cmd_complete(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +08003199 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003200{
Tomas Winklerdb11d632008-05-05 10:22:33 +08003201 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07003202 u16 sequence = le16_to_cpu(pkt->hdr.sequence);
3203 int txq_id = SEQ_TO_QUEUE(sequence);
3204 int index = SEQ_TO_INDEX(sequence);
3205 int huge = sequence & SEQ_HUGE_FRAME;
3206 int cmd_index;
Tomas Winkler857485c2008-03-21 13:53:44 -07003207 struct iwl_cmd *cmd;
Zhu Yib481de92007-09-25 17:54:57 -07003208
3209 /* If a Tx command is being handled and it isn't in the actual
3210 * command queue then there a command routing bug has been introduced
3211 * in the queue management code. */
3212 if (txq_id != IWL_CMD_QUEUE_NUM)
3213 IWL_ERROR("Error wrong command queue %d command id 0x%X\n",
3214 txq_id, pkt->hdr.cmd);
3215 BUG_ON(txq_id != IWL_CMD_QUEUE_NUM);
3216
3217 cmd_index = get_cmd_index(&priv->txq[IWL_CMD_QUEUE_NUM].q, index, huge);
3218 cmd = &priv->txq[IWL_CMD_QUEUE_NUM].cmd[cmd_index];
3219
3220 /* Input error checking is done when commands are added to queue. */
3221 if (cmd->meta.flags & CMD_WANT_SKB) {
3222 cmd->meta.source->u.skb = rxb->skb;
3223 rxb->skb = NULL;
3224 } else if (cmd->meta.u.callback &&
3225 !cmd->meta.u.callback(priv, cmd, rxb->skb))
3226 rxb->skb = NULL;
3227
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003228 iwl4965_tx_queue_reclaim(priv, txq_id, index);
Zhu Yib481de92007-09-25 17:54:57 -07003229
3230 if (!(cmd->meta.flags & CMD_ASYNC)) {
3231 clear_bit(STATUS_HCMD_ACTIVE, &priv->status);
3232 wake_up_interruptible(&priv->wait_command_queue);
3233 }
3234}
3235
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003236/*
3237 * this should be called while priv->lock is locked
3238*/
Tomas Winklera55360e2008-05-05 10:22:28 +08003239static void __iwl_rx_replenish(struct iwl_priv *priv)
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003240{
Tomas Winklera55360e2008-05-05 10:22:28 +08003241 iwl_rx_allocate(priv);
3242 iwl_rx_queue_restock(priv);
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003243}
3244
3245
Zhu Yib481de92007-09-25 17:54:57 -07003246/**
Tomas Winklera55360e2008-05-05 10:22:28 +08003247 * iwl_rx_handle - Main entry function for receiving responses from uCode
Zhu Yib481de92007-09-25 17:54:57 -07003248 *
3249 * Uses the priv->rx_handlers callback function array to invoke
3250 * the appropriate handlers, including command responses,
3251 * frame-received notifications, and other notifications.
3252 */
Tomas Winklera55360e2008-05-05 10:22:28 +08003253void iwl_rx_handle(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003254{
Tomas Winklera55360e2008-05-05 10:22:28 +08003255 struct iwl_rx_mem_buffer *rxb;
Tomas Winklerdb11d632008-05-05 10:22:33 +08003256 struct iwl_rx_packet *pkt;
Tomas Winklera55360e2008-05-05 10:22:28 +08003257 struct iwl_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07003258 u32 r, i;
3259 int reclaim;
3260 unsigned long flags;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003261 u8 fill_rx = 0;
Mohamed Abbasd68ab682008-02-07 13:16:33 -08003262 u32 count = 8;
Zhu Yib481de92007-09-25 17:54:57 -07003263
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003264 /* uCode's read index (stored in shared DRAM) indicates the last Rx
3265 * buffer that the driver may process (last buffer filled by ucode). */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003266 r = iwl4965_hw_get_rx_read(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003267 i = rxq->read;
3268
3269 /* Rx interrupt, but nothing sent from uCode */
3270 if (i == r)
3271 IWL_DEBUG(IWL_DL_RX | IWL_DL_ISR, "r = %d, i = %d\n", r, i);
3272
Tomas Winklera55360e2008-05-05 10:22:28 +08003273 if (iwl_rx_queue_space(rxq) > (RX_QUEUE_SIZE / 2))
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003274 fill_rx = 1;
3275
Zhu Yib481de92007-09-25 17:54:57 -07003276 while (i != r) {
3277 rxb = rxq->queue[i];
3278
Ben Cahill9fbab512007-11-29 11:09:47 +08003279 /* If an RXB doesn't have a Rx queue slot associated with it,
Zhu Yib481de92007-09-25 17:54:57 -07003280 * then a bug has been introduced in the queue refilling
3281 * routines -- catch it here */
3282 BUG_ON(rxb == NULL);
3283
3284 rxq->queue[i] = NULL;
3285
3286 pci_dma_sync_single_for_cpu(priv->pci_dev, rxb->dma_addr,
Tomas Winkler5425e492008-04-15 16:01:38 -07003287 priv->hw_params.rx_buf_size,
Zhu Yib481de92007-09-25 17:54:57 -07003288 PCI_DMA_FROMDEVICE);
Tomas Winklerdb11d632008-05-05 10:22:33 +08003289 pkt = (struct iwl_rx_packet *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07003290
3291 /* Reclaim a command buffer only if this packet is a response
3292 * to a (driver-originated) command.
3293 * If the packet (e.g. Rx frame) originated from uCode,
3294 * there is no command buffer to reclaim.
3295 * Ucode should set SEQ_RX_FRAME bit if ucode-originated,
3296 * but apparently a few don't get set; catch them here. */
3297 reclaim = !(pkt->hdr.sequence & SEQ_RX_FRAME) &&
3298 (pkt->hdr.cmd != REPLY_RX_PHY_CMD) &&
Tomas Winkler857485c2008-03-21 13:53:44 -07003299 (pkt->hdr.cmd != REPLY_RX) &&
Zhu Yicfe01702007-09-27 11:27:31 +08003300 (pkt->hdr.cmd != REPLY_COMPRESSED_BA) &&
Zhu Yib481de92007-09-25 17:54:57 -07003301 (pkt->hdr.cmd != STATISTICS_NOTIFICATION) &&
3302 (pkt->hdr.cmd != REPLY_TX);
3303
3304 /* Based on type of command response or notification,
3305 * handle those that need handling via function in
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003306 * rx_handlers table. See iwl4965_setup_rx_handlers() */
Zhu Yib481de92007-09-25 17:54:57 -07003307 if (priv->rx_handlers[pkt->hdr.cmd]) {
3308 IWL_DEBUG(IWL_DL_HOST_COMMAND | IWL_DL_RX | IWL_DL_ISR,
3309 "r = %d, i = %d, %s, 0x%02x\n", r, i,
3310 get_cmd_string(pkt->hdr.cmd), pkt->hdr.cmd);
3311 priv->rx_handlers[pkt->hdr.cmd] (priv, rxb);
3312 } else {
3313 /* No handling needed */
3314 IWL_DEBUG(IWL_DL_HOST_COMMAND | IWL_DL_RX | IWL_DL_ISR,
3315 "r %d i %d No handler needed for %s, 0x%02x\n",
3316 r, i, get_cmd_string(pkt->hdr.cmd),
3317 pkt->hdr.cmd);
3318 }
3319
3320 if (reclaim) {
Ben Cahill9fbab512007-11-29 11:09:47 +08003321 /* Invoke any callbacks, transfer the skb to caller, and
Tomas Winkler857485c2008-03-21 13:53:44 -07003322 * fire off the (possibly) blocking iwl_send_cmd()
Zhu Yib481de92007-09-25 17:54:57 -07003323 * as we reclaim the driver command queue */
3324 if (rxb && rxb->skb)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003325 iwl4965_tx_cmd_complete(priv, rxb);
Zhu Yib481de92007-09-25 17:54:57 -07003326 else
3327 IWL_WARNING("Claim null rxb?\n");
3328 }
3329
3330 /* For now we just don't re-use anything. We can tweak this
3331 * later to try and re-use notification packets and SKBs that
3332 * fail to Rx correctly */
3333 if (rxb->skb != NULL) {
3334 priv->alloc_rxb_skb--;
3335 dev_kfree_skb_any(rxb->skb);
3336 rxb->skb = NULL;
3337 }
3338
3339 pci_unmap_single(priv->pci_dev, rxb->dma_addr,
Tomas Winkler5425e492008-04-15 16:01:38 -07003340 priv->hw_params.rx_buf_size,
Ron Rindjunsky9ee1ba42007-11-26 16:14:42 +02003341 PCI_DMA_FROMDEVICE);
Zhu Yib481de92007-09-25 17:54:57 -07003342 spin_lock_irqsave(&rxq->lock, flags);
3343 list_add_tail(&rxb->list, &priv->rxq.rx_used);
3344 spin_unlock_irqrestore(&rxq->lock, flags);
3345 i = (i + 1) & RX_QUEUE_MASK;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003346 /* If there are a lot of unused frames,
3347 * restock the Rx queue so ucode wont assert. */
3348 if (fill_rx) {
3349 count++;
3350 if (count >= 8) {
3351 priv->rxq.read = i;
Tomas Winklera55360e2008-05-05 10:22:28 +08003352 __iwl_rx_replenish(priv);
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003353 count = 0;
3354 }
3355 }
Zhu Yib481de92007-09-25 17:54:57 -07003356 }
3357
3358 /* Backtrack one entry */
3359 priv->rxq.read = i;
Tomas Winklera55360e2008-05-05 10:22:28 +08003360 iwl_rx_queue_restock(priv);
3361}
3362/* Convert linear signal-to-noise ratio into dB */
3363static u8 ratio2dB[100] = {
3364/* 0 1 2 3 4 5 6 7 8 9 */
3365 0, 0, 6, 10, 12, 14, 16, 17, 18, 19, /* 00 - 09 */
3366 20, 21, 22, 22, 23, 23, 24, 25, 26, 26, /* 10 - 19 */
3367 26, 26, 26, 27, 27, 28, 28, 28, 29, 29, /* 20 - 29 */
3368 29, 30, 30, 30, 31, 31, 31, 31, 32, 32, /* 30 - 39 */
3369 32, 32, 32, 33, 33, 33, 33, 33, 34, 34, /* 40 - 49 */
3370 34, 34, 34, 34, 35, 35, 35, 35, 35, 35, /* 50 - 59 */
3371 36, 36, 36, 36, 36, 36, 36, 37, 37, 37, /* 60 - 69 */
3372 37, 37, 37, 37, 37, 38, 38, 38, 38, 38, /* 70 - 79 */
3373 38, 38, 38, 38, 38, 39, 39, 39, 39, 39, /* 80 - 89 */
3374 39, 39, 39, 39, 39, 40, 40, 40, 40, 40 /* 90 - 99 */
3375};
3376
3377/* Calculates a relative dB value from a ratio of linear
3378 * (i.e. not dB) signal levels.
3379 * Conversion assumes that levels are voltages (20*log), not powers (10*log). */
3380int iwl4965_calc_db_from_ratio(int sig_ratio)
3381{
3382 /* 1000:1 or higher just report as 60 dB */
3383 if (sig_ratio >= 1000)
3384 return 60;
3385
3386 /* 100:1 or higher, divide by 10 and use table,
3387 * add 20 dB to make up for divide by 10 */
3388 if (sig_ratio >= 100)
3389 return (20 + (int)ratio2dB[sig_ratio/10]);
3390
3391 /* We shouldn't see this */
3392 if (sig_ratio < 1)
3393 return 0;
3394
3395 /* Use table for ratios 1:1 - 99:1 */
3396 return (int)ratio2dB[sig_ratio];
3397}
3398
3399#define PERFECT_RSSI (-20) /* dBm */
3400#define WORST_RSSI (-95) /* dBm */
3401#define RSSI_RANGE (PERFECT_RSSI - WORST_RSSI)
3402
3403/* Calculate an indication of rx signal quality (a percentage, not dBm!).
3404 * See http://www.ces.clemson.edu/linux/signal_quality.shtml for info
3405 * about formulas used below. */
3406int iwl4965_calc_sig_qual(int rssi_dbm, int noise_dbm)
3407{
3408 int sig_qual;
3409 int degradation = PERFECT_RSSI - rssi_dbm;
3410
3411 /* If we get a noise measurement, use signal-to-noise ratio (SNR)
3412 * as indicator; formula is (signal dbm - noise dbm).
3413 * SNR at or above 40 is a great signal (100%).
3414 * Below that, scale to fit SNR of 0 - 40 dB within 0 - 100% indicator.
3415 * Weakest usable signal is usually 10 - 15 dB SNR. */
3416 if (noise_dbm) {
3417 if (rssi_dbm - noise_dbm >= 40)
3418 return 100;
3419 else if (rssi_dbm < noise_dbm)
3420 return 0;
3421 sig_qual = ((rssi_dbm - noise_dbm) * 5) / 2;
3422
3423 /* Else use just the signal level.
3424 * This formula is a least squares fit of data points collected and
3425 * compared with a reference system that had a percentage (%) display
3426 * for signal quality. */
3427 } else
3428 sig_qual = (100 * (RSSI_RANGE * RSSI_RANGE) - degradation *
3429 (15 * RSSI_RANGE + 62 * degradation)) /
3430 (RSSI_RANGE * RSSI_RANGE);
3431
3432 if (sig_qual > 100)
3433 sig_qual = 100;
3434 else if (sig_qual < 1)
3435 sig_qual = 0;
3436
3437 return sig_qual;
Zhu Yib481de92007-09-25 17:54:57 -07003438}
3439
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003440/**
3441 * iwl4965_tx_queue_update_write_ptr - Send new write index to hardware
3442 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003443static int iwl4965_tx_queue_update_write_ptr(struct iwl_priv *priv,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003444 struct iwl4965_tx_queue *txq)
Zhu Yib481de92007-09-25 17:54:57 -07003445{
3446 u32 reg = 0;
3447 int rc = 0;
3448 int txq_id = txq->q.id;
3449
3450 if (txq->need_update == 0)
3451 return rc;
3452
3453 /* if we're trying to save power */
3454 if (test_bit(STATUS_POWER_PMI, &priv->status)) {
3455 /* wake up nic if it's powered down ...
3456 * uCode will wake up, and interrupt us again, so next
3457 * time we'll skip this part. */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07003458 reg = iwl_read32(priv, CSR_UCODE_DRV_GP1);
Zhu Yib481de92007-09-25 17:54:57 -07003459
3460 if (reg & CSR_UCODE_DRV_GP1_BIT_MAC_SLEEP) {
3461 IWL_DEBUG_INFO("Requesting wakeup, GP1 = 0x%x\n", reg);
Tomas Winkler3395f6e2008-03-25 16:33:37 -07003462 iwl_set_bit(priv, CSR_GP_CNTRL,
Zhu Yib481de92007-09-25 17:54:57 -07003463 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
3464 return rc;
3465 }
3466
3467 /* restore this queue's parameters in nic hardware. */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07003468 rc = iwl_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003469 if (rc)
3470 return rc;
Tomas Winkler3395f6e2008-03-25 16:33:37 -07003471 iwl_write_direct32(priv, HBUS_TARG_WRPTR,
Tomas Winklerfc4b6852007-10-25 17:15:24 +08003472 txq->q.write_ptr | (txq_id << 8));
Tomas Winkler3395f6e2008-03-25 16:33:37 -07003473 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003474
3475 /* else not in power-save mode, uCode will never sleep when we're
3476 * trying to tx (during RFKILL, we're not trying to tx). */
3477 } else
Tomas Winkler3395f6e2008-03-25 16:33:37 -07003478 iwl_write32(priv, HBUS_TARG_WRPTR,
Tomas Winklerfc4b6852007-10-25 17:15:24 +08003479 txq->q.write_ptr | (txq_id << 8));
Zhu Yib481de92007-09-25 17:54:57 -07003480
3481 txq->need_update = 0;
3482
3483 return rc;
3484}
3485
Tomas Winkler0a6857e2008-03-12 16:58:49 -07003486#ifdef CONFIG_IWLWIFI_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003487static void iwl4965_print_rx_config_cmd(struct iwl4965_rxon_cmd *rxon)
Zhu Yib481de92007-09-25 17:54:57 -07003488{
Joe Perches0795af52007-10-03 17:59:30 -07003489 DECLARE_MAC_BUF(mac);
3490
Zhu Yib481de92007-09-25 17:54:57 -07003491 IWL_DEBUG_RADIO("RX CONFIG:\n");
Tomas Winkler0a6857e2008-03-12 16:58:49 -07003492 iwl_print_hex_dump(IWL_DL_RADIO, (u8 *) rxon, sizeof(*rxon));
Zhu Yib481de92007-09-25 17:54:57 -07003493 IWL_DEBUG_RADIO("u16 channel: 0x%x\n", le16_to_cpu(rxon->channel));
3494 IWL_DEBUG_RADIO("u32 flags: 0x%08X\n", le32_to_cpu(rxon->flags));
3495 IWL_DEBUG_RADIO("u32 filter_flags: 0x%08x\n",
3496 le32_to_cpu(rxon->filter_flags));
3497 IWL_DEBUG_RADIO("u8 dev_type: 0x%x\n", rxon->dev_type);
3498 IWL_DEBUG_RADIO("u8 ofdm_basic_rates: 0x%02x\n",
3499 rxon->ofdm_basic_rates);
3500 IWL_DEBUG_RADIO("u8 cck_basic_rates: 0x%02x\n", rxon->cck_basic_rates);
Joe Perches0795af52007-10-03 17:59:30 -07003501 IWL_DEBUG_RADIO("u8[6] node_addr: %s\n",
3502 print_mac(mac, rxon->node_addr));
3503 IWL_DEBUG_RADIO("u8[6] bssid_addr: %s\n",
3504 print_mac(mac, rxon->bssid_addr));
Zhu Yib481de92007-09-25 17:54:57 -07003505 IWL_DEBUG_RADIO("u16 assoc_id: 0x%x\n", le16_to_cpu(rxon->assoc_id));
3506}
3507#endif
3508
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003509static void iwl4965_enable_interrupts(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003510{
3511 IWL_DEBUG_ISR("Enabling interrupts\n");
3512 set_bit(STATUS_INT_ENABLED, &priv->status);
Tomas Winkler3395f6e2008-03-25 16:33:37 -07003513 iwl_write32(priv, CSR_INT_MASK, CSR_INI_SET_MASK);
Zhu Yib481de92007-09-25 17:54:57 -07003514}
3515
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003516/* call this function to flush any scheduled tasklet */
3517static inline void iwl_synchronize_irq(struct iwl_priv *priv)
3518{
3519 /* wait to make sure we flush pedding tasklet*/
3520 synchronize_irq(priv->pci_dev->irq);
3521 tasklet_kill(&priv->irq_tasklet);
3522}
3523
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003524static inline void iwl4965_disable_interrupts(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003525{
3526 clear_bit(STATUS_INT_ENABLED, &priv->status);
3527
3528 /* disable interrupts from uCode/NIC to host */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07003529 iwl_write32(priv, CSR_INT_MASK, 0x00000000);
Zhu Yib481de92007-09-25 17:54:57 -07003530
3531 /* acknowledge/clear/reset any interrupts still pending
3532 * from uCode or flow handler (Rx/Tx DMA) */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07003533 iwl_write32(priv, CSR_INT, 0xffffffff);
3534 iwl_write32(priv, CSR_FH_INT_STATUS, 0xffffffff);
Zhu Yib481de92007-09-25 17:54:57 -07003535 IWL_DEBUG_ISR("Disabled interrupts\n");
3536}
3537
3538static const char *desc_lookup(int i)
3539{
3540 switch (i) {
3541 case 1:
3542 return "FAIL";
3543 case 2:
3544 return "BAD_PARAM";
3545 case 3:
3546 return "BAD_CHECKSUM";
3547 case 4:
3548 return "NMI_INTERRUPT";
3549 case 5:
3550 return "SYSASSERT";
3551 case 6:
3552 return "FATAL_ERROR";
3553 }
3554
3555 return "UNKNOWN";
3556}
3557
3558#define ERROR_START_OFFSET (1 * sizeof(u32))
3559#define ERROR_ELEM_SIZE (7 * sizeof(u32))
3560
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003561static void iwl4965_dump_nic_error_log(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003562{
3563 u32 data2, line;
3564 u32 desc, time, count, base, data1;
3565 u32 blink1, blink2, ilink1, ilink2;
3566 int rc;
3567
3568 base = le32_to_cpu(priv->card_alive.error_event_table_ptr);
3569
Tomas Winkler57aab752008-04-14 21:16:03 -07003570 if (!priv->cfg->ops->lib->is_valid_rtc_data_addr(base)) {
Zhu Yib481de92007-09-25 17:54:57 -07003571 IWL_ERROR("Not valid error log pointer 0x%08X\n", base);
3572 return;
3573 }
3574
Tomas Winkler3395f6e2008-03-25 16:33:37 -07003575 rc = iwl_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003576 if (rc) {
3577 IWL_WARNING("Can not read from adapter at this time.\n");
3578 return;
3579 }
3580
Tomas Winkler3395f6e2008-03-25 16:33:37 -07003581 count = iwl_read_targ_mem(priv, base);
Zhu Yib481de92007-09-25 17:54:57 -07003582
3583 if (ERROR_START_OFFSET <= count * ERROR_ELEM_SIZE) {
3584 IWL_ERROR("Start IWL Error Log Dump:\n");
Tomas Winkler2acae162008-03-02 01:25:59 +02003585 IWL_ERROR("Status: 0x%08lX, count: %d\n", priv->status, count);
Zhu Yib481de92007-09-25 17:54:57 -07003586 }
3587
Tomas Winkler3395f6e2008-03-25 16:33:37 -07003588 desc = iwl_read_targ_mem(priv, base + 1 * sizeof(u32));
3589 blink1 = iwl_read_targ_mem(priv, base + 3 * sizeof(u32));
3590 blink2 = iwl_read_targ_mem(priv, base + 4 * sizeof(u32));
3591 ilink1 = iwl_read_targ_mem(priv, base + 5 * sizeof(u32));
3592 ilink2 = iwl_read_targ_mem(priv, base + 6 * sizeof(u32));
3593 data1 = iwl_read_targ_mem(priv, base + 7 * sizeof(u32));
3594 data2 = iwl_read_targ_mem(priv, base + 8 * sizeof(u32));
3595 line = iwl_read_targ_mem(priv, base + 9 * sizeof(u32));
3596 time = iwl_read_targ_mem(priv, base + 11 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07003597
3598 IWL_ERROR("Desc Time "
3599 "data1 data2 line\n");
3600 IWL_ERROR("%-13s (#%d) %010u 0x%08X 0x%08X %u\n",
3601 desc_lookup(desc), desc, time, data1, data2, line);
3602 IWL_ERROR("blink1 blink2 ilink1 ilink2\n");
3603 IWL_ERROR("0x%05X 0x%05X 0x%05X 0x%05X\n", blink1, blink2,
3604 ilink1, ilink2);
3605
Tomas Winkler3395f6e2008-03-25 16:33:37 -07003606 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003607}
3608
3609#define EVENT_START_OFFSET (4 * sizeof(u32))
3610
3611/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003612 * iwl4965_print_event_log - Dump error event log to syslog
Zhu Yib481de92007-09-25 17:54:57 -07003613 *
Tomas Winkler3395f6e2008-03-25 16:33:37 -07003614 * NOTE: Must be called with iwl_grab_nic_access() already obtained!
Zhu Yib481de92007-09-25 17:54:57 -07003615 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003616static void iwl4965_print_event_log(struct iwl_priv *priv, u32 start_idx,
Zhu Yib481de92007-09-25 17:54:57 -07003617 u32 num_events, u32 mode)
3618{
3619 u32 i;
3620 u32 base; /* SRAM byte address of event log header */
3621 u32 event_size; /* 2 u32s, or 3 u32s if timestamp recorded */
3622 u32 ptr; /* SRAM byte address of log data */
3623 u32 ev, time, data; /* event log data */
3624
3625 if (num_events == 0)
3626 return;
3627
3628 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
3629
3630 if (mode == 0)
3631 event_size = 2 * sizeof(u32);
3632 else
3633 event_size = 3 * sizeof(u32);
3634
3635 ptr = base + EVENT_START_OFFSET + (start_idx * event_size);
3636
3637 /* "time" is actually "data" for mode 0 (no timestamp).
3638 * place event id # at far right for easier visual parsing. */
3639 for (i = 0; i < num_events; i++) {
Tomas Winkler3395f6e2008-03-25 16:33:37 -07003640 ev = iwl_read_targ_mem(priv, ptr);
Zhu Yib481de92007-09-25 17:54:57 -07003641 ptr += sizeof(u32);
Tomas Winkler3395f6e2008-03-25 16:33:37 -07003642 time = iwl_read_targ_mem(priv, ptr);
Zhu Yib481de92007-09-25 17:54:57 -07003643 ptr += sizeof(u32);
3644 if (mode == 0)
3645 IWL_ERROR("0x%08x\t%04u\n", time, ev); /* data, ev */
3646 else {
Tomas Winkler3395f6e2008-03-25 16:33:37 -07003647 data = iwl_read_targ_mem(priv, ptr);
Zhu Yib481de92007-09-25 17:54:57 -07003648 ptr += sizeof(u32);
3649 IWL_ERROR("%010u\t0x%08x\t%04u\n", time, data, ev);
3650 }
3651 }
3652}
3653
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003654static void iwl4965_dump_nic_event_log(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003655{
3656 int rc;
3657 u32 base; /* SRAM byte address of event log header */
3658 u32 capacity; /* event log capacity in # entries */
3659 u32 mode; /* 0 - no timestamp, 1 - timestamp recorded */
3660 u32 num_wraps; /* # times uCode wrapped to top of log */
3661 u32 next_entry; /* index of next entry to be written by uCode */
3662 u32 size; /* # entries that we'll print */
3663
3664 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
Tomas Winkler57aab752008-04-14 21:16:03 -07003665 if (!priv->cfg->ops->lib->is_valid_rtc_data_addr(base)) {
Zhu Yib481de92007-09-25 17:54:57 -07003666 IWL_ERROR("Invalid event log pointer 0x%08X\n", base);
3667 return;
3668 }
3669
Tomas Winkler3395f6e2008-03-25 16:33:37 -07003670 rc = iwl_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003671 if (rc) {
3672 IWL_WARNING("Can not read from adapter at this time.\n");
3673 return;
3674 }
3675
3676 /* event log header */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07003677 capacity = iwl_read_targ_mem(priv, base);
3678 mode = iwl_read_targ_mem(priv, base + (1 * sizeof(u32)));
3679 num_wraps = iwl_read_targ_mem(priv, base + (2 * sizeof(u32)));
3680 next_entry = iwl_read_targ_mem(priv, base + (3 * sizeof(u32)));
Zhu Yib481de92007-09-25 17:54:57 -07003681
3682 size = num_wraps ? capacity : next_entry;
3683
3684 /* bail out if nothing in log */
3685 if (size == 0) {
Zhu Yi583fab32007-09-27 11:27:30 +08003686 IWL_ERROR("Start IWL Event Log Dump: nothing in log\n");
Tomas Winkler3395f6e2008-03-25 16:33:37 -07003687 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003688 return;
3689 }
3690
Zhu Yi583fab32007-09-27 11:27:30 +08003691 IWL_ERROR("Start IWL Event Log Dump: display count %d, wraps %d\n",
Zhu Yib481de92007-09-25 17:54:57 -07003692 size, num_wraps);
3693
3694 /* if uCode has wrapped back to top of log, start at the oldest entry,
3695 * i.e the next one that uCode would fill. */
3696 if (num_wraps)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003697 iwl4965_print_event_log(priv, next_entry,
Zhu Yib481de92007-09-25 17:54:57 -07003698 capacity - next_entry, mode);
3699
3700 /* (then/else) start at top of log */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003701 iwl4965_print_event_log(priv, 0, next_entry, mode);
Zhu Yib481de92007-09-25 17:54:57 -07003702
Tomas Winkler3395f6e2008-03-25 16:33:37 -07003703 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003704}
3705
3706/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003707 * iwl4965_irq_handle_error - called for HW or SW error interrupt from card
Zhu Yib481de92007-09-25 17:54:57 -07003708 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003709static void iwl4965_irq_handle_error(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003710{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003711 /* Set the FW error flag -- cleared on iwl4965_down */
Zhu Yib481de92007-09-25 17:54:57 -07003712 set_bit(STATUS_FW_ERROR, &priv->status);
3713
3714 /* Cancel currently queued command. */
3715 clear_bit(STATUS_HCMD_ACTIVE, &priv->status);
3716
Tomas Winkler0a6857e2008-03-12 16:58:49 -07003717#ifdef CONFIG_IWLWIFI_DEBUG
3718 if (iwl_debug_level & IWL_DL_FW_ERRORS) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003719 iwl4965_dump_nic_error_log(priv);
3720 iwl4965_dump_nic_event_log(priv);
3721 iwl4965_print_rx_config_cmd(&priv->staging_rxon);
Zhu Yib481de92007-09-25 17:54:57 -07003722 }
3723#endif
3724
3725 wake_up_interruptible(&priv->wait_command_queue);
3726
3727 /* Keep the restart process from trying to send host
3728 * commands by clearing the INIT status bit */
3729 clear_bit(STATUS_READY, &priv->status);
3730
3731 if (!test_bit(STATUS_EXIT_PENDING, &priv->status)) {
3732 IWL_DEBUG(IWL_DL_INFO | IWL_DL_FW_ERRORS,
3733 "Restarting adapter due to uCode error.\n");
3734
Tomas Winkler3109ece2008-03-28 16:33:35 -07003735 if (iwl_is_associated(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07003736 memcpy(&priv->recovery_rxon, &priv->active_rxon,
3737 sizeof(priv->recovery_rxon));
3738 priv->error_recovering = 1;
3739 }
3740 queue_work(priv->workqueue, &priv->restart);
3741 }
3742}
3743
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003744static void iwl4965_error_recovery(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003745{
3746 unsigned long flags;
3747
3748 memcpy(&priv->staging_rxon, &priv->recovery_rxon,
3749 sizeof(priv->staging_rxon));
3750 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003751 iwl4965_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003752
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003753 iwl4965_rxon_add_station(priv, priv->bssid, 1);
Zhu Yib481de92007-09-25 17:54:57 -07003754
3755 spin_lock_irqsave(&priv->lock, flags);
3756 priv->assoc_id = le16_to_cpu(priv->staging_rxon.assoc_id);
3757 priv->error_recovering = 0;
3758 spin_unlock_irqrestore(&priv->lock, flags);
3759}
3760
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003761static void iwl4965_irq_tasklet(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003762{
3763 u32 inta, handled = 0;
3764 u32 inta_fh;
3765 unsigned long flags;
Tomas Winkler0a6857e2008-03-12 16:58:49 -07003766#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07003767 u32 inta_mask;
3768#endif
3769
3770 spin_lock_irqsave(&priv->lock, flags);
3771
3772 /* Ack/clear/reset pending uCode interrupts.
3773 * Note: Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS,
3774 * and will clear only when CSR_FH_INT_STATUS gets cleared. */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07003775 inta = iwl_read32(priv, CSR_INT);
3776 iwl_write32(priv, CSR_INT, inta);
Zhu Yib481de92007-09-25 17:54:57 -07003777
3778 /* Ack/clear/reset pending flow-handler (DMA) interrupts.
3779 * Any new interrupts that happen after this, either while we're
3780 * in this tasklet, or later, will show up in next ISR/tasklet. */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07003781 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
3782 iwl_write32(priv, CSR_FH_INT_STATUS, inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -07003783
Tomas Winkler0a6857e2008-03-12 16:58:49 -07003784#ifdef CONFIG_IWLWIFI_DEBUG
3785 if (iwl_debug_level & IWL_DL_ISR) {
Ben Cahill9fbab512007-11-29 11:09:47 +08003786 /* just for debug */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07003787 inta_mask = iwl_read32(priv, CSR_INT_MASK);
Zhu Yib481de92007-09-25 17:54:57 -07003788 IWL_DEBUG_ISR("inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
3789 inta, inta_mask, inta_fh);
3790 }
3791#endif
3792
3793 /* Since CSR_INT and CSR_FH_INT_STATUS reads and clears are not
3794 * atomic, make sure that inta covers all the interrupts that
3795 * we've discovered, even if FH interrupt came in just after
3796 * reading CSR_INT. */
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08003797 if (inta_fh & CSR49_FH_INT_RX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07003798 inta |= CSR_INT_BIT_FH_RX;
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08003799 if (inta_fh & CSR49_FH_INT_TX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07003800 inta |= CSR_INT_BIT_FH_TX;
3801
3802 /* Now service all interrupt bits discovered above. */
3803 if (inta & CSR_INT_BIT_HW_ERR) {
3804 IWL_ERROR("Microcode HW error detected. Restarting.\n");
3805
3806 /* Tell the device to stop sending interrupts */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003807 iwl4965_disable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003808
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003809 iwl4965_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003810
3811 handled |= CSR_INT_BIT_HW_ERR;
3812
3813 spin_unlock_irqrestore(&priv->lock, flags);
3814
3815 return;
3816 }
3817
Tomas Winkler0a6857e2008-03-12 16:58:49 -07003818#ifdef CONFIG_IWLWIFI_DEBUG
3819 if (iwl_debug_level & (IWL_DL_ISR)) {
Zhu Yib481de92007-09-25 17:54:57 -07003820 /* NIC fires this, but we don't use it, redundant with WAKEUP */
Joonwoo Park25c03d82008-01-23 10:15:20 -08003821 if (inta & CSR_INT_BIT_SCD)
3822 IWL_DEBUG_ISR("Scheduler finished to transmit "
3823 "the frame/frames.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003824
3825 /* Alive notification via Rx interrupt will do the real work */
3826 if (inta & CSR_INT_BIT_ALIVE)
3827 IWL_DEBUG_ISR("Alive interrupt\n");
3828 }
3829#endif
3830 /* Safely ignore these bits for debug checks below */
Joonwoo Park25c03d82008-01-23 10:15:20 -08003831 inta &= ~(CSR_INT_BIT_SCD | CSR_INT_BIT_ALIVE);
Zhu Yib481de92007-09-25 17:54:57 -07003832
Ben Cahill9fbab512007-11-29 11:09:47 +08003833 /* HW RF KILL switch toggled */
Zhu Yib481de92007-09-25 17:54:57 -07003834 if (inta & CSR_INT_BIT_RF_KILL) {
3835 int hw_rf_kill = 0;
Tomas Winkler3395f6e2008-03-25 16:33:37 -07003836 if (!(iwl_read32(priv, CSR_GP_CNTRL) &
Zhu Yib481de92007-09-25 17:54:57 -07003837 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW))
3838 hw_rf_kill = 1;
3839
3840 IWL_DEBUG(IWL_DL_INFO | IWL_DL_RF_KILL | IWL_DL_ISR,
3841 "RF_KILL bit toggled to %s.\n",
3842 hw_rf_kill ? "disable radio":"enable radio");
3843
3844 /* Queue restart only if RF_KILL switch was set to "kill"
3845 * when we loaded driver, and is now set to "enable".
3846 * After we're Alive, RF_KILL gets handled by
Reinette Chatre32304552008-02-15 14:34:37 -08003847 * iwl4965_rx_card_state_notif() */
Zhu Yi53e49092007-12-06 16:08:44 +08003848 if (!hw_rf_kill && !test_bit(STATUS_ALIVE, &priv->status)) {
3849 clear_bit(STATUS_RF_KILL_HW, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07003850 queue_work(priv->workqueue, &priv->restart);
Zhu Yi53e49092007-12-06 16:08:44 +08003851 }
Zhu Yib481de92007-09-25 17:54:57 -07003852
3853 handled |= CSR_INT_BIT_RF_KILL;
3854 }
3855
Ben Cahill9fbab512007-11-29 11:09:47 +08003856 /* Chip got too hot and stopped itself */
Zhu Yib481de92007-09-25 17:54:57 -07003857 if (inta & CSR_INT_BIT_CT_KILL) {
3858 IWL_ERROR("Microcode CT kill error detected.\n");
3859 handled |= CSR_INT_BIT_CT_KILL;
3860 }
3861
3862 /* Error detected by uCode */
3863 if (inta & CSR_INT_BIT_SW_ERR) {
3864 IWL_ERROR("Microcode SW error detected. Restarting 0x%X.\n",
3865 inta);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003866 iwl4965_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003867 handled |= CSR_INT_BIT_SW_ERR;
3868 }
3869
3870 /* uCode wakes up after power-down sleep */
3871 if (inta & CSR_INT_BIT_WAKEUP) {
3872 IWL_DEBUG_ISR("Wakeup interrupt\n");
Tomas Winklera55360e2008-05-05 10:22:28 +08003873 iwl_rx_queue_update_write_ptr(priv, &priv->rxq);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003874 iwl4965_tx_queue_update_write_ptr(priv, &priv->txq[0]);
3875 iwl4965_tx_queue_update_write_ptr(priv, &priv->txq[1]);
3876 iwl4965_tx_queue_update_write_ptr(priv, &priv->txq[2]);
3877 iwl4965_tx_queue_update_write_ptr(priv, &priv->txq[3]);
3878 iwl4965_tx_queue_update_write_ptr(priv, &priv->txq[4]);
3879 iwl4965_tx_queue_update_write_ptr(priv, &priv->txq[5]);
Zhu Yib481de92007-09-25 17:54:57 -07003880
3881 handled |= CSR_INT_BIT_WAKEUP;
3882 }
3883
3884 /* All uCode command responses, including Tx command responses,
3885 * Rx "responses" (frame-received notification), and other
3886 * notifications from uCode come through here*/
3887 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) {
Tomas Winklera55360e2008-05-05 10:22:28 +08003888 iwl_rx_handle(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003889 handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX);
3890 }
3891
3892 if (inta & CSR_INT_BIT_FH_TX) {
3893 IWL_DEBUG_ISR("Tx interrupt\n");
3894 handled |= CSR_INT_BIT_FH_TX;
3895 }
3896
3897 if (inta & ~handled)
3898 IWL_ERROR("Unhandled INTA bits 0x%08x\n", inta & ~handled);
3899
3900 if (inta & ~CSR_INI_SET_MASK) {
3901 IWL_WARNING("Disabled INTA bits 0x%08x were pending\n",
3902 inta & ~CSR_INI_SET_MASK);
3903 IWL_WARNING(" with FH_INT = 0x%08x\n", inta_fh);
3904 }
3905
3906 /* Re-enable all interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003907 /* only Re-enable if diabled by irq */
3908 if (test_bit(STATUS_INT_ENABLED, &priv->status))
3909 iwl4965_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003910
Tomas Winkler0a6857e2008-03-12 16:58:49 -07003911#ifdef CONFIG_IWLWIFI_DEBUG
3912 if (iwl_debug_level & (IWL_DL_ISR)) {
Tomas Winkler3395f6e2008-03-25 16:33:37 -07003913 inta = iwl_read32(priv, CSR_INT);
3914 inta_mask = iwl_read32(priv, CSR_INT_MASK);
3915 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
Zhu Yib481de92007-09-25 17:54:57 -07003916 IWL_DEBUG_ISR("End inta 0x%08x, enabled 0x%08x, fh 0x%08x, "
3917 "flags 0x%08lx\n", inta, inta_mask, inta_fh, flags);
3918 }
3919#endif
3920 spin_unlock_irqrestore(&priv->lock, flags);
3921}
3922
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003923static irqreturn_t iwl4965_isr(int irq, void *data)
Zhu Yib481de92007-09-25 17:54:57 -07003924{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003925 struct iwl_priv *priv = data;
Zhu Yib481de92007-09-25 17:54:57 -07003926 u32 inta, inta_mask;
3927 u32 inta_fh;
3928 if (!priv)
3929 return IRQ_NONE;
3930
3931 spin_lock(&priv->lock);
3932
3933 /* Disable (but don't clear!) interrupts here to avoid
3934 * back-to-back ISRs and sporadic interrupts from our NIC.
3935 * If we have something to service, the tasklet will re-enable ints.
3936 * If we *don't* have something, we'll re-enable before leaving here. */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07003937 inta_mask = iwl_read32(priv, CSR_INT_MASK); /* just for debug */
3938 iwl_write32(priv, CSR_INT_MASK, 0x00000000);
Zhu Yib481de92007-09-25 17:54:57 -07003939
3940 /* Discover which interrupts are active/pending */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07003941 inta = iwl_read32(priv, CSR_INT);
3942 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
Zhu Yib481de92007-09-25 17:54:57 -07003943
3944 /* Ignore interrupt if there's nothing in NIC to service.
3945 * This may be due to IRQ shared with another device,
3946 * or due to sporadic interrupts thrown from our NIC. */
3947 if (!inta && !inta_fh) {
3948 IWL_DEBUG_ISR("Ignore interrupt, inta == 0, inta_fh == 0\n");
3949 goto none;
3950 }
3951
3952 if ((inta == 0xFFFFFFFF) || ((inta & 0xFFFFFFF0) == 0xa5a5a5a0)) {
Oliver Neukum66fbb542007-11-15 09:31:10 +08003953 /* Hardware disappeared. It might have already raised
3954 * an interrupt */
Zhu Yib481de92007-09-25 17:54:57 -07003955 IWL_WARNING("HARDWARE GONE?? INTA == 0x%080x\n", inta);
Oliver Neukum66fbb542007-11-15 09:31:10 +08003956 goto unplugged;
Zhu Yib481de92007-09-25 17:54:57 -07003957 }
3958
3959 IWL_DEBUG_ISR("ISR inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
3960 inta, inta_mask, inta_fh);
3961
Joonwoo Park25c03d82008-01-23 10:15:20 -08003962 inta &= ~CSR_INT_BIT_SCD;
3963
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003964 /* iwl4965_irq_tasklet() will service interrupts and re-enable them */
Joonwoo Park25c03d82008-01-23 10:15:20 -08003965 if (likely(inta || inta_fh))
3966 tasklet_schedule(&priv->irq_tasklet);
Zhu Yib481de92007-09-25 17:54:57 -07003967
Oliver Neukum66fbb542007-11-15 09:31:10 +08003968 unplugged:
3969 spin_unlock(&priv->lock);
Zhu Yib481de92007-09-25 17:54:57 -07003970 return IRQ_HANDLED;
3971
3972 none:
3973 /* re-enable interrupts here since we don't have anything to service. */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003974 /* only Re-enable if diabled by irq */
3975 if (test_bit(STATUS_INT_ENABLED, &priv->status))
3976 iwl4965_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003977 spin_unlock(&priv->lock);
3978 return IRQ_NONE;
3979}
3980
Zhu Yib481de92007-09-25 17:54:57 -07003981/* For active scan, listen ACTIVE_DWELL_TIME (msec) on each channel after
3982 * sending probe req. This should be set long enough to hear probe responses
3983 * from more than one AP. */
3984#define IWL_ACTIVE_DWELL_TIME_24 (20) /* all times in msec */
3985#define IWL_ACTIVE_DWELL_TIME_52 (10)
3986
3987/* For faster active scanning, scan will move to the next channel if fewer than
3988 * PLCP_QUIET_THRESH packets are heard on this channel within
3989 * ACTIVE_QUIET_TIME after sending probe request. This shortens the dwell
3990 * time if it's a quiet channel (nothing responded to our probe, and there's
3991 * no other traffic).
3992 * Disable "quiet" feature by setting PLCP_QUIET_THRESH to 0. */
3993#define IWL_PLCP_QUIET_THRESH __constant_cpu_to_le16(1) /* packets */
3994#define IWL_ACTIVE_QUIET_TIME __constant_cpu_to_le16(5) /* msec */
3995
3996/* For passive scan, listen PASSIVE_DWELL_TIME (msec) on each channel.
3997 * Must be set longer than active dwell time.
3998 * For the most reliable scan, set > AP beacon interval (typically 100msec). */
3999#define IWL_PASSIVE_DWELL_TIME_24 (20) /* all times in msec */
4000#define IWL_PASSIVE_DWELL_TIME_52 (10)
4001#define IWL_PASSIVE_DWELL_BASE (100)
4002#define IWL_CHANNEL_TUNE_TIME 5
4003
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004004static inline u16 iwl4965_get_active_dwell_time(struct iwl_priv *priv,
Johannes Berg8318d782008-01-24 19:38:38 +01004005 enum ieee80211_band band)
Zhu Yib481de92007-09-25 17:54:57 -07004006{
Johannes Berg8318d782008-01-24 19:38:38 +01004007 if (band == IEEE80211_BAND_5GHZ)
Zhu Yib481de92007-09-25 17:54:57 -07004008 return IWL_ACTIVE_DWELL_TIME_52;
4009 else
4010 return IWL_ACTIVE_DWELL_TIME_24;
4011}
4012
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004013static u16 iwl4965_get_passive_dwell_time(struct iwl_priv *priv,
Johannes Berg8318d782008-01-24 19:38:38 +01004014 enum ieee80211_band band)
Zhu Yib481de92007-09-25 17:54:57 -07004015{
Johannes Berg8318d782008-01-24 19:38:38 +01004016 u16 active = iwl4965_get_active_dwell_time(priv, band);
4017 u16 passive = (band != IEEE80211_BAND_5GHZ) ?
Zhu Yib481de92007-09-25 17:54:57 -07004018 IWL_PASSIVE_DWELL_BASE + IWL_PASSIVE_DWELL_TIME_24 :
4019 IWL_PASSIVE_DWELL_BASE + IWL_PASSIVE_DWELL_TIME_52;
4020
Tomas Winkler3109ece2008-03-28 16:33:35 -07004021 if (iwl_is_associated(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07004022 /* If we're associated, we clamp the maximum passive
4023 * dwell time to be 98% of the beacon interval (minus
4024 * 2 * channel tune time) */
4025 passive = priv->beacon_int;
4026 if ((passive > IWL_PASSIVE_DWELL_BASE) || !passive)
4027 passive = IWL_PASSIVE_DWELL_BASE;
4028 passive = (passive * 98) / 100 - IWL_CHANNEL_TUNE_TIME * 2;
4029 }
4030
4031 if (passive <= active)
4032 passive = active + 1;
4033
4034 return passive;
4035}
4036
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004037static int iwl4965_get_channels_for_scan(struct iwl_priv *priv,
Johannes Berg8318d782008-01-24 19:38:38 +01004038 enum ieee80211_band band,
Zhu Yib481de92007-09-25 17:54:57 -07004039 u8 is_active, u8 direct_mask,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004040 struct iwl4965_scan_channel *scan_ch)
Zhu Yib481de92007-09-25 17:54:57 -07004041{
4042 const struct ieee80211_channel *channels = NULL;
Johannes Berg8318d782008-01-24 19:38:38 +01004043 const struct ieee80211_supported_band *sband;
Assaf Kraussbf85ea42008-03-14 10:38:49 -07004044 const struct iwl_channel_info *ch_info;
Zhu Yib481de92007-09-25 17:54:57 -07004045 u16 passive_dwell = 0;
4046 u16 active_dwell = 0;
4047 int added, i;
4048
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -07004049 sband = iwl_get_hw_mode(priv, band);
Johannes Berg8318d782008-01-24 19:38:38 +01004050 if (!sband)
Zhu Yib481de92007-09-25 17:54:57 -07004051 return 0;
4052
Johannes Berg8318d782008-01-24 19:38:38 +01004053 channels = sband->channels;
Zhu Yib481de92007-09-25 17:54:57 -07004054
Johannes Berg8318d782008-01-24 19:38:38 +01004055 active_dwell = iwl4965_get_active_dwell_time(priv, band);
4056 passive_dwell = iwl4965_get_passive_dwell_time(priv, band);
Zhu Yib481de92007-09-25 17:54:57 -07004057
Johannes Berg8318d782008-01-24 19:38:38 +01004058 for (i = 0, added = 0; i < sband->n_channels; i++) {
Johannes Berg182e2e62008-04-04 10:41:56 +02004059 if (channels[i].flags & IEEE80211_CHAN_DISABLED)
4060 continue;
4061
Johannes Berg8318d782008-01-24 19:38:38 +01004062 scan_ch->channel = ieee80211_frequency_to_channel(channels[i].center_freq);
Zhu Yib481de92007-09-25 17:54:57 -07004063
Assaf Krauss8622e702008-03-21 13:53:43 -07004064 ch_info = iwl_get_channel_info(priv, band,
Ben Cahill9fbab512007-11-29 11:09:47 +08004065 scan_ch->channel);
Zhu Yib481de92007-09-25 17:54:57 -07004066 if (!is_channel_valid(ch_info)) {
4067 IWL_DEBUG_SCAN("Channel %d is INVALID for this SKU.\n",
4068 scan_ch->channel);
4069 continue;
4070 }
4071
4072 if (!is_active || is_channel_passive(ch_info) ||
Johannes Berg8318d782008-01-24 19:38:38 +01004073 (channels[i].flags & IEEE80211_CHAN_PASSIVE_SCAN))
Zhu Yib481de92007-09-25 17:54:57 -07004074 scan_ch->type = 0; /* passive */
4075 else
4076 scan_ch->type = 1; /* active */
4077
4078 if (scan_ch->type & 1)
4079 scan_ch->type |= (direct_mask << 1);
4080
Zhu Yib481de92007-09-25 17:54:57 -07004081 scan_ch->active_dwell = cpu_to_le16(active_dwell);
4082 scan_ch->passive_dwell = cpu_to_le16(passive_dwell);
4083
Ben Cahill9fbab512007-11-29 11:09:47 +08004084 /* Set txpower levels to defaults */
Zhu Yib481de92007-09-25 17:54:57 -07004085 scan_ch->tpc.dsp_atten = 110;
4086 /* scan_pwr_info->tpc.dsp_atten; */
4087
4088 /*scan_pwr_info->tpc.tx_gain; */
Johannes Berg8318d782008-01-24 19:38:38 +01004089 if (band == IEEE80211_BAND_5GHZ)
Zhu Yib481de92007-09-25 17:54:57 -07004090 scan_ch->tpc.tx_gain = ((1 << 5) | (3 << 3)) | 3;
4091 else {
4092 scan_ch->tpc.tx_gain = ((1 << 5) | (5 << 3));
4093 /* NOTE: if we were doing 6Mb OFDM for scans we'd use
Ben Cahill9fbab512007-11-29 11:09:47 +08004094 * power level:
Reinette Chatre8a1b0242008-01-14 17:46:25 -08004095 * scan_ch->tpc.tx_gain = ((1 << 5) | (2 << 3)) | 3;
Zhu Yib481de92007-09-25 17:54:57 -07004096 */
4097 }
4098
4099 IWL_DEBUG_SCAN("Scanning %d [%s %d]\n",
4100 scan_ch->channel,
4101 (scan_ch->type & 1) ? "ACTIVE" : "PASSIVE",
4102 (scan_ch->type & 1) ?
4103 active_dwell : passive_dwell);
4104
4105 scan_ch++;
4106 added++;
4107 }
4108
4109 IWL_DEBUG_SCAN("total channels to scan %d \n", added);
4110 return added;
4111}
4112
Zhu Yib481de92007-09-25 17:54:57 -07004113/******************************************************************************
4114 *
4115 * uCode download functions
4116 *
4117 ******************************************************************************/
4118
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004119static void iwl4965_dealloc_ucode_pci(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004120{
Tomas Winkler98c92212008-01-14 17:46:20 -08004121 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_code);
4122 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data);
4123 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
4124 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init);
4125 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init_data);
4126 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_boot);
Zhu Yib481de92007-09-25 17:54:57 -07004127}
4128
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004129static void iwl4965_nic_start(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004130{
4131 /* Remove all resets to allow NIC to operate */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07004132 iwl_write32(priv, CSR_RESET, 0);
Zhu Yib481de92007-09-25 17:54:57 -07004133}
4134
Tomas Winkler90e759d2007-11-29 11:09:41 +08004135
Zhu Yib481de92007-09-25 17:54:57 -07004136/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004137 * iwl4965_read_ucode - Read uCode images from disk file.
Zhu Yib481de92007-09-25 17:54:57 -07004138 *
4139 * Copy into buffers for card to fetch via bus-mastering
4140 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004141static int iwl4965_read_ucode(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004142{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004143 struct iwl4965_ucode *ucode;
Tomas Winkler90e759d2007-11-29 11:09:41 +08004144 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07004145 const struct firmware *ucode_raw;
Tomas Winkler4bf775c2008-03-04 18:09:31 -08004146 const char *name = priv->cfg->fw_name;
Zhu Yib481de92007-09-25 17:54:57 -07004147 u8 *src;
4148 size_t len;
4149 u32 ver, inst_size, data_size, init_size, init_data_size, boot_size;
4150
4151 /* Ask kernel firmware_class module to get the boot firmware off disk.
4152 * request_firmware() is synchronous, file is in memory on return. */
Tomas Winkler90e759d2007-11-29 11:09:41 +08004153 ret = request_firmware(&ucode_raw, name, &priv->pci_dev->dev);
4154 if (ret < 0) {
4155 IWL_ERROR("%s firmware file req failed: Reason %d\n",
4156 name, ret);
Zhu Yib481de92007-09-25 17:54:57 -07004157 goto error;
4158 }
4159
4160 IWL_DEBUG_INFO("Got firmware '%s' file (%zd bytes) from disk\n",
4161 name, ucode_raw->size);
4162
4163 /* Make sure that we got at least our header! */
4164 if (ucode_raw->size < sizeof(*ucode)) {
4165 IWL_ERROR("File size way too small!\n");
Tomas Winkler90e759d2007-11-29 11:09:41 +08004166 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07004167 goto err_release;
4168 }
4169
4170 /* Data from ucode file: header followed by uCode images */
4171 ucode = (void *)ucode_raw->data;
4172
4173 ver = le32_to_cpu(ucode->ver);
4174 inst_size = le32_to_cpu(ucode->inst_size);
4175 data_size = le32_to_cpu(ucode->data_size);
4176 init_size = le32_to_cpu(ucode->init_size);
4177 init_data_size = le32_to_cpu(ucode->init_data_size);
4178 boot_size = le32_to_cpu(ucode->boot_size);
4179
4180 IWL_DEBUG_INFO("f/w package hdr ucode version = 0x%x\n", ver);
4181 IWL_DEBUG_INFO("f/w package hdr runtime inst size = %u\n",
4182 inst_size);
4183 IWL_DEBUG_INFO("f/w package hdr runtime data size = %u\n",
4184 data_size);
4185 IWL_DEBUG_INFO("f/w package hdr init inst size = %u\n",
4186 init_size);
4187 IWL_DEBUG_INFO("f/w package hdr init data size = %u\n",
4188 init_data_size);
4189 IWL_DEBUG_INFO("f/w package hdr boot inst size = %u\n",
4190 boot_size);
4191
4192 /* Verify size of file vs. image size info in file's header */
4193 if (ucode_raw->size < sizeof(*ucode) +
4194 inst_size + data_size + init_size +
4195 init_data_size + boot_size) {
4196
4197 IWL_DEBUG_INFO("uCode file size %d too small\n",
4198 (int)ucode_raw->size);
Tomas Winkler90e759d2007-11-29 11:09:41 +08004199 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07004200 goto err_release;
4201 }
4202
4203 /* Verify that uCode images will fit in card's SRAM */
Ron Rindjunsky099b40b2008-04-21 15:41:53 -07004204 if (inst_size > priv->hw_params.max_inst_size) {
Tomas Winkler90e759d2007-11-29 11:09:41 +08004205 IWL_DEBUG_INFO("uCode instr len %d too large to fit in\n",
4206 inst_size);
4207 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07004208 goto err_release;
4209 }
4210
Ron Rindjunsky099b40b2008-04-21 15:41:53 -07004211 if (data_size > priv->hw_params.max_data_size) {
Tomas Winkler90e759d2007-11-29 11:09:41 +08004212 IWL_DEBUG_INFO("uCode data len %d too large to fit in\n",
4213 data_size);
4214 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07004215 goto err_release;
4216 }
Ron Rindjunsky099b40b2008-04-21 15:41:53 -07004217 if (init_size > priv->hw_params.max_inst_size) {
Zhu Yib481de92007-09-25 17:54:57 -07004218 IWL_DEBUG_INFO
Tomas Winkler90e759d2007-11-29 11:09:41 +08004219 ("uCode init instr len %d too large to fit in\n",
4220 init_size);
4221 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07004222 goto err_release;
4223 }
Ron Rindjunsky099b40b2008-04-21 15:41:53 -07004224 if (init_data_size > priv->hw_params.max_data_size) {
Zhu Yib481de92007-09-25 17:54:57 -07004225 IWL_DEBUG_INFO
Tomas Winkler90e759d2007-11-29 11:09:41 +08004226 ("uCode init data len %d too large to fit in\n",
4227 init_data_size);
4228 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07004229 goto err_release;
4230 }
Ron Rindjunsky099b40b2008-04-21 15:41:53 -07004231 if (boot_size > priv->hw_params.max_bsm_size) {
Zhu Yib481de92007-09-25 17:54:57 -07004232 IWL_DEBUG_INFO
Tomas Winkler90e759d2007-11-29 11:09:41 +08004233 ("uCode boot instr len %d too large to fit in\n",
4234 boot_size);
4235 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07004236 goto err_release;
4237 }
4238
4239 /* Allocate ucode buffers for card's bus-master loading ... */
4240
4241 /* Runtime instructions and 2 copies of data:
4242 * 1) unmodified from disk
4243 * 2) backup cache for save/restore during power-downs */
4244 priv->ucode_code.len = inst_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08004245 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_code);
Zhu Yib481de92007-09-25 17:54:57 -07004246
4247 priv->ucode_data.len = data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08004248 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data);
Zhu Yib481de92007-09-25 17:54:57 -07004249
4250 priv->ucode_data_backup.len = data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08004251 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
Zhu Yib481de92007-09-25 17:54:57 -07004252
4253 /* Initialization instructions and data */
Tomas Winkler90e759d2007-11-29 11:09:41 +08004254 if (init_size && init_data_size) {
4255 priv->ucode_init.len = init_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08004256 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init);
Zhu Yib481de92007-09-25 17:54:57 -07004257
Tomas Winkler90e759d2007-11-29 11:09:41 +08004258 priv->ucode_init_data.len = init_data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08004259 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init_data);
Tomas Winkler90e759d2007-11-29 11:09:41 +08004260
4261 if (!priv->ucode_init.v_addr || !priv->ucode_init_data.v_addr)
4262 goto err_pci_alloc;
4263 }
Zhu Yib481de92007-09-25 17:54:57 -07004264
4265 /* Bootstrap (instructions only, no data) */
Tomas Winkler90e759d2007-11-29 11:09:41 +08004266 if (boot_size) {
4267 priv->ucode_boot.len = boot_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08004268 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_boot);
Zhu Yib481de92007-09-25 17:54:57 -07004269
Tomas Winkler90e759d2007-11-29 11:09:41 +08004270 if (!priv->ucode_boot.v_addr)
4271 goto err_pci_alloc;
4272 }
Zhu Yib481de92007-09-25 17:54:57 -07004273
4274 /* Copy images into buffers for card's bus-master reads ... */
4275
4276 /* Runtime instructions (first block of data in file) */
4277 src = &ucode->data[0];
4278 len = priv->ucode_code.len;
Tomas Winkler90e759d2007-11-29 11:09:41 +08004279 IWL_DEBUG_INFO("Copying (but not loading) uCode instr len %Zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07004280 memcpy(priv->ucode_code.v_addr, src, len);
4281 IWL_DEBUG_INFO("uCode instr buf vaddr = 0x%p, paddr = 0x%08x\n",
4282 priv->ucode_code.v_addr, (u32)priv->ucode_code.p_addr);
4283
4284 /* Runtime data (2nd block)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004285 * NOTE: Copy into backup buffer will be done in iwl4965_up() */
Zhu Yib481de92007-09-25 17:54:57 -07004286 src = &ucode->data[inst_size];
4287 len = priv->ucode_data.len;
Tomas Winkler90e759d2007-11-29 11:09:41 +08004288 IWL_DEBUG_INFO("Copying (but not loading) uCode data len %Zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07004289 memcpy(priv->ucode_data.v_addr, src, len);
4290 memcpy(priv->ucode_data_backup.v_addr, src, len);
4291
4292 /* Initialization instructions (3rd block) */
4293 if (init_size) {
4294 src = &ucode->data[inst_size + data_size];
4295 len = priv->ucode_init.len;
Tomas Winkler90e759d2007-11-29 11:09:41 +08004296 IWL_DEBUG_INFO("Copying (but not loading) init instr len %Zd\n",
4297 len);
Zhu Yib481de92007-09-25 17:54:57 -07004298 memcpy(priv->ucode_init.v_addr, src, len);
4299 }
4300
4301 /* Initialization data (4th block) */
4302 if (init_data_size) {
4303 src = &ucode->data[inst_size + data_size + init_size];
4304 len = priv->ucode_init_data.len;
Tomas Winkler90e759d2007-11-29 11:09:41 +08004305 IWL_DEBUG_INFO("Copying (but not loading) init data len %Zd\n",
4306 len);
Zhu Yib481de92007-09-25 17:54:57 -07004307 memcpy(priv->ucode_init_data.v_addr, src, len);
4308 }
4309
4310 /* Bootstrap instructions (5th block) */
4311 src = &ucode->data[inst_size + data_size + init_size + init_data_size];
4312 len = priv->ucode_boot.len;
Tomas Winkler90e759d2007-11-29 11:09:41 +08004313 IWL_DEBUG_INFO("Copying (but not loading) boot instr len %Zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07004314 memcpy(priv->ucode_boot.v_addr, src, len);
4315
4316 /* We have our copies now, allow OS release its copies */
4317 release_firmware(ucode_raw);
4318 return 0;
4319
4320 err_pci_alloc:
4321 IWL_ERROR("failed to allocate pci memory\n");
Tomas Winkler90e759d2007-11-29 11:09:41 +08004322 ret = -ENOMEM;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004323 iwl4965_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004324
4325 err_release:
4326 release_firmware(ucode_raw);
4327
4328 error:
Tomas Winkler90e759d2007-11-29 11:09:41 +08004329 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07004330}
4331
4332
4333/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004334 * iwl4965_set_ucode_ptrs - Set uCode address location
Zhu Yib481de92007-09-25 17:54:57 -07004335 *
4336 * Tell initialization uCode where to find runtime uCode.
4337 *
4338 * BSM registers initially contain pointers to initialization uCode.
4339 * We need to replace them to load runtime uCode inst and data,
4340 * and to save runtime data when powering down.
4341 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004342static int iwl4965_set_ucode_ptrs(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004343{
4344 dma_addr_t pinst;
4345 dma_addr_t pdata;
4346 int rc = 0;
4347 unsigned long flags;
4348
4349 /* bits 35:4 for 4965 */
4350 pinst = priv->ucode_code.p_addr >> 4;
4351 pdata = priv->ucode_data_backup.p_addr >> 4;
4352
4353 spin_lock_irqsave(&priv->lock, flags);
Tomas Winkler3395f6e2008-03-25 16:33:37 -07004354 rc = iwl_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004355 if (rc) {
4356 spin_unlock_irqrestore(&priv->lock, flags);
4357 return rc;
4358 }
4359
4360 /* Tell bootstrap uCode where to find image to load */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07004361 iwl_write_prph(priv, BSM_DRAM_INST_PTR_REG, pinst);
4362 iwl_write_prph(priv, BSM_DRAM_DATA_PTR_REG, pdata);
4363 iwl_write_prph(priv, BSM_DRAM_DATA_BYTECOUNT_REG,
Zhu Yib481de92007-09-25 17:54:57 -07004364 priv->ucode_data.len);
4365
4366 /* Inst bytecount must be last to set up, bit 31 signals uCode
4367 * that all new ptr/size info is in place */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07004368 iwl_write_prph(priv, BSM_DRAM_INST_BYTECOUNT_REG,
Zhu Yib481de92007-09-25 17:54:57 -07004369 priv->ucode_code.len | BSM_DRAM_INST_LOAD);
4370
Tomas Winkler3395f6e2008-03-25 16:33:37 -07004371 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004372
4373 spin_unlock_irqrestore(&priv->lock, flags);
4374
4375 IWL_DEBUG_INFO("Runtime uCode pointers are set.\n");
4376
4377 return rc;
4378}
4379
4380/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004381 * iwl4965_init_alive_start - Called after REPLY_ALIVE notification received
Zhu Yib481de92007-09-25 17:54:57 -07004382 *
4383 * Called after REPLY_ALIVE notification received from "initialize" uCode.
4384 *
4385 * The 4965 "initialize" ALIVE reply contains calibration data for:
4386 * Voltage, temperature, and MIMO tx gain correction, now stored in priv
4387 * (3945 does not contain this data).
4388 *
4389 * Tell "initialize" uCode to go ahead and load the runtime uCode.
4390*/
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004391static void iwl4965_init_alive_start(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004392{
4393 /* Check alive response for "valid" sign from uCode */
4394 if (priv->card_alive_init.is_valid != UCODE_VALID_OK) {
4395 /* We had an error bringing up the hardware, so take it
4396 * all the way back down so we can try again */
4397 IWL_DEBUG_INFO("Initialize Alive failed.\n");
4398 goto restart;
4399 }
4400
4401 /* Bootstrap uCode has loaded initialize uCode ... verify inst image.
4402 * This is a paranoid check, because we would not have gotten the
4403 * "initialize" alive if code weren't properly loaded. */
Emmanuel Grumbachb0692f22008-04-24 11:55:18 -07004404 if (iwl_verify_ucode(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07004405 /* Runtime instruction load was bad;
4406 * take it all the way back down so we can try again */
4407 IWL_DEBUG_INFO("Bad \"initialize\" uCode load.\n");
4408 goto restart;
4409 }
4410
4411 /* Calculate temperature */
4412 priv->temperature = iwl4965_get_temperature(priv);
4413
4414 /* Send pointers to protocol/runtime uCode image ... init code will
4415 * load and launch runtime uCode, which will send us another "Alive"
4416 * notification. */
4417 IWL_DEBUG_INFO("Initialization Alive received.\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004418 if (iwl4965_set_ucode_ptrs(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07004419 /* Runtime instruction load won't happen;
4420 * take it all the way back down so we can try again */
4421 IWL_DEBUG_INFO("Couldn't set up uCode pointers.\n");
4422 goto restart;
4423 }
4424 return;
4425
4426 restart:
4427 queue_work(priv->workqueue, &priv->restart);
4428}
4429
4430
4431/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004432 * iwl4965_alive_start - called after REPLY_ALIVE notification received
Zhu Yib481de92007-09-25 17:54:57 -07004433 * from protocol/runtime uCode (initialization uCode's
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004434 * Alive gets handled by iwl4965_init_alive_start()).
Zhu Yib481de92007-09-25 17:54:57 -07004435 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004436static void iwl4965_alive_start(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004437{
Tomas Winkler57aab752008-04-14 21:16:03 -07004438 int ret = 0;
Zhu Yib481de92007-09-25 17:54:57 -07004439
4440 IWL_DEBUG_INFO("Runtime Alive received.\n");
4441
4442 if (priv->card_alive.is_valid != UCODE_VALID_OK) {
4443 /* We had an error bringing up the hardware, so take it
4444 * all the way back down so we can try again */
4445 IWL_DEBUG_INFO("Alive failed.\n");
4446 goto restart;
4447 }
4448
4449 /* Initialize uCode has loaded Runtime uCode ... verify inst image.
4450 * This is a paranoid check, because we would not have gotten the
4451 * "runtime" alive if code weren't properly loaded. */
Emmanuel Grumbachb0692f22008-04-24 11:55:18 -07004452 if (iwl_verify_ucode(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07004453 /* Runtime instruction load was bad;
4454 * take it all the way back down so we can try again */
4455 IWL_DEBUG_INFO("Bad runtime uCode load.\n");
4456 goto restart;
4457 }
4458
Assaf Kraussbf85ea42008-03-14 10:38:49 -07004459 iwlcore_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004460
Tomas Winkler57aab752008-04-14 21:16:03 -07004461 ret = priv->cfg->ops->lib->alive_notify(priv);
4462 if (ret) {
Zhu Yib481de92007-09-25 17:54:57 -07004463 IWL_WARNING("Could not complete ALIVE transition [ntf]: %d\n",
Tomas Winkler57aab752008-04-14 21:16:03 -07004464 ret);
Zhu Yib481de92007-09-25 17:54:57 -07004465 goto restart;
4466 }
4467
Ben Cahill9fbab512007-11-29 11:09:47 +08004468 /* After the ALIVE response, we can send host commands to 4965 uCode */
Zhu Yib481de92007-09-25 17:54:57 -07004469 set_bit(STATUS_ALIVE, &priv->status);
4470
4471 /* Clear out the uCode error bit if it is set */
4472 clear_bit(STATUS_FW_ERROR, &priv->status);
4473
Tomas Winklerfee12472008-04-03 16:05:21 -07004474 if (iwl_is_rfkill(priv))
Zhu Yib481de92007-09-25 17:54:57 -07004475 return;
4476
Zhu Yi5a66926a2008-01-14 17:46:18 -08004477 ieee80211_start_queues(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07004478
4479 priv->active_rate = priv->rates_mask;
4480 priv->active_rate_basic = priv->rates_mask & IWL_BASIC_RATES_MASK;
4481
Tomas Winkler3109ece2008-03-28 16:33:35 -07004482 if (iwl_is_associated(priv)) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004483 struct iwl4965_rxon_cmd *active_rxon =
4484 (struct iwl4965_rxon_cmd *)(&priv->active_rxon);
Zhu Yib481de92007-09-25 17:54:57 -07004485
4486 memcpy(&priv->staging_rxon, &priv->active_rxon,
4487 sizeof(priv->staging_rxon));
4488 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
4489 } else {
4490 /* Initialize our rx_config data */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004491 iwl4965_connection_init_rx_config(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004492 memcpy(priv->staging_rxon.node_addr, priv->mac_addr, ETH_ALEN);
4493 }
4494
Ben Cahill9fbab512007-11-29 11:09:47 +08004495 /* Configure Bluetooth device coexistence support */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004496 iwl4965_send_bt_config(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004497
4498 /* Configure the adapter for unassociated operation */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004499 iwl4965_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004500
4501 /* At this point, the NIC is initialized and operational */
4502 priv->notif_missed_beacons = 0;
Zhu Yib481de92007-09-25 17:54:57 -07004503
4504 iwl4965_rf_kill_ct_config(priv);
Zhu Yi5a66926a2008-01-14 17:46:18 -08004505
Reinette Chatrefe00b5a2008-04-03 16:05:23 -07004506 iwl_leds_register(priv);
4507
Zhu Yib481de92007-09-25 17:54:57 -07004508 IWL_DEBUG_INFO("ALIVE processing complete.\n");
Rick Farringtona9f46782008-03-18 14:57:49 -07004509 set_bit(STATUS_READY, &priv->status);
Zhu Yi5a66926a2008-01-14 17:46:18 -08004510 wake_up_interruptible(&priv->wait_command_queue);
Zhu Yib481de92007-09-25 17:54:57 -07004511
4512 if (priv->error_recovering)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004513 iwl4965_error_recovery(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004514
Mohamed Abbasc8381fd2008-03-28 16:21:05 -07004515 iwlcore_low_level_notify(priv, IWLCORE_START_EVT);
Mohamed Abbas84363e62008-04-04 16:59:58 -07004516 ieee80211_notify_mac(priv->hw, IEEE80211_NOTIFY_RE_ASSOC);
Zhu Yib481de92007-09-25 17:54:57 -07004517 return;
4518
4519 restart:
4520 queue_work(priv->workqueue, &priv->restart);
4521}
4522
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004523static void iwl4965_cancel_deferred_work(struct iwl_priv *priv);
Zhu Yib481de92007-09-25 17:54:57 -07004524
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004525static void __iwl4965_down(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004526{
4527 unsigned long flags;
4528 int exit_pending = test_bit(STATUS_EXIT_PENDING, &priv->status);
4529 struct ieee80211_conf *conf = NULL;
4530
4531 IWL_DEBUG_INFO(DRV_NAME " is going down\n");
4532
4533 conf = ieee80211_get_hw_conf(priv->hw);
4534
4535 if (!exit_pending)
4536 set_bit(STATUS_EXIT_PENDING, &priv->status);
4537
Mohamed Abbasab53d8a2008-03-25 16:33:36 -07004538 iwl_leds_unregister(priv);
4539
Mohamed Abbasc8381fd2008-03-28 16:21:05 -07004540 iwlcore_low_level_notify(priv, IWLCORE_STOP_EVT);
4541
Assaf Kraussbf85ea42008-03-14 10:38:49 -07004542 iwlcore_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004543
4544 /* Unblock any waiting calls */
4545 wake_up_interruptible_all(&priv->wait_command_queue);
4546
Zhu Yib481de92007-09-25 17:54:57 -07004547 /* Wipe out the EXIT_PENDING status bit if we are not actually
4548 * exiting the module */
4549 if (!exit_pending)
4550 clear_bit(STATUS_EXIT_PENDING, &priv->status);
4551
4552 /* stop and reset the on-board processor */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07004553 iwl_write32(priv, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET);
Zhu Yib481de92007-09-25 17:54:57 -07004554
4555 /* tell the device to stop sending interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004556 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004557 iwl4965_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004558 spin_unlock_irqrestore(&priv->lock, flags);
4559 iwl_synchronize_irq(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004560
4561 if (priv->mac80211_registered)
4562 ieee80211_stop_queues(priv->hw);
4563
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004564 /* If we have not previously called iwl4965_init() then
Zhu Yib481de92007-09-25 17:54:57 -07004565 * clear all bits but the RF Kill and SUSPEND bits and return */
Tomas Winklerfee12472008-04-03 16:05:21 -07004566 if (!iwl_is_init(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07004567 priv->status = test_bit(STATUS_RF_KILL_HW, &priv->status) <<
4568 STATUS_RF_KILL_HW |
4569 test_bit(STATUS_RF_KILL_SW, &priv->status) <<
4570 STATUS_RF_KILL_SW |
Reinette Chatre97888642008-02-06 11:20:38 -08004571 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
4572 STATUS_GEO_CONFIGURED |
Zhu Yib481de92007-09-25 17:54:57 -07004573 test_bit(STATUS_IN_SUSPEND, &priv->status) <<
4574 STATUS_IN_SUSPEND;
4575 goto exit;
4576 }
4577
4578 /* ...otherwise clear out all the status bits but the RF Kill and
4579 * SUSPEND bits and continue taking the NIC down. */
4580 priv->status &= test_bit(STATUS_RF_KILL_HW, &priv->status) <<
4581 STATUS_RF_KILL_HW |
4582 test_bit(STATUS_RF_KILL_SW, &priv->status) <<
4583 STATUS_RF_KILL_SW |
Reinette Chatre97888642008-02-06 11:20:38 -08004584 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
4585 STATUS_GEO_CONFIGURED |
Zhu Yib481de92007-09-25 17:54:57 -07004586 test_bit(STATUS_IN_SUSPEND, &priv->status) <<
4587 STATUS_IN_SUSPEND |
4588 test_bit(STATUS_FW_ERROR, &priv->status) <<
4589 STATUS_FW_ERROR;
4590
4591 spin_lock_irqsave(&priv->lock, flags);
Tomas Winkler3395f6e2008-03-25 16:33:37 -07004592 iwl_clear_bit(priv, CSR_GP_CNTRL,
Ben Cahill9fbab512007-11-29 11:09:47 +08004593 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
Zhu Yib481de92007-09-25 17:54:57 -07004594 spin_unlock_irqrestore(&priv->lock, flags);
4595
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004596 iwl4965_hw_txq_ctx_stop(priv);
4597 iwl4965_hw_rxq_stop(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004598
4599 spin_lock_irqsave(&priv->lock, flags);
Tomas Winkler3395f6e2008-03-25 16:33:37 -07004600 if (!iwl_grab_nic_access(priv)) {
4601 iwl_write_prph(priv, APMG_CLK_DIS_REG,
Zhu Yib481de92007-09-25 17:54:57 -07004602 APMG_CLK_VAL_DMA_CLK_RQT);
Tomas Winkler3395f6e2008-03-25 16:33:37 -07004603 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004604 }
4605 spin_unlock_irqrestore(&priv->lock, flags);
4606
4607 udelay(5);
4608
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004609 iwl4965_hw_nic_stop_master(priv);
Tomas Winkler3395f6e2008-03-25 16:33:37 -07004610 iwl_set_bit(priv, CSR_RESET, CSR_RESET_REG_FLAG_SW_RESET);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004611 iwl4965_hw_nic_reset(priv);
Ron Rindjunsky399f4902008-04-23 17:14:56 -07004612 priv->cfg->ops->lib->free_shared_mem(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004613
4614 exit:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004615 memset(&priv->card_alive, 0, sizeof(struct iwl4965_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07004616
4617 if (priv->ibss_beacon)
4618 dev_kfree_skb(priv->ibss_beacon);
4619 priv->ibss_beacon = NULL;
4620
4621 /* clear out any free frames */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004622 iwl4965_clear_free_frames(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004623}
4624
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004625static void iwl4965_down(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004626{
4627 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004628 __iwl4965_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004629 mutex_unlock(&priv->mutex);
Zhu Yib24d22b2007-12-19 13:59:52 +08004630
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004631 iwl4965_cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004632}
4633
4634#define MAX_HW_RESTARTS 5
4635
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004636static int __iwl4965_up(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004637{
Tomas Winkler57aab752008-04-14 21:16:03 -07004638 int i;
4639 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07004640
4641 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
4642 IWL_WARNING("Exit pending; will not bring the NIC up\n");
4643 return -EIO;
4644 }
4645
4646 if (test_bit(STATUS_RF_KILL_SW, &priv->status)) {
4647 IWL_WARNING("Radio disabled by SW RF kill (module "
4648 "parameter)\n");
Mohamed Abbasad97edd2008-03-28 16:21:06 -07004649 iwl_rfkill_set_hw_state(priv);
Zhu Yie655b9f2008-01-24 02:19:38 -08004650 return -ENODEV;
4651 }
4652
Reinette Chatree903fbd2008-01-30 22:05:15 -08004653 if (!priv->ucode_data_backup.v_addr || !priv->ucode_data.v_addr) {
4654 IWL_ERROR("ucode not available for device bringup\n");
4655 return -EIO;
4656 }
4657
Zhu Yie655b9f2008-01-24 02:19:38 -08004658 /* If platform's RF_KILL switch is NOT set to KILL */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07004659 if (iwl_read32(priv, CSR_GP_CNTRL) &
Zhu Yie655b9f2008-01-24 02:19:38 -08004660 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
4661 clear_bit(STATUS_RF_KILL_HW, &priv->status);
4662 else {
4663 set_bit(STATUS_RF_KILL_HW, &priv->status);
4664 if (!test_bit(STATUS_IN_SUSPEND, &priv->status)) {
Mohamed Abbasad97edd2008-03-28 16:21:06 -07004665 iwl_rfkill_set_hw_state(priv);
Zhu Yie655b9f2008-01-24 02:19:38 -08004666 IWL_WARNING("Radio disabled by HW RF Kill switch\n");
4667 return -ENODEV;
4668 }
Zhu Yib481de92007-09-25 17:54:57 -07004669 }
4670
Mohamed Abbasad97edd2008-03-28 16:21:06 -07004671 iwl_rfkill_set_hw_state(priv);
Tomas Winkler3395f6e2008-03-25 16:33:37 -07004672 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
Zhu Yib481de92007-09-25 17:54:57 -07004673
Ron Rindjunsky399f4902008-04-23 17:14:56 -07004674 ret = priv->cfg->ops->lib->alloc_shared_mem(priv);
4675 if (ret) {
4676 IWL_ERROR("Unable to allocate shared memory\n");
4677 return ret;
4678 }
4679
Tomas Winkler57aab752008-04-14 21:16:03 -07004680 ret = priv->cfg->ops->lib->hw_nic_init(priv);
4681 if (ret) {
4682 IWL_ERROR("Unable to init nic\n");
4683 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07004684 }
4685
4686 /* make sure rfkill handshake bits are cleared */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07004687 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
4688 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR,
Zhu Yib481de92007-09-25 17:54:57 -07004689 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
4690
4691 /* clear (again), then enable host interrupts */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07004692 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004693 iwl4965_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004694
4695 /* really make sure rfkill handshake bits are cleared */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07004696 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
4697 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
Zhu Yib481de92007-09-25 17:54:57 -07004698
4699 /* Copy original ucode data image from disk into backup cache.
4700 * This will be used to initialize the on-board processor's
4701 * data SRAM for a clean start when the runtime program first loads. */
4702 memcpy(priv->ucode_data_backup.v_addr, priv->ucode_data.v_addr,
Zhu Yi5a66926a2008-01-14 17:46:18 -08004703 priv->ucode_data.len);
Zhu Yib481de92007-09-25 17:54:57 -07004704
Zhu Yie655b9f2008-01-24 02:19:38 -08004705 /* We return success when we resume from suspend and rf_kill is on. */
4706 if (test_bit(STATUS_RF_KILL_HW, &priv->status))
Zhu Yib481de92007-09-25 17:54:57 -07004707 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07004708
4709 for (i = 0; i < MAX_HW_RESTARTS; i++) {
4710
Assaf Kraussbf85ea42008-03-14 10:38:49 -07004711 iwlcore_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004712
4713 /* load bootstrap state machine,
4714 * load bootstrap program into processor's memory,
4715 * prepare to load the "initialize" uCode */
Tomas Winkler57aab752008-04-14 21:16:03 -07004716 ret = priv->cfg->ops->lib->load_ucode(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004717
Tomas Winkler57aab752008-04-14 21:16:03 -07004718 if (ret) {
4719 IWL_ERROR("Unable to set up bootstrap uCode: %d\n", ret);
Zhu Yib481de92007-09-25 17:54:57 -07004720 continue;
4721 }
4722
4723 /* start card; "initialize" will load runtime ucode */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004724 iwl4965_nic_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004725
Zhu Yib481de92007-09-25 17:54:57 -07004726 IWL_DEBUG_INFO(DRV_NAME " is coming up\n");
4727
4728 return 0;
4729 }
4730
4731 set_bit(STATUS_EXIT_PENDING, &priv->status);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004732 __iwl4965_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004733
4734 /* tried to restart and config the device for as long as our
4735 * patience could withstand */
4736 IWL_ERROR("Unable to initialize device after %d attempts.\n", i);
4737 return -EIO;
4738}
4739
4740
4741/*****************************************************************************
4742 *
4743 * Workqueue callbacks
4744 *
4745 *****************************************************************************/
4746
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004747static void iwl4965_bg_init_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07004748{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004749 struct iwl_priv *priv =
4750 container_of(data, struct iwl_priv, init_alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07004751
4752 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
4753 return;
4754
4755 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004756 iwl4965_init_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004757 mutex_unlock(&priv->mutex);
4758}
4759
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004760static void iwl4965_bg_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07004761{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004762 struct iwl_priv *priv =
4763 container_of(data, struct iwl_priv, alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07004764
4765 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
4766 return;
4767
4768 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004769 iwl4965_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004770 mutex_unlock(&priv->mutex);
4771}
4772
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004773static void iwl4965_bg_rf_kill(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -07004774{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004775 struct iwl_priv *priv = container_of(work, struct iwl_priv, rf_kill);
Zhu Yib481de92007-09-25 17:54:57 -07004776
4777 wake_up_interruptible(&priv->wait_command_queue);
4778
4779 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
4780 return;
4781
4782 mutex_lock(&priv->mutex);
4783
Tomas Winklerfee12472008-04-03 16:05:21 -07004784 if (!iwl_is_rfkill(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07004785 IWL_DEBUG(IWL_DL_INFO | IWL_DL_RF_KILL,
4786 "HW and/or SW RF Kill no longer active, restarting "
4787 "device\n");
4788 if (!test_bit(STATUS_EXIT_PENDING, &priv->status))
4789 queue_work(priv->workqueue, &priv->restart);
4790 } else {
Mohamed Abbasad97edd2008-03-28 16:21:06 -07004791 /* make sure mac80211 stop sending Tx frame */
4792 if (priv->mac80211_registered)
4793 ieee80211_stop_queues(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07004794
4795 if (!test_bit(STATUS_RF_KILL_HW, &priv->status))
4796 IWL_DEBUG_RF_KILL("Can not turn radio back on - "
4797 "disabled by SW switch\n");
4798 else
4799 IWL_WARNING("Radio Frequency Kill Switch is On:\n"
4800 "Kill switch must be turned off for "
4801 "wireless networking to work.\n");
4802 }
Mohamed Abbasad97edd2008-03-28 16:21:06 -07004803 iwl_rfkill_set_hw_state(priv);
4804
Zhu Yib481de92007-09-25 17:54:57 -07004805 mutex_unlock(&priv->mutex);
4806}
4807
4808#define IWL_SCAN_CHECK_WATCHDOG (7 * HZ)
4809
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004810static void iwl4965_bg_scan_check(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07004811{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004812 struct iwl_priv *priv =
4813 container_of(data, struct iwl_priv, scan_check.work);
Zhu Yib481de92007-09-25 17:54:57 -07004814
4815 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
4816 return;
4817
4818 mutex_lock(&priv->mutex);
4819 if (test_bit(STATUS_SCANNING, &priv->status) ||
4820 test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
4821 IWL_DEBUG(IWL_DL_INFO | IWL_DL_SCAN,
4822 "Scan completion watchdog resetting adapter (%dms)\n",
4823 jiffies_to_msecs(IWL_SCAN_CHECK_WATCHDOG));
mabbas052c4b92007-10-25 17:15:43 +08004824
Zhu Yib481de92007-09-25 17:54:57 -07004825 if (!test_bit(STATUS_EXIT_PENDING, &priv->status))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004826 iwl4965_send_scan_abort(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004827 }
4828 mutex_unlock(&priv->mutex);
4829}
4830
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004831static void iwl4965_bg_request_scan(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07004832{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004833 struct iwl_priv *priv =
4834 container_of(data, struct iwl_priv, request_scan);
Tomas Winkler857485c2008-03-21 13:53:44 -07004835 struct iwl_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -07004836 .id = REPLY_SCAN_CMD,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004837 .len = sizeof(struct iwl4965_scan_cmd),
Zhu Yib481de92007-09-25 17:54:57 -07004838 .meta.flags = CMD_SIZE_HUGE,
4839 };
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004840 struct iwl4965_scan_cmd *scan;
Zhu Yib481de92007-09-25 17:54:57 -07004841 struct ieee80211_conf *conf = NULL;
Tomas Winkler78330fd2008-02-06 02:37:18 +02004842 u16 cmd_len;
Johannes Berg8318d782008-01-24 19:38:38 +01004843 enum ieee80211_band band;
Tomas Winkler78330fd2008-02-06 02:37:18 +02004844 u8 direct_mask;
Tomas Winkler857485c2008-03-21 13:53:44 -07004845 int ret = 0;
Zhu Yib481de92007-09-25 17:54:57 -07004846
4847 conf = ieee80211_get_hw_conf(priv->hw);
4848
4849 mutex_lock(&priv->mutex);
4850
Tomas Winklerfee12472008-04-03 16:05:21 -07004851 if (!iwl_is_ready(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07004852 IWL_WARNING("request scan called when driver not ready.\n");
4853 goto done;
4854 }
4855
4856 /* Make sure the scan wasn't cancelled before this queued work
4857 * was given the chance to run... */
4858 if (!test_bit(STATUS_SCANNING, &priv->status))
4859 goto done;
4860
4861 /* This should never be called or scheduled if there is currently
4862 * a scan active in the hardware. */
4863 if (test_bit(STATUS_SCAN_HW, &priv->status)) {
4864 IWL_DEBUG_INFO("Multiple concurrent scan requests in parallel. "
4865 "Ignoring second request.\n");
Tomas Winkler857485c2008-03-21 13:53:44 -07004866 ret = -EIO;
Zhu Yib481de92007-09-25 17:54:57 -07004867 goto done;
4868 }
4869
4870 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
4871 IWL_DEBUG_SCAN("Aborting scan due to device shutdown\n");
4872 goto done;
4873 }
4874
4875 if (test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
4876 IWL_DEBUG_HC("Scan request while abort pending. Queuing.\n");
4877 goto done;
4878 }
4879
Tomas Winklerfee12472008-04-03 16:05:21 -07004880 if (iwl_is_rfkill(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07004881 IWL_DEBUG_HC("Aborting scan due to RF Kill activation\n");
4882 goto done;
4883 }
4884
4885 if (!test_bit(STATUS_READY, &priv->status)) {
4886 IWL_DEBUG_HC("Scan request while uninitialized. Queuing.\n");
4887 goto done;
4888 }
4889
4890 if (!priv->scan_bands) {
4891 IWL_DEBUG_HC("Aborting scan due to no requested bands\n");
4892 goto done;
4893 }
4894
4895 if (!priv->scan) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004896 priv->scan = kmalloc(sizeof(struct iwl4965_scan_cmd) +
Zhu Yib481de92007-09-25 17:54:57 -07004897 IWL_MAX_SCAN_SIZE, GFP_KERNEL);
4898 if (!priv->scan) {
Tomas Winkler857485c2008-03-21 13:53:44 -07004899 ret = -ENOMEM;
Zhu Yib481de92007-09-25 17:54:57 -07004900 goto done;
4901 }
4902 }
4903 scan = priv->scan;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004904 memset(scan, 0, sizeof(struct iwl4965_scan_cmd) + IWL_MAX_SCAN_SIZE);
Zhu Yib481de92007-09-25 17:54:57 -07004905
4906 scan->quiet_plcp_th = IWL_PLCP_QUIET_THRESH;
4907 scan->quiet_time = IWL_ACTIVE_QUIET_TIME;
4908
Tomas Winkler3109ece2008-03-28 16:33:35 -07004909 if (iwl_is_associated(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07004910 u16 interval = 0;
4911 u32 extra;
4912 u32 suspend_time = 100;
4913 u32 scan_suspend_time = 100;
4914 unsigned long flags;
4915
4916 IWL_DEBUG_INFO("Scanning while associated...\n");
4917
4918 spin_lock_irqsave(&priv->lock, flags);
4919 interval = priv->beacon_int;
4920 spin_unlock_irqrestore(&priv->lock, flags);
4921
4922 scan->suspend_time = 0;
mabbas052c4b92007-10-25 17:15:43 +08004923 scan->max_out_time = cpu_to_le32(200 * 1024);
Zhu Yib481de92007-09-25 17:54:57 -07004924 if (!interval)
4925 interval = suspend_time;
4926
4927 extra = (suspend_time / interval) << 22;
4928 scan_suspend_time = (extra |
4929 ((suspend_time % interval) * 1024));
4930 scan->suspend_time = cpu_to_le32(scan_suspend_time);
4931 IWL_DEBUG_SCAN("suspend_time 0x%X beacon interval %d\n",
4932 scan_suspend_time, interval);
4933 }
4934
4935 /* We should add the ability for user to lock to PASSIVE ONLY */
4936 if (priv->one_direct_scan) {
4937 IWL_DEBUG_SCAN
4938 ("Kicking off one direct scan for '%s'\n",
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004939 iwl4965_escape_essid(priv->direct_ssid,
Zhu Yib481de92007-09-25 17:54:57 -07004940 priv->direct_ssid_len));
4941 scan->direct_scan[0].id = WLAN_EID_SSID;
4942 scan->direct_scan[0].len = priv->direct_ssid_len;
4943 memcpy(scan->direct_scan[0].ssid,
4944 priv->direct_ssid, priv->direct_ssid_len);
4945 direct_mask = 1;
Tomas Winkler3109ece2008-03-28 16:33:35 -07004946 } else if (!iwl_is_associated(priv) && priv->essid_len) {
Bill Moss786b4552008-04-17 16:03:40 -07004947 IWL_DEBUG_SCAN
4948 ("Kicking off one direct scan for '%s' when not associated\n",
4949 iwl4965_escape_essid(priv->essid, priv->essid_len));
Zhu Yib481de92007-09-25 17:54:57 -07004950 scan->direct_scan[0].id = WLAN_EID_SSID;
4951 scan->direct_scan[0].len = priv->essid_len;
4952 memcpy(scan->direct_scan[0].ssid, priv->essid, priv->essid_len);
4953 direct_mask = 1;
Tomas Winkler857485c2008-03-21 13:53:44 -07004954 } else {
Bill Moss786b4552008-04-17 16:03:40 -07004955 IWL_DEBUG_SCAN("Kicking off one indirect scan.\n");
Zhu Yib481de92007-09-25 17:54:57 -07004956 direct_mask = 0;
Tomas Winkler857485c2008-03-21 13:53:44 -07004957 }
Zhu Yib481de92007-09-25 17:54:57 -07004958
Zhu Yib481de92007-09-25 17:54:57 -07004959 scan->tx_cmd.tx_flags = TX_CMD_FLG_SEQ_CTL_MSK;
Tomas Winkler5425e492008-04-15 16:01:38 -07004960 scan->tx_cmd.sta_id = priv->hw_params.bcast_sta_id;
Zhu Yib481de92007-09-25 17:54:57 -07004961 scan->tx_cmd.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
4962
Zhu Yib481de92007-09-25 17:54:57 -07004963
4964 switch (priv->scan_bands) {
4965 case 2:
4966 scan->flags = RXON_FLG_BAND_24G_MSK | RXON_FLG_AUTO_DETECT_MSK;
4967 scan->tx_cmd.rate_n_flags =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004968 iwl4965_hw_set_rate_n_flags(IWL_RATE_1M_PLCP,
Zhu Yib481de92007-09-25 17:54:57 -07004969 RATE_MCS_ANT_B_MSK|RATE_MCS_CCK_MSK);
4970
4971 scan->good_CRC_th = 0;
Johannes Berg8318d782008-01-24 19:38:38 +01004972 band = IEEE80211_BAND_2GHZ;
Zhu Yib481de92007-09-25 17:54:57 -07004973 break;
4974
4975 case 1:
4976 scan->tx_cmd.rate_n_flags =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004977 iwl4965_hw_set_rate_n_flags(IWL_RATE_6M_PLCP,
Zhu Yib481de92007-09-25 17:54:57 -07004978 RATE_MCS_ANT_B_MSK);
4979 scan->good_CRC_th = IWL_GOOD_CRC_TH;
Johannes Berg8318d782008-01-24 19:38:38 +01004980 band = IEEE80211_BAND_5GHZ;
Zhu Yib481de92007-09-25 17:54:57 -07004981 break;
4982
4983 default:
4984 IWL_WARNING("Invalid scan band count\n");
4985 goto done;
4986 }
4987
Tomas Winkler78330fd2008-02-06 02:37:18 +02004988 /* We don't build a direct scan probe request; the uCode will do
4989 * that based on the direct_mask added to each channel entry */
4990 cmd_len = iwl4965_fill_probe_req(priv, band,
4991 (struct ieee80211_mgmt *)scan->data,
4992 IWL_MAX_SCAN_SIZE - sizeof(*scan), 0);
4993
4994 scan->tx_cmd.len = cpu_to_le16(cmd_len);
Zhu Yib481de92007-09-25 17:54:57 -07004995 /* select Rx chains */
4996
4997 /* Force use of chains B and C (0x6) for scan Rx.
4998 * Avoid A (0x1) because of its off-channel reception on A-band.
4999 * MIMO is not used here, but value is required to make uCode happy. */
5000 scan->rx_chain = RXON_RX_CHAIN_DRIVER_FORCE_MSK |
5001 cpu_to_le16((0x7 << RXON_RX_CHAIN_VALID_POS) |
5002 (0x6 << RXON_RX_CHAIN_FORCE_SEL_POS) |
5003 (0x7 << RXON_RX_CHAIN_FORCE_MIMO_SEL_POS));
5004
5005 if (priv->iw_mode == IEEE80211_IF_TYPE_MNTR)
5006 scan->filter_flags = RXON_FILTER_PROMISC_MSK;
5007
Bill Moss786b4552008-04-17 16:03:40 -07005008 if (direct_mask)
Reinette Chatre26c0f032008-03-11 16:17:15 -07005009 scan->channel_count =
5010 iwl4965_get_channels_for_scan(
5011 priv, band, 1, /* active */
5012 direct_mask,
5013 (void *)&scan->data[le16_to_cpu(scan->tx_cmd.len)]);
Bill Moss786b4552008-04-17 16:03:40 -07005014 else
Reinette Chatre26c0f032008-03-11 16:17:15 -07005015 scan->channel_count =
5016 iwl4965_get_channels_for_scan(
5017 priv, band, 0, /* passive */
5018 direct_mask,
5019 (void *)&scan->data[le16_to_cpu(scan->tx_cmd.len)]);
Zhu Yib481de92007-09-25 17:54:57 -07005020
Mohamed Abbas5da4b552008-04-21 15:41:51 -07005021 scan->filter_flags |= (RXON_FILTER_ACCEPT_GRP_MSK |
5022 RXON_FILTER_BCON_AWARE_MSK);
Zhu Yib481de92007-09-25 17:54:57 -07005023 cmd.len += le16_to_cpu(scan->tx_cmd.len) +
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005024 scan->channel_count * sizeof(struct iwl4965_scan_channel);
Zhu Yib481de92007-09-25 17:54:57 -07005025 cmd.data = scan;
5026 scan->len = cpu_to_le16(cmd.len);
5027
5028 set_bit(STATUS_SCAN_HW, &priv->status);
Tomas Winkler857485c2008-03-21 13:53:44 -07005029 ret = iwl_send_cmd_sync(priv, &cmd);
5030 if (ret)
Zhu Yib481de92007-09-25 17:54:57 -07005031 goto done;
5032
5033 queue_delayed_work(priv->workqueue, &priv->scan_check,
5034 IWL_SCAN_CHECK_WATCHDOG);
5035
5036 mutex_unlock(&priv->mutex);
5037 return;
5038
5039 done:
Ian Schram01ebd062007-10-25 17:15:22 +08005040 /* inform mac80211 scan aborted */
Zhu Yib481de92007-09-25 17:54:57 -07005041 queue_work(priv->workqueue, &priv->scan_completed);
5042 mutex_unlock(&priv->mutex);
5043}
5044
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005045static void iwl4965_bg_up(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07005046{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07005047 struct iwl_priv *priv = container_of(data, struct iwl_priv, up);
Zhu Yib481de92007-09-25 17:54:57 -07005048
5049 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
5050 return;
5051
5052 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005053 __iwl4965_up(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005054 mutex_unlock(&priv->mutex);
5055}
5056
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005057static void iwl4965_bg_restart(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07005058{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07005059 struct iwl_priv *priv = container_of(data, struct iwl_priv, restart);
Zhu Yib481de92007-09-25 17:54:57 -07005060
5061 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
5062 return;
5063
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005064 iwl4965_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005065 queue_work(priv->workqueue, &priv->up);
5066}
5067
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005068static void iwl4965_bg_rx_replenish(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07005069{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07005070 struct iwl_priv *priv =
5071 container_of(data, struct iwl_priv, rx_replenish);
Zhu Yib481de92007-09-25 17:54:57 -07005072
5073 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
5074 return;
5075
5076 mutex_lock(&priv->mutex);
Tomas Winklera55360e2008-05-05 10:22:28 +08005077 iwl_rx_replenish(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005078 mutex_unlock(&priv->mutex);
5079}
5080
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08005081#define IWL_DELAY_NEXT_SCAN (HZ*2)
5082
Reinette Chatre508e32e2008-04-14 21:16:13 -07005083static void iwl4965_post_associate(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005084{
Zhu Yib481de92007-09-25 17:54:57 -07005085 struct ieee80211_conf *conf = NULL;
Tomas Winkler857485c2008-03-21 13:53:44 -07005086 int ret = 0;
Joe Perches0795af52007-10-03 17:59:30 -07005087 DECLARE_MAC_BUF(mac);
Zhu Yib481de92007-09-25 17:54:57 -07005088
5089 if (priv->iw_mode == IEEE80211_IF_TYPE_AP) {
5090 IWL_ERROR("%s Should not be called in AP mode\n", __FUNCTION__);
5091 return;
5092 }
5093
Joe Perches0795af52007-10-03 17:59:30 -07005094 IWL_DEBUG_ASSOC("Associated as %d to: %s\n",
5095 priv->assoc_id,
5096 print_mac(mac, priv->active_rxon.bssid_addr));
Zhu Yib481de92007-09-25 17:54:57 -07005097
5098
5099 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
5100 return;
5101
Zhu Yib481de92007-09-25 17:54:57 -07005102
Reinette Chatre508e32e2008-04-14 21:16:13 -07005103 if (!priv->vif || !priv->is_open)
Mohamed Abbas948c1712007-10-25 17:15:45 +08005104 return;
Reinette Chatre508e32e2008-04-14 21:16:13 -07005105
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005106 iwl4965_scan_cancel_timeout(priv, 200);
mabbas052c4b92007-10-25 17:15:43 +08005107
Zhu Yib481de92007-09-25 17:54:57 -07005108 conf = ieee80211_get_hw_conf(priv->hw);
5109
5110 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005111 iwl4965_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005112
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005113 memset(&priv->rxon_timing, 0, sizeof(struct iwl4965_rxon_time_cmd));
5114 iwl4965_setup_rxon_timing(priv);
Tomas Winkler857485c2008-03-21 13:53:44 -07005115 ret = iwl_send_cmd_pdu(priv, REPLY_RXON_TIMING,
Zhu Yib481de92007-09-25 17:54:57 -07005116 sizeof(priv->rxon_timing), &priv->rxon_timing);
Tomas Winkler857485c2008-03-21 13:53:44 -07005117 if (ret)
Zhu Yib481de92007-09-25 17:54:57 -07005118 IWL_WARNING("REPLY_RXON_TIMING failed - "
5119 "Attempting to continue.\n");
5120
5121 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
5122
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08005123#ifdef CONFIG_IWL4965_HT
Ron Rindjunskyfd105e72007-11-26 16:14:39 +02005124 if (priv->current_ht_config.is_ht)
5125 iwl4965_set_rxon_ht(priv, &priv->current_ht_config);
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08005126#endif /* CONFIG_IWL4965_HT*/
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -07005127 iwl_set_rxon_chain(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005128 priv->staging_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
5129
5130 IWL_DEBUG_ASSOC("assoc id %d beacon interval %d\n",
5131 priv->assoc_id, priv->beacon_int);
5132
5133 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
5134 priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
5135 else
5136 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
5137
5138 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) {
5139 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_SLOT_TIME)
5140 priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
5141 else
5142 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
5143
5144 if (priv->iw_mode == IEEE80211_IF_TYPE_IBSS)
5145 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
5146
5147 }
5148
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005149 iwl4965_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005150
5151 switch (priv->iw_mode) {
5152 case IEEE80211_IF_TYPE_STA:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005153 iwl4965_rate_scale_init(priv->hw, IWL_AP_ID);
Zhu Yib481de92007-09-25 17:54:57 -07005154 break;
5155
5156 case IEEE80211_IF_TYPE_IBSS:
5157
5158 /* clear out the station table */
Assaf Kraussbf85ea42008-03-14 10:38:49 -07005159 iwlcore_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005160
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005161 iwl4965_rxon_add_station(priv, iwl4965_broadcast_addr, 0);
5162 iwl4965_rxon_add_station(priv, priv->bssid, 0);
5163 iwl4965_rate_scale_init(priv->hw, IWL_STA_ID);
5164 iwl4965_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005165
5166 break;
5167
5168 default:
5169 IWL_ERROR("%s Should not be called in %d mode\n",
5170 __FUNCTION__, priv->iw_mode);
5171 break;
5172 }
5173
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005174 iwl4965_sequence_reset(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005175
Zhu Yib481de92007-09-25 17:54:57 -07005176 /* Enable Rx differential gain and sensitivity calibrations */
Emmanuel Grumbachf0832f12008-04-16 16:34:47 -07005177 iwl_chain_noise_reset(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005178 priv->start_calib = 1;
Zhu Yib481de92007-09-25 17:54:57 -07005179
5180 if (priv->iw_mode == IEEE80211_IF_TYPE_IBSS)
5181 priv->assoc_station_added = 1;
5182
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005183 iwl4965_activate_qos(priv, 0);
Ron Rindjunsky292ae172008-02-06 11:20:39 -08005184
Mohamed Abbas5da4b552008-04-21 15:41:51 -07005185 iwl_power_update_mode(priv, 0);
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08005186 /* we have just associated, don't start scan too early */
5187 priv->next_scan_jiffies = jiffies + IWL_DELAY_NEXT_SCAN;
Reinette Chatre508e32e2008-04-14 21:16:13 -07005188}
5189
5190
5191static void iwl4965_bg_post_associate(struct work_struct *data)
5192{
5193 struct iwl_priv *priv = container_of(data, struct iwl_priv,
5194 post_associate.work);
5195
5196 mutex_lock(&priv->mutex);
5197 iwl4965_post_associate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005198 mutex_unlock(&priv->mutex);
Reinette Chatre508e32e2008-04-14 21:16:13 -07005199
Zhu Yib481de92007-09-25 17:54:57 -07005200}
5201
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005202static void iwl4965_bg_abort_scan(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -07005203{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07005204 struct iwl_priv *priv = container_of(work, struct iwl_priv, abort_scan);
Zhu Yib481de92007-09-25 17:54:57 -07005205
Tomas Winklerfee12472008-04-03 16:05:21 -07005206 if (!iwl_is_ready(priv))
Zhu Yib481de92007-09-25 17:54:57 -07005207 return;
5208
5209 mutex_lock(&priv->mutex);
5210
5211 set_bit(STATUS_SCAN_ABORTING, &priv->status);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005212 iwl4965_send_scan_abort(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005213
5214 mutex_unlock(&priv->mutex);
5215}
5216
Zhu Yi76bb77e2007-11-22 10:53:22 +08005217static int iwl4965_mac_config(struct ieee80211_hw *hw, struct ieee80211_conf *conf);
5218
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005219static void iwl4965_bg_scan_completed(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -07005220{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07005221 struct iwl_priv *priv =
5222 container_of(work, struct iwl_priv, scan_completed);
Zhu Yib481de92007-09-25 17:54:57 -07005223
5224 IWL_DEBUG(IWL_DL_INFO | IWL_DL_SCAN, "SCAN complete scan\n");
5225
5226 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
5227 return;
5228
Zhu Yia0646472007-12-20 14:10:01 +08005229 if (test_bit(STATUS_CONF_PENDING, &priv->status))
5230 iwl4965_mac_config(priv->hw, ieee80211_get_hw_conf(priv->hw));
Zhu Yi76bb77e2007-11-22 10:53:22 +08005231
Zhu Yib481de92007-09-25 17:54:57 -07005232 ieee80211_scan_completed(priv->hw);
5233
5234 /* Since setting the TXPOWER may have been deferred while
5235 * performing the scan, fire one off */
5236 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005237 iwl4965_hw_reg_send_txpower(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005238 mutex_unlock(&priv->mutex);
5239}
5240
5241/*****************************************************************************
5242 *
5243 * mac80211 entry point functions
5244 *
5245 *****************************************************************************/
5246
Zhu Yi5a66926a2008-01-14 17:46:18 -08005247#define UCODE_READY_TIMEOUT (2 * HZ)
5248
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005249static int iwl4965_mac_start(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07005250{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07005251 struct iwl_priv *priv = hw->priv;
Zhu Yi5a66926a2008-01-14 17:46:18 -08005252 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07005253
5254 IWL_DEBUG_MAC80211("enter\n");
5255
Zhu Yi5a66926a2008-01-14 17:46:18 -08005256 if (pci_enable_device(priv->pci_dev)) {
5257 IWL_ERROR("Fail to pci_enable_device\n");
5258 return -ENODEV;
5259 }
5260 pci_restore_state(priv->pci_dev);
5261 pci_enable_msi(priv->pci_dev);
5262
5263 ret = request_irq(priv->pci_dev->irq, iwl4965_isr, IRQF_SHARED,
5264 DRV_NAME, priv);
5265 if (ret) {
5266 IWL_ERROR("Error allocating IRQ %d\n", priv->pci_dev->irq);
5267 goto out_disable_msi;
5268 }
5269
Zhu Yib481de92007-09-25 17:54:57 -07005270 /* we should be verifying the device is ready to be opened */
5271 mutex_lock(&priv->mutex);
5272
Zhu Yi5a66926a2008-01-14 17:46:18 -08005273 memset(&priv->staging_rxon, 0, sizeof(struct iwl4965_rxon_cmd));
5274 /* fetch ucode file from disk, alloc and copy to bus-master buffers ...
5275 * ucode filename and max sizes are card-specific. */
5276
5277 if (!priv->ucode_code.len) {
5278 ret = iwl4965_read_ucode(priv);
5279 if (ret) {
5280 IWL_ERROR("Could not read microcode: %d\n", ret);
5281 mutex_unlock(&priv->mutex);
5282 goto out_release_irq;
5283 }
5284 }
5285
Zhu Yie655b9f2008-01-24 02:19:38 -08005286 ret = __iwl4965_up(priv);
Zhu Yi5a66926a2008-01-14 17:46:18 -08005287
Zhu Yib481de92007-09-25 17:54:57 -07005288 mutex_unlock(&priv->mutex);
Zhu Yi5a66926a2008-01-14 17:46:18 -08005289
Zhu Yie655b9f2008-01-24 02:19:38 -08005290 if (ret)
5291 goto out_release_irq;
5292
5293 IWL_DEBUG_INFO("Start UP work done.\n");
5294
5295 if (test_bit(STATUS_IN_SUSPEND, &priv->status))
5296 return 0;
5297
Zhu Yi5a66926a2008-01-14 17:46:18 -08005298 /* Wait for START_ALIVE from ucode. Otherwise callbacks from
5299 * mac80211 will not be run successfully. */
5300 ret = wait_event_interruptible_timeout(priv->wait_command_queue,
5301 test_bit(STATUS_READY, &priv->status),
5302 UCODE_READY_TIMEOUT);
5303 if (!ret) {
5304 if (!test_bit(STATUS_READY, &priv->status)) {
5305 IWL_ERROR("Wait for START_ALIVE timeout after %dms.\n",
5306 jiffies_to_msecs(UCODE_READY_TIMEOUT));
5307 ret = -ETIMEDOUT;
5308 goto out_release_irq;
5309 }
5310 }
5311
Zhu Yie655b9f2008-01-24 02:19:38 -08005312 priv->is_open = 1;
Zhu Yib481de92007-09-25 17:54:57 -07005313 IWL_DEBUG_MAC80211("leave\n");
5314 return 0;
Zhu Yi5a66926a2008-01-14 17:46:18 -08005315
5316out_release_irq:
5317 free_irq(priv->pci_dev->irq, priv);
5318out_disable_msi:
5319 pci_disable_msi(priv->pci_dev);
Zhu Yie655b9f2008-01-24 02:19:38 -08005320 pci_disable_device(priv->pci_dev);
5321 priv->is_open = 0;
5322 IWL_DEBUG_MAC80211("leave - failed\n");
Zhu Yi5a66926a2008-01-14 17:46:18 -08005323 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07005324}
5325
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005326static void iwl4965_mac_stop(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07005327{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07005328 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07005329
5330 IWL_DEBUG_MAC80211("enter\n");
Mohamed Abbas948c1712007-10-25 17:15:45 +08005331
Zhu Yie655b9f2008-01-24 02:19:38 -08005332 if (!priv->is_open) {
5333 IWL_DEBUG_MAC80211("leave - skip\n");
5334 return;
5335 }
5336
Zhu Yib481de92007-09-25 17:54:57 -07005337 priv->is_open = 0;
Zhu Yi5a66926a2008-01-14 17:46:18 -08005338
Tomas Winklerfee12472008-04-03 16:05:21 -07005339 if (iwl_is_ready_rf(priv)) {
Zhu Yie655b9f2008-01-24 02:19:38 -08005340 /* stop mac, cancel any scan request and clear
5341 * RXON_FILTER_ASSOC_MSK BIT
5342 */
Zhu Yi5a66926a2008-01-14 17:46:18 -08005343 mutex_lock(&priv->mutex);
5344 iwl4965_scan_cancel_timeout(priv, 100);
5345 cancel_delayed_work(&priv->post_associate);
Mohamed Abbasfde35712007-11-29 11:10:15 +08005346 mutex_unlock(&priv->mutex);
Mohamed Abbasfde35712007-11-29 11:10:15 +08005347 }
5348
Zhu Yi5a66926a2008-01-14 17:46:18 -08005349 iwl4965_down(priv);
5350
5351 flush_workqueue(priv->workqueue);
5352 free_irq(priv->pci_dev->irq, priv);
5353 pci_disable_msi(priv->pci_dev);
5354 pci_save_state(priv->pci_dev);
5355 pci_disable_device(priv->pci_dev);
Mohamed Abbas948c1712007-10-25 17:15:45 +08005356
Zhu Yib481de92007-09-25 17:54:57 -07005357 IWL_DEBUG_MAC80211("leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07005358}
5359
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005360static int iwl4965_mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb,
Zhu Yib481de92007-09-25 17:54:57 -07005361 struct ieee80211_tx_control *ctl)
5362{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07005363 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07005364
5365 IWL_DEBUG_MAC80211("enter\n");
5366
5367 if (priv->iw_mode == IEEE80211_IF_TYPE_MNTR) {
5368 IWL_DEBUG_MAC80211("leave - monitor\n");
5369 return -1;
5370 }
5371
5372 IWL_DEBUG_TX("dev->xmit(%d bytes) at rate 0x%02x\n", skb->len,
Johannes Berg8318d782008-01-24 19:38:38 +01005373 ctl->tx_rate->bitrate);
Zhu Yib481de92007-09-25 17:54:57 -07005374
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005375 if (iwl4965_tx_skb(priv, skb, ctl))
Zhu Yib481de92007-09-25 17:54:57 -07005376 dev_kfree_skb_any(skb);
5377
5378 IWL_DEBUG_MAC80211("leave\n");
5379 return 0;
5380}
5381
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005382static int iwl4965_mac_add_interface(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07005383 struct ieee80211_if_init_conf *conf)
5384{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07005385 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07005386 unsigned long flags;
Joe Perches0795af52007-10-03 17:59:30 -07005387 DECLARE_MAC_BUF(mac);
Zhu Yib481de92007-09-25 17:54:57 -07005388
Johannes Berg32bfd352007-12-19 01:31:26 +01005389 IWL_DEBUG_MAC80211("enter: type %d\n", conf->type);
Zhu Yib481de92007-09-25 17:54:57 -07005390
Johannes Berg32bfd352007-12-19 01:31:26 +01005391 if (priv->vif) {
5392 IWL_DEBUG_MAC80211("leave - vif != NULL\n");
Reinette Chatre75849d22008-01-23 10:15:17 -08005393 return -EOPNOTSUPP;
Zhu Yib481de92007-09-25 17:54:57 -07005394 }
5395
5396 spin_lock_irqsave(&priv->lock, flags);
Johannes Berg32bfd352007-12-19 01:31:26 +01005397 priv->vif = conf->vif;
Zhu Yib481de92007-09-25 17:54:57 -07005398
5399 spin_unlock_irqrestore(&priv->lock, flags);
5400
5401 mutex_lock(&priv->mutex);
Tomas Winkler864792e2007-11-27 21:00:52 +02005402
5403 if (conf->mac_addr) {
5404 IWL_DEBUG_MAC80211("Set %s\n", print_mac(mac, conf->mac_addr));
5405 memcpy(priv->mac_addr, conf->mac_addr, ETH_ALEN);
5406 }
Zhu Yib481de92007-09-25 17:54:57 -07005407
Tomas Winklerfee12472008-04-03 16:05:21 -07005408 if (iwl_is_ready(priv))
Zhu Yi5a66926a2008-01-14 17:46:18 -08005409 iwl4965_set_mode(priv, conf->type);
5410
Zhu Yib481de92007-09-25 17:54:57 -07005411 mutex_unlock(&priv->mutex);
5412
Zhu Yi5a66926a2008-01-14 17:46:18 -08005413 IWL_DEBUG_MAC80211("leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07005414 return 0;
5415}
5416
5417/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005418 * iwl4965_mac_config - mac80211 config callback
Zhu Yib481de92007-09-25 17:54:57 -07005419 *
5420 * We ignore conf->flags & IEEE80211_CONF_SHORT_SLOT_TIME since it seems to
5421 * be set inappropriately and the driver currently sets the hardware up to
5422 * use it whenever needed.
5423 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005424static int iwl4965_mac_config(struct ieee80211_hw *hw, struct ieee80211_conf *conf)
Zhu Yib481de92007-09-25 17:54:57 -07005425{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07005426 struct iwl_priv *priv = hw->priv;
Assaf Kraussbf85ea42008-03-14 10:38:49 -07005427 const struct iwl_channel_info *ch_info;
Zhu Yib481de92007-09-25 17:54:57 -07005428 unsigned long flags;
Zhu Yi76bb77e2007-11-22 10:53:22 +08005429 int ret = 0;
Zhu Yib481de92007-09-25 17:54:57 -07005430
5431 mutex_lock(&priv->mutex);
Johannes Berg8318d782008-01-24 19:38:38 +01005432 IWL_DEBUG_MAC80211("enter to channel %d\n", conf->channel->hw_value);
Zhu Yib481de92007-09-25 17:54:57 -07005433
Zhu Yi12342c42007-12-20 11:27:32 +08005434 priv->add_radiotap = !!(conf->flags & IEEE80211_CONF_RADIOTAP);
5435
Tomas Winklerfee12472008-04-03 16:05:21 -07005436 if (!iwl_is_ready(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07005437 IWL_DEBUG_MAC80211("leave - not ready\n");
Zhu Yi76bb77e2007-11-22 10:53:22 +08005438 ret = -EIO;
5439 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07005440 }
5441
Assaf Krauss1ea87392008-03-18 14:57:50 -07005442 if (unlikely(!priv->cfg->mod_params->disable_hw_scan &&
Zhu Yib481de92007-09-25 17:54:57 -07005443 test_bit(STATUS_SCANNING, &priv->status))) {
Zhu Yia0646472007-12-20 14:10:01 +08005444 IWL_DEBUG_MAC80211("leave - scanning\n");
5445 set_bit(STATUS_CONF_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07005446 mutex_unlock(&priv->mutex);
Zhu Yia0646472007-12-20 14:10:01 +08005447 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07005448 }
5449
5450 spin_lock_irqsave(&priv->lock, flags);
5451
Assaf Krauss8622e702008-03-21 13:53:43 -07005452 ch_info = iwl_get_channel_info(priv, conf->channel->band,
Johannes Berg8318d782008-01-24 19:38:38 +01005453 ieee80211_frequency_to_channel(conf->channel->center_freq));
Zhu Yib481de92007-09-25 17:54:57 -07005454 if (!is_channel_valid(ch_info)) {
Zhu Yib481de92007-09-25 17:54:57 -07005455 IWL_DEBUG_MAC80211("leave - invalid channel\n");
5456 spin_unlock_irqrestore(&priv->lock, flags);
Zhu Yi76bb77e2007-11-22 10:53:22 +08005457 ret = -EINVAL;
5458 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07005459 }
5460
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08005461#ifdef CONFIG_IWL4965_HT
Tomas Winkler78330fd2008-02-06 02:37:18 +02005462 /* if we are switching from ht to 2.4 clear flags
Zhu Yib481de92007-09-25 17:54:57 -07005463 * from any ht related info since 2.4 does not
5464 * support ht */
Tomas Winkler78330fd2008-02-06 02:37:18 +02005465 if ((le16_to_cpu(priv->staging_rxon.channel) != conf->channel->hw_value)
Zhu Yib481de92007-09-25 17:54:57 -07005466#ifdef IEEE80211_CONF_CHANNEL_SWITCH
5467 && !(conf->flags & IEEE80211_CONF_CHANNEL_SWITCH)
5468#endif
5469 )
5470 priv->staging_rxon.flags = 0;
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08005471#endif /* CONFIG_IWL4965_HT */
Zhu Yib481de92007-09-25 17:54:57 -07005472
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -07005473 iwl_set_rxon_channel(priv, conf->channel->band,
Johannes Berg8318d782008-01-24 19:38:38 +01005474 ieee80211_frequency_to_channel(conf->channel->center_freq));
Zhu Yib481de92007-09-25 17:54:57 -07005475
Johannes Berg8318d782008-01-24 19:38:38 +01005476 iwl4965_set_flags_for_phymode(priv, conf->channel->band);
Zhu Yib481de92007-09-25 17:54:57 -07005477
5478 /* The list of supported rates and rate mask can be different
Johannes Berg8318d782008-01-24 19:38:38 +01005479 * for each band; since the band may have changed, reset
Zhu Yib481de92007-09-25 17:54:57 -07005480 * the rate mask to what mac80211 lists */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005481 iwl4965_set_rate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005482
5483 spin_unlock_irqrestore(&priv->lock, flags);
5484
5485#ifdef IEEE80211_CONF_CHANNEL_SWITCH
5486 if (conf->flags & IEEE80211_CONF_CHANNEL_SWITCH) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005487 iwl4965_hw_channel_switch(priv, conf->channel);
Zhu Yi76bb77e2007-11-22 10:53:22 +08005488 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07005489 }
5490#endif
5491
Mohamed Abbasad97edd2008-03-28 16:21:06 -07005492 if (priv->cfg->ops->lib->radio_kill_sw)
5493 priv->cfg->ops->lib->radio_kill_sw(priv, !conf->radio_enabled);
Zhu Yib481de92007-09-25 17:54:57 -07005494
5495 if (!conf->radio_enabled) {
5496 IWL_DEBUG_MAC80211("leave - radio disabled\n");
Zhu Yi76bb77e2007-11-22 10:53:22 +08005497 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07005498 }
5499
Tomas Winklerfee12472008-04-03 16:05:21 -07005500 if (iwl_is_rfkill(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07005501 IWL_DEBUG_MAC80211("leave - RF kill\n");
Zhu Yi76bb77e2007-11-22 10:53:22 +08005502 ret = -EIO;
5503 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07005504 }
5505
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005506 iwl4965_set_rate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005507
5508 if (memcmp(&priv->active_rxon,
5509 &priv->staging_rxon, sizeof(priv->staging_rxon)))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005510 iwl4965_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005511 else
5512 IWL_DEBUG_INFO("No re-sending same RXON configuration.\n");
5513
5514 IWL_DEBUG_MAC80211("leave\n");
5515
Zhu Yia0646472007-12-20 14:10:01 +08005516out:
5517 clear_bit(STATUS_CONF_PENDING, &priv->status);
Zhu Yi5a66926a2008-01-14 17:46:18 -08005518 mutex_unlock(&priv->mutex);
Zhu Yi76bb77e2007-11-22 10:53:22 +08005519 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07005520}
5521
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07005522static void iwl4965_config_ap(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005523{
Tomas Winkler857485c2008-03-21 13:53:44 -07005524 int ret = 0;
Zhu Yib481de92007-09-25 17:54:57 -07005525
Maarten Lankhorstd986bcd2008-01-23 10:15:16 -08005526 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
Zhu Yib481de92007-09-25 17:54:57 -07005527 return;
5528
5529 /* The following should be done only at AP bring up */
5530 if ((priv->active_rxon.filter_flags & RXON_FILTER_ASSOC_MSK) == 0) {
5531
5532 /* RXON - unassoc (to set timing command) */
5533 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005534 iwl4965_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005535
5536 /* RXON Timing */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005537 memset(&priv->rxon_timing, 0, sizeof(struct iwl4965_rxon_time_cmd));
5538 iwl4965_setup_rxon_timing(priv);
Tomas Winkler857485c2008-03-21 13:53:44 -07005539 ret = iwl_send_cmd_pdu(priv, REPLY_RXON_TIMING,
Zhu Yib481de92007-09-25 17:54:57 -07005540 sizeof(priv->rxon_timing), &priv->rxon_timing);
Tomas Winkler857485c2008-03-21 13:53:44 -07005541 if (ret)
Zhu Yib481de92007-09-25 17:54:57 -07005542 IWL_WARNING("REPLY_RXON_TIMING failed - "
5543 "Attempting to continue.\n");
5544
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -07005545 iwl_set_rxon_chain(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005546
5547 /* FIXME: what should be the assoc_id for AP? */
5548 priv->staging_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
5549 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
5550 priv->staging_rxon.flags |=
5551 RXON_FLG_SHORT_PREAMBLE_MSK;
5552 else
5553 priv->staging_rxon.flags &=
5554 ~RXON_FLG_SHORT_PREAMBLE_MSK;
5555
5556 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) {
5557 if (priv->assoc_capability &
5558 WLAN_CAPABILITY_SHORT_SLOT_TIME)
5559 priv->staging_rxon.flags |=
5560 RXON_FLG_SHORT_SLOT_MSK;
5561 else
5562 priv->staging_rxon.flags &=
5563 ~RXON_FLG_SHORT_SLOT_MSK;
5564
5565 if (priv->iw_mode == IEEE80211_IF_TYPE_IBSS)
5566 priv->staging_rxon.flags &=
5567 ~RXON_FLG_SHORT_SLOT_MSK;
5568 }
5569 /* restore RXON assoc */
5570 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005571 iwl4965_commit_rxon(priv);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005572 iwl4965_activate_qos(priv, 1);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005573 iwl4965_rxon_add_station(priv, iwl4965_broadcast_addr, 0);
Zhu Yie1493de2007-09-27 11:27:32 +08005574 }
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005575 iwl4965_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005576
5577 /* FIXME - we need to add code here to detect a totally new
5578 * configuration, reset the AP, unassoc, rxon timing, assoc,
5579 * clear sta table, add BCAST sta... */
5580}
5581
Johannes Berg32bfd352007-12-19 01:31:26 +01005582static int iwl4965_mac_config_interface(struct ieee80211_hw *hw,
5583 struct ieee80211_vif *vif,
Zhu Yib481de92007-09-25 17:54:57 -07005584 struct ieee80211_if_conf *conf)
5585{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07005586 struct iwl_priv *priv = hw->priv;
Joe Perches0795af52007-10-03 17:59:30 -07005587 DECLARE_MAC_BUF(mac);
Zhu Yib481de92007-09-25 17:54:57 -07005588 unsigned long flags;
5589 int rc;
5590
5591 if (conf == NULL)
5592 return -EIO;
5593
Emmanuel Grumbachb716bb92008-03-04 18:09:32 -08005594 if (priv->vif != vif) {
5595 IWL_DEBUG_MAC80211("leave - priv->vif != vif\n");
Emmanuel Grumbachb716bb92008-03-04 18:09:32 -08005596 return 0;
5597 }
5598
Zhu Yib481de92007-09-25 17:54:57 -07005599 if ((priv->iw_mode == IEEE80211_IF_TYPE_AP) &&
5600 (!conf->beacon || !conf->ssid_len)) {
5601 IWL_DEBUG_MAC80211
5602 ("Leaving in AP mode because HostAPD is not ready.\n");
5603 return 0;
5604 }
5605
Tomas Winklerfee12472008-04-03 16:05:21 -07005606 if (!iwl_is_alive(priv))
Zhu Yi5a66926a2008-01-14 17:46:18 -08005607 return -EAGAIN;
5608
Zhu Yib481de92007-09-25 17:54:57 -07005609 mutex_lock(&priv->mutex);
5610
Zhu Yib481de92007-09-25 17:54:57 -07005611 if (conf->bssid)
Joe Perches0795af52007-10-03 17:59:30 -07005612 IWL_DEBUG_MAC80211("bssid: %s\n",
5613 print_mac(mac, conf->bssid));
Zhu Yib481de92007-09-25 17:54:57 -07005614
Johannes Berg4150c572007-09-17 01:29:23 -04005615/*
5616 * very dubious code was here; the probe filtering flag is never set:
5617 *
Zhu Yib481de92007-09-25 17:54:57 -07005618 if (unlikely(test_bit(STATUS_SCANNING, &priv->status)) &&
5619 !(priv->hw->flags & IEEE80211_HW_NO_PROBE_FILTERING)) {
Johannes Berg4150c572007-09-17 01:29:23 -04005620 */
Zhu Yib481de92007-09-25 17:54:57 -07005621
5622 if (priv->iw_mode == IEEE80211_IF_TYPE_AP) {
5623 if (!conf->bssid) {
5624 conf->bssid = priv->mac_addr;
5625 memcpy(priv->bssid, priv->mac_addr, ETH_ALEN);
Joe Perches0795af52007-10-03 17:59:30 -07005626 IWL_DEBUG_MAC80211("bssid was set to: %s\n",
5627 print_mac(mac, conf->bssid));
Zhu Yib481de92007-09-25 17:54:57 -07005628 }
5629 if (priv->ibss_beacon)
5630 dev_kfree_skb(priv->ibss_beacon);
5631
5632 priv->ibss_beacon = conf->beacon;
5633 }
5634
Tomas Winklerfee12472008-04-03 16:05:21 -07005635 if (iwl_is_rfkill(priv))
Mohamed Abbasfde35712007-11-29 11:10:15 +08005636 goto done;
5637
Zhu Yib481de92007-09-25 17:54:57 -07005638 if (conf->bssid && !is_zero_ether_addr(conf->bssid) &&
5639 !is_multicast_ether_addr(conf->bssid)) {
5640 /* If there is currently a HW scan going on in the background
5641 * then we need to cancel it else the RXON below will fail. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005642 if (iwl4965_scan_cancel_timeout(priv, 100)) {
Zhu Yib481de92007-09-25 17:54:57 -07005643 IWL_WARNING("Aborted scan still in progress "
5644 "after 100ms\n");
5645 IWL_DEBUG_MAC80211("leaving - scan abort failed.\n");
5646 mutex_unlock(&priv->mutex);
5647 return -EAGAIN;
5648 }
5649 memcpy(priv->staging_rxon.bssid_addr, conf->bssid, ETH_ALEN);
5650
5651 /* TODO: Audit driver for usage of these members and see
5652 * if mac80211 deprecates them (priv->bssid looks like it
5653 * shouldn't be there, but I haven't scanned the IBSS code
5654 * to verify) - jpk */
5655 memcpy(priv->bssid, conf->bssid, ETH_ALEN);
5656
5657 if (priv->iw_mode == IEEE80211_IF_TYPE_AP)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005658 iwl4965_config_ap(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005659 else {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005660 rc = iwl4965_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005661 if ((priv->iw_mode == IEEE80211_IF_TYPE_STA) && rc)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005662 iwl4965_rxon_add_station(
Zhu Yib481de92007-09-25 17:54:57 -07005663 priv, priv->active_rxon.bssid_addr, 1);
5664 }
5665
5666 } else {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005667 iwl4965_scan_cancel_timeout(priv, 100);
Zhu Yib481de92007-09-25 17:54:57 -07005668 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005669 iwl4965_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005670 }
5671
Mohamed Abbasfde35712007-11-29 11:10:15 +08005672 done:
Zhu Yib481de92007-09-25 17:54:57 -07005673 spin_lock_irqsave(&priv->lock, flags);
5674 if (!conf->ssid_len)
5675 memset(priv->essid, 0, IW_ESSID_MAX_SIZE);
5676 else
5677 memcpy(priv->essid, conf->ssid, conf->ssid_len);
5678
5679 priv->essid_len = conf->ssid_len;
5680 spin_unlock_irqrestore(&priv->lock, flags);
5681
5682 IWL_DEBUG_MAC80211("leave\n");
5683 mutex_unlock(&priv->mutex);
5684
5685 return 0;
5686}
5687
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005688static void iwl4965_configure_filter(struct ieee80211_hw *hw,
Johannes Berg4150c572007-09-17 01:29:23 -04005689 unsigned int changed_flags,
5690 unsigned int *total_flags,
5691 int mc_count, struct dev_addr_list *mc_list)
5692{
5693 /*
5694 * XXX: dummy
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005695 * see also iwl4965_connection_init_rx_config
Johannes Berg4150c572007-09-17 01:29:23 -04005696 */
5697 *total_flags = 0;
5698}
5699
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005700static void iwl4965_mac_remove_interface(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07005701 struct ieee80211_if_init_conf *conf)
5702{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07005703 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07005704
5705 IWL_DEBUG_MAC80211("enter\n");
5706
5707 mutex_lock(&priv->mutex);
Mohamed Abbas948c1712007-10-25 17:15:45 +08005708
Tomas Winklerfee12472008-04-03 16:05:21 -07005709 if (iwl_is_ready_rf(priv)) {
Mohamed Abbasfde35712007-11-29 11:10:15 +08005710 iwl4965_scan_cancel_timeout(priv, 100);
5711 cancel_delayed_work(&priv->post_associate);
5712 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
5713 iwl4965_commit_rxon(priv);
5714 }
Johannes Berg32bfd352007-12-19 01:31:26 +01005715 if (priv->vif == conf->vif) {
5716 priv->vif = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07005717 memset(priv->bssid, 0, ETH_ALEN);
5718 memset(priv->essid, 0, IW_ESSID_MAX_SIZE);
5719 priv->essid_len = 0;
5720 }
5721 mutex_unlock(&priv->mutex);
5722
5723 IWL_DEBUG_MAC80211("leave\n");
5724
5725}
Johannes Berg471b3ef2007-12-28 14:32:58 +01005726
Tomas Winkler3109ece2008-03-28 16:33:35 -07005727#define IWL_DELAY_NEXT_SCAN_AFTER_ASSOC (HZ*6)
Johannes Berg471b3ef2007-12-28 14:32:58 +01005728static void iwl4965_bss_info_changed(struct ieee80211_hw *hw,
5729 struct ieee80211_vif *vif,
5730 struct ieee80211_bss_conf *bss_conf,
5731 u32 changes)
Tomas Winkler220173b2007-10-16 00:50:25 +02005732{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07005733 struct iwl_priv *priv = hw->priv;
Tomas Winkler220173b2007-10-16 00:50:25 +02005734
Tomas Winkler3109ece2008-03-28 16:33:35 -07005735 IWL_DEBUG_MAC80211("changes = 0x%X\n", changes);
5736
Johannes Berg471b3ef2007-12-28 14:32:58 +01005737 if (changes & BSS_CHANGED_ERP_PREAMBLE) {
Tomas Winkler3109ece2008-03-28 16:33:35 -07005738 IWL_DEBUG_MAC80211("ERP_PREAMBLE %d\n",
5739 bss_conf->use_short_preamble);
Johannes Berg471b3ef2007-12-28 14:32:58 +01005740 if (bss_conf->use_short_preamble)
Tomas Winkler220173b2007-10-16 00:50:25 +02005741 priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
5742 else
5743 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
5744 }
5745
Johannes Berg471b3ef2007-12-28 14:32:58 +01005746 if (changes & BSS_CHANGED_ERP_CTS_PROT) {
Tomas Winkler3109ece2008-03-28 16:33:35 -07005747 IWL_DEBUG_MAC80211("ERP_CTS %d\n", bss_conf->use_cts_prot);
Johannes Berg8318d782008-01-24 19:38:38 +01005748 if (bss_conf->use_cts_prot && (priv->band != IEEE80211_BAND_5GHZ))
Tomas Winkler220173b2007-10-16 00:50:25 +02005749 priv->staging_rxon.flags |= RXON_FLG_TGG_PROTECT_MSK;
5750 else
5751 priv->staging_rxon.flags &= ~RXON_FLG_TGG_PROTECT_MSK;
5752 }
5753
Tomas Winkler98952d52008-03-28 16:33:33 -07005754 if (changes & BSS_CHANGED_HT) {
Tomas Winkler3109ece2008-03-28 16:33:35 -07005755 IWL_DEBUG_MAC80211("HT %d\n", bss_conf->assoc_ht);
Tomas Winkler98952d52008-03-28 16:33:33 -07005756 iwl4965_ht_conf(priv, bss_conf);
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -07005757 iwl_set_rxon_chain(priv);
Tomas Winkler98952d52008-03-28 16:33:33 -07005758 }
5759
Johannes Berg471b3ef2007-12-28 14:32:58 +01005760 if (changes & BSS_CHANGED_ASSOC) {
Tomas Winkler3109ece2008-03-28 16:33:35 -07005761 IWL_DEBUG_MAC80211("ASSOC %d\n", bss_conf->assoc);
Reinette Chatre508e32e2008-04-14 21:16:13 -07005762 /* This should never happen as this function should
5763 * never be called from interrupt context. */
5764 if (WARN_ON_ONCE(in_interrupt()))
5765 return;
Tomas Winkler3109ece2008-03-28 16:33:35 -07005766 if (bss_conf->assoc) {
5767 priv->assoc_id = bss_conf->aid;
5768 priv->beacon_int = bss_conf->beacon_int;
5769 priv->timestamp = bss_conf->timestamp;
5770 priv->assoc_capability = bss_conf->assoc_capability;
5771 priv->next_scan_jiffies = jiffies +
5772 IWL_DELAY_NEXT_SCAN_AFTER_ASSOC;
Reinette Chatre508e32e2008-04-14 21:16:13 -07005773 mutex_lock(&priv->mutex);
5774 iwl4965_post_associate(priv);
5775 mutex_unlock(&priv->mutex);
Tomas Winkler3109ece2008-03-28 16:33:35 -07005776 } else {
5777 priv->assoc_id = 0;
5778 IWL_DEBUG_MAC80211("DISASSOC %d\n", bss_conf->assoc);
5779 }
5780 } else if (changes && iwl_is_associated(priv) && priv->assoc_id) {
5781 IWL_DEBUG_MAC80211("Associated Changes %d\n", changes);
Tomas Winkler7e8c5192008-04-15 16:01:43 -07005782 iwl_send_rxon_assoc(priv);
Johannes Berg471b3ef2007-12-28 14:32:58 +01005783 }
5784
Tomas Winkler220173b2007-10-16 00:50:25 +02005785}
Zhu Yib481de92007-09-25 17:54:57 -07005786
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005787static int iwl4965_mac_hw_scan(struct ieee80211_hw *hw, u8 *ssid, size_t len)
Zhu Yib481de92007-09-25 17:54:57 -07005788{
5789 int rc = 0;
5790 unsigned long flags;
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07005791 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07005792
5793 IWL_DEBUG_MAC80211("enter\n");
5794
mabbas052c4b92007-10-25 17:15:43 +08005795 mutex_lock(&priv->mutex);
Zhu Yib481de92007-09-25 17:54:57 -07005796 spin_lock_irqsave(&priv->lock, flags);
5797
Tomas Winklerfee12472008-04-03 16:05:21 -07005798 if (!iwl_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07005799 rc = -EIO;
5800 IWL_DEBUG_MAC80211("leave - not ready or exit pending\n");
5801 goto out_unlock;
5802 }
5803
5804 if (priv->iw_mode == IEEE80211_IF_TYPE_AP) { /* APs don't scan */
5805 rc = -EIO;
5806 IWL_ERROR("ERROR: APs don't scan\n");
5807 goto out_unlock;
5808 }
5809
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08005810 /* we don't schedule scan within next_scan_jiffies period */
5811 if (priv->next_scan_jiffies &&
5812 time_after(priv->next_scan_jiffies, jiffies)) {
5813 rc = -EAGAIN;
5814 goto out_unlock;
5815 }
Zhu Yib481de92007-09-25 17:54:57 -07005816 /* if we just finished scan ask for delay */
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08005817 if (priv->last_scan_jiffies && time_after(priv->last_scan_jiffies +
5818 IWL_DELAY_NEXT_SCAN, jiffies)) {
Zhu Yib481de92007-09-25 17:54:57 -07005819 rc = -EAGAIN;
5820 goto out_unlock;
5821 }
5822 if (len) {
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08005823 IWL_DEBUG_SCAN("direct scan for %s [%d]\n ",
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005824 iwl4965_escape_essid(ssid, len), (int)len);
Zhu Yib481de92007-09-25 17:54:57 -07005825
5826 priv->one_direct_scan = 1;
5827 priv->direct_ssid_len = (u8)
5828 min((u8) len, (u8) IW_ESSID_MAX_SIZE);
5829 memcpy(priv->direct_ssid, ssid, priv->direct_ssid_len);
Mohamed Abbas948c1712007-10-25 17:15:45 +08005830 } else
5831 priv->one_direct_scan = 0;
Zhu Yib481de92007-09-25 17:54:57 -07005832
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005833 rc = iwl4965_scan_initiate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005834
5835 IWL_DEBUG_MAC80211("leave\n");
5836
5837out_unlock:
5838 spin_unlock_irqrestore(&priv->lock, flags);
mabbas052c4b92007-10-25 17:15:43 +08005839 mutex_unlock(&priv->mutex);
Zhu Yib481de92007-09-25 17:54:57 -07005840
5841 return rc;
5842}
5843
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02005844static void iwl4965_mac_update_tkip_key(struct ieee80211_hw *hw,
5845 struct ieee80211_key_conf *keyconf, const u8 *addr,
5846 u32 iv32, u16 *phase1key)
5847{
5848 struct iwl_priv *priv = hw->priv;
5849 u8 sta_id = IWL_INVALID_STATION;
5850 unsigned long flags;
5851 __le16 key_flags = 0;
5852 int i;
5853 DECLARE_MAC_BUF(mac);
5854
5855 IWL_DEBUG_MAC80211("enter\n");
5856
Tomas Winkler947b13a2008-04-16 16:34:48 -07005857 sta_id = iwl_find_station(priv, addr);
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02005858 if (sta_id == IWL_INVALID_STATION) {
5859 IWL_DEBUG_MAC80211("leave - %s not in station map.\n",
5860 print_mac(mac, addr));
5861 return;
5862 }
5863
5864 iwl4965_scan_cancel_timeout(priv, 100);
5865
5866 key_flags |= (STA_KEY_FLG_TKIP | STA_KEY_FLG_MAP_KEY_MSK);
5867 key_flags |= cpu_to_le16(keyconf->keyidx << STA_KEY_FLG_KEYID_POS);
5868 key_flags &= ~STA_KEY_FLG_INVALID;
5869
Tomas Winkler5425e492008-04-15 16:01:38 -07005870 if (sta_id == priv->hw_params.bcast_sta_id)
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02005871 key_flags |= STA_KEY_MULTICAST_MSK;
5872
5873 spin_lock_irqsave(&priv->sta_lock, flags);
5874
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02005875 priv->stations[sta_id].sta.key.key_flags = key_flags;
5876 priv->stations[sta_id].sta.key.tkip_rx_tsc_byte2 = (u8) iv32;
5877
5878 for (i = 0; i < 5; i++)
5879 priv->stations[sta_id].sta.key.tkip_rx_ttak[i] =
5880 cpu_to_le16(phase1key[i]);
5881
5882 priv->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
5883 priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
5884
Tomas Winkler133636d2008-05-05 10:22:34 +08005885 iwl_send_add_sta(priv, &priv->stations[sta_id].sta, CMD_ASYNC);
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02005886
5887 spin_unlock_irqrestore(&priv->sta_lock, flags);
5888
5889 IWL_DEBUG_MAC80211("leave\n");
5890}
5891
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005892static int iwl4965_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
Zhu Yib481de92007-09-25 17:54:57 -07005893 const u8 *local_addr, const u8 *addr,
5894 struct ieee80211_key_conf *key)
5895{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07005896 struct iwl_priv *priv = hw->priv;
Joe Perches0795af52007-10-03 17:59:30 -07005897 DECLARE_MAC_BUF(mac);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07005898 int ret = 0;
5899 u8 sta_id = IWL_INVALID_STATION;
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07005900 u8 is_default_wep_key = 0;
Zhu Yib481de92007-09-25 17:54:57 -07005901
5902 IWL_DEBUG_MAC80211("enter\n");
5903
Ron Rindjunsky099b40b2008-04-21 15:41:53 -07005904 if (priv->hw_params.sw_crypto) {
Zhu Yib481de92007-09-25 17:54:57 -07005905 IWL_DEBUG_MAC80211("leave - hwcrypto disabled\n");
5906 return -EOPNOTSUPP;
5907 }
5908
5909 if (is_zero_ether_addr(addr))
5910 /* only support pairwise keys */
5911 return -EOPNOTSUPP;
5912
Tomas Winkler947b13a2008-04-16 16:34:48 -07005913 sta_id = iwl_find_station(priv, addr);
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07005914 if (sta_id == IWL_INVALID_STATION) {
5915 IWL_DEBUG_MAC80211("leave - %s not in station map.\n",
5916 print_mac(mac, addr));
5917 return -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07005918
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07005919 }
Zhu Yib481de92007-09-25 17:54:57 -07005920
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07005921 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005922 iwl4965_scan_cancel_timeout(priv, 100);
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07005923 mutex_unlock(&priv->mutex);
5924
5925 /* If we are getting WEP group key and we didn't receive any key mapping
5926 * so far, we are in legacy wep mode (group key only), otherwise we are
5927 * in 1X mode.
5928 * In legacy wep mode, we use another host command to the uCode */
Tomas Winkler5425e492008-04-15 16:01:38 -07005929 if (key->alg == ALG_WEP && sta_id == priv->hw_params.bcast_sta_id &&
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07005930 priv->iw_mode != IEEE80211_IF_TYPE_AP) {
5931 if (cmd == SET_KEY)
5932 is_default_wep_key = !priv->key_mapping_key;
5933 else
5934 is_default_wep_key = priv->default_wep_key;
5935 }
mabbas052c4b92007-10-25 17:15:43 +08005936
Zhu Yib481de92007-09-25 17:54:57 -07005937 switch (cmd) {
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07005938 case SET_KEY:
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07005939 if (is_default_wep_key)
5940 ret = iwl_set_default_wep_key(priv, key);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07005941 else
Emmanuel Grumbach74805132008-04-14 21:16:09 -07005942 ret = iwl_set_dynamic_key(priv, key, sta_id);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07005943
5944 IWL_DEBUG_MAC80211("enable hwcrypto key\n");
Zhu Yib481de92007-09-25 17:54:57 -07005945 break;
5946 case DISABLE_KEY:
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07005947 if (is_default_wep_key)
5948 ret = iwl_remove_default_wep_key(priv, key);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07005949 else
Emmanuel Grumbach3ec47732008-04-17 16:03:36 -07005950 ret = iwl_remove_dynamic_key(priv, key, sta_id);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07005951
5952 IWL_DEBUG_MAC80211("disable hwcrypto key\n");
Zhu Yib481de92007-09-25 17:54:57 -07005953 break;
5954 default:
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07005955 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07005956 }
5957
5958 IWL_DEBUG_MAC80211("leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07005959
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07005960 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07005961}
5962
Johannes Berge100bb62008-04-30 18:51:21 +02005963static int iwl4965_mac_conf_tx(struct ieee80211_hw *hw, u16 queue,
Zhu Yib481de92007-09-25 17:54:57 -07005964 const struct ieee80211_tx_queue_params *params)
5965{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07005966 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07005967 unsigned long flags;
5968 int q;
Zhu Yib481de92007-09-25 17:54:57 -07005969
5970 IWL_DEBUG_MAC80211("enter\n");
5971
Tomas Winklerfee12472008-04-03 16:05:21 -07005972 if (!iwl_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07005973 IWL_DEBUG_MAC80211("leave - RF not ready\n");
5974 return -EIO;
5975 }
5976
5977 if (queue >= AC_NUM) {
5978 IWL_DEBUG_MAC80211("leave - queue >= AC_NUM %d\n", queue);
5979 return 0;
5980 }
5981
Zhu Yib481de92007-09-25 17:54:57 -07005982 if (!priv->qos_data.qos_enable) {
5983 priv->qos_data.qos_active = 0;
5984 IWL_DEBUG_MAC80211("leave - qos not enabled\n");
5985 return 0;
5986 }
5987 q = AC_NUM - 1 - queue;
5988
5989 spin_lock_irqsave(&priv->lock, flags);
5990
5991 priv->qos_data.def_qos_parm.ac[q].cw_min = cpu_to_le16(params->cw_min);
5992 priv->qos_data.def_qos_parm.ac[q].cw_max = cpu_to_le16(params->cw_max);
5993 priv->qos_data.def_qos_parm.ac[q].aifsn = params->aifs;
5994 priv->qos_data.def_qos_parm.ac[q].edca_txop =
Johannes Berg3330d7b2008-02-10 16:49:38 +01005995 cpu_to_le16((params->txop * 32));
Zhu Yib481de92007-09-25 17:54:57 -07005996
5997 priv->qos_data.def_qos_parm.ac[q].reserved1 = 0;
5998 priv->qos_data.qos_active = 1;
5999
6000 spin_unlock_irqrestore(&priv->lock, flags);
6001
6002 mutex_lock(&priv->mutex);
6003 if (priv->iw_mode == IEEE80211_IF_TYPE_AP)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006004 iwl4965_activate_qos(priv, 1);
Tomas Winkler3109ece2008-03-28 16:33:35 -07006005 else if (priv->assoc_id && iwl_is_associated(priv))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006006 iwl4965_activate_qos(priv, 0);
Zhu Yib481de92007-09-25 17:54:57 -07006007
6008 mutex_unlock(&priv->mutex);
6009
Zhu Yib481de92007-09-25 17:54:57 -07006010 IWL_DEBUG_MAC80211("leave\n");
6011 return 0;
6012}
6013
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006014static int iwl4965_mac_get_tx_stats(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07006015 struct ieee80211_tx_queue_stats *stats)
6016{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07006017 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006018 int i, avail;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006019 struct iwl4965_tx_queue *txq;
6020 struct iwl4965_queue *q;
Zhu Yib481de92007-09-25 17:54:57 -07006021 unsigned long flags;
6022
6023 IWL_DEBUG_MAC80211("enter\n");
6024
Tomas Winklerfee12472008-04-03 16:05:21 -07006025 if (!iwl_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006026 IWL_DEBUG_MAC80211("leave - RF not ready\n");
6027 return -EIO;
6028 }
6029
6030 spin_lock_irqsave(&priv->lock, flags);
6031
6032 for (i = 0; i < AC_NUM; i++) {
6033 txq = &priv->txq[i];
6034 q = &txq->q;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006035 avail = iwl4965_queue_space(q);
Zhu Yib481de92007-09-25 17:54:57 -07006036
Johannes Berg57ffc582008-04-29 17:18:59 +02006037 stats[i].len = q->n_window - avail;
6038 stats[i].limit = q->n_window - q->high_mark;
6039 stats[i].count = q->n_window;
Zhu Yib481de92007-09-25 17:54:57 -07006040
6041 }
6042 spin_unlock_irqrestore(&priv->lock, flags);
6043
6044 IWL_DEBUG_MAC80211("leave\n");
6045
6046 return 0;
6047}
6048
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006049static int iwl4965_mac_get_stats(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07006050 struct ieee80211_low_level_stats *stats)
6051{
6052 IWL_DEBUG_MAC80211("enter\n");
6053 IWL_DEBUG_MAC80211("leave\n");
6054
6055 return 0;
6056}
6057
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006058static u64 iwl4965_mac_get_tsf(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07006059{
6060 IWL_DEBUG_MAC80211("enter\n");
6061 IWL_DEBUG_MAC80211("leave\n");
6062
6063 return 0;
6064}
6065
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006066static void iwl4965_mac_reset_tsf(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07006067{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07006068 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006069 unsigned long flags;
6070
6071 mutex_lock(&priv->mutex);
6072 IWL_DEBUG_MAC80211("enter\n");
6073
6074 priv->lq_mngr.lq_ready = 0;
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08006075#ifdef CONFIG_IWL4965_HT
Zhu Yib481de92007-09-25 17:54:57 -07006076 spin_lock_irqsave(&priv->lock, flags);
Ron Rindjunskyfd105e72007-11-26 16:14:39 +02006077 memset(&priv->current_ht_config, 0, sizeof(struct iwl_ht_info));
Zhu Yib481de92007-09-25 17:54:57 -07006078 spin_unlock_irqrestore(&priv->lock, flags);
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08006079#endif /* CONFIG_IWL4965_HT */
Zhu Yib481de92007-09-25 17:54:57 -07006080
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -07006081 iwl_reset_qos(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006082
6083 cancel_delayed_work(&priv->post_associate);
6084
6085 spin_lock_irqsave(&priv->lock, flags);
6086 priv->assoc_id = 0;
6087 priv->assoc_capability = 0;
Zhu Yib481de92007-09-25 17:54:57 -07006088 priv->assoc_station_added = 0;
6089
6090 /* new association get rid of ibss beacon skb */
6091 if (priv->ibss_beacon)
6092 dev_kfree_skb(priv->ibss_beacon);
6093
6094 priv->ibss_beacon = NULL;
6095
6096 priv->beacon_int = priv->hw->conf.beacon_int;
Tomas Winkler3109ece2008-03-28 16:33:35 -07006097 priv->timestamp = 0;
Zhu Yib481de92007-09-25 17:54:57 -07006098 if ((priv->iw_mode == IEEE80211_IF_TYPE_STA))
6099 priv->beacon_int = 0;
6100
6101 spin_unlock_irqrestore(&priv->lock, flags);
6102
Tomas Winklerfee12472008-04-03 16:05:21 -07006103 if (!iwl_is_ready_rf(priv)) {
Mohamed Abbasfde35712007-11-29 11:10:15 +08006104 IWL_DEBUG_MAC80211("leave - not ready\n");
6105 mutex_unlock(&priv->mutex);
6106 return;
6107 }
6108
mabbas052c4b92007-10-25 17:15:43 +08006109 /* we are restarting association process
6110 * clear RXON_FILTER_ASSOC_MSK bit
6111 */
6112 if (priv->iw_mode != IEEE80211_IF_TYPE_AP) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006113 iwl4965_scan_cancel_timeout(priv, 100);
mabbas052c4b92007-10-25 17:15:43 +08006114 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006115 iwl4965_commit_rxon(priv);
mabbas052c4b92007-10-25 17:15:43 +08006116 }
6117
Mohamed Abbas5da4b552008-04-21 15:41:51 -07006118 iwl_power_update_mode(priv, 0);
6119
Zhu Yib481de92007-09-25 17:54:57 -07006120 /* Per mac80211.h: This is only used in IBSS mode... */
6121 if (priv->iw_mode != IEEE80211_IF_TYPE_IBSS) {
mabbas052c4b92007-10-25 17:15:43 +08006122
Zhu Yib481de92007-09-25 17:54:57 -07006123 IWL_DEBUG_MAC80211("leave - not in IBSS\n");
6124 mutex_unlock(&priv->mutex);
6125 return;
6126 }
6127
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006128 iwl4965_set_rate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006129
6130 mutex_unlock(&priv->mutex);
6131
6132 IWL_DEBUG_MAC80211("leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07006133}
6134
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006135static int iwl4965_mac_beacon_update(struct ieee80211_hw *hw, struct sk_buff *skb,
Zhu Yib481de92007-09-25 17:54:57 -07006136 struct ieee80211_tx_control *control)
6137{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07006138 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006139 unsigned long flags;
6140
6141 mutex_lock(&priv->mutex);
6142 IWL_DEBUG_MAC80211("enter\n");
6143
Tomas Winklerfee12472008-04-03 16:05:21 -07006144 if (!iwl_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006145 IWL_DEBUG_MAC80211("leave - RF not ready\n");
6146 mutex_unlock(&priv->mutex);
6147 return -EIO;
6148 }
6149
6150 if (priv->iw_mode != IEEE80211_IF_TYPE_IBSS) {
6151 IWL_DEBUG_MAC80211("leave - not IBSS\n");
6152 mutex_unlock(&priv->mutex);
6153 return -EIO;
6154 }
6155
6156 spin_lock_irqsave(&priv->lock, flags);
6157
6158 if (priv->ibss_beacon)
6159 dev_kfree_skb(priv->ibss_beacon);
6160
6161 priv->ibss_beacon = skb;
6162
6163 priv->assoc_id = 0;
6164
6165 IWL_DEBUG_MAC80211("leave\n");
6166 spin_unlock_irqrestore(&priv->lock, flags);
6167
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -07006168 iwl_reset_qos(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006169
6170 queue_work(priv->workqueue, &priv->post_associate.work);
6171
6172 mutex_unlock(&priv->mutex);
6173
6174 return 0;
6175}
6176
Zhu Yib481de92007-09-25 17:54:57 -07006177/*****************************************************************************
6178 *
6179 * sysfs attributes
6180 *
6181 *****************************************************************************/
6182
Tomas Winkler0a6857e2008-03-12 16:58:49 -07006183#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07006184
6185/*
6186 * The following adds a new attribute to the sysfs representation
6187 * of this device driver (i.e. a new file in /sys/bus/pci/drivers/iwl/)
6188 * used for controlling the debug level.
6189 *
6190 * See the level definitions in iwl for details.
6191 */
6192
6193static ssize_t show_debug_level(struct device_driver *d, char *buf)
6194{
Tomas Winkler0a6857e2008-03-12 16:58:49 -07006195 return sprintf(buf, "0x%08X\n", iwl_debug_level);
Zhu Yib481de92007-09-25 17:54:57 -07006196}
6197static ssize_t store_debug_level(struct device_driver *d,
6198 const char *buf, size_t count)
6199{
6200 char *p = (char *)buf;
6201 u32 val;
6202
6203 val = simple_strtoul(p, &p, 0);
6204 if (p == buf)
6205 printk(KERN_INFO DRV_NAME
6206 ": %s is not in hex or decimal form.\n", buf);
6207 else
Tomas Winkler0a6857e2008-03-12 16:58:49 -07006208 iwl_debug_level = val;
Zhu Yib481de92007-09-25 17:54:57 -07006209
6210 return strnlen(buf, count);
6211}
6212
6213static DRIVER_ATTR(debug_level, S_IWUSR | S_IRUGO,
6214 show_debug_level, store_debug_level);
6215
Tomas Winkler0a6857e2008-03-12 16:58:49 -07006216#endif /* CONFIG_IWLWIFI_DEBUG */
Zhu Yib481de92007-09-25 17:54:57 -07006217
Zhu Yib481de92007-09-25 17:54:57 -07006218
6219static ssize_t show_temperature(struct device *d,
6220 struct device_attribute *attr, char *buf)
6221{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07006222 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07006223
Tomas Winklerfee12472008-04-03 16:05:21 -07006224 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07006225 return -EAGAIN;
6226
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006227 return sprintf(buf, "%d\n", iwl4965_hw_get_temperature(priv));
Zhu Yib481de92007-09-25 17:54:57 -07006228}
6229
6230static DEVICE_ATTR(temperature, S_IRUGO, show_temperature, NULL);
6231
6232static ssize_t show_rs_window(struct device *d,
6233 struct device_attribute *attr,
6234 char *buf)
6235{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07006236 struct iwl_priv *priv = d->driver_data;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006237 return iwl4965_fill_rs_info(priv->hw, buf, IWL_AP_ID);
Zhu Yib481de92007-09-25 17:54:57 -07006238}
6239static DEVICE_ATTR(rs_window, S_IRUGO, show_rs_window, NULL);
6240
6241static ssize_t show_tx_power(struct device *d,
6242 struct device_attribute *attr, char *buf)
6243{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07006244 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07006245 return sprintf(buf, "%d\n", priv->user_txpower_limit);
6246}
6247
6248static ssize_t store_tx_power(struct device *d,
6249 struct device_attribute *attr,
6250 const char *buf, size_t count)
6251{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07006252 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07006253 char *p = (char *)buf;
6254 u32 val;
6255
6256 val = simple_strtoul(p, &p, 10);
6257 if (p == buf)
6258 printk(KERN_INFO DRV_NAME
6259 ": %s is not in decimal form.\n", buf);
6260 else
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006261 iwl4965_hw_reg_set_txpower(priv, val);
Zhu Yib481de92007-09-25 17:54:57 -07006262
6263 return count;
6264}
6265
6266static DEVICE_ATTR(tx_power, S_IWUSR | S_IRUGO, show_tx_power, store_tx_power);
6267
6268static ssize_t show_flags(struct device *d,
6269 struct device_attribute *attr, char *buf)
6270{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07006271 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07006272
6273 return sprintf(buf, "0x%04X\n", priv->active_rxon.flags);
6274}
6275
6276static ssize_t store_flags(struct device *d,
6277 struct device_attribute *attr,
6278 const char *buf, size_t count)
6279{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07006280 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07006281 u32 flags = simple_strtoul(buf, NULL, 0);
6282
6283 mutex_lock(&priv->mutex);
6284 if (le32_to_cpu(priv->staging_rxon.flags) != flags) {
6285 /* Cancel any currently running scans... */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006286 if (iwl4965_scan_cancel_timeout(priv, 100))
Zhu Yib481de92007-09-25 17:54:57 -07006287 IWL_WARNING("Could not cancel scan.\n");
6288 else {
6289 IWL_DEBUG_INFO("Committing rxon.flags = 0x%04X\n",
6290 flags);
6291 priv->staging_rxon.flags = cpu_to_le32(flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006292 iwl4965_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006293 }
6294 }
6295 mutex_unlock(&priv->mutex);
6296
6297 return count;
6298}
6299
6300static DEVICE_ATTR(flags, S_IWUSR | S_IRUGO, show_flags, store_flags);
6301
6302static ssize_t show_filter_flags(struct device *d,
6303 struct device_attribute *attr, char *buf)
6304{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07006305 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07006306
6307 return sprintf(buf, "0x%04X\n",
6308 le32_to_cpu(priv->active_rxon.filter_flags));
6309}
6310
6311static ssize_t store_filter_flags(struct device *d,
6312 struct device_attribute *attr,
6313 const char *buf, size_t count)
6314{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07006315 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07006316 u32 filter_flags = simple_strtoul(buf, NULL, 0);
6317
6318 mutex_lock(&priv->mutex);
6319 if (le32_to_cpu(priv->staging_rxon.filter_flags) != filter_flags) {
6320 /* Cancel any currently running scans... */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006321 if (iwl4965_scan_cancel_timeout(priv, 100))
Zhu Yib481de92007-09-25 17:54:57 -07006322 IWL_WARNING("Could not cancel scan.\n");
6323 else {
6324 IWL_DEBUG_INFO("Committing rxon.filter_flags = "
6325 "0x%04X\n", filter_flags);
6326 priv->staging_rxon.filter_flags =
6327 cpu_to_le32(filter_flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006328 iwl4965_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006329 }
6330 }
6331 mutex_unlock(&priv->mutex);
6332
6333 return count;
6334}
6335
6336static DEVICE_ATTR(filter_flags, S_IWUSR | S_IRUGO, show_filter_flags,
6337 store_filter_flags);
6338
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08006339#ifdef CONFIG_IWL4965_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -07006340
6341static ssize_t show_measurement(struct device *d,
6342 struct device_attribute *attr, char *buf)
6343{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07006344 struct iwl_priv *priv = dev_get_drvdata(d);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006345 struct iwl4965_spectrum_notification measure_report;
Zhu Yib481de92007-09-25 17:54:57 -07006346 u32 size = sizeof(measure_report), len = 0, ofs = 0;
6347 u8 *data = (u8 *) & measure_report;
6348 unsigned long flags;
6349
6350 spin_lock_irqsave(&priv->lock, flags);
6351 if (!(priv->measurement_status & MEASUREMENT_READY)) {
6352 spin_unlock_irqrestore(&priv->lock, flags);
6353 return 0;
6354 }
6355 memcpy(&measure_report, &priv->measure_report, size);
6356 priv->measurement_status = 0;
6357 spin_unlock_irqrestore(&priv->lock, flags);
6358
6359 while (size && (PAGE_SIZE - len)) {
6360 hex_dump_to_buffer(data + ofs, size, 16, 1, buf + len,
6361 PAGE_SIZE - len, 1);
6362 len = strlen(buf);
6363 if (PAGE_SIZE - len)
6364 buf[len++] = '\n';
6365
6366 ofs += 16;
6367 size -= min(size, 16U);
6368 }
6369
6370 return len;
6371}
6372
6373static ssize_t store_measurement(struct device *d,
6374 struct device_attribute *attr,
6375 const char *buf, size_t count)
6376{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07006377 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07006378 struct ieee80211_measurement_params params = {
6379 .channel = le16_to_cpu(priv->active_rxon.channel),
6380 .start_time = cpu_to_le64(priv->last_tsf),
6381 .duration = cpu_to_le16(1),
6382 };
6383 u8 type = IWL_MEASURE_BASIC;
6384 u8 buffer[32];
6385 u8 channel;
6386
6387 if (count) {
6388 char *p = buffer;
6389 strncpy(buffer, buf, min(sizeof(buffer), count));
6390 channel = simple_strtoul(p, NULL, 0);
6391 if (channel)
6392 params.channel = channel;
6393
6394 p = buffer;
6395 while (*p && *p != ' ')
6396 p++;
6397 if (*p)
6398 type = simple_strtoul(p + 1, NULL, 0);
6399 }
6400
6401 IWL_DEBUG_INFO("Invoking measurement of type %d on "
6402 "channel %d (for '%s')\n", type, params.channel, buf);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006403 iwl4965_get_measurement(priv, &params, type);
Zhu Yib481de92007-09-25 17:54:57 -07006404
6405 return count;
6406}
6407
6408static DEVICE_ATTR(measurement, S_IRUSR | S_IWUSR,
6409 show_measurement, store_measurement);
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08006410#endif /* CONFIG_IWL4965_SPECTRUM_MEASUREMENT */
Zhu Yib481de92007-09-25 17:54:57 -07006411
6412static ssize_t store_retry_rate(struct device *d,
6413 struct device_attribute *attr,
6414 const char *buf, size_t count)
6415{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07006416 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07006417
6418 priv->retry_rate = simple_strtoul(buf, NULL, 0);
6419 if (priv->retry_rate <= 0)
6420 priv->retry_rate = 1;
6421
6422 return count;
6423}
6424
6425static ssize_t show_retry_rate(struct device *d,
6426 struct device_attribute *attr, char *buf)
6427{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07006428 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07006429 return sprintf(buf, "%d", priv->retry_rate);
6430}
6431
6432static DEVICE_ATTR(retry_rate, S_IWUSR | S_IRUSR, show_retry_rate,
6433 store_retry_rate);
6434
6435static ssize_t store_power_level(struct device *d,
6436 struct device_attribute *attr,
6437 const char *buf, size_t count)
6438{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07006439 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07006440 int rc;
6441 int mode;
6442
6443 mode = simple_strtoul(buf, NULL, 0);
6444 mutex_lock(&priv->mutex);
6445
Tomas Winklerfee12472008-04-03 16:05:21 -07006446 if (!iwl_is_ready(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006447 rc = -EAGAIN;
6448 goto out;
6449 }
6450
Mohamed Abbas5da4b552008-04-21 15:41:51 -07006451 rc = iwl_power_set_user_mode(priv, mode);
6452 if (rc) {
6453 IWL_DEBUG_MAC80211("failed setting power mode.\n");
6454 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07006455 }
Zhu Yib481de92007-09-25 17:54:57 -07006456 rc = count;
6457
6458 out:
6459 mutex_unlock(&priv->mutex);
6460 return rc;
6461}
6462
6463#define MAX_WX_STRING 80
6464
6465/* Values are in microsecond */
6466static const s32 timeout_duration[] = {
6467 350000,
6468 250000,
6469 75000,
6470 37000,
6471 25000,
6472};
6473static const s32 period_duration[] = {
6474 400000,
6475 700000,
6476 1000000,
6477 1000000,
6478 1000000
6479};
6480
6481static ssize_t show_power_level(struct device *d,
6482 struct device_attribute *attr, char *buf)
6483{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07006484 struct iwl_priv *priv = dev_get_drvdata(d);
Mohamed Abbas5da4b552008-04-21 15:41:51 -07006485 int level = priv->power_data.power_mode;
Zhu Yib481de92007-09-25 17:54:57 -07006486 char *p = buf;
6487
6488 p += sprintf(p, "%d ", level);
6489 switch (level) {
6490 case IWL_POWER_MODE_CAM:
6491 case IWL_POWER_AC:
6492 p += sprintf(p, "(AC)");
6493 break;
6494 case IWL_POWER_BATTERY:
6495 p += sprintf(p, "(BATTERY)");
6496 break;
6497 default:
6498 p += sprintf(p,
6499 "(Timeout %dms, Period %dms)",
6500 timeout_duration[level - 1] / 1000,
6501 period_duration[level - 1] / 1000);
6502 }
Mohamed Abbas5da4b552008-04-21 15:41:51 -07006503/*
Zhu Yib481de92007-09-25 17:54:57 -07006504 if (!(priv->power_mode & IWL_POWER_ENABLED))
6505 p += sprintf(p, " OFF\n");
6506 else
6507 p += sprintf(p, " \n");
Mohamed Abbas5da4b552008-04-21 15:41:51 -07006508*/
6509 p += sprintf(p, " \n");
Zhu Yib481de92007-09-25 17:54:57 -07006510 return (p - buf + 1);
Zhu Yib481de92007-09-25 17:54:57 -07006511}
6512
6513static DEVICE_ATTR(power_level, S_IWUSR | S_IRUSR, show_power_level,
6514 store_power_level);
6515
6516static ssize_t show_channels(struct device *d,
6517 struct device_attribute *attr, char *buf)
6518{
Johannes Berg8318d782008-01-24 19:38:38 +01006519 /* all this shit doesn't belong into sysfs anyway */
6520 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07006521}
6522
6523static DEVICE_ATTR(channels, S_IRUSR, show_channels, NULL);
6524
6525static ssize_t show_statistics(struct device *d,
6526 struct device_attribute *attr, char *buf)
6527{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07006528 struct iwl_priv *priv = dev_get_drvdata(d);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006529 u32 size = sizeof(struct iwl4965_notif_statistics);
Zhu Yib481de92007-09-25 17:54:57 -07006530 u32 len = 0, ofs = 0;
6531 u8 *data = (u8 *) & priv->statistics;
6532 int rc = 0;
6533
Tomas Winklerfee12472008-04-03 16:05:21 -07006534 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07006535 return -EAGAIN;
6536
6537 mutex_lock(&priv->mutex);
Emmanuel Grumbach49ea8592008-04-15 16:01:37 -07006538 rc = iwl_send_statistics_request(priv, 0);
Zhu Yib481de92007-09-25 17:54:57 -07006539 mutex_unlock(&priv->mutex);
6540
6541 if (rc) {
6542 len = sprintf(buf,
6543 "Error sending statistics request: 0x%08X\n", rc);
6544 return len;
6545 }
6546
6547 while (size && (PAGE_SIZE - len)) {
6548 hex_dump_to_buffer(data + ofs, size, 16, 1, buf + len,
6549 PAGE_SIZE - len, 1);
6550 len = strlen(buf);
6551 if (PAGE_SIZE - len)
6552 buf[len++] = '\n';
6553
6554 ofs += 16;
6555 size -= min(size, 16U);
6556 }
6557
6558 return len;
6559}
6560
6561static DEVICE_ATTR(statistics, S_IRUGO, show_statistics, NULL);
6562
Zhu Yib481de92007-09-25 17:54:57 -07006563static ssize_t show_status(struct device *d,
6564 struct device_attribute *attr, char *buf)
6565{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07006566 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Tomas Winklerfee12472008-04-03 16:05:21 -07006567 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07006568 return -EAGAIN;
6569 return sprintf(buf, "0x%08x\n", (int)priv->status);
6570}
6571
6572static DEVICE_ATTR(status, S_IRUGO, show_status, NULL);
6573
6574static ssize_t dump_error_log(struct device *d,
6575 struct device_attribute *attr,
6576 const char *buf, size_t count)
6577{
6578 char *p = (char *)buf;
6579
6580 if (p[0] == '1')
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07006581 iwl4965_dump_nic_error_log((struct iwl_priv *)d->driver_data);
Zhu Yib481de92007-09-25 17:54:57 -07006582
6583 return strnlen(buf, count);
6584}
6585
6586static DEVICE_ATTR(dump_errors, S_IWUSR, NULL, dump_error_log);
6587
6588static ssize_t dump_event_log(struct device *d,
6589 struct device_attribute *attr,
6590 const char *buf, size_t count)
6591{
6592 char *p = (char *)buf;
6593
6594 if (p[0] == '1')
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07006595 iwl4965_dump_nic_event_log((struct iwl_priv *)d->driver_data);
Zhu Yib481de92007-09-25 17:54:57 -07006596
6597 return strnlen(buf, count);
6598}
6599
6600static DEVICE_ATTR(dump_events, S_IWUSR, NULL, dump_event_log);
6601
6602/*****************************************************************************
6603 *
6604 * driver setup and teardown
6605 *
6606 *****************************************************************************/
6607
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07006608static void iwl4965_setup_deferred_work(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07006609{
6610 priv->workqueue = create_workqueue(DRV_NAME);
6611
6612 init_waitqueue_head(&priv->wait_command_queue);
6613
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006614 INIT_WORK(&priv->up, iwl4965_bg_up);
6615 INIT_WORK(&priv->restart, iwl4965_bg_restart);
6616 INIT_WORK(&priv->rx_replenish, iwl4965_bg_rx_replenish);
6617 INIT_WORK(&priv->scan_completed, iwl4965_bg_scan_completed);
6618 INIT_WORK(&priv->request_scan, iwl4965_bg_request_scan);
6619 INIT_WORK(&priv->abort_scan, iwl4965_bg_abort_scan);
6620 INIT_WORK(&priv->rf_kill, iwl4965_bg_rf_kill);
6621 INIT_WORK(&priv->beacon_update, iwl4965_bg_beacon_update);
6622 INIT_DELAYED_WORK(&priv->post_associate, iwl4965_bg_post_associate);
6623 INIT_DELAYED_WORK(&priv->init_alive_start, iwl4965_bg_init_alive_start);
6624 INIT_DELAYED_WORK(&priv->alive_start, iwl4965_bg_alive_start);
6625 INIT_DELAYED_WORK(&priv->scan_check, iwl4965_bg_scan_check);
Zhu Yib481de92007-09-25 17:54:57 -07006626
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006627 iwl4965_hw_setup_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006628
6629 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006630 iwl4965_irq_tasklet, (unsigned long)priv);
Zhu Yib481de92007-09-25 17:54:57 -07006631}
6632
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07006633static void iwl4965_cancel_deferred_work(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07006634{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006635 iwl4965_hw_cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006636
Joonwoo Park3ae6a052007-11-29 10:43:16 +09006637 cancel_delayed_work_sync(&priv->init_alive_start);
Zhu Yib481de92007-09-25 17:54:57 -07006638 cancel_delayed_work(&priv->scan_check);
6639 cancel_delayed_work(&priv->alive_start);
6640 cancel_delayed_work(&priv->post_associate);
6641 cancel_work_sync(&priv->beacon_update);
6642}
6643
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006644static struct attribute *iwl4965_sysfs_entries[] = {
Zhu Yib481de92007-09-25 17:54:57 -07006645 &dev_attr_channels.attr,
6646 &dev_attr_dump_errors.attr,
6647 &dev_attr_dump_events.attr,
6648 &dev_attr_flags.attr,
6649 &dev_attr_filter_flags.attr,
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08006650#ifdef CONFIG_IWL4965_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -07006651 &dev_attr_measurement.attr,
6652#endif
6653 &dev_attr_power_level.attr,
6654 &dev_attr_retry_rate.attr,
Zhu Yib481de92007-09-25 17:54:57 -07006655 &dev_attr_rs_window.attr,
6656 &dev_attr_statistics.attr,
6657 &dev_attr_status.attr,
6658 &dev_attr_temperature.attr,
Zhu Yib481de92007-09-25 17:54:57 -07006659 &dev_attr_tx_power.attr,
6660
6661 NULL
6662};
6663
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006664static struct attribute_group iwl4965_attribute_group = {
Zhu Yib481de92007-09-25 17:54:57 -07006665 .name = NULL, /* put in device directory */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006666 .attrs = iwl4965_sysfs_entries,
Zhu Yib481de92007-09-25 17:54:57 -07006667};
6668
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006669static struct ieee80211_ops iwl4965_hw_ops = {
6670 .tx = iwl4965_mac_tx,
6671 .start = iwl4965_mac_start,
6672 .stop = iwl4965_mac_stop,
6673 .add_interface = iwl4965_mac_add_interface,
6674 .remove_interface = iwl4965_mac_remove_interface,
6675 .config = iwl4965_mac_config,
6676 .config_interface = iwl4965_mac_config_interface,
6677 .configure_filter = iwl4965_configure_filter,
6678 .set_key = iwl4965_mac_set_key,
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02006679 .update_tkip_key = iwl4965_mac_update_tkip_key,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006680 .get_stats = iwl4965_mac_get_stats,
6681 .get_tx_stats = iwl4965_mac_get_tx_stats,
6682 .conf_tx = iwl4965_mac_conf_tx,
6683 .get_tsf = iwl4965_mac_get_tsf,
6684 .reset_tsf = iwl4965_mac_reset_tsf,
6685 .beacon_update = iwl4965_mac_beacon_update,
Johannes Berg471b3ef2007-12-28 14:32:58 +01006686 .bss_info_changed = iwl4965_bss_info_changed,
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08006687#ifdef CONFIG_IWL4965_HT
Ron Rindjunsky9ab46172007-12-25 17:00:38 +02006688 .ampdu_action = iwl4965_mac_ampdu_action,
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08006689#endif /* CONFIG_IWL4965_HT */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006690 .hw_scan = iwl4965_mac_hw_scan
Zhu Yib481de92007-09-25 17:54:57 -07006691};
6692
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006693static int iwl4965_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
Zhu Yib481de92007-09-25 17:54:57 -07006694{
6695 int err = 0;
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07006696 struct iwl_priv *priv;
Zhu Yib481de92007-09-25 17:54:57 -07006697 struct ieee80211_hw *hw;
Tomas Winkler82b9a122008-03-04 18:09:30 -08006698 struct iwl_cfg *cfg = (struct iwl_cfg *)(ent->driver_data);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07006699 unsigned long flags;
Zhu Yi5a66926a2008-01-14 17:46:18 -08006700 DECLARE_MAC_BUF(mac);
Zhu Yib481de92007-09-25 17:54:57 -07006701
Assaf Krauss316c30d2008-03-14 10:38:46 -07006702 /************************
6703 * 1. Allocating HW data
6704 ************************/
6705
Cahill, Ben M6440adb2007-11-29 11:09:55 +08006706 /* Disabling hardware scan means that mac80211 will perform scans
6707 * "the hard way", rather than using device's scan. */
Assaf Krauss1ea87392008-03-18 14:57:50 -07006708 if (cfg->mod_params->disable_hw_scan) {
Zhu Yib481de92007-09-25 17:54:57 -07006709 IWL_DEBUG_INFO("Disabling hw_scan\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006710 iwl4965_hw_ops.hw_scan = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07006711 }
6712
Assaf Krauss1d0a0822008-03-14 10:38:48 -07006713 hw = iwl_alloc_all(cfg, &iwl4965_hw_ops);
6714 if (!hw) {
Zhu Yib481de92007-09-25 17:54:57 -07006715 err = -ENOMEM;
6716 goto out;
6717 }
Assaf Krauss1d0a0822008-03-14 10:38:48 -07006718 priv = hw->priv;
6719 /* At this point both hw and priv are allocated. */
6720
Zhu Yib481de92007-09-25 17:54:57 -07006721 SET_IEEE80211_DEV(hw, &pdev->dev);
6722
6723 IWL_DEBUG_INFO("*** LOAD DRIVER ***\n");
Tomas Winkler82b9a122008-03-04 18:09:30 -08006724 priv->cfg = cfg;
Zhu Yib481de92007-09-25 17:54:57 -07006725 priv->pci_dev = pdev;
Assaf Krauss316c30d2008-03-14 10:38:46 -07006726
Tomas Winkler0a6857e2008-03-12 16:58:49 -07006727#ifdef CONFIG_IWLWIFI_DEBUG
Assaf Krauss1ea87392008-03-18 14:57:50 -07006728 iwl_debug_level = priv->cfg->mod_params->debug;
Zhu Yib481de92007-09-25 17:54:57 -07006729 atomic_set(&priv->restrict_refcnt, 0);
6730#endif
Zhu Yib481de92007-09-25 17:54:57 -07006731
Assaf Krauss316c30d2008-03-14 10:38:46 -07006732 /**************************
6733 * 2. Initializing PCI bus
6734 **************************/
6735 if (pci_enable_device(pdev)) {
6736 err = -ENODEV;
6737 goto out_ieee80211_free_hw;
6738 }
6739
6740 pci_set_master(pdev);
6741
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07006742 err = pci_set_dma_mask(pdev, DMA_64BIT_MASK);
Assaf Krauss316c30d2008-03-14 10:38:46 -07006743 if (!err)
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07006744 err = pci_set_consistent_dma_mask(pdev, DMA_64BIT_MASK);
6745 if (err) {
6746 err = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
6747 if (!err)
6748 err = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK);
6749 /* both attempts failed: */
Assaf Krauss316c30d2008-03-14 10:38:46 -07006750 if (err) {
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07006751 printk(KERN_WARNING "%s: No suitable DMA available.\n",
6752 DRV_NAME);
Assaf Krauss316c30d2008-03-14 10:38:46 -07006753 goto out_pci_disable_device;
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07006754 }
Assaf Krauss316c30d2008-03-14 10:38:46 -07006755 }
6756
6757 err = pci_request_regions(pdev, DRV_NAME);
6758 if (err)
6759 goto out_pci_disable_device;
6760
6761 pci_set_drvdata(pdev, priv);
6762
6763 /* We disable the RETRY_TIMEOUT register (0x41) to keep
6764 * PCI Tx retries from interfering with C3 CPU state */
6765 pci_write_config_byte(pdev, 0x41, 0x00);
6766
6767 /***********************
6768 * 3. Read REV register
6769 ***********************/
6770 priv->hw_base = pci_iomap(pdev, 0, 0);
6771 if (!priv->hw_base) {
6772 err = -ENODEV;
6773 goto out_pci_release_regions;
6774 }
6775
6776 IWL_DEBUG_INFO("pci_resource_len = 0x%08llx\n",
6777 (unsigned long long) pci_resource_len(pdev, 0));
6778 IWL_DEBUG_INFO("pci_resource_base = %p\n", priv->hw_base);
6779
Tomas Winklerb661c812008-04-23 17:14:54 -07006780 iwl_hw_detect(priv);
Assaf Krauss316c30d2008-03-14 10:38:46 -07006781 printk(KERN_INFO DRV_NAME
Tomas Winklerb661c812008-04-23 17:14:54 -07006782 ": Detected Intel Wireless WiFi Link %s REV=0x%X\n",
6783 priv->cfg->name, priv->hw_rev);
Assaf Krauss316c30d2008-03-14 10:38:46 -07006784
Tomas Winkler91238712008-04-23 17:14:53 -07006785 /* amp init */
6786 err = priv->cfg->ops->lib->apm_ops.init(priv);
6787 if (err < 0) {
6788 IWL_DEBUG_INFO("Failed to init APMG\n");
6789 goto out_iounmap;
6790 }
Assaf Krauss316c30d2008-03-14 10:38:46 -07006791 /*****************
6792 * 4. Read EEPROM
6793 *****************/
Assaf Krauss316c30d2008-03-14 10:38:46 -07006794 /* Read the EEPROM */
6795 err = iwl_eeprom_init(priv);
6796 if (err) {
6797 IWL_ERROR("Unable to init EEPROM\n");
6798 goto out_iounmap;
6799 }
Tomas Winkler8614f362008-04-23 17:14:55 -07006800 err = iwl_eeprom_check_version(priv);
6801 if (err)
6802 goto out_iounmap;
6803
Assaf Krauss316c30d2008-03-14 10:38:46 -07006804 /* MAC Address location in EEPROM same for 3945/4965 */
6805 iwl_eeprom_get_mac(priv, priv->mac_addr);
6806 IWL_DEBUG_INFO("MAC address: %s\n", print_mac(mac, priv->mac_addr));
6807 SET_IEEE80211_PERM_ADDR(priv->hw, priv->mac_addr);
6808
6809 /************************
6810 * 5. Setup HW constants
6811 ************************/
6812 /* Device-specific setup */
Tomas Winkler5425e492008-04-15 16:01:38 -07006813 if (priv->cfg->ops->lib->set_hw_params(priv)) {
6814 IWL_ERROR("failed to set hw parameters\n");
Tomas Winkler073d3f52008-04-21 15:41:52 -07006815 goto out_free_eeprom;
Assaf Krauss316c30d2008-03-14 10:38:46 -07006816 }
6817
6818 /*******************
6819 * 6. Setup hw/priv
6820 *******************/
Zhu Yib481de92007-09-25 17:54:57 -07006821
Assaf Kraussbf85ea42008-03-14 10:38:49 -07006822 err = iwl_setup(priv);
6823 if (err)
Ron Rindjunsky399f4902008-04-23 17:14:56 -07006824 goto out_free_eeprom;
Assaf Kraussbf85ea42008-03-14 10:38:49 -07006825 /* At this point both hw and priv are initialized. */
Assaf Krauss316c30d2008-03-14 10:38:46 -07006826
6827 /**********************************
6828 * 7. Initialize module parameters
6829 **********************************/
6830
6831 /* Disable radio (SW RF KILL) via parameter when loading driver */
Assaf Krauss1ea87392008-03-18 14:57:50 -07006832 if (priv->cfg->mod_params->disable) {
Assaf Krauss316c30d2008-03-14 10:38:46 -07006833 set_bit(STATUS_RF_KILL_SW, &priv->status);
6834 IWL_DEBUG_INFO("Radio disabled.\n");
6835 }
6836
Assaf Krauss1ea87392008-03-18 14:57:50 -07006837 if (priv->cfg->mod_params->enable_qos)
Assaf Krauss316c30d2008-03-14 10:38:46 -07006838 priv->qos_data.qos_enable = 1;
6839
6840 /********************
6841 * 8. Setup services
6842 ********************/
Mohamed Abbas0359fac2008-03-28 16:21:08 -07006843 spin_lock_irqsave(&priv->lock, flags);
Assaf Krauss316c30d2008-03-14 10:38:46 -07006844 iwl4965_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07006845 spin_unlock_irqrestore(&priv->lock, flags);
Assaf Krauss316c30d2008-03-14 10:38:46 -07006846
6847 err = sysfs_create_group(&pdev->dev.kobj, &iwl4965_attribute_group);
6848 if (err) {
6849 IWL_ERROR("failed to create sysfs device attributes\n");
Ron Rindjunsky399f4902008-04-23 17:14:56 -07006850 goto out_free_eeprom;
Assaf Krauss316c30d2008-03-14 10:38:46 -07006851 }
6852
6853 err = iwl_dbgfs_register(priv, DRV_NAME);
6854 if (err) {
6855 IWL_ERROR("failed to create debugfs files\n");
6856 goto out_remove_sysfs;
6857 }
6858
6859 iwl4965_setup_deferred_work(priv);
6860 iwl4965_setup_rx_handlers(priv);
6861
6862 /********************
6863 * 9. Conclude
6864 ********************/
Zhu Yi5a66926a2008-01-14 17:46:18 -08006865 pci_save_state(pdev);
6866 pci_disable_device(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07006867
Mohamed Abbasc8381fd2008-03-28 16:21:05 -07006868 /* notify iwlcore to init */
6869 iwlcore_low_level_notify(priv, IWLCORE_INIT_EVT);
Zhu Yib481de92007-09-25 17:54:57 -07006870 return 0;
6871
Assaf Krauss316c30d2008-03-14 10:38:46 -07006872 out_remove_sysfs:
6873 sysfs_remove_group(&pdev->dev.kobj, &iwl4965_attribute_group);
Tomas Winkler073d3f52008-04-21 15:41:52 -07006874 out_free_eeprom:
6875 iwl_eeprom_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006876 out_iounmap:
6877 pci_iounmap(pdev, priv->hw_base);
6878 out_pci_release_regions:
6879 pci_release_regions(pdev);
Assaf Krauss316c30d2008-03-14 10:38:46 -07006880 pci_set_drvdata(pdev, NULL);
Zhu Yib481de92007-09-25 17:54:57 -07006881 out_pci_disable_device:
6882 pci_disable_device(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07006883 out_ieee80211_free_hw:
6884 ieee80211_free_hw(priv->hw);
6885 out:
6886 return err;
6887}
6888
Reinette Chatrec83dbf62008-03-21 13:53:41 -07006889static void __devexit iwl4965_pci_remove(struct pci_dev *pdev)
Zhu Yib481de92007-09-25 17:54:57 -07006890{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07006891 struct iwl_priv *priv = pci_get_drvdata(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07006892 struct list_head *p, *q;
6893 int i;
Mohamed Abbas0359fac2008-03-28 16:21:08 -07006894 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07006895
6896 if (!priv)
6897 return;
6898
6899 IWL_DEBUG_INFO("*** UNLOAD DRIVER ***\n");
6900
Ron Rindjunskyc4f55232008-03-28 16:21:10 -07006901 if (priv->mac80211_registered) {
6902 ieee80211_unregister_hw(priv->hw);
6903 priv->mac80211_registered = 0;
6904 }
6905
Zhu Yib481de92007-09-25 17:54:57 -07006906 set_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib24d22b2007-12-19 13:59:52 +08006907
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006908 iwl4965_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006909
Mohamed Abbas0359fac2008-03-28 16:21:08 -07006910 /* make sure we flush any pending irq or
6911 * tasklet for the driver
6912 */
6913 spin_lock_irqsave(&priv->lock, flags);
6914 iwl4965_disable_interrupts(priv);
6915 spin_unlock_irqrestore(&priv->lock, flags);
6916
6917 iwl_synchronize_irq(priv);
6918
Zhu Yib481de92007-09-25 17:54:57 -07006919 /* Free MAC hash list for ADHOC */
6920 for (i = 0; i < IWL_IBSS_MAC_HASH_SIZE; i++) {
6921 list_for_each_safe(p, q, &priv->ibss_mac_hash[i]) {
6922 list_del(p);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006923 kfree(list_entry(p, struct iwl4965_ibss_seq, list));
Zhu Yib481de92007-09-25 17:54:57 -07006924 }
6925 }
6926
Mohamed Abbasc8381fd2008-03-28 16:21:05 -07006927 iwlcore_low_level_notify(priv, IWLCORE_REMOVE_EVT);
Tomas Winkler712b6cf2008-03-12 16:58:52 -07006928 iwl_dbgfs_unregister(priv);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006929 sysfs_remove_group(&pdev->dev.kobj, &iwl4965_attribute_group);
Zhu Yib481de92007-09-25 17:54:57 -07006930
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006931 iwl4965_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006932
6933 if (priv->rxq.bd)
Tomas Winklera55360e2008-05-05 10:22:28 +08006934 iwl_rx_queue_free(priv, &priv->rxq);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006935 iwl4965_hw_txq_ctx_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006936
Assaf Kraussbf85ea42008-03-14 10:38:49 -07006937 iwlcore_clear_stations_table(priv);
Tomas Winkler073d3f52008-04-21 15:41:52 -07006938 iwl_eeprom_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006939
Zhu Yib481de92007-09-25 17:54:57 -07006940
Mohamed Abbas948c1712007-10-25 17:15:45 +08006941 /*netif_stop_queue(dev); */
6942 flush_workqueue(priv->workqueue);
6943
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006944 /* ieee80211_unregister_hw calls iwl4965_mac_stop, which flushes
Zhu Yib481de92007-09-25 17:54:57 -07006945 * priv->workqueue... so we can't take down the workqueue
6946 * until now... */
6947 destroy_workqueue(priv->workqueue);
6948 priv->workqueue = NULL;
6949
Zhu Yib481de92007-09-25 17:54:57 -07006950 pci_iounmap(pdev, priv->hw_base);
6951 pci_release_regions(pdev);
6952 pci_disable_device(pdev);
6953 pci_set_drvdata(pdev, NULL);
6954
Assaf Kraussbf85ea42008-03-14 10:38:49 -07006955 iwl_free_channel_map(priv);
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -07006956 iwlcore_free_geos(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006957
6958 if (priv->ibss_beacon)
6959 dev_kfree_skb(priv->ibss_beacon);
6960
6961 ieee80211_free_hw(priv->hw);
6962}
6963
6964#ifdef CONFIG_PM
6965
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006966static int iwl4965_pci_suspend(struct pci_dev *pdev, pm_message_t state)
Zhu Yib481de92007-09-25 17:54:57 -07006967{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07006968 struct iwl_priv *priv = pci_get_drvdata(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07006969
Zhu Yie655b9f2008-01-24 02:19:38 -08006970 if (priv->is_open) {
6971 set_bit(STATUS_IN_SUSPEND, &priv->status);
6972 iwl4965_mac_stop(priv->hw);
6973 priv->is_open = 1;
6974 }
Zhu Yib481de92007-09-25 17:54:57 -07006975
Zhu Yib481de92007-09-25 17:54:57 -07006976 pci_set_power_state(pdev, PCI_D3hot);
6977
Zhu Yib481de92007-09-25 17:54:57 -07006978 return 0;
6979}
6980
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006981static int iwl4965_pci_resume(struct pci_dev *pdev)
Zhu Yib481de92007-09-25 17:54:57 -07006982{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07006983 struct iwl_priv *priv = pci_get_drvdata(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07006984
Zhu Yib481de92007-09-25 17:54:57 -07006985 pci_set_power_state(pdev, PCI_D0);
Zhu Yib481de92007-09-25 17:54:57 -07006986
Zhu Yie655b9f2008-01-24 02:19:38 -08006987 if (priv->is_open)
6988 iwl4965_mac_start(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07006989
Zhu Yie655b9f2008-01-24 02:19:38 -08006990 clear_bit(STATUS_IN_SUSPEND, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07006991 return 0;
6992}
6993
6994#endif /* CONFIG_PM */
6995
6996/*****************************************************************************
6997 *
6998 * driver and module entry point
6999 *
7000 *****************************************************************************/
7001
Ron Rindjunskyfed90172008-04-15 16:01:41 -07007002/* Hardware specific file defines the PCI IDs table for that hardware module */
7003static struct pci_device_id iwl_hw_card_ids[] = {
7004 {IWL_PCI_DEVICE(0x4229, PCI_ANY_ID, iwl4965_agn_cfg)},
7005 {IWL_PCI_DEVICE(0x4230, PCI_ANY_ID, iwl4965_agn_cfg)},
Tomas Winkler5a6a2562008-04-24 11:55:23 -07007006#ifdef CONFIG_IWL5000
7007 {IWL_PCI_DEVICE(0x4235, PCI_ANY_ID, iwl5300_agn_cfg)},
7008 {IWL_PCI_DEVICE(0x4232, PCI_ANY_ID, iwl5100_agn_cfg)},
7009 {IWL_PCI_DEVICE(0x423A, PCI_ANY_ID, iwl5350_agn_cfg)},
7010#endif /* CONFIG_IWL5000 */
Ron Rindjunskyfed90172008-04-15 16:01:41 -07007011 {0}
7012};
7013MODULE_DEVICE_TABLE(pci, iwl_hw_card_ids);
7014
7015static struct pci_driver iwl_driver = {
Zhu Yib481de92007-09-25 17:54:57 -07007016 .name = DRV_NAME,
Ron Rindjunskyfed90172008-04-15 16:01:41 -07007017 .id_table = iwl_hw_card_ids,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007018 .probe = iwl4965_pci_probe,
7019 .remove = __devexit_p(iwl4965_pci_remove),
Zhu Yib481de92007-09-25 17:54:57 -07007020#ifdef CONFIG_PM
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007021 .suspend = iwl4965_pci_suspend,
7022 .resume = iwl4965_pci_resume,
Zhu Yib481de92007-09-25 17:54:57 -07007023#endif
7024};
7025
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007026static int __init iwl4965_init(void)
Zhu Yib481de92007-09-25 17:54:57 -07007027{
7028
7029 int ret;
7030 printk(KERN_INFO DRV_NAME ": " DRV_DESCRIPTION ", " DRV_VERSION "\n");
7031 printk(KERN_INFO DRV_NAME ": " DRV_COPYRIGHT "\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07007032
7033 ret = iwl4965_rate_control_register();
7034 if (ret) {
7035 IWL_ERROR("Unable to register rate control algorithm: %d\n", ret);
7036 return ret;
7037 }
7038
Ron Rindjunskyfed90172008-04-15 16:01:41 -07007039 ret = pci_register_driver(&iwl_driver);
Zhu Yib481de92007-09-25 17:54:57 -07007040 if (ret) {
7041 IWL_ERROR("Unable to initialize PCI module\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07007042 goto error_register;
Zhu Yib481de92007-09-25 17:54:57 -07007043 }
Tomas Winkler0a6857e2008-03-12 16:58:49 -07007044#ifdef CONFIG_IWLWIFI_DEBUG
Ron Rindjunskyfed90172008-04-15 16:01:41 -07007045 ret = driver_create_file(&iwl_driver.driver, &driver_attr_debug_level);
Zhu Yib481de92007-09-25 17:54:57 -07007046 if (ret) {
7047 IWL_ERROR("Unable to create driver sysfs file\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07007048 goto error_debug;
Zhu Yib481de92007-09-25 17:54:57 -07007049 }
7050#endif
7051
7052 return ret;
Reinette Chatre897e1cf2008-03-28 16:21:09 -07007053
7054#ifdef CONFIG_IWLWIFI_DEBUG
7055error_debug:
Ron Rindjunskyfed90172008-04-15 16:01:41 -07007056 pci_unregister_driver(&iwl_driver);
Reinette Chatre897e1cf2008-03-28 16:21:09 -07007057#endif
7058error_register:
7059 iwl4965_rate_control_unregister();
7060 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07007061}
7062
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007063static void __exit iwl4965_exit(void)
Zhu Yib481de92007-09-25 17:54:57 -07007064{
Tomas Winkler0a6857e2008-03-12 16:58:49 -07007065#ifdef CONFIG_IWLWIFI_DEBUG
Ron Rindjunskyfed90172008-04-15 16:01:41 -07007066 driver_remove_file(&iwl_driver.driver, &driver_attr_debug_level);
Zhu Yib481de92007-09-25 17:54:57 -07007067#endif
Ron Rindjunskyfed90172008-04-15 16:01:41 -07007068 pci_unregister_driver(&iwl_driver);
Reinette Chatre897e1cf2008-03-28 16:21:09 -07007069 iwl4965_rate_control_unregister();
Zhu Yib481de92007-09-25 17:54:57 -07007070}
7071
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007072module_exit(iwl4965_exit);
7073module_init(iwl4965_init);