blob: 9ae3d2981df50fe83982ec8f5de758a41e77ca49 [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 Winkler82b9a122008-03-04 18:09:30 -080049#include "iwl-core.h"
Zhu Yib481de92007-09-25 17:54:57 -070050#include "iwl-4965.h"
51#include "iwl-helpers.h"
52
Tomas Winklerc79dd5b2008-03-12 16:58:50 -070053static int iwl4965_tx_queue_update_write_ptr(struct iwl_priv *priv,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -080054 struct iwl4965_tx_queue *txq);
Christoph Hellwig416e1432007-10-25 17:15:49 +080055
Zhu Yib481de92007-09-25 17:54:57 -070056/******************************************************************************
57 *
58 * module boiler plate
59 *
60 ******************************************************************************/
61
Zhu Yib481de92007-09-25 17:54:57 -070062/*
63 * module name, copyright, version, etc.
64 * NOTE: DRV_NAME is defined in iwlwifi.h for use by iwl-debug.h and printk
65 */
66
67#define DRV_DESCRIPTION "Intel(R) Wireless WiFi Link 4965AGN driver for Linux"
68
Tomas Winkler0a6857e2008-03-12 16:58:49 -070069#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -070070#define VD "d"
71#else
72#define VD
73#endif
74
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +080075#ifdef CONFIG_IWL4965_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -070076#define VS "s"
77#else
78#define VS
79#endif
80
Tomas Winklerdf48c322008-03-06 10:40:19 -080081#define DRV_VERSION IWLWIFI_VERSION VD VS
Zhu Yib481de92007-09-25 17:54:57 -070082
Zhu Yib481de92007-09-25 17:54:57 -070083
84MODULE_DESCRIPTION(DRV_DESCRIPTION);
85MODULE_VERSION(DRV_VERSION);
86MODULE_AUTHOR(DRV_COPYRIGHT);
87MODULE_LICENSE("GPL");
88
89__le16 *ieee80211_get_qos_ctrl(struct ieee80211_hdr *hdr)
90{
91 u16 fc = le16_to_cpu(hdr->frame_control);
92 int hdr_len = ieee80211_get_hdrlen(fc);
93
94 if ((fc & 0x00cc) == (IEEE80211_STYPE_QOS_DATA | IEEE80211_FTYPE_DATA))
95 return (__le16 *) ((u8 *) hdr + hdr_len - QOS_CONTROL_LEN);
96 return NULL;
97}
98
Johannes Berg8318d782008-01-24 19:38:38 +010099static const struct ieee80211_supported_band *iwl4965_get_hw_mode(
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700100 struct iwl_priv *priv, enum ieee80211_band band)
Zhu Yib481de92007-09-25 17:54:57 -0700101{
Johannes Berg8318d782008-01-24 19:38:38 +0100102 return priv->hw->wiphy->bands[band];
Zhu Yib481de92007-09-25 17:54:57 -0700103}
104
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800105static int iwl4965_is_empty_essid(const char *essid, int essid_len)
Zhu Yib481de92007-09-25 17:54:57 -0700106{
107 /* Single white space is for Linksys APs */
108 if (essid_len == 1 && essid[0] == ' ')
109 return 1;
110
111 /* Otherwise, if the entire essid is 0, we assume it is hidden */
112 while (essid_len) {
113 essid_len--;
114 if (essid[essid_len] != '\0')
115 return 0;
116 }
117
118 return 1;
119}
120
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800121static const char *iwl4965_escape_essid(const char *essid, u8 essid_len)
Zhu Yib481de92007-09-25 17:54:57 -0700122{
123 static char escaped[IW_ESSID_MAX_SIZE * 2 + 1];
124 const char *s = essid;
125 char *d = escaped;
126
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800127 if (iwl4965_is_empty_essid(essid, essid_len)) {
Zhu Yib481de92007-09-25 17:54:57 -0700128 memcpy(escaped, "<hidden>", sizeof("<hidden>"));
129 return escaped;
130 }
131
132 essid_len = min(essid_len, (u8) IW_ESSID_MAX_SIZE);
133 while (essid_len--) {
134 if (*s == '\0') {
135 *d++ = '\\';
136 *d++ = '0';
137 s++;
138 } else
139 *d++ = *s++;
140 }
141 *d = '\0';
142 return escaped;
143}
144
Zhu Yib481de92007-09-25 17:54:57 -0700145/*************** DMA-QUEUE-GENERAL-FUNCTIONS *****
146 * DMA services
147 *
148 * Theory of operation
149 *
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800150 * A Tx or Rx queue resides in host DRAM, and is comprised of a circular buffer
151 * of buffer descriptors, each of which points to one or more data buffers for
152 * the device to read from or fill. Driver and device exchange status of each
153 * queue via "read" and "write" pointers. Driver keeps minimum of 2 empty
154 * entries in each circular buffer, to protect against confusing empty and full
155 * queue states.
156 *
157 * The device reads or writes the data in the queues via the device's several
158 * DMA/FIFO channels. Each queue is mapped to a single DMA channel.
Zhu Yib481de92007-09-25 17:54:57 -0700159 *
160 * For Tx queue, there are low mark and high mark limits. If, after queuing
161 * the packet for Tx, free space become < low mark, Tx queue stopped. When
162 * reclaiming packets (on 'tx done IRQ), if free space become > high mark,
163 * Tx queue resumed.
164 *
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800165 * The 4965 operates with up to 17 queues: One receive queue, one transmit
166 * queue (#4) for sending commands to the device firmware, and 15 other
167 * Tx queues that may be mapped to prioritized Tx DMA/FIFO channels.
Ben Cahille3851442007-11-29 11:10:07 +0800168 *
169 * See more detailed info in iwl-4965-hw.h.
Zhu Yib481de92007-09-25 17:54:57 -0700170 ***************************************************/
171
Ron Rindjunskyfe01b472008-01-28 14:07:24 +0200172int iwl4965_queue_space(const struct iwl4965_queue *q)
Zhu Yib481de92007-09-25 17:54:57 -0700173{
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800174 int s = q->read_ptr - q->write_ptr;
Zhu Yib481de92007-09-25 17:54:57 -0700175
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800176 if (q->read_ptr > q->write_ptr)
Zhu Yib481de92007-09-25 17:54:57 -0700177 s -= q->n_bd;
178
179 if (s <= 0)
180 s += q->n_window;
181 /* keep some reserve to not confuse empty and full situations */
182 s -= 2;
183 if (s < 0)
184 s = 0;
185 return s;
186}
187
Zhu Yib481de92007-09-25 17:54:57 -0700188
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800189static inline int x2_queue_used(const struct iwl4965_queue *q, int i)
Zhu Yib481de92007-09-25 17:54:57 -0700190{
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800191 return q->write_ptr > q->read_ptr ?
192 (i >= q->read_ptr && i < q->write_ptr) :
193 !(i < q->read_ptr && i >= q->write_ptr);
Zhu Yib481de92007-09-25 17:54:57 -0700194}
195
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800196static inline u8 get_cmd_index(struct iwl4965_queue *q, u32 index, int is_huge)
Zhu Yib481de92007-09-25 17:54:57 -0700197{
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800198 /* This is for scan command, the big buffer at end of command array */
Zhu Yib481de92007-09-25 17:54:57 -0700199 if (is_huge)
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800200 return q->n_window; /* must be power of 2 */
Zhu Yib481de92007-09-25 17:54:57 -0700201
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800202 /* Otherwise, use normal size buffers */
Zhu Yib481de92007-09-25 17:54:57 -0700203 return index & (q->n_window - 1);
204}
205
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800206/**
207 * iwl4965_queue_init - Initialize queue's high/low-water and read/write indexes
208 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700209static int iwl4965_queue_init(struct iwl_priv *priv, struct iwl4965_queue *q,
Zhu Yib481de92007-09-25 17:54:57 -0700210 int count, int slots_num, u32 id)
211{
212 q->n_bd = count;
213 q->n_window = slots_num;
214 q->id = id;
215
Tomas Winklerc54b6792008-03-06 17:36:53 -0800216 /* count must be power-of-two size, otherwise iwl_queue_inc_wrap
217 * and iwl_queue_dec_wrap are broken. */
Zhu Yib481de92007-09-25 17:54:57 -0700218 BUG_ON(!is_power_of_2(count));
219
220 /* slots_num must be power-of-two size, otherwise
221 * get_cmd_index is broken. */
222 BUG_ON(!is_power_of_2(slots_num));
223
224 q->low_mark = q->n_window / 4;
225 if (q->low_mark < 4)
226 q->low_mark = 4;
227
228 q->high_mark = q->n_window / 8;
229 if (q->high_mark < 2)
230 q->high_mark = 2;
231
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800232 q->write_ptr = q->read_ptr = 0;
Zhu Yib481de92007-09-25 17:54:57 -0700233
234 return 0;
235}
236
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800237/**
238 * iwl4965_tx_queue_alloc - Alloc driver data and TFD CB for one Tx/cmd queue
239 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700240static int iwl4965_tx_queue_alloc(struct iwl_priv *priv,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800241 struct iwl4965_tx_queue *txq, u32 id)
Zhu Yib481de92007-09-25 17:54:57 -0700242{
243 struct pci_dev *dev = priv->pci_dev;
244
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800245 /* Driver private data, only for Tx (not command) queues,
246 * not shared with device. */
Zhu Yib481de92007-09-25 17:54:57 -0700247 if (id != IWL_CMD_QUEUE_NUM) {
248 txq->txb = kmalloc(sizeof(txq->txb[0]) *
249 TFD_QUEUE_SIZE_MAX, GFP_KERNEL);
250 if (!txq->txb) {
Ian Schram01ebd062007-10-25 17:15:22 +0800251 IWL_ERROR("kmalloc for auxiliary BD "
Zhu Yib481de92007-09-25 17:54:57 -0700252 "structures failed\n");
253 goto error;
254 }
255 } else
256 txq->txb = NULL;
257
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800258 /* Circular buffer of transmit frame descriptors (TFDs),
259 * shared with device */
Zhu Yib481de92007-09-25 17:54:57 -0700260 txq->bd = pci_alloc_consistent(dev,
261 sizeof(txq->bd[0]) * TFD_QUEUE_SIZE_MAX,
262 &txq->q.dma_addr);
263
264 if (!txq->bd) {
265 IWL_ERROR("pci_alloc_consistent(%zd) failed\n",
266 sizeof(txq->bd[0]) * TFD_QUEUE_SIZE_MAX);
267 goto error;
268 }
269 txq->q.id = id;
270
271 return 0;
272
273 error:
274 if (txq->txb) {
275 kfree(txq->txb);
276 txq->txb = NULL;
277 }
278
279 return -ENOMEM;
280}
281
Cahill, Ben M8b6eaea2007-11-29 11:09:54 +0800282/**
283 * iwl4965_tx_queue_init - Allocate and initialize one tx/cmd queue
284 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700285int iwl4965_tx_queue_init(struct iwl_priv *priv,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800286 struct iwl4965_tx_queue *txq, int slots_num, u32 txq_id)
Zhu Yib481de92007-09-25 17:54:57 -0700287{
288 struct pci_dev *dev = priv->pci_dev;
289 int len;
290 int rc = 0;
291
Cahill, Ben M8b6eaea2007-11-29 11:09:54 +0800292 /*
293 * Alloc buffer array for commands (Tx or other types of commands).
294 * For the command queue (#4), allocate command space + one big
295 * command for scan, since scan command is very huge; the system will
296 * not have two scans at the same time, so only one is needed.
Tomas Winklerbb542442007-12-05 20:59:59 +0200297 * For normal Tx queues (all other queues), no super-size command
Cahill, Ben M8b6eaea2007-11-29 11:09:54 +0800298 * space is needed.
299 */
Tomas Winkler857485c2008-03-21 13:53:44 -0700300 len = sizeof(struct iwl_cmd) * slots_num;
Zhu Yib481de92007-09-25 17:54:57 -0700301 if (txq_id == IWL_CMD_QUEUE_NUM)
302 len += IWL_MAX_SCAN_SIZE;
303 txq->cmd = pci_alloc_consistent(dev, len, &txq->dma_addr_cmd);
304 if (!txq->cmd)
305 return -ENOMEM;
306
Cahill, Ben M8b6eaea2007-11-29 11:09:54 +0800307 /* Alloc driver data array and TFD circular buffer */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800308 rc = iwl4965_tx_queue_alloc(priv, txq, txq_id);
Zhu Yib481de92007-09-25 17:54:57 -0700309 if (rc) {
310 pci_free_consistent(dev, len, txq->cmd, txq->dma_addr_cmd);
311
312 return -ENOMEM;
313 }
314 txq->need_update = 0;
315
316 /* TFD_QUEUE_SIZE_MAX must be power-of-two size, otherwise
Tomas Winklerc54b6792008-03-06 17:36:53 -0800317 * iwl_queue_inc_wrap and iwl_queue_dec_wrap are broken. */
Zhu Yib481de92007-09-25 17:54:57 -0700318 BUILD_BUG_ON(TFD_QUEUE_SIZE_MAX & (TFD_QUEUE_SIZE_MAX - 1));
Cahill, Ben M8b6eaea2007-11-29 11:09:54 +0800319
320 /* Initialize queue's high/low-water marks, and head/tail indexes */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800321 iwl4965_queue_init(priv, &txq->q, TFD_QUEUE_SIZE_MAX, slots_num, txq_id);
Zhu Yib481de92007-09-25 17:54:57 -0700322
Cahill, Ben M8b6eaea2007-11-29 11:09:54 +0800323 /* Tell device where to find queue */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800324 iwl4965_hw_tx_queue_init(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -0700325
326 return 0;
327}
328
329/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800330 * iwl4965_tx_queue_free - Deallocate DMA queue.
Zhu Yib481de92007-09-25 17:54:57 -0700331 * @txq: Transmit queue to deallocate.
332 *
333 * Empty queue by removing and destroying all BD's.
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800334 * Free all buffers.
335 * 0-fill, but do not free "txq" descriptor structure.
Zhu Yib481de92007-09-25 17:54:57 -0700336 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700337void iwl4965_tx_queue_free(struct iwl_priv *priv, struct iwl4965_tx_queue *txq)
Zhu Yib481de92007-09-25 17:54:57 -0700338{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800339 struct iwl4965_queue *q = &txq->q;
Zhu Yib481de92007-09-25 17:54:57 -0700340 struct pci_dev *dev = priv->pci_dev;
341 int len;
342
343 if (q->n_bd == 0)
344 return;
345
346 /* first, empty all BD's */
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800347 for (; q->write_ptr != q->read_ptr;
Tomas Winklerc54b6792008-03-06 17:36:53 -0800348 q->read_ptr = iwl_queue_inc_wrap(q->read_ptr, q->n_bd))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800349 iwl4965_hw_txq_free_tfd(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -0700350
Tomas Winkler857485c2008-03-21 13:53:44 -0700351 len = sizeof(struct iwl_cmd) * q->n_window;
Zhu Yib481de92007-09-25 17:54:57 -0700352 if (q->id == IWL_CMD_QUEUE_NUM)
353 len += IWL_MAX_SCAN_SIZE;
354
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800355 /* De-alloc array of command/tx buffers */
Zhu Yib481de92007-09-25 17:54:57 -0700356 pci_free_consistent(dev, len, txq->cmd, txq->dma_addr_cmd);
357
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800358 /* De-alloc circular buffer of TFDs */
Zhu Yib481de92007-09-25 17:54:57 -0700359 if (txq->q.n_bd)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800360 pci_free_consistent(dev, sizeof(struct iwl4965_tfd_frame) *
Zhu Yib481de92007-09-25 17:54:57 -0700361 txq->q.n_bd, txq->bd, txq->q.dma_addr);
362
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800363 /* De-alloc array of per-TFD driver data */
Zhu Yib481de92007-09-25 17:54:57 -0700364 if (txq->txb) {
365 kfree(txq->txb);
366 txq->txb = NULL;
367 }
368
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800369 /* 0-fill queue descriptor structure */
Zhu Yib481de92007-09-25 17:54:57 -0700370 memset(txq, 0, sizeof(*txq));
371}
372
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800373const u8 iwl4965_broadcast_addr[ETH_ALEN] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF };
Zhu Yib481de92007-09-25 17:54:57 -0700374
375/*************** STATION TABLE MANAGEMENT ****
Ben Cahill9fbab512007-11-29 11:09:47 +0800376 * mac80211 should be examined to determine if sta_info is duplicating
Zhu Yib481de92007-09-25 17:54:57 -0700377 * the functionality provided here
378 */
379
380/**************************************************************/
381
Ian Schram01ebd062007-10-25 17:15:22 +0800382#if 0 /* temporary disable till we add real remove station */
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800383/**
384 * iwl4965_remove_station - Remove driver's knowledge of station.
385 *
386 * NOTE: This does not remove station from device's station table.
387 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700388static u8 iwl4965_remove_station(struct iwl_priv *priv, const u8 *addr, int is_ap)
Zhu Yib481de92007-09-25 17:54:57 -0700389{
390 int index = IWL_INVALID_STATION;
391 int i;
392 unsigned long flags;
393
394 spin_lock_irqsave(&priv->sta_lock, flags);
395
396 if (is_ap)
397 index = IWL_AP_ID;
398 else if (is_broadcast_ether_addr(addr))
399 index = priv->hw_setting.bcast_sta_id;
400 else
401 for (i = IWL_STA_ID; i < priv->hw_setting.max_stations; i++)
402 if (priv->stations[i].used &&
403 !compare_ether_addr(priv->stations[i].sta.sta.addr,
404 addr)) {
405 index = i;
406 break;
407 }
408
409 if (unlikely(index == IWL_INVALID_STATION))
410 goto out;
411
412 if (priv->stations[index].used) {
413 priv->stations[index].used = 0;
414 priv->num_stations--;
415 }
416
417 BUG_ON(priv->num_stations < 0);
418
419out:
420 spin_unlock_irqrestore(&priv->sta_lock, flags);
421 return 0;
422}
Zhu Yi556f8db2007-09-27 11:27:33 +0800423#endif
Zhu Yib481de92007-09-25 17:54:57 -0700424
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800425/**
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800426 * iwl4965_add_station_flags - Add station to tables in driver and device
427 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700428u8 iwl4965_add_station_flags(struct iwl_priv *priv, const u8 *addr,
Ron Rindjunsky67d62032007-11-26 16:14:40 +0200429 int is_ap, u8 flags, void *ht_data)
Zhu Yib481de92007-09-25 17:54:57 -0700430{
431 int i;
432 int index = IWL_INVALID_STATION;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800433 struct iwl4965_station_entry *station;
Zhu Yib481de92007-09-25 17:54:57 -0700434 unsigned long flags_spin;
Joe Perches0795af52007-10-03 17:59:30 -0700435 DECLARE_MAC_BUF(mac);
Zhu Yib481de92007-09-25 17:54:57 -0700436
437 spin_lock_irqsave(&priv->sta_lock, flags_spin);
438 if (is_ap)
439 index = IWL_AP_ID;
440 else if (is_broadcast_ether_addr(addr))
441 index = priv->hw_setting.bcast_sta_id;
442 else
443 for (i = IWL_STA_ID; i < priv->hw_setting.max_stations; i++) {
444 if (!compare_ether_addr(priv->stations[i].sta.sta.addr,
445 addr)) {
446 index = i;
447 break;
448 }
449
450 if (!priv->stations[i].used &&
451 index == IWL_INVALID_STATION)
452 index = i;
453 }
454
455
Ben Cahill9fbab512007-11-29 11:09:47 +0800456 /* These two conditions have the same outcome, but keep them separate
457 since they have different meanings */
Zhu Yib481de92007-09-25 17:54:57 -0700458 if (unlikely(index == IWL_INVALID_STATION)) {
459 spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
460 return index;
461 }
462
463 if (priv->stations[index].used &&
464 !compare_ether_addr(priv->stations[index].sta.sta.addr, addr)) {
465 spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
466 return index;
467 }
468
469
Joe Perches0795af52007-10-03 17:59:30 -0700470 IWL_DEBUG_ASSOC("Add STA ID %d: %s\n", index, print_mac(mac, addr));
Zhu Yib481de92007-09-25 17:54:57 -0700471 station = &priv->stations[index];
472 station->used = 1;
473 priv->num_stations++;
474
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800475 /* Set up the REPLY_ADD_STA command to send to device */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800476 memset(&station->sta, 0, sizeof(struct iwl4965_addsta_cmd));
Zhu Yib481de92007-09-25 17:54:57 -0700477 memcpy(station->sta.sta.addr, addr, ETH_ALEN);
478 station->sta.mode = 0;
479 station->sta.sta.sta_id = index;
480 station->sta.station_flags = 0;
481
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +0800482#ifdef CONFIG_IWL4965_HT
Zhu Yib481de92007-09-25 17:54:57 -0700483 /* BCAST station and IBSS stations do not work in HT mode */
484 if (index != priv->hw_setting.bcast_sta_id &&
485 priv->iw_mode != IEEE80211_IF_TYPE_IBSS)
Ron Rindjunsky67d62032007-11-26 16:14:40 +0200486 iwl4965_set_ht_add_station(priv, index,
487 (struct ieee80211_ht_info *) ht_data);
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +0800488#endif /*CONFIG_IWL4965_HT*/
Zhu Yib481de92007-09-25 17:54:57 -0700489
490 spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800491
492 /* Add station to device's station table */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800493 iwl4965_send_add_station(priv, &station->sta, flags);
Zhu Yib481de92007-09-25 17:54:57 -0700494 return index;
495
496}
497
498/*************** DRIVER STATUS FUNCTIONS *****/
499
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700500static inline int iwl4965_is_ready(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700501{
502 /* The adapter is 'ready' if READY and GEO_CONFIGURED bits are
503 * set but EXIT_PENDING is not */
504 return test_bit(STATUS_READY, &priv->status) &&
505 test_bit(STATUS_GEO_CONFIGURED, &priv->status) &&
506 !test_bit(STATUS_EXIT_PENDING, &priv->status);
507}
508
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700509static inline int iwl4965_is_alive(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700510{
511 return test_bit(STATUS_ALIVE, &priv->status);
512}
513
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700514static inline int iwl4965_is_init(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700515{
516 return test_bit(STATUS_INIT, &priv->status);
517}
518
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700519static inline int iwl4965_is_rfkill(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700520{
521 return test_bit(STATUS_RF_KILL_HW, &priv->status) ||
522 test_bit(STATUS_RF_KILL_SW, &priv->status);
523}
524
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700525static inline int iwl4965_is_ready_rf(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700526{
527
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800528 if (iwl4965_is_rfkill(priv))
Zhu Yib481de92007-09-25 17:54:57 -0700529 return 0;
530
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800531 return iwl4965_is_ready(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700532}
533
534/*************** HOST COMMAND QUEUE FUNCTIONS *****/
535
Zhu Yib481de92007-09-25 17:54:57 -0700536/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800537 * iwl4965_enqueue_hcmd - enqueue a uCode command
Zhu Yib481de92007-09-25 17:54:57 -0700538 * @priv: device private data point
539 * @cmd: a point to the ucode command structure
540 *
541 * The function returns < 0 values to indicate the operation is
542 * failed. On success, it turns the index (> 0) of command in the
543 * command queue.
544 */
Tomas Winkler857485c2008-03-21 13:53:44 -0700545int iwl4965_enqueue_hcmd(struct iwl_priv *priv, struct iwl_host_cmd *cmd)
Zhu Yib481de92007-09-25 17:54:57 -0700546{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800547 struct iwl4965_tx_queue *txq = &priv->txq[IWL_CMD_QUEUE_NUM];
548 struct iwl4965_queue *q = &txq->q;
549 struct iwl4965_tfd_frame *tfd;
Zhu Yib481de92007-09-25 17:54:57 -0700550 u32 *control_flags;
Tomas Winkler857485c2008-03-21 13:53:44 -0700551 struct iwl_cmd *out_cmd;
Zhu Yib481de92007-09-25 17:54:57 -0700552 u32 idx;
553 u16 fix_size = (u16)(cmd->len + sizeof(out_cmd->hdr));
554 dma_addr_t phys_addr;
555 int ret;
556 unsigned long flags;
557
558 /* If any of the command structures end up being larger than
559 * the TFD_MAX_PAYLOAD_SIZE, and it sent as a 'small' command then
560 * we will need to increase the size of the TFD entries */
561 BUG_ON((fix_size > TFD_MAX_PAYLOAD_SIZE) &&
562 !(cmd->meta.flags & CMD_SIZE_HUGE));
563
Gregory Greenmanc342a1b2008-02-06 11:20:40 -0800564 if (iwl4965_is_rfkill(priv)) {
565 IWL_DEBUG_INFO("Not sending command - RF KILL");
566 return -EIO;
567 }
568
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800569 if (iwl4965_queue_space(q) < ((cmd->meta.flags & CMD_ASYNC) ? 2 : 1)) {
Zhu Yib481de92007-09-25 17:54:57 -0700570 IWL_ERROR("No space for Tx\n");
571 return -ENOSPC;
572 }
573
574 spin_lock_irqsave(&priv->hcmd_lock, flags);
575
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800576 tfd = &txq->bd[q->write_ptr];
Zhu Yib481de92007-09-25 17:54:57 -0700577 memset(tfd, 0, sizeof(*tfd));
578
579 control_flags = (u32 *) tfd;
580
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800581 idx = get_cmd_index(q, q->write_ptr, cmd->meta.flags & CMD_SIZE_HUGE);
Zhu Yib481de92007-09-25 17:54:57 -0700582 out_cmd = &txq->cmd[idx];
583
584 out_cmd->hdr.cmd = cmd->id;
585 memcpy(&out_cmd->meta, &cmd->meta, sizeof(cmd->meta));
586 memcpy(&out_cmd->cmd.payload, cmd->data, cmd->len);
587
588 /* At this point, the out_cmd now has all of the incoming cmd
589 * information */
590
591 out_cmd->hdr.flags = 0;
592 out_cmd->hdr.sequence = cpu_to_le16(QUEUE_TO_SEQ(IWL_CMD_QUEUE_NUM) |
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800593 INDEX_TO_SEQ(q->write_ptr));
Zhu Yib481de92007-09-25 17:54:57 -0700594 if (out_cmd->meta.flags & CMD_SIZE_HUGE)
595 out_cmd->hdr.sequence |= cpu_to_le16(SEQ_HUGE_FRAME);
596
597 phys_addr = txq->dma_addr_cmd + sizeof(txq->cmd[0]) * idx +
Tomas Winkler857485c2008-03-21 13:53:44 -0700598 offsetof(struct iwl_cmd, hdr);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800599 iwl4965_hw_txq_attach_buf_to_tfd(priv, tfd, phys_addr, fix_size);
Zhu Yib481de92007-09-25 17:54:57 -0700600
601 IWL_DEBUG_HC("Sending command %s (#%x), seq: 0x%04X, "
602 "%d bytes at %d[%d]:%d\n",
603 get_cmd_string(out_cmd->hdr.cmd),
604 out_cmd->hdr.cmd, le16_to_cpu(out_cmd->hdr.sequence),
Tomas Winklerfc4b6852007-10-25 17:15:24 +0800605 fix_size, q->write_ptr, idx, IWL_CMD_QUEUE_NUM);
Zhu Yib481de92007-09-25 17:54:57 -0700606
607 txq->need_update = 1;
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800608
609 /* Set up entry in queue's byte count circular buffer */
Zhu Yib481de92007-09-25 17:54:57 -0700610 ret = iwl4965_tx_queue_update_wr_ptr(priv, txq, 0);
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800611
612 /* Increment and update queue's write index */
Tomas Winklerc54b6792008-03-06 17:36:53 -0800613 q->write_ptr = iwl_queue_inc_wrap(q->write_ptr, q->n_bd);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800614 iwl4965_tx_queue_update_write_ptr(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -0700615
616 spin_unlock_irqrestore(&priv->hcmd_lock, flags);
617 return ret ? ret : idx;
618}
619
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -0700620static void iwl4965_set_rxon_hwcrypto(struct iwl_priv *priv, int hw_decrypt)
621{
622 struct iwl4965_rxon_cmd *rxon = &priv->staging_rxon;
623
624 if (hw_decrypt)
625 rxon->filter_flags &= ~RXON_FILTER_DIS_DECRYPT_MSK;
626 else
627 rxon->filter_flags |= RXON_FILTER_DIS_DECRYPT_MSK;
628
629}
630
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700631int iwl4965_send_statistics_request(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700632{
Tomas Winkler857485c2008-03-21 13:53:44 -0700633 u32 flags = 0;
634 return iwl_send_cmd_pdu(priv, REPLY_STATISTICS_CMD,
635 sizeof(flags), &flags);
Zhu Yib481de92007-09-25 17:54:57 -0700636}
637
638/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800639 * iwl4965_rxon_add_station - add station into station table.
Zhu Yib481de92007-09-25 17:54:57 -0700640 *
641 * there is only one AP station with id= IWL_AP_ID
Ben Cahill9fbab512007-11-29 11:09:47 +0800642 * NOTE: mutex must be held before calling this fnction
643 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700644static int iwl4965_rxon_add_station(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -0700645 const u8 *addr, int is_ap)
646{
Zhu Yi556f8db2007-09-27 11:27:33 +0800647 u8 sta_id;
Zhu Yib481de92007-09-25 17:54:57 -0700648
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800649 /* Add station to device's station table */
Ron Rindjunsky67d62032007-11-26 16:14:40 +0200650#ifdef CONFIG_IWL4965_HT
651 struct ieee80211_conf *conf = &priv->hw->conf;
652 struct ieee80211_ht_info *cur_ht_config = &conf->ht_conf;
653
654 if ((is_ap) &&
655 (conf->flags & IEEE80211_CONF_SUPPORT_HT_MODE) &&
656 (priv->iw_mode == IEEE80211_IF_TYPE_STA))
657 sta_id = iwl4965_add_station_flags(priv, addr, is_ap,
658 0, cur_ht_config);
659 else
660#endif /* CONFIG_IWL4965_HT */
661 sta_id = iwl4965_add_station_flags(priv, addr, is_ap,
662 0, NULL);
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800663
664 /* Set up default rate scaling table in device's station table */
Zhu Yib481de92007-09-25 17:54:57 -0700665 iwl4965_add_station(priv, addr, is_ap);
666
Zhu Yi556f8db2007-09-27 11:27:33 +0800667 return sta_id;
Zhu Yib481de92007-09-25 17:54:57 -0700668}
669
670/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800671 * iwl4965_check_rxon_cmd - validate RXON structure is valid
Zhu Yib481de92007-09-25 17:54:57 -0700672 *
673 * NOTE: This is really only useful during development and can eventually
674 * be #ifdef'd out once the driver is stable and folks aren't actively
675 * making changes
676 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800677static int iwl4965_check_rxon_cmd(struct iwl4965_rxon_cmd *rxon)
Zhu Yib481de92007-09-25 17:54:57 -0700678{
679 int error = 0;
680 int counter = 1;
681
682 if (rxon->flags & RXON_FLG_BAND_24G_MSK) {
683 error |= le32_to_cpu(rxon->flags &
684 (RXON_FLG_TGJ_NARROW_BAND_MSK |
685 RXON_FLG_RADAR_DETECT_MSK));
686 if (error)
687 IWL_WARNING("check 24G fields %d | %d\n",
688 counter++, error);
689 } else {
690 error |= (rxon->flags & RXON_FLG_SHORT_SLOT_MSK) ?
691 0 : le32_to_cpu(RXON_FLG_SHORT_SLOT_MSK);
692 if (error)
693 IWL_WARNING("check 52 fields %d | %d\n",
694 counter++, error);
695 error |= le32_to_cpu(rxon->flags & RXON_FLG_CCK_MSK);
696 if (error)
697 IWL_WARNING("check 52 CCK %d | %d\n",
698 counter++, error);
699 }
700 error |= (rxon->node_addr[0] | rxon->bssid_addr[0]) & 0x1;
701 if (error)
702 IWL_WARNING("check mac addr %d | %d\n", counter++, error);
703
704 /* make sure basic rates 6Mbps and 1Mbps are supported */
705 error |= (((rxon->ofdm_basic_rates & IWL_RATE_6M_MASK) == 0) &&
706 ((rxon->cck_basic_rates & IWL_RATE_1M_MASK) == 0));
707 if (error)
708 IWL_WARNING("check basic rate %d | %d\n", counter++, error);
709
710 error |= (le16_to_cpu(rxon->assoc_id) > 2007);
711 if (error)
712 IWL_WARNING("check assoc id %d | %d\n", counter++, error);
713
714 error |= ((rxon->flags & (RXON_FLG_CCK_MSK | RXON_FLG_SHORT_SLOT_MSK))
715 == (RXON_FLG_CCK_MSK | RXON_FLG_SHORT_SLOT_MSK));
716 if (error)
717 IWL_WARNING("check CCK and short slot %d | %d\n",
718 counter++, error);
719
720 error |= ((rxon->flags & (RXON_FLG_CCK_MSK | RXON_FLG_AUTO_DETECT_MSK))
721 == (RXON_FLG_CCK_MSK | RXON_FLG_AUTO_DETECT_MSK));
722 if (error)
723 IWL_WARNING("check CCK & auto detect %d | %d\n",
724 counter++, error);
725
726 error |= ((rxon->flags & (RXON_FLG_AUTO_DETECT_MSK |
727 RXON_FLG_TGG_PROTECT_MSK)) == RXON_FLG_TGG_PROTECT_MSK);
728 if (error)
729 IWL_WARNING("check TGG and auto detect %d | %d\n",
730 counter++, error);
731
732 if (error)
733 IWL_WARNING("Tuning to channel %d\n",
734 le16_to_cpu(rxon->channel));
735
736 if (error) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800737 IWL_ERROR("Not a valid iwl4965_rxon_assoc_cmd field values\n");
Zhu Yib481de92007-09-25 17:54:57 -0700738 return -1;
739 }
740 return 0;
741}
742
743/**
Ben Cahill9fbab512007-11-29 11:09:47 +0800744 * iwl4965_full_rxon_required - check if full RXON (vs RXON_ASSOC) cmd is needed
Ian Schram01ebd062007-10-25 17:15:22 +0800745 * @priv: staging_rxon is compared to active_rxon
Zhu Yib481de92007-09-25 17:54:57 -0700746 *
Ben Cahill9fbab512007-11-29 11:09:47 +0800747 * If the RXON structure is changing enough to require a new tune,
748 * or is clearing the RXON_FILTER_ASSOC_MSK, then return 1 to indicate that
749 * a new tune (full RXON command, rather than RXON_ASSOC cmd) is required.
Zhu Yib481de92007-09-25 17:54:57 -0700750 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700751static int iwl4965_full_rxon_required(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700752{
753
754 /* These items are only settable from the full RXON command */
755 if (!(priv->active_rxon.filter_flags & RXON_FILTER_ASSOC_MSK) ||
756 compare_ether_addr(priv->staging_rxon.bssid_addr,
757 priv->active_rxon.bssid_addr) ||
758 compare_ether_addr(priv->staging_rxon.node_addr,
759 priv->active_rxon.node_addr) ||
760 compare_ether_addr(priv->staging_rxon.wlap_bssid_addr,
761 priv->active_rxon.wlap_bssid_addr) ||
762 (priv->staging_rxon.dev_type != priv->active_rxon.dev_type) ||
763 (priv->staging_rxon.channel != priv->active_rxon.channel) ||
764 (priv->staging_rxon.air_propagation !=
765 priv->active_rxon.air_propagation) ||
766 (priv->staging_rxon.ofdm_ht_single_stream_basic_rates !=
767 priv->active_rxon.ofdm_ht_single_stream_basic_rates) ||
768 (priv->staging_rxon.ofdm_ht_dual_stream_basic_rates !=
769 priv->active_rxon.ofdm_ht_dual_stream_basic_rates) ||
770 (priv->staging_rxon.rx_chain != priv->active_rxon.rx_chain) ||
771 (priv->staging_rxon.assoc_id != priv->active_rxon.assoc_id))
772 return 1;
773
774 /* flags, filter_flags, ofdm_basic_rates, and cck_basic_rates can
775 * be updated with the RXON_ASSOC command -- however only some
776 * flag transitions are allowed using RXON_ASSOC */
777
778 /* Check if we are not switching bands */
779 if ((priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) !=
780 (priv->active_rxon.flags & RXON_FLG_BAND_24G_MSK))
781 return 1;
782
783 /* Check if we are switching association toggle */
784 if ((priv->staging_rxon.filter_flags & RXON_FILTER_ASSOC_MSK) !=
785 (priv->active_rxon.filter_flags & RXON_FILTER_ASSOC_MSK))
786 return 1;
787
788 return 0;
789}
790
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700791static int iwl4965_send_rxon_assoc(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700792{
793 int rc = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800794 struct iwl4965_rx_packet *res = NULL;
795 struct iwl4965_rxon_assoc_cmd rxon_assoc;
Tomas Winkler857485c2008-03-21 13:53:44 -0700796 struct iwl_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -0700797 .id = REPLY_RXON_ASSOC,
798 .len = sizeof(rxon_assoc),
799 .meta.flags = CMD_WANT_SKB,
800 .data = &rxon_assoc,
801 };
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800802 const struct iwl4965_rxon_cmd *rxon1 = &priv->staging_rxon;
803 const struct iwl4965_rxon_cmd *rxon2 = &priv->active_rxon;
Zhu Yib481de92007-09-25 17:54:57 -0700804
805 if ((rxon1->flags == rxon2->flags) &&
806 (rxon1->filter_flags == rxon2->filter_flags) &&
807 (rxon1->cck_basic_rates == rxon2->cck_basic_rates) &&
808 (rxon1->ofdm_ht_single_stream_basic_rates ==
809 rxon2->ofdm_ht_single_stream_basic_rates) &&
810 (rxon1->ofdm_ht_dual_stream_basic_rates ==
811 rxon2->ofdm_ht_dual_stream_basic_rates) &&
812 (rxon1->rx_chain == rxon2->rx_chain) &&
813 (rxon1->ofdm_basic_rates == rxon2->ofdm_basic_rates)) {
814 IWL_DEBUG_INFO("Using current RXON_ASSOC. Not resending.\n");
815 return 0;
816 }
817
818 rxon_assoc.flags = priv->staging_rxon.flags;
819 rxon_assoc.filter_flags = priv->staging_rxon.filter_flags;
820 rxon_assoc.ofdm_basic_rates = priv->staging_rxon.ofdm_basic_rates;
821 rxon_assoc.cck_basic_rates = priv->staging_rxon.cck_basic_rates;
822 rxon_assoc.reserved = 0;
823 rxon_assoc.ofdm_ht_single_stream_basic_rates =
824 priv->staging_rxon.ofdm_ht_single_stream_basic_rates;
825 rxon_assoc.ofdm_ht_dual_stream_basic_rates =
826 priv->staging_rxon.ofdm_ht_dual_stream_basic_rates;
827 rxon_assoc.rx_chain_select_flags = priv->staging_rxon.rx_chain;
828
Tomas Winkler857485c2008-03-21 13:53:44 -0700829 rc = iwl_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -0700830 if (rc)
831 return rc;
832
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800833 res = (struct iwl4965_rx_packet *)cmd.meta.u.skb->data;
Zhu Yib481de92007-09-25 17:54:57 -0700834 if (res->hdr.flags & IWL_CMD_FAILED_MSK) {
835 IWL_ERROR("Bad return from REPLY_RXON_ASSOC command\n");
836 rc = -EIO;
837 }
838
839 priv->alloc_rxb_skb--;
840 dev_kfree_skb_any(cmd.meta.u.skb);
841
842 return rc;
843}
844
845/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800846 * iwl4965_commit_rxon - commit staging_rxon to hardware
Zhu Yib481de92007-09-25 17:54:57 -0700847 *
Ian Schram01ebd062007-10-25 17:15:22 +0800848 * The RXON command in staging_rxon is committed to the hardware and
Zhu Yib481de92007-09-25 17:54:57 -0700849 * the active_rxon structure is updated with the new data. This
850 * function correctly transitions out of the RXON_ASSOC_MSK state if
851 * a HW tune is required based on the RXON structure changes.
852 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700853static int iwl4965_commit_rxon(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700854{
855 /* cast away the const for active_rxon in this function */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800856 struct iwl4965_rxon_cmd *active_rxon = (void *)&priv->active_rxon;
Joe Perches0795af52007-10-03 17:59:30 -0700857 DECLARE_MAC_BUF(mac);
Zhu Yib481de92007-09-25 17:54:57 -0700858 int rc = 0;
859
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800860 if (!iwl4965_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -0700861 return -1;
862
863 /* always get timestamp with Rx frame */
864 priv->staging_rxon.flags |= RXON_FLG_TSF2HOST_MSK;
865
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800866 rc = iwl4965_check_rxon_cmd(&priv->staging_rxon);
Zhu Yib481de92007-09-25 17:54:57 -0700867 if (rc) {
868 IWL_ERROR("Invalid RXON configuration. Not committing.\n");
869 return -EINVAL;
870 }
871
872 /* If we don't need to send a full RXON, we can use
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800873 * iwl4965_rxon_assoc_cmd which is used to reconfigure filter
Zhu Yib481de92007-09-25 17:54:57 -0700874 * and other flags for the current radio configuration. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800875 if (!iwl4965_full_rxon_required(priv)) {
876 rc = iwl4965_send_rxon_assoc(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700877 if (rc) {
878 IWL_ERROR("Error setting RXON_ASSOC "
879 "configuration (%d).\n", rc);
880 return rc;
881 }
882
883 memcpy(active_rxon, &priv->staging_rxon, sizeof(*active_rxon));
884
885 return 0;
886 }
887
888 /* station table will be cleared */
889 priv->assoc_station_added = 0;
890
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +0800891#ifdef CONFIG_IWL4965_SENSITIVITY
Zhu Yib481de92007-09-25 17:54:57 -0700892 priv->sensitivity_data.state = IWL_SENS_CALIB_NEED_REINIT;
893 if (!priv->error_recovering)
894 priv->start_calib = 0;
895
896 iwl4965_init_sensitivity(priv, CMD_ASYNC, 1);
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +0800897#endif /* CONFIG_IWL4965_SENSITIVITY */
Zhu Yib481de92007-09-25 17:54:57 -0700898
899 /* If we are currently associated and the new config requires
900 * an RXON_ASSOC and the new config wants the associated mask enabled,
901 * we must clear the associated from the active configuration
902 * before we apply the new config */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800903 if (iwl4965_is_associated(priv) &&
Zhu Yib481de92007-09-25 17:54:57 -0700904 (priv->staging_rxon.filter_flags & RXON_FILTER_ASSOC_MSK)) {
905 IWL_DEBUG_INFO("Toggling associated bit on current RXON\n");
906 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
907
Tomas Winkler857485c2008-03-21 13:53:44 -0700908 rc = iwl_send_cmd_pdu(priv, REPLY_RXON,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800909 sizeof(struct iwl4965_rxon_cmd),
Zhu Yib481de92007-09-25 17:54:57 -0700910 &priv->active_rxon);
911
912 /* If the mask clearing failed then we set
913 * active_rxon back to what it was previously */
914 if (rc) {
915 active_rxon->filter_flags |= RXON_FILTER_ASSOC_MSK;
916 IWL_ERROR("Error clearing ASSOC_MSK on current "
917 "configuration (%d).\n", rc);
918 return rc;
919 }
Zhu Yib481de92007-09-25 17:54:57 -0700920 }
921
922 IWL_DEBUG_INFO("Sending RXON\n"
923 "* with%s RXON_FILTER_ASSOC_MSK\n"
924 "* channel = %d\n"
Joe Perches0795af52007-10-03 17:59:30 -0700925 "* bssid = %s\n",
Zhu Yib481de92007-09-25 17:54:57 -0700926 ((priv->staging_rxon.filter_flags &
927 RXON_FILTER_ASSOC_MSK) ? "" : "out"),
928 le16_to_cpu(priv->staging_rxon.channel),
Joe Perches0795af52007-10-03 17:59:30 -0700929 print_mac(mac, priv->staging_rxon.bssid_addr));
Zhu Yib481de92007-09-25 17:54:57 -0700930
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -0700931 iwl4965_set_rxon_hwcrypto(priv, priv->cfg->mod_params->hw_crypto);
Zhu Yib481de92007-09-25 17:54:57 -0700932 /* Apply the new configuration */
Tomas Winkler857485c2008-03-21 13:53:44 -0700933 rc = iwl_send_cmd_pdu(priv, REPLY_RXON,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800934 sizeof(struct iwl4965_rxon_cmd), &priv->staging_rxon);
Zhu Yib481de92007-09-25 17:54:57 -0700935 if (rc) {
936 IWL_ERROR("Error setting new configuration (%d).\n", rc);
937 return rc;
938 }
939
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700940 iwlcore_clear_stations_table(priv);
Zhu Yi556f8db2007-09-27 11:27:33 +0800941
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +0800942#ifdef CONFIG_IWL4965_SENSITIVITY
Zhu Yib481de92007-09-25 17:54:57 -0700943 if (!priv->error_recovering)
944 priv->start_calib = 0;
945
946 priv->sensitivity_data.state = IWL_SENS_CALIB_NEED_REINIT;
947 iwl4965_init_sensitivity(priv, CMD_ASYNC, 1);
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +0800948#endif /* CONFIG_IWL4965_SENSITIVITY */
Zhu Yib481de92007-09-25 17:54:57 -0700949
950 memcpy(active_rxon, &priv->staging_rxon, sizeof(*active_rxon));
951
952 /* If we issue a new RXON command which required a tune then we must
953 * send a new TXPOWER command or we won't be able to Tx any frames */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800954 rc = iwl4965_hw_reg_send_txpower(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700955 if (rc) {
956 IWL_ERROR("Error setting Tx power (%d).\n", rc);
957 return rc;
958 }
959
960 /* Add the broadcast address so we can send broadcast frames */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800961 if (iwl4965_rxon_add_station(priv, iwl4965_broadcast_addr, 0) ==
Zhu Yib481de92007-09-25 17:54:57 -0700962 IWL_INVALID_STATION) {
963 IWL_ERROR("Error adding BROADCAST address for transmit.\n");
964 return -EIO;
965 }
966
967 /* If we have set the ASSOC_MSK and we are in BSS mode then
968 * add the IWL_AP_ID to the station rate table */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800969 if (iwl4965_is_associated(priv) &&
Zhu Yib481de92007-09-25 17:54:57 -0700970 (priv->iw_mode == IEEE80211_IF_TYPE_STA)) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800971 if (iwl4965_rxon_add_station(priv, priv->active_rxon.bssid_addr, 1)
Zhu Yib481de92007-09-25 17:54:57 -0700972 == IWL_INVALID_STATION) {
973 IWL_ERROR("Error adding AP address for transmit.\n");
974 return -EIO;
975 }
976 priv->assoc_station_added = 1;
977 }
978
979 return 0;
980}
981
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700982static int iwl4965_send_bt_config(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700983{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800984 struct iwl4965_bt_cmd bt_cmd = {
Zhu Yib481de92007-09-25 17:54:57 -0700985 .flags = 3,
986 .lead_time = 0xAA,
987 .max_kill = 1,
988 .kill_ack_mask = 0,
989 .kill_cts_mask = 0,
990 };
991
Tomas Winkler857485c2008-03-21 13:53:44 -0700992 return iwl_send_cmd_pdu(priv, REPLY_BT_CONFIG,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800993 sizeof(struct iwl4965_bt_cmd), &bt_cmd);
Zhu Yib481de92007-09-25 17:54:57 -0700994}
995
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700996static int iwl4965_send_scan_abort(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700997{
998 int rc = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800999 struct iwl4965_rx_packet *res;
Tomas Winkler857485c2008-03-21 13:53:44 -07001000 struct iwl_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -07001001 .id = REPLY_SCAN_ABORT_CMD,
1002 .meta.flags = CMD_WANT_SKB,
1003 };
1004
1005 /* If there isn't a scan actively going on in the hardware
1006 * then we are in between scan bands and not actually
1007 * actively scanning, so don't send the abort command */
1008 if (!test_bit(STATUS_SCAN_HW, &priv->status)) {
1009 clear_bit(STATUS_SCAN_ABORTING, &priv->status);
1010 return 0;
1011 }
1012
Tomas Winkler857485c2008-03-21 13:53:44 -07001013 rc = iwl_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -07001014 if (rc) {
1015 clear_bit(STATUS_SCAN_ABORTING, &priv->status);
1016 return rc;
1017 }
1018
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001019 res = (struct iwl4965_rx_packet *)cmd.meta.u.skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07001020 if (res->u.status != CAN_ABORT_STATUS) {
1021 /* The scan abort will return 1 for success or
1022 * 2 for "failure". A failure condition can be
1023 * due to simply not being in an active scan which
1024 * can occur if we send the scan abort before we
1025 * the microcode has notified us that a scan is
1026 * completed. */
1027 IWL_DEBUG_INFO("SCAN_ABORT returned %d.\n", res->u.status);
1028 clear_bit(STATUS_SCAN_ABORTING, &priv->status);
1029 clear_bit(STATUS_SCAN_HW, &priv->status);
1030 }
1031
1032 dev_kfree_skb_any(cmd.meta.u.skb);
1033
1034 return rc;
1035}
1036
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001037static int iwl4965_card_state_sync_callback(struct iwl_priv *priv,
Tomas Winkler857485c2008-03-21 13:53:44 -07001038 struct iwl_cmd *cmd,
Zhu Yib481de92007-09-25 17:54:57 -07001039 struct sk_buff *skb)
1040{
1041 return 1;
1042}
1043
1044/*
1045 * CARD_STATE_CMD
1046 *
Ben Cahill9fbab512007-11-29 11:09:47 +08001047 * Use: Sets the device's internal card state to enable, disable, or halt
Zhu Yib481de92007-09-25 17:54:57 -07001048 *
1049 * When in the 'enable' state the card operates as normal.
1050 * When in the 'disable' state, the card enters into a low power mode.
1051 * When in the 'halt' state, the card is shut down and must be fully
1052 * restarted to come back on.
1053 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001054static int iwl4965_send_card_state(struct iwl_priv *priv, u32 flags, u8 meta_flag)
Zhu Yib481de92007-09-25 17:54:57 -07001055{
Tomas Winkler857485c2008-03-21 13:53:44 -07001056 struct iwl_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -07001057 .id = REPLY_CARD_STATE_CMD,
1058 .len = sizeof(u32),
1059 .data = &flags,
1060 .meta.flags = meta_flag,
1061 };
1062
1063 if (meta_flag & CMD_ASYNC)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001064 cmd.meta.u.callback = iwl4965_card_state_sync_callback;
Zhu Yib481de92007-09-25 17:54:57 -07001065
Tomas Winkler857485c2008-03-21 13:53:44 -07001066 return iwl_send_cmd(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -07001067}
1068
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001069static int iwl4965_add_sta_sync_callback(struct iwl_priv *priv,
Tomas Winkler857485c2008-03-21 13:53:44 -07001070 struct iwl_cmd *cmd, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07001071{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001072 struct iwl4965_rx_packet *res = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07001073
1074 if (!skb) {
1075 IWL_ERROR("Error: Response NULL in REPLY_ADD_STA.\n");
1076 return 1;
1077 }
1078
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001079 res = (struct iwl4965_rx_packet *)skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07001080 if (res->hdr.flags & IWL_CMD_FAILED_MSK) {
1081 IWL_ERROR("Bad return from REPLY_ADD_STA (0x%08X)\n",
1082 res->hdr.flags);
1083 return 1;
1084 }
1085
1086 switch (res->u.add_sta.status) {
1087 case ADD_STA_SUCCESS_MSK:
1088 break;
1089 default:
1090 break;
1091 }
1092
1093 /* We didn't cache the SKB; let the caller free it */
1094 return 1;
1095}
1096
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001097int iwl4965_send_add_station(struct iwl_priv *priv,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001098 struct iwl4965_addsta_cmd *sta, u8 flags)
Zhu Yib481de92007-09-25 17:54:57 -07001099{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001100 struct iwl4965_rx_packet *res = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07001101 int rc = 0;
Tomas Winkler857485c2008-03-21 13:53:44 -07001102 struct iwl_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -07001103 .id = REPLY_ADD_STA,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001104 .len = sizeof(struct iwl4965_addsta_cmd),
Zhu Yib481de92007-09-25 17:54:57 -07001105 .meta.flags = flags,
1106 .data = sta,
1107 };
1108
1109 if (flags & CMD_ASYNC)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001110 cmd.meta.u.callback = iwl4965_add_sta_sync_callback;
Zhu Yib481de92007-09-25 17:54:57 -07001111 else
1112 cmd.meta.flags |= CMD_WANT_SKB;
1113
Tomas Winkler857485c2008-03-21 13:53:44 -07001114 rc = iwl_send_cmd(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -07001115
1116 if (rc || (flags & CMD_ASYNC))
1117 return rc;
1118
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001119 res = (struct iwl4965_rx_packet *)cmd.meta.u.skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07001120 if (res->hdr.flags & IWL_CMD_FAILED_MSK) {
1121 IWL_ERROR("Bad return from REPLY_ADD_STA (0x%08X)\n",
1122 res->hdr.flags);
1123 rc = -EIO;
1124 }
1125
1126 if (rc == 0) {
1127 switch (res->u.add_sta.status) {
1128 case ADD_STA_SUCCESS_MSK:
1129 IWL_DEBUG_INFO("REPLY_ADD_STA PASSED\n");
1130 break;
1131 default:
1132 rc = -EIO;
1133 IWL_WARNING("REPLY_ADD_STA failed\n");
1134 break;
1135 }
1136 }
1137
1138 priv->alloc_rxb_skb--;
1139 dev_kfree_skb_any(cmd.meta.u.skb);
1140
1141 return rc;
1142}
1143
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07001144static int iwl4965_set_ccmp_dynamic_key_info(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07001145 struct ieee80211_key_conf *keyconf,
1146 u8 sta_id)
1147{
1148 unsigned long flags;
1149 __le16 key_flags = 0;
1150
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07001151 key_flags |= (STA_KEY_FLG_CCMP | STA_KEY_FLG_MAP_KEY_MSK);
1152 key_flags |= cpu_to_le16(keyconf->keyidx << STA_KEY_FLG_KEYID_POS);
1153
1154 if (sta_id == priv->hw_setting.bcast_sta_id)
1155 key_flags |= STA_KEY_MULTICAST_MSK;
1156
1157 keyconf->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
1158 keyconf->hw_key_idx = keyconf->keyidx;
1159
1160 key_flags &= ~STA_KEY_FLG_INVALID;
1161
Zhu Yib481de92007-09-25 17:54:57 -07001162 spin_lock_irqsave(&priv->sta_lock, flags);
1163 priv->stations[sta_id].keyinfo.alg = keyconf->alg;
1164 priv->stations[sta_id].keyinfo.keylen = keyconf->keylen;
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07001165
Zhu Yib481de92007-09-25 17:54:57 -07001166 memcpy(priv->stations[sta_id].keyinfo.key, keyconf->key,
1167 keyconf->keylen);
1168
1169 memcpy(priv->stations[sta_id].sta.key.key, keyconf->key,
1170 keyconf->keylen);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07001171
1172 priv->stations[sta_id].sta.key.key_offset
1173 = (sta_id % STA_KEY_MAX_NUM);/*FIXME*/
Zhu Yib481de92007-09-25 17:54:57 -07001174 priv->stations[sta_id].sta.key.key_flags = key_flags;
1175 priv->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
1176 priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
1177
1178 spin_unlock_irqrestore(&priv->sta_lock, flags);
1179
1180 IWL_DEBUG_INFO("hwcrypto: modify ucode station key info\n");
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07001181 return iwl4965_send_add_station(priv,
1182 &priv->stations[sta_id].sta, CMD_ASYNC);
1183}
1184
1185static int iwl4965_set_tkip_dynamic_key_info(struct iwl_priv *priv,
1186 struct ieee80211_key_conf *keyconf,
1187 u8 sta_id)
1188{
Emmanuel Grumbach2bc75082008-03-19 16:41:45 -07001189 unsigned long flags;
1190 int ret = 0;
1191
1192 keyconf->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
1193 keyconf->flags |= IEEE80211_KEY_FLAG_GENERATE_MMIC;
1194 keyconf->hw_key_idx = keyconf->keyidx;
1195
1196 spin_lock_irqsave(&priv->sta_lock, flags);
1197
1198 priv->stations[sta_id].keyinfo.alg = keyconf->alg;
1199 priv->stations[sta_id].keyinfo.conf = keyconf;
1200 priv->stations[sta_id].keyinfo.keylen = 16;
1201
1202 /* This copy is acutally not needed: we get the key with each TX */
1203 memcpy(priv->stations[sta_id].keyinfo.key, keyconf->key, 16);
1204
1205 memcpy(priv->stations[sta_id].sta.key.key, keyconf->key, 16);
1206
1207 spin_unlock_irqrestore(&priv->sta_lock, flags);
1208
1209 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07001210}
1211
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001212static int iwl4965_clear_sta_key_info(struct iwl_priv *priv, u8 sta_id)
Zhu Yib481de92007-09-25 17:54:57 -07001213{
1214 unsigned long flags;
1215
1216 spin_lock_irqsave(&priv->sta_lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001217 memset(&priv->stations[sta_id].keyinfo, 0, sizeof(struct iwl4965_hw_key));
1218 memset(&priv->stations[sta_id].sta.key, 0, sizeof(struct iwl4965_keyinfo));
Zhu Yib481de92007-09-25 17:54:57 -07001219 priv->stations[sta_id].sta.key.key_flags = STA_KEY_FLG_NO_ENC;
1220 priv->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
1221 priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
1222 spin_unlock_irqrestore(&priv->sta_lock, flags);
1223
1224 IWL_DEBUG_INFO("hwcrypto: clear ucode station key info\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001225 iwl4965_send_add_station(priv, &priv->stations[sta_id].sta, 0);
Zhu Yib481de92007-09-25 17:54:57 -07001226 return 0;
1227}
1228
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07001229static int iwl4965_set_dynamic_key(struct iwl_priv *priv,
1230 struct ieee80211_key_conf *key, u8 sta_id)
1231{
1232 int ret;
1233
1234 switch (key->alg) {
1235 case ALG_CCMP:
1236 ret = iwl4965_set_ccmp_dynamic_key_info(priv, key, sta_id);
1237 break;
1238 case ALG_TKIP:
1239 ret = iwl4965_set_tkip_dynamic_key_info(priv, key, sta_id);
1240 break;
1241 case ALG_WEP:
1242 ret = -EOPNOTSUPP;
1243 break;
1244 default:
1245 IWL_ERROR("Unknown alg: %s alg = %d\n", __func__, key->alg);
1246 ret = -EINVAL;
1247 }
1248
1249 return ret;
1250}
1251
1252static int iwl4965_remove_static_key(struct iwl_priv *priv)
1253{
1254 int ret = -EOPNOTSUPP;
1255
1256 return ret;
1257}
1258
1259static int iwl4965_set_static_key(struct iwl_priv *priv,
1260 struct ieee80211_key_conf *key)
1261{
1262 if (key->alg == ALG_WEP)
1263 return -EOPNOTSUPP;
1264
1265 IWL_ERROR("Static key invalid: alg %d\n", key->alg);
1266 return -EINVAL;
1267}
1268
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001269static void iwl4965_clear_free_frames(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001270{
1271 struct list_head *element;
1272
1273 IWL_DEBUG_INFO("%d frames on pre-allocated heap on clear.\n",
1274 priv->frames_count);
1275
1276 while (!list_empty(&priv->free_frames)) {
1277 element = priv->free_frames.next;
1278 list_del(element);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001279 kfree(list_entry(element, struct iwl4965_frame, list));
Zhu Yib481de92007-09-25 17:54:57 -07001280 priv->frames_count--;
1281 }
1282
1283 if (priv->frames_count) {
1284 IWL_WARNING("%d frames still in use. Did we lose one?\n",
1285 priv->frames_count);
1286 priv->frames_count = 0;
1287 }
1288}
1289
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001290static struct iwl4965_frame *iwl4965_get_free_frame(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001291{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001292 struct iwl4965_frame *frame;
Zhu Yib481de92007-09-25 17:54:57 -07001293 struct list_head *element;
1294 if (list_empty(&priv->free_frames)) {
1295 frame = kzalloc(sizeof(*frame), GFP_KERNEL);
1296 if (!frame) {
1297 IWL_ERROR("Could not allocate frame!\n");
1298 return NULL;
1299 }
1300
1301 priv->frames_count++;
1302 return frame;
1303 }
1304
1305 element = priv->free_frames.next;
1306 list_del(element);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001307 return list_entry(element, struct iwl4965_frame, list);
Zhu Yib481de92007-09-25 17:54:57 -07001308}
1309
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001310static void iwl4965_free_frame(struct iwl_priv *priv, struct iwl4965_frame *frame)
Zhu Yib481de92007-09-25 17:54:57 -07001311{
1312 memset(frame, 0, sizeof(*frame));
1313 list_add(&frame->list, &priv->free_frames);
1314}
1315
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001316unsigned int iwl4965_fill_beacon_frame(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07001317 struct ieee80211_hdr *hdr,
1318 const u8 *dest, int left)
1319{
1320
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001321 if (!iwl4965_is_associated(priv) || !priv->ibss_beacon ||
Zhu Yib481de92007-09-25 17:54:57 -07001322 ((priv->iw_mode != IEEE80211_IF_TYPE_IBSS) &&
1323 (priv->iw_mode != IEEE80211_IF_TYPE_AP)))
1324 return 0;
1325
1326 if (priv->ibss_beacon->len > left)
1327 return 0;
1328
1329 memcpy(hdr, priv->ibss_beacon->data, priv->ibss_beacon->len);
1330
1331 return priv->ibss_beacon->len;
1332}
1333
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001334static u8 iwl4965_rate_get_lowest_plcp(int rate_mask)
Zhu Yib481de92007-09-25 17:54:57 -07001335{
1336 u8 i;
1337
1338 for (i = IWL_RATE_1M_INDEX; i != IWL_RATE_INVALID;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001339 i = iwl4965_rates[i].next_ieee) {
Zhu Yib481de92007-09-25 17:54:57 -07001340 if (rate_mask & (1 << i))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001341 return iwl4965_rates[i].plcp;
Zhu Yib481de92007-09-25 17:54:57 -07001342 }
1343
1344 return IWL_RATE_INVALID;
1345}
1346
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001347static int iwl4965_send_beacon_cmd(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001348{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001349 struct iwl4965_frame *frame;
Zhu Yib481de92007-09-25 17:54:57 -07001350 unsigned int frame_size;
1351 int rc;
1352 u8 rate;
1353
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001354 frame = iwl4965_get_free_frame(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001355
1356 if (!frame) {
1357 IWL_ERROR("Could not obtain free frame buffer for beacon "
1358 "command.\n");
1359 return -ENOMEM;
1360 }
1361
1362 if (!(priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK)) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001363 rate = iwl4965_rate_get_lowest_plcp(priv->active_rate_basic &
Zhu Yib481de92007-09-25 17:54:57 -07001364 0xFF0);
1365 if (rate == IWL_INVALID_RATE)
1366 rate = IWL_RATE_6M_PLCP;
1367 } else {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001368 rate = iwl4965_rate_get_lowest_plcp(priv->active_rate_basic & 0xF);
Zhu Yib481de92007-09-25 17:54:57 -07001369 if (rate == IWL_INVALID_RATE)
1370 rate = IWL_RATE_1M_PLCP;
1371 }
1372
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001373 frame_size = iwl4965_hw_get_beacon_cmd(priv, frame, rate);
Zhu Yib481de92007-09-25 17:54:57 -07001374
Tomas Winkler857485c2008-03-21 13:53:44 -07001375 rc = iwl_send_cmd_pdu(priv, REPLY_TX_BEACON, frame_size,
Zhu Yib481de92007-09-25 17:54:57 -07001376 &frame->u.cmd[0]);
1377
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001378 iwl4965_free_frame(priv, frame);
Zhu Yib481de92007-09-25 17:54:57 -07001379
1380 return rc;
1381}
1382
1383/******************************************************************************
1384 *
Zhu Yib481de92007-09-25 17:54:57 -07001385 * Misc. internal state and helper functions
1386 *
1387 ******************************************************************************/
Zhu Yib481de92007-09-25 17:54:57 -07001388
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001389static void iwl4965_unset_hw_setting(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001390{
1391 if (priv->hw_setting.shared_virt)
1392 pci_free_consistent(priv->pci_dev,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001393 sizeof(struct iwl4965_shared),
Zhu Yib481de92007-09-25 17:54:57 -07001394 priv->hw_setting.shared_virt,
1395 priv->hw_setting.shared_phys);
1396}
1397
1398/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001399 * iwl4965_supported_rate_to_ie - fill in the supported rate in IE field
Zhu Yib481de92007-09-25 17:54:57 -07001400 *
1401 * return : set the bit for each supported rate insert in ie
1402 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001403static u16 iwl4965_supported_rate_to_ie(u8 *ie, u16 supported_rate,
Tomas Winklerc7c46672007-10-18 02:04:15 +02001404 u16 basic_rate, int *left)
Zhu Yib481de92007-09-25 17:54:57 -07001405{
1406 u16 ret_rates = 0, bit;
1407 int i;
Tomas Winklerc7c46672007-10-18 02:04:15 +02001408 u8 *cnt = ie;
1409 u8 *rates = ie + 1;
Zhu Yib481de92007-09-25 17:54:57 -07001410
1411 for (bit = 1, i = 0; i < IWL_RATE_COUNT; i++, bit <<= 1) {
1412 if (bit & supported_rate) {
1413 ret_rates |= bit;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001414 rates[*cnt] = iwl4965_rates[i].ieee |
Tomas Winklerc7c46672007-10-18 02:04:15 +02001415 ((bit & basic_rate) ? 0x80 : 0x00);
1416 (*cnt)++;
1417 (*left)--;
1418 if ((*left <= 0) ||
1419 (*cnt >= IWL_SUPPORTED_RATES_IE_LEN))
Zhu Yib481de92007-09-25 17:54:57 -07001420 break;
1421 }
1422 }
1423
1424 return ret_rates;
1425}
1426
Zhu Yib481de92007-09-25 17:54:57 -07001427/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001428 * iwl4965_fill_probe_req - fill in all required fields and IE for probe request
Zhu Yib481de92007-09-25 17:54:57 -07001429 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001430static u16 iwl4965_fill_probe_req(struct iwl_priv *priv,
Tomas Winkler78330fd2008-02-06 02:37:18 +02001431 enum ieee80211_band band,
1432 struct ieee80211_mgmt *frame,
1433 int left, int is_direct)
Zhu Yib481de92007-09-25 17:54:57 -07001434{
1435 int len = 0;
1436 u8 *pos = NULL;
mabbasbee488d2007-10-25 17:15:42 +08001437 u16 active_rates, ret_rates, cck_rates, active_rate_basic;
Ron Rindjunsky8fb88032007-11-26 16:14:38 +02001438#ifdef CONFIG_IWL4965_HT
Tomas Winkler78330fd2008-02-06 02:37:18 +02001439 const struct ieee80211_supported_band *sband =
1440 iwl4965_get_hw_mode(priv, band);
Ron Rindjunsky8fb88032007-11-26 16:14:38 +02001441#endif /* CONFIG_IWL4965_HT */
Zhu Yib481de92007-09-25 17:54:57 -07001442
1443 /* Make sure there is enough space for the probe request,
1444 * two mandatory IEs and the data */
1445 left -= 24;
1446 if (left < 0)
1447 return 0;
1448 len += 24;
1449
1450 frame->frame_control = cpu_to_le16(IEEE80211_STYPE_PROBE_REQ);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001451 memcpy(frame->da, iwl4965_broadcast_addr, ETH_ALEN);
Zhu Yib481de92007-09-25 17:54:57 -07001452 memcpy(frame->sa, priv->mac_addr, ETH_ALEN);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001453 memcpy(frame->bssid, iwl4965_broadcast_addr, ETH_ALEN);
Zhu Yib481de92007-09-25 17:54:57 -07001454 frame->seq_ctrl = 0;
1455
1456 /* fill in our indirect SSID IE */
1457 /* ...next IE... */
1458
1459 left -= 2;
1460 if (left < 0)
1461 return 0;
1462 len += 2;
1463 pos = &(frame->u.probe_req.variable[0]);
1464 *pos++ = WLAN_EID_SSID;
1465 *pos++ = 0;
1466
1467 /* fill in our direct SSID IE... */
1468 if (is_direct) {
1469 /* ...next IE... */
1470 left -= 2 + priv->essid_len;
1471 if (left < 0)
1472 return 0;
1473 /* ... fill it in... */
1474 *pos++ = WLAN_EID_SSID;
1475 *pos++ = priv->essid_len;
1476 memcpy(pos, priv->essid, priv->essid_len);
1477 pos += priv->essid_len;
1478 len += 2 + priv->essid_len;
1479 }
1480
1481 /* fill in supported rate */
1482 /* ...next IE... */
1483 left -= 2;
1484 if (left < 0)
1485 return 0;
Tomas Winklerc7c46672007-10-18 02:04:15 +02001486
Zhu Yib481de92007-09-25 17:54:57 -07001487 /* ... fill it in... */
1488 *pos++ = WLAN_EID_SUPP_RATES;
1489 *pos = 0;
Tomas Winklerc7c46672007-10-18 02:04:15 +02001490
mabbasbee488d2007-10-25 17:15:42 +08001491 /* exclude 60M rate */
1492 active_rates = priv->rates_mask;
1493 active_rates &= ~IWL_RATE_60M_MASK;
1494
1495 active_rate_basic = active_rates & IWL_BASIC_RATES_MASK;
Zhu Yib481de92007-09-25 17:54:57 -07001496
Tomas Winklerc7c46672007-10-18 02:04:15 +02001497 cck_rates = IWL_CCK_RATES_MASK & active_rates;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001498 ret_rates = iwl4965_supported_rate_to_ie(pos, cck_rates,
mabbasbee488d2007-10-25 17:15:42 +08001499 active_rate_basic, &left);
Tomas Winklerc7c46672007-10-18 02:04:15 +02001500 active_rates &= ~ret_rates;
1501
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001502 ret_rates = iwl4965_supported_rate_to_ie(pos, active_rates,
mabbasbee488d2007-10-25 17:15:42 +08001503 active_rate_basic, &left);
Tomas Winklerc7c46672007-10-18 02:04:15 +02001504 active_rates &= ~ret_rates;
1505
Zhu Yib481de92007-09-25 17:54:57 -07001506 len += 2 + *pos;
1507 pos += (*pos) + 1;
Tomas Winklerc7c46672007-10-18 02:04:15 +02001508 if (active_rates == 0)
Zhu Yib481de92007-09-25 17:54:57 -07001509 goto fill_end;
1510
1511 /* fill in supported extended rate */
1512 /* ...next IE... */
1513 left -= 2;
1514 if (left < 0)
1515 return 0;
1516 /* ... fill it in... */
1517 *pos++ = WLAN_EID_EXT_SUPP_RATES;
1518 *pos = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001519 iwl4965_supported_rate_to_ie(pos, active_rates,
mabbasbee488d2007-10-25 17:15:42 +08001520 active_rate_basic, &left);
Zhu Yib481de92007-09-25 17:54:57 -07001521 if (*pos > 0)
1522 len += 2 + *pos;
1523
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08001524#ifdef CONFIG_IWL4965_HT
Tomas Winkler78330fd2008-02-06 02:37:18 +02001525 if (sband && sband->ht_info.ht_supported) {
1526 struct ieee80211_ht_cap *ht_cap;
Zhu Yib481de92007-09-25 17:54:57 -07001527 pos += (*pos) + 1;
1528 *pos++ = WLAN_EID_HT_CAPABILITY;
Ron Rindjunsky8fb88032007-11-26 16:14:38 +02001529 *pos++ = sizeof(struct ieee80211_ht_cap);
Tomas Winkler78330fd2008-02-06 02:37:18 +02001530 ht_cap = (struct ieee80211_ht_cap *)pos;
1531 ht_cap->cap_info = cpu_to_le16(sband->ht_info.cap);
1532 memcpy(ht_cap->supp_mcs_set, sband->ht_info.supp_mcs_set, 16);
1533 ht_cap->ampdu_params_info =(sband->ht_info.ampdu_factor &
1534 IEEE80211_HT_CAP_AMPDU_FACTOR) |
1535 ((sband->ht_info.ampdu_density << 2) &
1536 IEEE80211_HT_CAP_AMPDU_DENSITY);
Ron Rindjunsky8fb88032007-11-26 16:14:38 +02001537 len += 2 + sizeof(struct ieee80211_ht_cap);
Zhu Yib481de92007-09-25 17:54:57 -07001538 }
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08001539#endif /*CONFIG_IWL4965_HT */
Zhu Yib481de92007-09-25 17:54:57 -07001540
1541 fill_end:
1542 return (u16)len;
1543}
1544
1545/*
1546 * QoS support
1547*/
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001548static int iwl4965_send_qos_params_command(struct iwl_priv *priv,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001549 struct iwl4965_qosparam_cmd *qos)
Zhu Yib481de92007-09-25 17:54:57 -07001550{
1551
Tomas Winkler857485c2008-03-21 13:53:44 -07001552 return iwl_send_cmd_pdu(priv, REPLY_QOS_PARAM,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001553 sizeof(struct iwl4965_qosparam_cmd), qos);
Zhu Yib481de92007-09-25 17:54:57 -07001554}
1555
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001556static void iwl4965_activate_qos(struct iwl_priv *priv, u8 force)
Zhu Yib481de92007-09-25 17:54:57 -07001557{
1558 unsigned long flags;
1559
Zhu Yib481de92007-09-25 17:54:57 -07001560 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
1561 return;
1562
1563 if (!priv->qos_data.qos_enable)
1564 return;
1565
1566 spin_lock_irqsave(&priv->lock, flags);
1567 priv->qos_data.def_qos_parm.qos_flags = 0;
1568
1569 if (priv->qos_data.qos_cap.q_AP.queue_request &&
1570 !priv->qos_data.qos_cap.q_AP.txop_request)
1571 priv->qos_data.def_qos_parm.qos_flags |=
1572 QOS_PARAM_FLG_TXOP_TYPE_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07001573 if (priv->qos_data.qos_active)
1574 priv->qos_data.def_qos_parm.qos_flags |=
1575 QOS_PARAM_FLG_UPDATE_EDCA_MSK;
1576
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08001577#ifdef CONFIG_IWL4965_HT
Ron Rindjunskyfd105e72007-11-26 16:14:39 +02001578 if (priv->current_ht_config.is_ht)
Tomas Winklerf1f1f5c2007-10-25 17:15:26 +08001579 priv->qos_data.def_qos_parm.qos_flags |= QOS_PARAM_FLG_TGN_MSK;
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08001580#endif /* CONFIG_IWL4965_HT */
Tomas Winklerf1f1f5c2007-10-25 17:15:26 +08001581
Zhu Yib481de92007-09-25 17:54:57 -07001582 spin_unlock_irqrestore(&priv->lock, flags);
1583
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001584 if (force || iwl4965_is_associated(priv)) {
Tomas Winklerf1f1f5c2007-10-25 17:15:26 +08001585 IWL_DEBUG_QOS("send QoS cmd with Qos active=%d FLAGS=0x%X\n",
1586 priv->qos_data.qos_active,
1587 priv->qos_data.def_qos_parm.qos_flags);
Zhu Yib481de92007-09-25 17:54:57 -07001588
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001589 iwl4965_send_qos_params_command(priv,
Zhu Yib481de92007-09-25 17:54:57 -07001590 &(priv->qos_data.def_qos_parm));
1591 }
1592}
1593
Zhu Yib481de92007-09-25 17:54:57 -07001594/*
1595 * Power management (not Tx power!) functions
1596 */
1597#define MSEC_TO_USEC 1024
1598
1599#define NOSLP __constant_cpu_to_le16(0), 0, 0
1600#define SLP IWL_POWER_DRIVER_ALLOW_SLEEP_MSK, 0, 0
1601#define SLP_TIMEOUT(T) __constant_cpu_to_le32((T) * MSEC_TO_USEC)
1602#define SLP_VEC(X0, X1, X2, X3, X4) {__constant_cpu_to_le32(X0), \
1603 __constant_cpu_to_le32(X1), \
1604 __constant_cpu_to_le32(X2), \
1605 __constant_cpu_to_le32(X3), \
1606 __constant_cpu_to_le32(X4)}
1607
1608
1609/* default power management (not Tx power) table values */
1610/* for tim 0-10 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001611static struct iwl4965_power_vec_entry range_0[IWL_POWER_AC] = {
Zhu Yib481de92007-09-25 17:54:57 -07001612 {{NOSLP, SLP_TIMEOUT(0), SLP_TIMEOUT(0), SLP_VEC(0, 0, 0, 0, 0)}, 0},
1613 {{SLP, SLP_TIMEOUT(200), SLP_TIMEOUT(500), SLP_VEC(1, 2, 3, 4, 4)}, 0},
1614 {{SLP, SLP_TIMEOUT(200), SLP_TIMEOUT(300), SLP_VEC(2, 4, 6, 7, 7)}, 0},
1615 {{SLP, SLP_TIMEOUT(50), SLP_TIMEOUT(100), SLP_VEC(2, 6, 9, 9, 10)}, 0},
1616 {{SLP, SLP_TIMEOUT(50), SLP_TIMEOUT(25), SLP_VEC(2, 7, 9, 9, 10)}, 1},
1617 {{SLP, SLP_TIMEOUT(25), SLP_TIMEOUT(25), SLP_VEC(4, 7, 10, 10, 10)}, 1}
1618};
1619
1620/* for tim > 10 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001621static struct iwl4965_power_vec_entry range_1[IWL_POWER_AC] = {
Zhu Yib481de92007-09-25 17:54:57 -07001622 {{NOSLP, SLP_TIMEOUT(0), SLP_TIMEOUT(0), SLP_VEC(0, 0, 0, 0, 0)}, 0},
1623 {{SLP, SLP_TIMEOUT(200), SLP_TIMEOUT(500),
1624 SLP_VEC(1, 2, 3, 4, 0xFF)}, 0},
1625 {{SLP, SLP_TIMEOUT(200), SLP_TIMEOUT(300),
1626 SLP_VEC(2, 4, 6, 7, 0xFF)}, 0},
1627 {{SLP, SLP_TIMEOUT(50), SLP_TIMEOUT(100),
1628 SLP_VEC(2, 6, 9, 9, 0xFF)}, 0},
1629 {{SLP, SLP_TIMEOUT(50), SLP_TIMEOUT(25), SLP_VEC(2, 7, 9, 9, 0xFF)}, 0},
1630 {{SLP, SLP_TIMEOUT(25), SLP_TIMEOUT(25),
1631 SLP_VEC(4, 7, 10, 10, 0xFF)}, 0}
1632};
1633
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001634int iwl4965_power_init_handle(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001635{
1636 int rc = 0, i;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001637 struct iwl4965_power_mgr *pow_data;
1638 int size = sizeof(struct iwl4965_power_vec_entry) * IWL_POWER_AC;
Zhu Yib481de92007-09-25 17:54:57 -07001639 u16 pci_pm;
1640
1641 IWL_DEBUG_POWER("Initialize power \n");
1642
1643 pow_data = &(priv->power_data);
1644
1645 memset(pow_data, 0, sizeof(*pow_data));
1646
1647 pow_data->active_index = IWL_POWER_RANGE_0;
1648 pow_data->dtim_val = 0xffff;
1649
1650 memcpy(&pow_data->pwr_range_0[0], &range_0[0], size);
1651 memcpy(&pow_data->pwr_range_1[0], &range_1[0], size);
1652
1653 rc = pci_read_config_word(priv->pci_dev, PCI_LINK_CTRL, &pci_pm);
1654 if (rc != 0)
1655 return 0;
1656 else {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001657 struct iwl4965_powertable_cmd *cmd;
Zhu Yib481de92007-09-25 17:54:57 -07001658
1659 IWL_DEBUG_POWER("adjust power command flags\n");
1660
1661 for (i = 0; i < IWL_POWER_AC; i++) {
1662 cmd = &pow_data->pwr_range_0[i].cmd;
1663
1664 if (pci_pm & 0x1)
1665 cmd->flags &= ~IWL_POWER_PCI_PM_MSK;
1666 else
1667 cmd->flags |= IWL_POWER_PCI_PM_MSK;
1668 }
1669 }
1670 return rc;
1671}
1672
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001673static int iwl4965_update_power_cmd(struct iwl_priv *priv,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001674 struct iwl4965_powertable_cmd *cmd, u32 mode)
Zhu Yib481de92007-09-25 17:54:57 -07001675{
1676 int rc = 0, i;
1677 u8 skip;
1678 u32 max_sleep = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001679 struct iwl4965_power_vec_entry *range;
Zhu Yib481de92007-09-25 17:54:57 -07001680 u8 period = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001681 struct iwl4965_power_mgr *pow_data;
Zhu Yib481de92007-09-25 17:54:57 -07001682
1683 if (mode > IWL_POWER_INDEX_5) {
1684 IWL_DEBUG_POWER("Error invalid power mode \n");
1685 return -1;
1686 }
1687 pow_data = &(priv->power_data);
1688
1689 if (pow_data->active_index == IWL_POWER_RANGE_0)
1690 range = &pow_data->pwr_range_0[0];
1691 else
1692 range = &pow_data->pwr_range_1[1];
1693
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001694 memcpy(cmd, &range[mode].cmd, sizeof(struct iwl4965_powertable_cmd));
Zhu Yib481de92007-09-25 17:54:57 -07001695
1696#ifdef IWL_MAC80211_DISABLE
1697 if (priv->assoc_network != NULL) {
1698 unsigned long flags;
1699
1700 period = priv->assoc_network->tim.tim_period;
1701 }
1702#endif /*IWL_MAC80211_DISABLE */
1703 skip = range[mode].no_dtim;
1704
1705 if (period == 0) {
1706 period = 1;
1707 skip = 0;
1708 }
1709
1710 if (skip == 0) {
1711 max_sleep = period;
1712 cmd->flags &= ~IWL_POWER_SLEEP_OVER_DTIM_MSK;
1713 } else {
1714 __le32 slp_itrvl = cmd->sleep_interval[IWL_POWER_VEC_SIZE - 1];
1715 max_sleep = (le32_to_cpu(slp_itrvl) / period) * period;
1716 cmd->flags |= IWL_POWER_SLEEP_OVER_DTIM_MSK;
1717 }
1718
1719 for (i = 0; i < IWL_POWER_VEC_SIZE; i++) {
1720 if (le32_to_cpu(cmd->sleep_interval[i]) > max_sleep)
1721 cmd->sleep_interval[i] = cpu_to_le32(max_sleep);
1722 }
1723
1724 IWL_DEBUG_POWER("Flags value = 0x%08X\n", cmd->flags);
1725 IWL_DEBUG_POWER("Tx timeout = %u\n", le32_to_cpu(cmd->tx_data_timeout));
1726 IWL_DEBUG_POWER("Rx timeout = %u\n", le32_to_cpu(cmd->rx_data_timeout));
1727 IWL_DEBUG_POWER("Sleep interval vector = { %d , %d , %d , %d , %d }\n",
1728 le32_to_cpu(cmd->sleep_interval[0]),
1729 le32_to_cpu(cmd->sleep_interval[1]),
1730 le32_to_cpu(cmd->sleep_interval[2]),
1731 le32_to_cpu(cmd->sleep_interval[3]),
1732 le32_to_cpu(cmd->sleep_interval[4]));
1733
1734 return rc;
1735}
1736
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001737static int iwl4965_send_power_mode(struct iwl_priv *priv, u32 mode)
Zhu Yib481de92007-09-25 17:54:57 -07001738{
John W. Linville9a62f732007-11-15 16:27:36 -05001739 u32 uninitialized_var(final_mode);
Zhu Yib481de92007-09-25 17:54:57 -07001740 int rc;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001741 struct iwl4965_powertable_cmd cmd;
Zhu Yib481de92007-09-25 17:54:57 -07001742
1743 /* If on battery, set to 3,
Ian Schram01ebd062007-10-25 17:15:22 +08001744 * if plugged into AC power, set to CAM ("continuously aware mode"),
Zhu Yib481de92007-09-25 17:54:57 -07001745 * else user level */
1746 switch (mode) {
1747 case IWL_POWER_BATTERY:
1748 final_mode = IWL_POWER_INDEX_3;
1749 break;
1750 case IWL_POWER_AC:
1751 final_mode = IWL_POWER_MODE_CAM;
1752 break;
1753 default:
1754 final_mode = mode;
1755 break;
1756 }
1757
1758 cmd.keep_alive_beacons = 0;
1759
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001760 iwl4965_update_power_cmd(priv, &cmd, final_mode);
Zhu Yib481de92007-09-25 17:54:57 -07001761
Tomas Winkler857485c2008-03-21 13:53:44 -07001762 rc = iwl_send_cmd_pdu(priv, POWER_TABLE_CMD, sizeof(cmd), &cmd);
Zhu Yib481de92007-09-25 17:54:57 -07001763
1764 if (final_mode == IWL_POWER_MODE_CAM)
1765 clear_bit(STATUS_POWER_PMI, &priv->status);
1766 else
1767 set_bit(STATUS_POWER_PMI, &priv->status);
1768
1769 return rc;
1770}
1771
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001772int iwl4965_is_network_packet(struct iwl_priv *priv, struct ieee80211_hdr *header)
Zhu Yib481de92007-09-25 17:54:57 -07001773{
1774 /* Filter incoming packets to determine if they are targeted toward
1775 * this network, discarding packets coming from ourselves */
1776 switch (priv->iw_mode) {
1777 case IEEE80211_IF_TYPE_IBSS: /* Header: Dest. | Source | BSSID */
1778 /* packets from our adapter are dropped (echo) */
1779 if (!compare_ether_addr(header->addr2, priv->mac_addr))
1780 return 0;
1781 /* {broad,multi}cast packets to our IBSS go through */
1782 if (is_multicast_ether_addr(header->addr1))
1783 return !compare_ether_addr(header->addr3, priv->bssid);
1784 /* packets to our adapter go through */
1785 return !compare_ether_addr(header->addr1, priv->mac_addr);
1786 case IEEE80211_IF_TYPE_STA: /* Header: Dest. | AP{BSSID} | Source */
1787 /* packets from our adapter are dropped (echo) */
1788 if (!compare_ether_addr(header->addr3, priv->mac_addr))
1789 return 0;
1790 /* {broad,multi}cast packets to our BSS go through */
1791 if (is_multicast_ether_addr(header->addr1))
1792 return !compare_ether_addr(header->addr2, priv->bssid);
1793 /* packets to our adapter go through */
1794 return !compare_ether_addr(header->addr1, priv->mac_addr);
1795 }
1796
1797 return 1;
1798}
1799
1800#define TX_STATUS_ENTRY(x) case TX_STATUS_FAIL_ ## x: return #x
1801
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001802static const char *iwl4965_get_tx_fail_reason(u32 status)
Zhu Yib481de92007-09-25 17:54:57 -07001803{
1804 switch (status & TX_STATUS_MSK) {
1805 case TX_STATUS_SUCCESS:
1806 return "SUCCESS";
1807 TX_STATUS_ENTRY(SHORT_LIMIT);
1808 TX_STATUS_ENTRY(LONG_LIMIT);
1809 TX_STATUS_ENTRY(FIFO_UNDERRUN);
1810 TX_STATUS_ENTRY(MGMNT_ABORT);
1811 TX_STATUS_ENTRY(NEXT_FRAG);
1812 TX_STATUS_ENTRY(LIFE_EXPIRE);
1813 TX_STATUS_ENTRY(DEST_PS);
1814 TX_STATUS_ENTRY(ABORTED);
1815 TX_STATUS_ENTRY(BT_RETRY);
1816 TX_STATUS_ENTRY(STA_INVALID);
1817 TX_STATUS_ENTRY(FRAG_DROPPED);
1818 TX_STATUS_ENTRY(TID_DISABLE);
1819 TX_STATUS_ENTRY(FRAME_FLUSHED);
1820 TX_STATUS_ENTRY(INSUFFICIENT_CF_POLL);
1821 TX_STATUS_ENTRY(TX_LOCKED);
1822 TX_STATUS_ENTRY(NO_BEACON_ON_RADAR);
1823 }
1824
1825 return "UNKNOWN";
1826}
1827
1828/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001829 * iwl4965_scan_cancel - Cancel any currently executing HW scan
Zhu Yib481de92007-09-25 17:54:57 -07001830 *
1831 * NOTE: priv->mutex is not required before calling this function
1832 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001833static int iwl4965_scan_cancel(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001834{
1835 if (!test_bit(STATUS_SCAN_HW, &priv->status)) {
1836 clear_bit(STATUS_SCANNING, &priv->status);
1837 return 0;
1838 }
1839
1840 if (test_bit(STATUS_SCANNING, &priv->status)) {
1841 if (!test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
1842 IWL_DEBUG_SCAN("Queuing scan abort.\n");
1843 set_bit(STATUS_SCAN_ABORTING, &priv->status);
1844 queue_work(priv->workqueue, &priv->abort_scan);
1845
1846 } else
1847 IWL_DEBUG_SCAN("Scan abort already in progress.\n");
1848
1849 return test_bit(STATUS_SCANNING, &priv->status);
1850 }
1851
1852 return 0;
1853}
1854
1855/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001856 * iwl4965_scan_cancel_timeout - Cancel any currently executing HW scan
Zhu Yib481de92007-09-25 17:54:57 -07001857 * @ms: amount of time to wait (in milliseconds) for scan to abort
1858 *
1859 * NOTE: priv->mutex must be held before calling this function
1860 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001861static int iwl4965_scan_cancel_timeout(struct iwl_priv *priv, unsigned long ms)
Zhu Yib481de92007-09-25 17:54:57 -07001862{
1863 unsigned long now = jiffies;
1864 int ret;
1865
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001866 ret = iwl4965_scan_cancel(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001867 if (ret && ms) {
1868 mutex_unlock(&priv->mutex);
1869 while (!time_after(jiffies, now + msecs_to_jiffies(ms)) &&
1870 test_bit(STATUS_SCANNING, &priv->status))
1871 msleep(1);
1872 mutex_lock(&priv->mutex);
1873
1874 return test_bit(STATUS_SCANNING, &priv->status);
1875 }
1876
1877 return ret;
1878}
1879
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001880static void iwl4965_sequence_reset(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001881{
1882 /* Reset ieee stats */
1883
1884 /* We don't reset the net_device_stats (ieee->stats) on
1885 * re-association */
1886
1887 priv->last_seq_num = -1;
1888 priv->last_frag_num = -1;
1889 priv->last_packet_time = 0;
1890
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001891 iwl4965_scan_cancel(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001892}
1893
1894#define MAX_UCODE_BEACON_INTERVAL 4096
1895#define INTEL_CONN_LISTEN_INTERVAL __constant_cpu_to_le16(0xA)
1896
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001897static __le16 iwl4965_adjust_beacon_interval(u16 beacon_val)
Zhu Yib481de92007-09-25 17:54:57 -07001898{
1899 u16 new_val = 0;
1900 u16 beacon_factor = 0;
1901
1902 beacon_factor =
1903 (beacon_val + MAX_UCODE_BEACON_INTERVAL)
1904 / MAX_UCODE_BEACON_INTERVAL;
1905 new_val = beacon_val / beacon_factor;
1906
1907 return cpu_to_le16(new_val);
1908}
1909
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001910static void iwl4965_setup_rxon_timing(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001911{
1912 u64 interval_tm_unit;
1913 u64 tsf, result;
1914 unsigned long flags;
1915 struct ieee80211_conf *conf = NULL;
1916 u16 beacon_int = 0;
1917
1918 conf = ieee80211_get_hw_conf(priv->hw);
1919
1920 spin_lock_irqsave(&priv->lock, flags);
1921 priv->rxon_timing.timestamp.dw[1] = cpu_to_le32(priv->timestamp1);
1922 priv->rxon_timing.timestamp.dw[0] = cpu_to_le32(priv->timestamp0);
1923
1924 priv->rxon_timing.listen_interval = INTEL_CONN_LISTEN_INTERVAL;
1925
1926 tsf = priv->timestamp1;
1927 tsf = ((tsf << 32) | priv->timestamp0);
1928
1929 beacon_int = priv->beacon_int;
1930 spin_unlock_irqrestore(&priv->lock, flags);
1931
1932 if (priv->iw_mode == IEEE80211_IF_TYPE_STA) {
1933 if (beacon_int == 0) {
1934 priv->rxon_timing.beacon_interval = cpu_to_le16(100);
1935 priv->rxon_timing.beacon_init_val = cpu_to_le32(102400);
1936 } else {
1937 priv->rxon_timing.beacon_interval =
1938 cpu_to_le16(beacon_int);
1939 priv->rxon_timing.beacon_interval =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001940 iwl4965_adjust_beacon_interval(
Zhu Yib481de92007-09-25 17:54:57 -07001941 le16_to_cpu(priv->rxon_timing.beacon_interval));
1942 }
1943
1944 priv->rxon_timing.atim_window = 0;
1945 } else {
1946 priv->rxon_timing.beacon_interval =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001947 iwl4965_adjust_beacon_interval(conf->beacon_int);
Zhu Yib481de92007-09-25 17:54:57 -07001948 /* TODO: we need to get atim_window from upper stack
1949 * for now we set to 0 */
1950 priv->rxon_timing.atim_window = 0;
1951 }
1952
1953 interval_tm_unit =
1954 (le16_to_cpu(priv->rxon_timing.beacon_interval) * 1024);
1955 result = do_div(tsf, interval_tm_unit);
1956 priv->rxon_timing.beacon_init_val =
1957 cpu_to_le32((u32) ((u64) interval_tm_unit - result));
1958
1959 IWL_DEBUG_ASSOC
1960 ("beacon interval %d beacon timer %d beacon tim %d\n",
1961 le16_to_cpu(priv->rxon_timing.beacon_interval),
1962 le32_to_cpu(priv->rxon_timing.beacon_init_val),
1963 le16_to_cpu(priv->rxon_timing.atim_window));
1964}
1965
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001966static int iwl4965_scan_initiate(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001967{
1968 if (priv->iw_mode == IEEE80211_IF_TYPE_AP) {
1969 IWL_ERROR("APs don't scan.\n");
1970 return 0;
1971 }
1972
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001973 if (!iwl4965_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07001974 IWL_DEBUG_SCAN("Aborting scan due to not ready.\n");
1975 return -EIO;
1976 }
1977
1978 if (test_bit(STATUS_SCANNING, &priv->status)) {
1979 IWL_DEBUG_SCAN("Scan already in progress.\n");
1980 return -EAGAIN;
1981 }
1982
1983 if (test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
1984 IWL_DEBUG_SCAN("Scan request while abort pending. "
1985 "Queuing.\n");
1986 return -EAGAIN;
1987 }
1988
1989 IWL_DEBUG_INFO("Starting scan...\n");
1990 priv->scan_bands = 2;
1991 set_bit(STATUS_SCANNING, &priv->status);
1992 priv->scan_start = jiffies;
1993 priv->scan_pass_start = priv->scan_start;
1994
1995 queue_work(priv->workqueue, &priv->request_scan);
1996
1997 return 0;
1998}
1999
Zhu Yib481de92007-09-25 17:54:57 -07002000
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002001static void iwl4965_set_flags_for_phymode(struct iwl_priv *priv,
Johannes Berg8318d782008-01-24 19:38:38 +01002002 enum ieee80211_band band)
Zhu Yib481de92007-09-25 17:54:57 -07002003{
Johannes Berg8318d782008-01-24 19:38:38 +01002004 if (band == IEEE80211_BAND_5GHZ) {
Zhu Yib481de92007-09-25 17:54:57 -07002005 priv->staging_rxon.flags &=
2006 ~(RXON_FLG_BAND_24G_MSK | RXON_FLG_AUTO_DETECT_MSK
2007 | RXON_FLG_CCK_MSK);
2008 priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
2009 } else {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002010 /* Copied from iwl4965_bg_post_associate() */
Zhu Yib481de92007-09-25 17:54:57 -07002011 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_SLOT_TIME)
2012 priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
2013 else
2014 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
2015
2016 if (priv->iw_mode == IEEE80211_IF_TYPE_IBSS)
2017 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
2018
2019 priv->staging_rxon.flags |= RXON_FLG_BAND_24G_MSK;
2020 priv->staging_rxon.flags |= RXON_FLG_AUTO_DETECT_MSK;
2021 priv->staging_rxon.flags &= ~RXON_FLG_CCK_MSK;
2022 }
2023}
2024
2025/*
Ian Schram01ebd062007-10-25 17:15:22 +08002026 * initialize rxon structure with default values from eeprom
Zhu Yib481de92007-09-25 17:54:57 -07002027 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002028static void iwl4965_connection_init_rx_config(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002029{
Assaf Kraussbf85ea42008-03-14 10:38:49 -07002030 const struct iwl_channel_info *ch_info;
Zhu Yib481de92007-09-25 17:54:57 -07002031
2032 memset(&priv->staging_rxon, 0, sizeof(priv->staging_rxon));
2033
2034 switch (priv->iw_mode) {
2035 case IEEE80211_IF_TYPE_AP:
2036 priv->staging_rxon.dev_type = RXON_DEV_TYPE_AP;
2037 break;
2038
2039 case IEEE80211_IF_TYPE_STA:
2040 priv->staging_rxon.dev_type = RXON_DEV_TYPE_ESS;
2041 priv->staging_rxon.filter_flags = RXON_FILTER_ACCEPT_GRP_MSK;
2042 break;
2043
2044 case IEEE80211_IF_TYPE_IBSS:
2045 priv->staging_rxon.dev_type = RXON_DEV_TYPE_IBSS;
2046 priv->staging_rxon.flags = RXON_FLG_SHORT_PREAMBLE_MSK;
2047 priv->staging_rxon.filter_flags = RXON_FILTER_BCON_AWARE_MSK |
2048 RXON_FILTER_ACCEPT_GRP_MSK;
2049 break;
2050
2051 case IEEE80211_IF_TYPE_MNTR:
2052 priv->staging_rxon.dev_type = RXON_DEV_TYPE_SNIFFER;
2053 priv->staging_rxon.filter_flags = RXON_FILTER_PROMISC_MSK |
2054 RXON_FILTER_CTL2HOST_MSK | RXON_FILTER_ACCEPT_GRP_MSK;
2055 break;
2056 }
2057
2058#if 0
2059 /* TODO: Figure out when short_preamble would be set and cache from
2060 * that */
2061 if (!hw_to_local(priv->hw)->short_preamble)
2062 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
2063 else
2064 priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
2065#endif
2066
Assaf Krauss8622e702008-03-21 13:53:43 -07002067 ch_info = iwl_get_channel_info(priv, priv->band,
Zhu Yib481de92007-09-25 17:54:57 -07002068 le16_to_cpu(priv->staging_rxon.channel));
2069
2070 if (!ch_info)
2071 ch_info = &priv->channel_info[0];
2072
2073 /*
2074 * in some case A channels are all non IBSS
2075 * in this case force B/G channel
2076 */
2077 if ((priv->iw_mode == IEEE80211_IF_TYPE_IBSS) &&
2078 !(is_channel_ibss(ch_info)))
2079 ch_info = &priv->channel_info[0];
2080
2081 priv->staging_rxon.channel = cpu_to_le16(ch_info->channel);
Johannes Berg8318d782008-01-24 19:38:38 +01002082 priv->band = ch_info->band;
Zhu Yib481de92007-09-25 17:54:57 -07002083
Johannes Berg8318d782008-01-24 19:38:38 +01002084 iwl4965_set_flags_for_phymode(priv, priv->band);
Zhu Yib481de92007-09-25 17:54:57 -07002085
2086 priv->staging_rxon.ofdm_basic_rates =
2087 (IWL_OFDM_RATES_MASK >> IWL_FIRST_OFDM_RATE) & 0xFF;
2088 priv->staging_rxon.cck_basic_rates =
2089 (IWL_CCK_RATES_MASK >> IWL_FIRST_CCK_RATE) & 0xF;
2090
2091 priv->staging_rxon.flags &= ~(RXON_FLG_CHANNEL_MODE_MIXED_MSK |
2092 RXON_FLG_CHANNEL_MODE_PURE_40_MSK);
2093 memcpy(priv->staging_rxon.node_addr, priv->mac_addr, ETH_ALEN);
2094 memcpy(priv->staging_rxon.wlap_bssid_addr, priv->mac_addr, ETH_ALEN);
2095 priv->staging_rxon.ofdm_ht_single_stream_basic_rates = 0xff;
2096 priv->staging_rxon.ofdm_ht_dual_stream_basic_rates = 0xff;
2097 iwl4965_set_rxon_chain(priv);
2098}
2099
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002100static int iwl4965_set_mode(struct iwl_priv *priv, int mode)
Zhu Yib481de92007-09-25 17:54:57 -07002101{
Zhu Yib481de92007-09-25 17:54:57 -07002102 if (mode == IEEE80211_IF_TYPE_IBSS) {
Assaf Kraussbf85ea42008-03-14 10:38:49 -07002103 const struct iwl_channel_info *ch_info;
Zhu Yib481de92007-09-25 17:54:57 -07002104
Assaf Krauss8622e702008-03-21 13:53:43 -07002105 ch_info = iwl_get_channel_info(priv,
Johannes Berg8318d782008-01-24 19:38:38 +01002106 priv->band,
Zhu Yib481de92007-09-25 17:54:57 -07002107 le16_to_cpu(priv->staging_rxon.channel));
2108
2109 if (!ch_info || !is_channel_ibss(ch_info)) {
2110 IWL_ERROR("channel %d not IBSS channel\n",
2111 le16_to_cpu(priv->staging_rxon.channel));
2112 return -EINVAL;
2113 }
2114 }
2115
Zhu Yib481de92007-09-25 17:54:57 -07002116 priv->iw_mode = mode;
2117
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002118 iwl4965_connection_init_rx_config(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002119 memcpy(priv->staging_rxon.node_addr, priv->mac_addr, ETH_ALEN);
2120
Assaf Kraussbf85ea42008-03-14 10:38:49 -07002121 iwlcore_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002122
Mohamed Abbasfde35712007-11-29 11:10:15 +08002123 /* dont commit rxon if rf-kill is on*/
2124 if (!iwl4965_is_ready_rf(priv))
2125 return -EAGAIN;
2126
2127 cancel_delayed_work(&priv->scan_check);
2128 if (iwl4965_scan_cancel_timeout(priv, 100)) {
2129 IWL_WARNING("Aborted scan still in progress after 100ms\n");
2130 IWL_DEBUG_MAC80211("leaving - scan abort failed.\n");
2131 return -EAGAIN;
2132 }
2133
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002134 iwl4965_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002135
2136 return 0;
2137}
2138
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002139static void iwl4965_build_tx_cmd_hwcrypto(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07002140 struct ieee80211_tx_control *ctl,
Tomas Winkler857485c2008-03-21 13:53:44 -07002141 struct iwl_cmd *cmd,
Zhu Yib481de92007-09-25 17:54:57 -07002142 struct sk_buff *skb_frag,
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07002143 int sta_id)
Zhu Yib481de92007-09-25 17:54:57 -07002144{
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07002145 struct iwl4965_hw_key *keyinfo = &priv->stations[sta_id].keyinfo;
Zhu Yib481de92007-09-25 17:54:57 -07002146
2147 switch (keyinfo->alg) {
2148 case ALG_CCMP:
2149 cmd->cmd.tx.sec_ctl = TX_CMD_SEC_CCM;
2150 memcpy(cmd->cmd.tx.key, keyinfo->key, keyinfo->keylen);
Max Stepanov8236e182008-03-12 16:58:48 -07002151 if (ctl->flags & IEEE80211_TXCTL_AMPDU)
2152 cmd->cmd.tx.tx_flags |= TX_CMD_FLG_AGG_CCMP_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07002153 IWL_DEBUG_TX("tx_cmd with aes hwcrypto\n");
2154 break;
2155
2156 case ALG_TKIP:
Zhu Yib481de92007-09-25 17:54:57 -07002157 cmd->cmd.tx.sec_ctl = TX_CMD_SEC_TKIP;
Emmanuel Grumbach2bc75082008-03-19 16:41:45 -07002158 ieee80211_get_tkip_key(keyinfo->conf, skb_frag,
2159 IEEE80211_TKIP_P2_KEY, cmd->cmd.tx.key);
2160 IWL_DEBUG_TX("tx_cmd with tkip hwcrypto\n");
Zhu Yib481de92007-09-25 17:54:57 -07002161 break;
2162
2163 case ALG_WEP:
2164 cmd->cmd.tx.sec_ctl = TX_CMD_SEC_WEP |
2165 (ctl->key_idx & TX_CMD_SEC_MSK) << TX_CMD_SEC_SHIFT;
2166
2167 if (keyinfo->keylen == 13)
2168 cmd->cmd.tx.sec_ctl |= TX_CMD_SEC_KEY128;
2169
2170 memcpy(&cmd->cmd.tx.key[3], keyinfo->key, keyinfo->keylen);
2171
2172 IWL_DEBUG_TX("Configuring packet for WEP encryption "
2173 "with key %d\n", ctl->key_idx);
2174 break;
2175
Zhu Yib481de92007-09-25 17:54:57 -07002176 default:
2177 printk(KERN_ERR "Unknown encode alg %d\n", keyinfo->alg);
2178 break;
2179 }
2180}
2181
2182/*
2183 * handle build REPLY_TX command notification.
2184 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002185static void iwl4965_build_tx_cmd_basic(struct iwl_priv *priv,
Tomas Winkler857485c2008-03-21 13:53:44 -07002186 struct iwl_cmd *cmd,
Zhu Yib481de92007-09-25 17:54:57 -07002187 struct ieee80211_tx_control *ctrl,
2188 struct ieee80211_hdr *hdr,
2189 int is_unicast, u8 std_id)
2190{
2191 __le16 *qc;
2192 u16 fc = le16_to_cpu(hdr->frame_control);
2193 __le32 tx_flags = cmd->cmd.tx.tx_flags;
2194
2195 cmd->cmd.tx.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
2196 if (!(ctrl->flags & IEEE80211_TXCTL_NO_ACK)) {
2197 tx_flags |= TX_CMD_FLG_ACK_MSK;
2198 if ((fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_MGMT)
2199 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
2200 if (ieee80211_is_probe_response(fc) &&
2201 !(le16_to_cpu(hdr->seq_ctrl) & 0xf))
2202 tx_flags |= TX_CMD_FLG_TSF_MSK;
2203 } else {
2204 tx_flags &= (~TX_CMD_FLG_ACK_MSK);
2205 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
2206 }
2207
Tomas Winkler87e4f7d2008-01-14 17:46:16 -08002208 if (ieee80211_is_back_request(fc))
2209 tx_flags |= TX_CMD_FLG_ACK_MSK | TX_CMD_FLG_IMM_BA_RSP_MASK;
2210
2211
Zhu Yib481de92007-09-25 17:54:57 -07002212 cmd->cmd.tx.sta_id = std_id;
2213 if (ieee80211_get_morefrag(hdr))
2214 tx_flags |= TX_CMD_FLG_MORE_FRAG_MSK;
2215
2216 qc = ieee80211_get_qos_ctrl(hdr);
2217 if (qc) {
2218 cmd->cmd.tx.tid_tspec = (u8) (le16_to_cpu(*qc) & 0xf);
2219 tx_flags &= ~TX_CMD_FLG_SEQ_CTL_MSK;
2220 } else
2221 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
2222
2223 if (ctrl->flags & IEEE80211_TXCTL_USE_RTS_CTS) {
2224 tx_flags |= TX_CMD_FLG_RTS_MSK;
2225 tx_flags &= ~TX_CMD_FLG_CTS_MSK;
2226 } else if (ctrl->flags & IEEE80211_TXCTL_USE_CTS_PROTECT) {
2227 tx_flags &= ~TX_CMD_FLG_RTS_MSK;
2228 tx_flags |= TX_CMD_FLG_CTS_MSK;
2229 }
2230
2231 if ((tx_flags & TX_CMD_FLG_RTS_MSK) || (tx_flags & TX_CMD_FLG_CTS_MSK))
2232 tx_flags |= TX_CMD_FLG_FULL_TXOP_PROT_MSK;
2233
2234 tx_flags &= ~(TX_CMD_FLG_ANT_SEL_MSK);
2235 if ((fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_MGMT) {
2236 if ((fc & IEEE80211_FCTL_STYPE) == IEEE80211_STYPE_ASSOC_REQ ||
2237 (fc & IEEE80211_FCTL_STYPE) == IEEE80211_STYPE_REASSOC_REQ)
Ian Schrambc434dd2007-10-25 17:15:29 +08002238 cmd->cmd.tx.timeout.pm_frame_timeout = cpu_to_le16(3);
Zhu Yib481de92007-09-25 17:54:57 -07002239 else
Ian Schrambc434dd2007-10-25 17:15:29 +08002240 cmd->cmd.tx.timeout.pm_frame_timeout = cpu_to_le16(2);
Zhu Yib481de92007-09-25 17:54:57 -07002241 } else
2242 cmd->cmd.tx.timeout.pm_frame_timeout = 0;
2243
2244 cmd->cmd.tx.driver_txop = 0;
2245 cmd->cmd.tx.tx_flags = tx_flags;
2246 cmd->cmd.tx.next_frame_len = 0;
2247}
Tomas Winkler19758be2008-03-12 16:58:51 -07002248static void iwl_update_tx_stats(struct iwl_priv *priv, u16 fc, u16 len)
2249{
2250 /* 0 - mgmt, 1 - cnt, 2 - data */
2251 int idx = (fc & IEEE80211_FCTL_FTYPE) >> 2;
2252 priv->tx_stats[idx].cnt++;
2253 priv->tx_stats[idx].bytes += len;
2254}
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002255/**
2256 * iwl4965_get_sta_id - Find station's index within station table
2257 *
2258 * If new IBSS station, create new entry in station table
2259 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002260static int iwl4965_get_sta_id(struct iwl_priv *priv,
Ben Cahill9fbab512007-11-29 11:09:47 +08002261 struct ieee80211_hdr *hdr)
Zhu Yib481de92007-09-25 17:54:57 -07002262{
2263 int sta_id;
2264 u16 fc = le16_to_cpu(hdr->frame_control);
Joe Perches0795af52007-10-03 17:59:30 -07002265 DECLARE_MAC_BUF(mac);
Zhu Yib481de92007-09-25 17:54:57 -07002266
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002267 /* If this frame is broadcast or management, use broadcast station id */
Zhu Yib481de92007-09-25 17:54:57 -07002268 if (((fc & IEEE80211_FCTL_FTYPE) != IEEE80211_FTYPE_DATA) ||
2269 is_multicast_ether_addr(hdr->addr1))
2270 return priv->hw_setting.bcast_sta_id;
2271
2272 switch (priv->iw_mode) {
2273
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002274 /* If we are a client station in a BSS network, use the special
2275 * AP station entry (that's the only station we communicate with) */
Zhu Yib481de92007-09-25 17:54:57 -07002276 case IEEE80211_IF_TYPE_STA:
2277 return IWL_AP_ID;
2278
2279 /* If we are an AP, then find the station, or use BCAST */
2280 case IEEE80211_IF_TYPE_AP:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002281 sta_id = iwl4965_hw_find_station(priv, hdr->addr1);
Zhu Yib481de92007-09-25 17:54:57 -07002282 if (sta_id != IWL_INVALID_STATION)
2283 return sta_id;
2284 return priv->hw_setting.bcast_sta_id;
2285
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002286 /* If this frame is going out to an IBSS network, find the station,
2287 * or create a new station table entry */
Zhu Yib481de92007-09-25 17:54:57 -07002288 case IEEE80211_IF_TYPE_IBSS:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002289 sta_id = iwl4965_hw_find_station(priv, hdr->addr1);
Zhu Yib481de92007-09-25 17:54:57 -07002290 if (sta_id != IWL_INVALID_STATION)
2291 return sta_id;
2292
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002293 /* Create new station table entry */
Ron Rindjunsky67d62032007-11-26 16:14:40 +02002294 sta_id = iwl4965_add_station_flags(priv, hdr->addr1,
2295 0, CMD_ASYNC, NULL);
Zhu Yib481de92007-09-25 17:54:57 -07002296
2297 if (sta_id != IWL_INVALID_STATION)
2298 return sta_id;
2299
Joe Perches0795af52007-10-03 17:59:30 -07002300 IWL_DEBUG_DROP("Station %s not in station map. "
Zhu Yib481de92007-09-25 17:54:57 -07002301 "Defaulting to broadcast...\n",
Joe Perches0795af52007-10-03 17:59:30 -07002302 print_mac(mac, hdr->addr1));
Tomas Winkler0a6857e2008-03-12 16:58:49 -07002303 iwl_print_hex_dump(IWL_DL_DROP, (u8 *) hdr, sizeof(*hdr));
Zhu Yib481de92007-09-25 17:54:57 -07002304 return priv->hw_setting.bcast_sta_id;
2305
2306 default:
Ian Schram01ebd062007-10-25 17:15:22 +08002307 IWL_WARNING("Unknown mode of operation: %d", priv->iw_mode);
Zhu Yib481de92007-09-25 17:54:57 -07002308 return priv->hw_setting.bcast_sta_id;
2309 }
2310}
2311
2312/*
2313 * start REPLY_TX command process
2314 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002315static int iwl4965_tx_skb(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07002316 struct sk_buff *skb, struct ieee80211_tx_control *ctl)
2317{
2318 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002319 struct iwl4965_tfd_frame *tfd;
Zhu Yib481de92007-09-25 17:54:57 -07002320 u32 *control_flags;
2321 int txq_id = ctl->queue;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002322 struct iwl4965_tx_queue *txq = NULL;
2323 struct iwl4965_queue *q = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07002324 dma_addr_t phys_addr;
2325 dma_addr_t txcmd_phys;
Tomas Winkler87e4f7d2008-01-14 17:46:16 -08002326 dma_addr_t scratch_phys;
Tomas Winkler857485c2008-03-21 13:53:44 -07002327 struct iwl_cmd *out_cmd = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07002328 u16 len, idx, len_org;
2329 u8 id, hdr_len, unicast;
2330 u8 sta_id;
2331 u16 seq_number = 0;
2332 u16 fc;
2333 __le16 *qc;
2334 u8 wait_write_ptr = 0;
2335 unsigned long flags;
2336 int rc;
2337
2338 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002339 if (iwl4965_is_rfkill(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002340 IWL_DEBUG_DROP("Dropping - RF KILL\n");
2341 goto drop_unlock;
2342 }
2343
Johannes Berg32bfd352007-12-19 01:31:26 +01002344 if (!priv->vif) {
2345 IWL_DEBUG_DROP("Dropping - !priv->vif\n");
Zhu Yib481de92007-09-25 17:54:57 -07002346 goto drop_unlock;
2347 }
2348
Johannes Berg8318d782008-01-24 19:38:38 +01002349 if ((ctl->tx_rate->hw_value & 0xFF) == IWL_INVALID_RATE) {
Zhu Yib481de92007-09-25 17:54:57 -07002350 IWL_ERROR("ERROR: No TX rate available.\n");
2351 goto drop_unlock;
2352 }
2353
2354 unicast = !is_multicast_ether_addr(hdr->addr1);
2355 id = 0;
2356
2357 fc = le16_to_cpu(hdr->frame_control);
2358
Tomas Winkler0a6857e2008-03-12 16:58:49 -07002359#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07002360 if (ieee80211_is_auth(fc))
2361 IWL_DEBUG_TX("Sending AUTH frame\n");
2362 else if (ieee80211_is_assoc_request(fc))
2363 IWL_DEBUG_TX("Sending ASSOC frame\n");
2364 else if (ieee80211_is_reassoc_request(fc))
2365 IWL_DEBUG_TX("Sending REASSOC frame\n");
2366#endif
2367
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08002368 /* drop all data frame if we are not associated */
Gregory Greenman76f39152008-01-23 10:15:21 -08002369 if (((fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_DATA) &&
2370 (!iwl4965_is_associated(priv) ||
Reinette Chatrea6477242008-02-14 10:40:28 -08002371 ((priv->iw_mode == IEEE80211_IF_TYPE_STA) && !priv->assoc_id) ||
Gregory Greenman76f39152008-01-23 10:15:21 -08002372 !priv->assoc_station_added)) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002373 IWL_DEBUG_DROP("Dropping - !iwl4965_is_associated\n");
Zhu Yib481de92007-09-25 17:54:57 -07002374 goto drop_unlock;
2375 }
2376
2377 spin_unlock_irqrestore(&priv->lock, flags);
2378
2379 hdr_len = ieee80211_get_hdrlen(fc);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002380
2381 /* Find (or create) index into station table for destination station */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002382 sta_id = iwl4965_get_sta_id(priv, hdr);
Zhu Yib481de92007-09-25 17:54:57 -07002383 if (sta_id == IWL_INVALID_STATION) {
Joe Perches0795af52007-10-03 17:59:30 -07002384 DECLARE_MAC_BUF(mac);
2385
2386 IWL_DEBUG_DROP("Dropping - INVALID STATION: %s\n",
2387 print_mac(mac, hdr->addr1));
Zhu Yib481de92007-09-25 17:54:57 -07002388 goto drop;
2389 }
2390
2391 IWL_DEBUG_RATE("station Id %d\n", sta_id);
2392
2393 qc = ieee80211_get_qos_ctrl(hdr);
2394 if (qc) {
2395 u8 tid = (u8)(le16_to_cpu(*qc) & 0xf);
2396 seq_number = priv->stations[sta_id].tid[tid].seq_number &
2397 IEEE80211_SCTL_SEQ;
2398 hdr->seq_ctrl = cpu_to_le16(seq_number) |
2399 (hdr->seq_ctrl &
2400 __constant_cpu_to_le16(IEEE80211_SCTL_FRAG));
2401 seq_number += 0x10;
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08002402#ifdef CONFIG_IWL4965_HT
Zhu Yib481de92007-09-25 17:54:57 -07002403 /* aggregation is on for this <sta,tid> */
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02002404 if (ctl->flags & IEEE80211_TXCTL_AMPDU)
Zhu Yib481de92007-09-25 17:54:57 -07002405 txq_id = priv->stations[sta_id].tid[tid].agg.txq_id;
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02002406 priv->stations[sta_id].tid[tid].tfds_in_queue++;
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08002407#endif /* CONFIG_IWL4965_HT */
Zhu Yib481de92007-09-25 17:54:57 -07002408 }
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002409
2410 /* Descriptor for chosen Tx queue */
Zhu Yib481de92007-09-25 17:54:57 -07002411 txq = &priv->txq[txq_id];
2412 q = &txq->q;
2413
2414 spin_lock_irqsave(&priv->lock, flags);
2415
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002416 /* Set up first empty TFD within this queue's circular TFD buffer */
Tomas Winklerfc4b6852007-10-25 17:15:24 +08002417 tfd = &txq->bd[q->write_ptr];
Zhu Yib481de92007-09-25 17:54:57 -07002418 memset(tfd, 0, sizeof(*tfd));
2419 control_flags = (u32 *) tfd;
Tomas Winklerfc4b6852007-10-25 17:15:24 +08002420 idx = get_cmd_index(q, q->write_ptr, 0);
Zhu Yib481de92007-09-25 17:54:57 -07002421
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002422 /* Set up driver data for this TFD */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002423 memset(&(txq->txb[q->write_ptr]), 0, sizeof(struct iwl4965_tx_info));
Tomas Winklerfc4b6852007-10-25 17:15:24 +08002424 txq->txb[q->write_ptr].skb[0] = skb;
2425 memcpy(&(txq->txb[q->write_ptr].status.control),
Zhu Yib481de92007-09-25 17:54:57 -07002426 ctl, sizeof(struct ieee80211_tx_control));
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002427
2428 /* Set up first empty entry in queue's array of Tx/cmd buffers */
Zhu Yib481de92007-09-25 17:54:57 -07002429 out_cmd = &txq->cmd[idx];
2430 memset(&out_cmd->hdr, 0, sizeof(out_cmd->hdr));
2431 memset(&out_cmd->cmd.tx, 0, sizeof(out_cmd->cmd.tx));
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002432
2433 /*
2434 * Set up the Tx-command (not MAC!) header.
2435 * Store the chosen Tx queue and TFD index within the sequence field;
2436 * after Tx, uCode's Tx response will return this value so driver can
2437 * locate the frame within the tx queue and do post-tx processing.
2438 */
Zhu Yib481de92007-09-25 17:54:57 -07002439 out_cmd->hdr.cmd = REPLY_TX;
2440 out_cmd->hdr.sequence = cpu_to_le16((u16)(QUEUE_TO_SEQ(txq_id) |
Tomas Winklerfc4b6852007-10-25 17:15:24 +08002441 INDEX_TO_SEQ(q->write_ptr)));
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002442
2443 /* Copy MAC header from skb into command buffer */
Zhu Yib481de92007-09-25 17:54:57 -07002444 memcpy(out_cmd->cmd.tx.hdr, hdr, hdr_len);
2445
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002446 /*
2447 * Use the first empty entry in this queue's command buffer array
2448 * to contain the Tx command and MAC header concatenated together
2449 * (payload data will be in another buffer).
2450 * Size of this varies, due to varying MAC header length.
2451 * If end is not dword aligned, we'll have 2 extra bytes at the end
2452 * of the MAC header (device reads on dword boundaries).
2453 * We'll tell device about this padding later.
2454 */
Zhu Yib481de92007-09-25 17:54:57 -07002455 len = priv->hw_setting.tx_cmd_len +
Tomas Winkler857485c2008-03-21 13:53:44 -07002456 sizeof(struct iwl_cmd_header) + hdr_len;
Zhu Yib481de92007-09-25 17:54:57 -07002457
2458 len_org = len;
2459 len = (len + 3) & ~3;
2460
2461 if (len_org != len)
2462 len_org = 1;
2463 else
2464 len_org = 0;
2465
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002466 /* Physical address of this Tx command's header (not MAC header!),
2467 * within command buffer array. */
Tomas Winkler857485c2008-03-21 13:53:44 -07002468 txcmd_phys = txq->dma_addr_cmd + sizeof(struct iwl_cmd) * idx +
2469 offsetof(struct iwl_cmd, hdr);
Zhu Yib481de92007-09-25 17:54:57 -07002470
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002471 /* Add buffer containing Tx command and MAC(!) header to TFD's
2472 * first entry */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002473 iwl4965_hw_txq_attach_buf_to_tfd(priv, tfd, txcmd_phys, len);
Zhu Yib481de92007-09-25 17:54:57 -07002474
2475 if (!(ctl->flags & IEEE80211_TXCTL_DO_NOT_ENCRYPT))
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07002476 iwl4965_build_tx_cmd_hwcrypto(priv, ctl, out_cmd, skb, sta_id);
Zhu Yib481de92007-09-25 17:54:57 -07002477
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002478 /* Set up TFD's 2nd entry to point directly to remainder of skb,
2479 * if any (802.11 null frames have no payload). */
Zhu Yib481de92007-09-25 17:54:57 -07002480 len = skb->len - hdr_len;
2481 if (len) {
2482 phys_addr = pci_map_single(priv->pci_dev, skb->data + hdr_len,
2483 len, PCI_DMA_TODEVICE);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002484 iwl4965_hw_txq_attach_buf_to_tfd(priv, tfd, phys_addr, len);
Zhu Yib481de92007-09-25 17:54:57 -07002485 }
2486
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002487 /* Tell 4965 about any 2-byte padding after MAC header */
Zhu Yib481de92007-09-25 17:54:57 -07002488 if (len_org)
2489 out_cmd->cmd.tx.tx_flags |= TX_CMD_FLG_MH_PAD_MSK;
2490
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002491 /* Total # bytes to be transmitted */
Zhu Yib481de92007-09-25 17:54:57 -07002492 len = (u16)skb->len;
2493 out_cmd->cmd.tx.len = cpu_to_le16(len);
2494
2495 /* TODO need this for burst mode later on */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002496 iwl4965_build_tx_cmd_basic(priv, out_cmd, ctl, hdr, unicast, sta_id);
Zhu Yib481de92007-09-25 17:54:57 -07002497
2498 /* set is_hcca to 0; it probably will never be implemented */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002499 iwl4965_hw_build_tx_cmd_rate(priv, out_cmd, ctl, hdr, sta_id, 0);
Zhu Yib481de92007-09-25 17:54:57 -07002500
Tomas Winkler19758be2008-03-12 16:58:51 -07002501 iwl_update_tx_stats(priv, fc, len);
2502
Tomas Winkler857485c2008-03-21 13:53:44 -07002503 scratch_phys = txcmd_phys + sizeof(struct iwl_cmd_header) +
Tomas Winkler87e4f7d2008-01-14 17:46:16 -08002504 offsetof(struct iwl4965_tx_cmd, scratch);
2505 out_cmd->cmd.tx.dram_lsb_ptr = cpu_to_le32(scratch_phys);
2506 out_cmd->cmd.tx.dram_msb_ptr = iwl_get_dma_hi_address(scratch_phys);
2507
Zhu Yib481de92007-09-25 17:54:57 -07002508 if (!ieee80211_get_morefrag(hdr)) {
2509 txq->need_update = 1;
2510 if (qc) {
2511 u8 tid = (u8)(le16_to_cpu(*qc) & 0xf);
2512 priv->stations[sta_id].tid[tid].seq_number = seq_number;
2513 }
2514 } else {
2515 wait_write_ptr = 1;
2516 txq->need_update = 0;
2517 }
2518
Tomas Winkler0a6857e2008-03-12 16:58:49 -07002519 iwl_print_hex_dump(IWL_DL_TX, out_cmd->cmd.payload,
Zhu Yib481de92007-09-25 17:54:57 -07002520 sizeof(out_cmd->cmd.tx));
2521
Tomas Winkler0a6857e2008-03-12 16:58:49 -07002522 iwl_print_hex_dump(IWL_DL_TX, (u8 *)out_cmd->cmd.tx.hdr,
Zhu Yib481de92007-09-25 17:54:57 -07002523 ieee80211_get_hdrlen(fc));
2524
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002525 /* Set up entry for this TFD in Tx byte-count array */
Zhu Yib481de92007-09-25 17:54:57 -07002526 iwl4965_tx_queue_update_wr_ptr(priv, txq, len);
2527
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002528 /* Tell device the write index *just past* this latest filled TFD */
Tomas Winklerc54b6792008-03-06 17:36:53 -08002529 q->write_ptr = iwl_queue_inc_wrap(q->write_ptr, q->n_bd);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002530 rc = iwl4965_tx_queue_update_write_ptr(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -07002531 spin_unlock_irqrestore(&priv->lock, flags);
2532
2533 if (rc)
2534 return rc;
2535
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002536 if ((iwl4965_queue_space(q) < q->high_mark)
Zhu Yib481de92007-09-25 17:54:57 -07002537 && priv->mac80211_registered) {
2538 if (wait_write_ptr) {
2539 spin_lock_irqsave(&priv->lock, flags);
2540 txq->need_update = 1;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002541 iwl4965_tx_queue_update_write_ptr(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -07002542 spin_unlock_irqrestore(&priv->lock, flags);
2543 }
2544
2545 ieee80211_stop_queue(priv->hw, ctl->queue);
2546 }
2547
2548 return 0;
2549
2550drop_unlock:
2551 spin_unlock_irqrestore(&priv->lock, flags);
2552drop:
2553 return -1;
2554}
2555
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002556static void iwl4965_set_rate(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002557{
Johannes Berg8318d782008-01-24 19:38:38 +01002558 const struct ieee80211_supported_band *hw = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07002559 struct ieee80211_rate *rate;
2560 int i;
2561
Johannes Berg8318d782008-01-24 19:38:38 +01002562 hw = iwl4965_get_hw_mode(priv, priv->band);
Saleem Abdulrasoolc4ba9622007-11-18 23:59:08 -08002563 if (!hw) {
2564 IWL_ERROR("Failed to set rate: unable to get hw mode\n");
2565 return;
2566 }
Zhu Yib481de92007-09-25 17:54:57 -07002567
2568 priv->active_rate = 0;
2569 priv->active_rate_basic = 0;
2570
Johannes Berg8318d782008-01-24 19:38:38 +01002571 for (i = 0; i < hw->n_bitrates; i++) {
2572 rate = &(hw->bitrates[i]);
2573 if (rate->hw_value < IWL_RATE_COUNT)
2574 priv->active_rate |= (1 << rate->hw_value);
Zhu Yib481de92007-09-25 17:54:57 -07002575 }
2576
2577 IWL_DEBUG_RATE("Set active_rate = %0x, active_rate_basic = %0x\n",
2578 priv->active_rate, priv->active_rate_basic);
2579
2580 /*
2581 * If a basic rate is configured, then use it (adding IWL_RATE_1M_MASK)
2582 * otherwise set it to the default of all CCK rates and 6, 12, 24 for
2583 * OFDM
2584 */
2585 if (priv->active_rate_basic & IWL_CCK_BASIC_RATES_MASK)
2586 priv->staging_rxon.cck_basic_rates =
2587 ((priv->active_rate_basic &
2588 IWL_CCK_RATES_MASK) >> IWL_FIRST_CCK_RATE) & 0xF;
2589 else
2590 priv->staging_rxon.cck_basic_rates =
2591 (IWL_CCK_BASIC_RATES_MASK >> IWL_FIRST_CCK_RATE) & 0xF;
2592
2593 if (priv->active_rate_basic & IWL_OFDM_BASIC_RATES_MASK)
2594 priv->staging_rxon.ofdm_basic_rates =
2595 ((priv->active_rate_basic &
2596 (IWL_OFDM_BASIC_RATES_MASK | IWL_RATE_6M_MASK)) >>
2597 IWL_FIRST_OFDM_RATE) & 0xFF;
2598 else
2599 priv->staging_rxon.ofdm_basic_rates =
2600 (IWL_OFDM_BASIC_RATES_MASK >> IWL_FIRST_OFDM_RATE) & 0xFF;
2601}
2602
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002603static void iwl4965_radio_kill_sw(struct iwl_priv *priv, int disable_radio)
Zhu Yib481de92007-09-25 17:54:57 -07002604{
2605 unsigned long flags;
2606
2607 if (!!disable_radio == test_bit(STATUS_RF_KILL_SW, &priv->status))
2608 return;
2609
2610 IWL_DEBUG_RF_KILL("Manual SW RF KILL set to: RADIO %s\n",
2611 disable_radio ? "OFF" : "ON");
2612
2613 if (disable_radio) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002614 iwl4965_scan_cancel(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002615 /* FIXME: This is a workaround for AP */
2616 if (priv->iw_mode != IEEE80211_IF_TYPE_AP) {
2617 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002618 iwl4965_write32(priv, CSR_UCODE_DRV_GP1_SET,
Zhu Yib481de92007-09-25 17:54:57 -07002619 CSR_UCODE_SW_BIT_RFKILL);
2620 spin_unlock_irqrestore(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002621 iwl4965_send_card_state(priv, CARD_STATE_CMD_DISABLE, 0);
Zhu Yib481de92007-09-25 17:54:57 -07002622 set_bit(STATUS_RF_KILL_SW, &priv->status);
2623 }
2624 return;
2625 }
2626
2627 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002628 iwl4965_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
Zhu Yib481de92007-09-25 17:54:57 -07002629
2630 clear_bit(STATUS_RF_KILL_SW, &priv->status);
2631 spin_unlock_irqrestore(&priv->lock, flags);
2632
2633 /* wake up ucode */
2634 msleep(10);
2635
2636 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002637 iwl4965_read32(priv, CSR_UCODE_DRV_GP1);
2638 if (!iwl4965_grab_nic_access(priv))
2639 iwl4965_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002640 spin_unlock_irqrestore(&priv->lock, flags);
2641
2642 if (test_bit(STATUS_RF_KILL_HW, &priv->status)) {
2643 IWL_DEBUG_RF_KILL("Can not turn radio back on - "
2644 "disabled by HW switch\n");
2645 return;
2646 }
2647
2648 queue_work(priv->workqueue, &priv->restart);
2649 return;
2650}
2651
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002652void iwl4965_set_decrypted_flag(struct iwl_priv *priv, struct sk_buff *skb,
Zhu Yib481de92007-09-25 17:54:57 -07002653 u32 decrypt_res, struct ieee80211_rx_status *stats)
2654{
2655 u16 fc =
2656 le16_to_cpu(((struct ieee80211_hdr *)skb->data)->frame_control);
2657
2658 if (priv->active_rxon.filter_flags & RXON_FILTER_DIS_DECRYPT_MSK)
2659 return;
2660
2661 if (!(fc & IEEE80211_FCTL_PROTECTED))
2662 return;
2663
2664 IWL_DEBUG_RX("decrypt_res:0x%x\n", decrypt_res);
2665 switch (decrypt_res & RX_RES_STATUS_SEC_TYPE_MSK) {
2666 case RX_RES_STATUS_SEC_TYPE_TKIP:
Emmanuel Grumbach17e476b2008-03-19 16:41:42 -07002667 /* The uCode has got a bad phase 1 Key, pushes the packet.
2668 * Decryption will be done in SW. */
2669 if ((decrypt_res & RX_RES_STATUS_DECRYPT_TYPE_MSK) ==
2670 RX_RES_STATUS_BAD_KEY_TTAK)
2671 break;
2672
Zhu Yib481de92007-09-25 17:54:57 -07002673 if ((decrypt_res & RX_RES_STATUS_DECRYPT_TYPE_MSK) ==
2674 RX_RES_STATUS_BAD_ICV_MIC)
2675 stats->flag |= RX_FLAG_MMIC_ERROR;
2676 case RX_RES_STATUS_SEC_TYPE_WEP:
2677 case RX_RES_STATUS_SEC_TYPE_CCMP:
2678 if ((decrypt_res & RX_RES_STATUS_DECRYPT_TYPE_MSK) ==
2679 RX_RES_STATUS_DECRYPT_OK) {
2680 IWL_DEBUG_RX("hw decrypt successfully!!!\n");
2681 stats->flag |= RX_FLAG_DECRYPTED;
2682 }
2683 break;
2684
2685 default:
2686 break;
2687 }
2688}
2689
Zhu Yib481de92007-09-25 17:54:57 -07002690
2691#define IWL_PACKET_RETRY_TIME HZ
2692
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002693int iwl4965_is_duplicate_packet(struct iwl_priv *priv, struct ieee80211_hdr *header)
Zhu Yib481de92007-09-25 17:54:57 -07002694{
2695 u16 sc = le16_to_cpu(header->seq_ctrl);
2696 u16 seq = (sc & IEEE80211_SCTL_SEQ) >> 4;
2697 u16 frag = sc & IEEE80211_SCTL_FRAG;
2698 u16 *last_seq, *last_frag;
2699 unsigned long *last_time;
2700
2701 switch (priv->iw_mode) {
2702 case IEEE80211_IF_TYPE_IBSS:{
2703 struct list_head *p;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002704 struct iwl4965_ibss_seq *entry = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07002705 u8 *mac = header->addr2;
2706 int index = mac[5] & (IWL_IBSS_MAC_HASH_SIZE - 1);
2707
2708 __list_for_each(p, &priv->ibss_mac_hash[index]) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002709 entry = list_entry(p, struct iwl4965_ibss_seq, list);
Zhu Yib481de92007-09-25 17:54:57 -07002710 if (!compare_ether_addr(entry->mac, mac))
2711 break;
2712 }
2713 if (p == &priv->ibss_mac_hash[index]) {
2714 entry = kzalloc(sizeof(*entry), GFP_ATOMIC);
2715 if (!entry) {
Ian Schrambc434dd2007-10-25 17:15:29 +08002716 IWL_ERROR("Cannot malloc new mac entry\n");
Zhu Yib481de92007-09-25 17:54:57 -07002717 return 0;
2718 }
2719 memcpy(entry->mac, mac, ETH_ALEN);
2720 entry->seq_num = seq;
2721 entry->frag_num = frag;
2722 entry->packet_time = jiffies;
Ian Schrambc434dd2007-10-25 17:15:29 +08002723 list_add(&entry->list, &priv->ibss_mac_hash[index]);
Zhu Yib481de92007-09-25 17:54:57 -07002724 return 0;
2725 }
2726 last_seq = &entry->seq_num;
2727 last_frag = &entry->frag_num;
2728 last_time = &entry->packet_time;
2729 break;
2730 }
2731 case IEEE80211_IF_TYPE_STA:
2732 last_seq = &priv->last_seq_num;
2733 last_frag = &priv->last_frag_num;
2734 last_time = &priv->last_packet_time;
2735 break;
2736 default:
2737 return 0;
2738 }
2739 if ((*last_seq == seq) &&
2740 time_after(*last_time + IWL_PACKET_RETRY_TIME, jiffies)) {
2741 if (*last_frag == frag)
2742 goto drop;
2743 if (*last_frag + 1 != frag)
2744 /* out-of-order fragment */
2745 goto drop;
2746 } else
2747 *last_seq = seq;
2748
2749 *last_frag = frag;
2750 *last_time = jiffies;
2751 return 0;
2752
2753 drop:
2754 return 1;
2755}
2756
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08002757#ifdef CONFIG_IWL4965_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -07002758
2759#include "iwl-spectrum.h"
2760
2761#define BEACON_TIME_MASK_LOW 0x00FFFFFF
2762#define BEACON_TIME_MASK_HIGH 0xFF000000
2763#define TIME_UNIT 1024
2764
2765/*
2766 * extended beacon time format
2767 * time in usec will be changed into a 32-bit value in 8:24 format
2768 * the high 1 byte is the beacon counts
2769 * the lower 3 bytes is the time in usec within one beacon interval
2770 */
2771
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002772static u32 iwl4965_usecs_to_beacons(u32 usec, u32 beacon_interval)
Zhu Yib481de92007-09-25 17:54:57 -07002773{
2774 u32 quot;
2775 u32 rem;
2776 u32 interval = beacon_interval * 1024;
2777
2778 if (!interval || !usec)
2779 return 0;
2780
2781 quot = (usec / interval) & (BEACON_TIME_MASK_HIGH >> 24);
2782 rem = (usec % interval) & BEACON_TIME_MASK_LOW;
2783
2784 return (quot << 24) + rem;
2785}
2786
2787/* base is usually what we get from ucode with each received frame,
2788 * the same as HW timer counter counting down
2789 */
2790
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002791static __le32 iwl4965_add_beacon_time(u32 base, u32 addon, u32 beacon_interval)
Zhu Yib481de92007-09-25 17:54:57 -07002792{
2793 u32 base_low = base & BEACON_TIME_MASK_LOW;
2794 u32 addon_low = addon & BEACON_TIME_MASK_LOW;
2795 u32 interval = beacon_interval * TIME_UNIT;
2796 u32 res = (base & BEACON_TIME_MASK_HIGH) +
2797 (addon & BEACON_TIME_MASK_HIGH);
2798
2799 if (base_low > addon_low)
2800 res += base_low - addon_low;
2801 else if (base_low < addon_low) {
2802 res += interval + base_low - addon_low;
2803 res += (1 << 24);
2804 } else
2805 res += (1 << 24);
2806
2807 return cpu_to_le32(res);
2808}
2809
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002810static int iwl4965_get_measurement(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07002811 struct ieee80211_measurement_params *params,
2812 u8 type)
2813{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002814 struct iwl4965_spectrum_cmd spectrum;
2815 struct iwl4965_rx_packet *res;
Tomas Winkler857485c2008-03-21 13:53:44 -07002816 struct iwl_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -07002817 .id = REPLY_SPECTRUM_MEASUREMENT_CMD,
2818 .data = (void *)&spectrum,
2819 .meta.flags = CMD_WANT_SKB,
2820 };
2821 u32 add_time = le64_to_cpu(params->start_time);
2822 int rc;
2823 int spectrum_resp_status;
2824 int duration = le16_to_cpu(params->duration);
2825
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002826 if (iwl4965_is_associated(priv))
Zhu Yib481de92007-09-25 17:54:57 -07002827 add_time =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002828 iwl4965_usecs_to_beacons(
Zhu Yib481de92007-09-25 17:54:57 -07002829 le64_to_cpu(params->start_time) - priv->last_tsf,
2830 le16_to_cpu(priv->rxon_timing.beacon_interval));
2831
2832 memset(&spectrum, 0, sizeof(spectrum));
2833
2834 spectrum.channel_count = cpu_to_le16(1);
2835 spectrum.flags =
2836 RXON_FLG_TSF2HOST_MSK | RXON_FLG_ANT_A_MSK | RXON_FLG_DIS_DIV_MSK;
2837 spectrum.filter_flags = MEASUREMENT_FILTER_FLAG;
2838 cmd.len = sizeof(spectrum);
2839 spectrum.len = cpu_to_le16(cmd.len - sizeof(spectrum.len));
2840
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002841 if (iwl4965_is_associated(priv))
Zhu Yib481de92007-09-25 17:54:57 -07002842 spectrum.start_time =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002843 iwl4965_add_beacon_time(priv->last_beacon_time,
Zhu Yib481de92007-09-25 17:54:57 -07002844 add_time,
2845 le16_to_cpu(priv->rxon_timing.beacon_interval));
2846 else
2847 spectrum.start_time = 0;
2848
2849 spectrum.channels[0].duration = cpu_to_le32(duration * TIME_UNIT);
2850 spectrum.channels[0].channel = params->channel;
2851 spectrum.channels[0].type = type;
2852 if (priv->active_rxon.flags & RXON_FLG_BAND_24G_MSK)
2853 spectrum.flags |= RXON_FLG_BAND_24G_MSK |
2854 RXON_FLG_AUTO_DETECT_MSK | RXON_FLG_TGG_PROTECT_MSK;
2855
Tomas Winkler857485c2008-03-21 13:53:44 -07002856 rc = iwl_send_cmd_sync(priv, &cmd);
Zhu Yib481de92007-09-25 17:54:57 -07002857 if (rc)
2858 return rc;
2859
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002860 res = (struct iwl4965_rx_packet *)cmd.meta.u.skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07002861 if (res->hdr.flags & IWL_CMD_FAILED_MSK) {
2862 IWL_ERROR("Bad return from REPLY_RX_ON_ASSOC command\n");
2863 rc = -EIO;
2864 }
2865
2866 spectrum_resp_status = le16_to_cpu(res->u.spectrum.status);
2867 switch (spectrum_resp_status) {
2868 case 0: /* Command will be handled */
2869 if (res->u.spectrum.id != 0xff) {
2870 IWL_DEBUG_INFO
2871 ("Replaced existing measurement: %d\n",
2872 res->u.spectrum.id);
2873 priv->measurement_status &= ~MEASUREMENT_READY;
2874 }
2875 priv->measurement_status |= MEASUREMENT_ACTIVE;
2876 rc = 0;
2877 break;
2878
2879 case 1: /* Command will not be handled */
2880 rc = -EAGAIN;
2881 break;
2882 }
2883
2884 dev_kfree_skb_any(cmd.meta.u.skb);
2885
2886 return rc;
2887}
2888#endif
2889
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002890static void iwl4965_txstatus_to_ieee(struct iwl_priv *priv,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002891 struct iwl4965_tx_info *tx_sta)
Zhu Yib481de92007-09-25 17:54:57 -07002892{
2893
2894 tx_sta->status.ack_signal = 0;
2895 tx_sta->status.excessive_retries = 0;
2896 tx_sta->status.queue_length = 0;
2897 tx_sta->status.queue_number = 0;
2898
2899 if (in_interrupt())
2900 ieee80211_tx_status_irqsafe(priv->hw,
2901 tx_sta->skb[0], &(tx_sta->status));
2902 else
2903 ieee80211_tx_status(priv->hw,
2904 tx_sta->skb[0], &(tx_sta->status));
2905
2906 tx_sta->skb[0] = NULL;
2907}
2908
2909/**
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002910 * iwl4965_tx_queue_reclaim - Reclaim Tx queue entries already Tx'd
Zhu Yib481de92007-09-25 17:54:57 -07002911 *
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002912 * When FW advances 'R' index, all entries between old and new 'R' index
2913 * need to be reclaimed. As result, some free space forms. If there is
2914 * enough free space (> low mark), wake the stack that feeds us.
Zhu Yib481de92007-09-25 17:54:57 -07002915 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002916int iwl4965_tx_queue_reclaim(struct iwl_priv *priv, int txq_id, int index)
Zhu Yib481de92007-09-25 17:54:57 -07002917{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002918 struct iwl4965_tx_queue *txq = &priv->txq[txq_id];
2919 struct iwl4965_queue *q = &txq->q;
Zhu Yib481de92007-09-25 17:54:57 -07002920 int nfreed = 0;
2921
2922 if ((index >= q->n_bd) || (x2_queue_used(q, index) == 0)) {
2923 IWL_ERROR("Read index for DMA queue txq id (%d), index %d, "
2924 "is out of range [0-%d] %d %d.\n", txq_id,
Tomas Winklerfc4b6852007-10-25 17:15:24 +08002925 index, q->n_bd, q->write_ptr, q->read_ptr);
Zhu Yib481de92007-09-25 17:54:57 -07002926 return 0;
2927 }
2928
Tomas Winklerc54b6792008-03-06 17:36:53 -08002929 for (index = iwl_queue_inc_wrap(index, q->n_bd);
Tomas Winklerfc4b6852007-10-25 17:15:24 +08002930 q->read_ptr != index;
Tomas Winklerc54b6792008-03-06 17:36:53 -08002931 q->read_ptr = iwl_queue_inc_wrap(q->read_ptr, q->n_bd)) {
Zhu Yib481de92007-09-25 17:54:57 -07002932 if (txq_id != IWL_CMD_QUEUE_NUM) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002933 iwl4965_txstatus_to_ieee(priv,
Tomas Winklerfc4b6852007-10-25 17:15:24 +08002934 &(txq->txb[txq->q.read_ptr]));
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002935 iwl4965_hw_txq_free_tfd(priv, txq);
Zhu Yib481de92007-09-25 17:54:57 -07002936 } else if (nfreed > 1) {
2937 IWL_ERROR("HCMD skipped: index (%d) %d %d\n", index,
Tomas Winklerfc4b6852007-10-25 17:15:24 +08002938 q->write_ptr, q->read_ptr);
Zhu Yib481de92007-09-25 17:54:57 -07002939 queue_work(priv->workqueue, &priv->restart);
2940 }
2941 nfreed++;
2942 }
2943
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02002944/* if (iwl4965_queue_space(q) > q->low_mark && (txq_id >= 0) &&
Zhu Yib481de92007-09-25 17:54:57 -07002945 (txq_id != IWL_CMD_QUEUE_NUM) &&
2946 priv->mac80211_registered)
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02002947 ieee80211_wake_queue(priv->hw, txq_id); */
Zhu Yib481de92007-09-25 17:54:57 -07002948
2949
2950 return nfreed;
2951}
2952
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002953static int iwl4965_is_tx_success(u32 status)
Zhu Yib481de92007-09-25 17:54:57 -07002954{
2955 status &= TX_STATUS_MSK;
2956 return (status == TX_STATUS_SUCCESS)
2957 || (status == TX_STATUS_DIRECT_DONE);
2958}
2959
2960/******************************************************************************
2961 *
2962 * Generic RX handler implementations
2963 *
2964 ******************************************************************************/
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08002965#ifdef CONFIG_IWL4965_HT
Zhu Yib481de92007-09-25 17:54:57 -07002966
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002967static inline int iwl4965_get_ra_sta_id(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07002968 struct ieee80211_hdr *hdr)
2969{
2970 if (priv->iw_mode == IEEE80211_IF_TYPE_STA)
2971 return IWL_AP_ID;
2972 else {
2973 u8 *da = ieee80211_get_DA(hdr);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002974 return iwl4965_hw_find_station(priv, da);
Zhu Yib481de92007-09-25 17:54:57 -07002975 }
2976}
2977
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002978static struct ieee80211_hdr *iwl4965_tx_queue_get_hdr(
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002979 struct iwl_priv *priv, int txq_id, int idx)
Zhu Yib481de92007-09-25 17:54:57 -07002980{
2981 if (priv->txq[txq_id].txb[idx].skb[0])
2982 return (struct ieee80211_hdr *)priv->txq[txq_id].
2983 txb[idx].skb[0]->data;
2984 return NULL;
2985}
2986
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002987static inline u32 iwl4965_get_scd_ssn(struct iwl4965_tx_resp *tx_resp)
Zhu Yib481de92007-09-25 17:54:57 -07002988{
2989 __le32 *scd_ssn = (__le32 *)((u32 *)&tx_resp->status +
2990 tx_resp->frame_count);
2991 return le32_to_cpu(*scd_ssn) & MAX_SN;
2992
2993}
Cahill, Ben M6440adb2007-11-29 11:09:55 +08002994
2995/**
2996 * iwl4965_tx_status_reply_tx - Handle Tx rspnse for frames in aggregation queue
2997 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002998static int iwl4965_tx_status_reply_tx(struct iwl_priv *priv,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002999 struct iwl4965_ht_agg *agg,
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02003000 struct iwl4965_tx_resp_agg *tx_resp,
Zhu Yib481de92007-09-25 17:54:57 -07003001 u16 start_idx)
3002{
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02003003 u16 status;
3004 struct agg_tx_status *frame_status = &tx_resp->status;
Zhu Yib481de92007-09-25 17:54:57 -07003005 struct ieee80211_tx_status *tx_status = NULL;
3006 struct ieee80211_hdr *hdr = NULL;
3007 int i, sh;
3008 int txq_id, idx;
3009 u16 seq;
3010
3011 if (agg->wait_for_ba)
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003012 IWL_DEBUG_TX_REPLY("got tx response w/o block-ack\n");
Zhu Yib481de92007-09-25 17:54:57 -07003013
3014 agg->frame_count = tx_resp->frame_count;
3015 agg->start_idx = start_idx;
3016 agg->rate_n_flags = le32_to_cpu(tx_resp->rate_n_flags);
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02003017 agg->bitmap = 0;
Zhu Yib481de92007-09-25 17:54:57 -07003018
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003019 /* # frames attempted by Tx command */
Zhu Yib481de92007-09-25 17:54:57 -07003020 if (agg->frame_count == 1) {
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003021 /* Only one frame was attempted; no block-ack will arrive */
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02003022 status = le16_to_cpu(frame_status[0].status);
3023 seq = le16_to_cpu(frame_status[0].sequence);
3024 idx = SEQ_TO_INDEX(seq);
3025 txq_id = SEQ_TO_QUEUE(seq);
Zhu Yib481de92007-09-25 17:54:57 -07003026
Zhu Yib481de92007-09-25 17:54:57 -07003027 /* FIXME: code repetition */
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02003028 IWL_DEBUG_TX_REPLY("FrameCnt = %d, StartIdx=%d idx=%d\n",
3029 agg->frame_count, agg->start_idx, idx);
Zhu Yib481de92007-09-25 17:54:57 -07003030
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02003031 tx_status = &(priv->txq[txq_id].txb[idx].status);
Zhu Yib481de92007-09-25 17:54:57 -07003032 tx_status->retry_count = tx_resp->failure_frame;
3033 tx_status->queue_number = status & 0xff;
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02003034 tx_status->queue_length = tx_resp->failure_rts;
3035 tx_status->control.flags &= ~IEEE80211_TXCTL_AMPDU;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003036 tx_status->flags = iwl4965_is_tx_success(status)?
Zhu Yib481de92007-09-25 17:54:57 -07003037 IEEE80211_TX_STATUS_ACK : 0;
Ron Rindjunsky4c424e42008-03-04 18:09:27 -08003038 iwl4965_hwrate_to_tx_control(priv,
3039 le32_to_cpu(tx_resp->rate_n_flags),
3040 &tx_status->control);
Zhu Yib481de92007-09-25 17:54:57 -07003041 /* FIXME: code repetition end */
3042
3043 IWL_DEBUG_TX_REPLY("1 Frame 0x%x failure :%d\n",
3044 status & 0xff, tx_resp->failure_frame);
3045 IWL_DEBUG_TX_REPLY("Rate Info rate_n_flags=%x\n",
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003046 iwl4965_hw_get_rate_n_flags(tx_resp->rate_n_flags));
Zhu Yib481de92007-09-25 17:54:57 -07003047
3048 agg->wait_for_ba = 0;
3049 } else {
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003050 /* Two or more frames were attempted; expect block-ack */
Zhu Yib481de92007-09-25 17:54:57 -07003051 u64 bitmap = 0;
3052 int start = agg->start_idx;
3053
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003054 /* Construct bit-map of pending frames within Tx window */
Zhu Yib481de92007-09-25 17:54:57 -07003055 for (i = 0; i < agg->frame_count; i++) {
3056 u16 sc;
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02003057 status = le16_to_cpu(frame_status[i].status);
3058 seq = le16_to_cpu(frame_status[i].sequence);
Zhu Yib481de92007-09-25 17:54:57 -07003059 idx = SEQ_TO_INDEX(seq);
3060 txq_id = SEQ_TO_QUEUE(seq);
3061
3062 if (status & (AGG_TX_STATE_FEW_BYTES_MSK |
3063 AGG_TX_STATE_ABORT_MSK))
3064 continue;
3065
3066 IWL_DEBUG_TX_REPLY("FrameCnt = %d, txq_id=%d idx=%d\n",
3067 agg->frame_count, txq_id, idx);
3068
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003069 hdr = iwl4965_tx_queue_get_hdr(priv, txq_id, idx);
Zhu Yib481de92007-09-25 17:54:57 -07003070
3071 sc = le16_to_cpu(hdr->seq_ctrl);
3072 if (idx != (SEQ_TO_SN(sc) & 0xff)) {
3073 IWL_ERROR("BUG_ON idx doesn't match seq control"
3074 " idx=%d, seq_idx=%d, seq=%d\n",
3075 idx, SEQ_TO_SN(sc),
3076 hdr->seq_ctrl);
3077 return -1;
3078 }
3079
3080 IWL_DEBUG_TX_REPLY("AGG Frame i=%d idx %d seq=%d\n",
3081 i, idx, SEQ_TO_SN(sc));
3082
3083 sh = idx - start;
3084 if (sh > 64) {
3085 sh = (start - idx) + 0xff;
3086 bitmap = bitmap << sh;
3087 sh = 0;
3088 start = idx;
3089 } else if (sh < -64)
3090 sh = 0xff - (start - idx);
3091 else if (sh < 0) {
3092 sh = start - idx;
3093 start = idx;
3094 bitmap = bitmap << sh;
3095 sh = 0;
3096 }
3097 bitmap |= (1 << sh);
3098 IWL_DEBUG_TX_REPLY("start=%d bitmap=0x%x\n",
3099 start, (u32)(bitmap & 0xFFFFFFFF));
3100 }
3101
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02003102 agg->bitmap = bitmap;
Zhu Yib481de92007-09-25 17:54:57 -07003103 agg->start_idx = start;
3104 agg->rate_n_flags = le32_to_cpu(tx_resp->rate_n_flags);
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02003105 IWL_DEBUG_TX_REPLY("Frames %d start_idx=%d bitmap=0x%llx\n",
Zhu Yib481de92007-09-25 17:54:57 -07003106 agg->frame_count, agg->start_idx,
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02003107 agg->bitmap);
Zhu Yib481de92007-09-25 17:54:57 -07003108
3109 if (bitmap)
3110 agg->wait_for_ba = 1;
3111 }
3112 return 0;
3113}
3114#endif
Zhu Yib481de92007-09-25 17:54:57 -07003115
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003116/**
3117 * iwl4965_rx_reply_tx - Handle standard (non-aggregation) Tx response
3118 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003119static void iwl4965_rx_reply_tx(struct iwl_priv *priv,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003120 struct iwl4965_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003121{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003122 struct iwl4965_rx_packet *pkt = (void *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07003123 u16 sequence = le16_to_cpu(pkt->hdr.sequence);
3124 int txq_id = SEQ_TO_QUEUE(sequence);
3125 int index = SEQ_TO_INDEX(sequence);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003126 struct iwl4965_tx_queue *txq = &priv->txq[txq_id];
Zhu Yib481de92007-09-25 17:54:57 -07003127 struct ieee80211_tx_status *tx_status;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003128 struct iwl4965_tx_resp *tx_resp = (void *)&pkt->u.raw[0];
Zhu Yib481de92007-09-25 17:54:57 -07003129 u32 status = le32_to_cpu(tx_resp->status);
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003130#ifdef CONFIG_IWL4965_HT
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02003131 int tid = MAX_TID_COUNT, sta_id = IWL_INVALID_STATION;
3132 struct ieee80211_hdr *hdr;
3133 __le16 *qc;
Zhu Yib481de92007-09-25 17:54:57 -07003134#endif
3135
3136 if ((index >= txq->q.n_bd) || (x2_queue_used(&txq->q, index) == 0)) {
3137 IWL_ERROR("Read index for DMA queue txq_id (%d) index %d "
3138 "is out of range [0-%d] %d %d\n", txq_id,
Tomas Winklerfc4b6852007-10-25 17:15:24 +08003139 index, txq->q.n_bd, txq->q.write_ptr,
3140 txq->q.read_ptr);
Zhu Yib481de92007-09-25 17:54:57 -07003141 return;
3142 }
3143
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003144#ifdef CONFIG_IWL4965_HT
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02003145 hdr = iwl4965_tx_queue_get_hdr(priv, txq_id, index);
3146 qc = ieee80211_get_qos_ctrl(hdr);
Zhu Yib481de92007-09-25 17:54:57 -07003147
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02003148 if (qc)
Zhu Yib481de92007-09-25 17:54:57 -07003149 tid = le16_to_cpu(*qc) & 0xf;
3150
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02003151 sta_id = iwl4965_get_ra_sta_id(priv, hdr);
3152 if (txq->sched_retry && unlikely(sta_id == IWL_INVALID_STATION)) {
3153 IWL_ERROR("Station not known\n");
3154 return;
3155 }
3156
3157 if (txq->sched_retry) {
3158 const u32 scd_ssn = iwl4965_get_scd_ssn(tx_resp);
3159 struct iwl4965_ht_agg *agg = NULL;
3160
3161 if (!qc)
Zhu Yib481de92007-09-25 17:54:57 -07003162 return;
Zhu Yib481de92007-09-25 17:54:57 -07003163
3164 agg = &priv->stations[sta_id].tid[tid].agg;
3165
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02003166 iwl4965_tx_status_reply_tx(priv, agg,
3167 (struct iwl4965_tx_resp_agg *)tx_resp, index);
Zhu Yib481de92007-09-25 17:54:57 -07003168
3169 if ((tx_resp->frame_count == 1) &&
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003170 !iwl4965_is_tx_success(status)) {
Zhu Yib481de92007-09-25 17:54:57 -07003171 /* TODO: send BAR */
3172 }
3173
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02003174 if (txq->q.read_ptr != (scd_ssn & 0xff)) {
3175 int freed;
Tomas Winklerc54b6792008-03-06 17:36:53 -08003176 index = iwl_queue_dec_wrap(scd_ssn & 0xff, txq->q.n_bd);
Zhu Yib481de92007-09-25 17:54:57 -07003177 IWL_DEBUG_TX_REPLY("Retry scheduler reclaim scd_ssn "
3178 "%d index %d\n", scd_ssn , index);
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02003179 freed = iwl4965_tx_queue_reclaim(priv, txq_id, index);
3180 priv->stations[sta_id].tid[tid].tfds_in_queue -= freed;
3181
3182 if (iwl4965_queue_space(&txq->q) > txq->q.low_mark &&
3183 txq_id >= 0 && priv->mac80211_registered &&
3184 agg->state != IWL_EMPTYING_HW_QUEUE_DELBA)
3185 ieee80211_wake_queue(priv->hw, txq_id);
3186
3187 iwl4965_check_empty_hw_queue(priv, sta_id, tid, txq_id);
Zhu Yib481de92007-09-25 17:54:57 -07003188 }
3189 } else {
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003190#endif /* CONFIG_IWL4965_HT */
Tomas Winklerfc4b6852007-10-25 17:15:24 +08003191 tx_status = &(txq->txb[txq->q.read_ptr].status);
Zhu Yib481de92007-09-25 17:54:57 -07003192
3193 tx_status->retry_count = tx_resp->failure_frame;
3194 tx_status->queue_number = status;
3195 tx_status->queue_length = tx_resp->bt_kill_count;
3196 tx_status->queue_length |= tx_resp->failure_rts;
Zhu Yib481de92007-09-25 17:54:57 -07003197 tx_status->flags =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003198 iwl4965_is_tx_success(status) ? IEEE80211_TX_STATUS_ACK : 0;
Ron Rindjunsky4c424e42008-03-04 18:09:27 -08003199 iwl4965_hwrate_to_tx_control(priv, le32_to_cpu(tx_resp->rate_n_flags),
3200 &tx_status->control);
Zhu Yib481de92007-09-25 17:54:57 -07003201
Zhu Yib481de92007-09-25 17:54:57 -07003202 IWL_DEBUG_TX("Tx queue %d Status %s (0x%08x) rate_n_flags 0x%x "
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003203 "retries %d\n", txq_id, iwl4965_get_tx_fail_reason(status),
Zhu Yib481de92007-09-25 17:54:57 -07003204 status, le32_to_cpu(tx_resp->rate_n_flags),
3205 tx_resp->failure_frame);
3206
3207 IWL_DEBUG_TX_REPLY("Tx queue reclaim %d\n", index);
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02003208 if (index != -1) {
3209 int freed = iwl4965_tx_queue_reclaim(priv, txq_id, index);
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003210#ifdef CONFIG_IWL4965_HT
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02003211 if (tid != MAX_TID_COUNT)
3212 priv->stations[sta_id].tid[tid].tfds_in_queue -= freed;
3213 if (iwl4965_queue_space(&txq->q) > txq->q.low_mark &&
3214 (txq_id >= 0) &&
3215 priv->mac80211_registered)
3216 ieee80211_wake_queue(priv->hw, txq_id);
3217 if (tid != MAX_TID_COUNT)
3218 iwl4965_check_empty_hw_queue(priv, sta_id, tid, txq_id);
3219#endif
Zhu Yib481de92007-09-25 17:54:57 -07003220 }
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02003221#ifdef CONFIG_IWL4965_HT
3222 }
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003223#endif /* CONFIG_IWL4965_HT */
Zhu Yib481de92007-09-25 17:54:57 -07003224
3225 if (iwl_check_bits(status, TX_ABORT_REQUIRED_MSK))
3226 IWL_ERROR("TODO: Implement Tx ABORT REQUIRED!!!\n");
3227}
3228
3229
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003230static void iwl4965_rx_reply_alive(struct iwl_priv *priv,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003231 struct iwl4965_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003232{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003233 struct iwl4965_rx_packet *pkt = (void *)rxb->skb->data;
3234 struct iwl4965_alive_resp *palive;
Zhu Yib481de92007-09-25 17:54:57 -07003235 struct delayed_work *pwork;
3236
3237 palive = &pkt->u.alive_frame;
3238
3239 IWL_DEBUG_INFO("Alive ucode status 0x%08X revision "
3240 "0x%01X 0x%01X\n",
3241 palive->is_valid, palive->ver_type,
3242 palive->ver_subtype);
3243
3244 if (palive->ver_subtype == INITIALIZE_SUBTYPE) {
3245 IWL_DEBUG_INFO("Initialization Alive received.\n");
3246 memcpy(&priv->card_alive_init,
3247 &pkt->u.alive_frame,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003248 sizeof(struct iwl4965_init_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07003249 pwork = &priv->init_alive_start;
3250 } else {
3251 IWL_DEBUG_INFO("Runtime Alive received.\n");
3252 memcpy(&priv->card_alive, &pkt->u.alive_frame,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003253 sizeof(struct iwl4965_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07003254 pwork = &priv->alive_start;
3255 }
3256
3257 /* We delay the ALIVE response by 5ms to
3258 * give the HW RF Kill time to activate... */
3259 if (palive->is_valid == UCODE_VALID_OK)
3260 queue_delayed_work(priv->workqueue, pwork,
3261 msecs_to_jiffies(5));
3262 else
3263 IWL_WARNING("uCode did not respond OK.\n");
3264}
3265
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003266static void iwl4965_rx_reply_add_sta(struct iwl_priv *priv,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003267 struct iwl4965_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003268{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003269 struct iwl4965_rx_packet *pkt = (void *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07003270
3271 IWL_DEBUG_RX("Received REPLY_ADD_STA: 0x%02X\n", pkt->u.status);
3272 return;
3273}
3274
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003275static void iwl4965_rx_reply_error(struct iwl_priv *priv,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003276 struct iwl4965_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003277{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003278 struct iwl4965_rx_packet *pkt = (void *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07003279
3280 IWL_ERROR("Error Reply type 0x%08X cmd %s (0x%02X) "
3281 "seq 0x%04X ser 0x%08X\n",
3282 le32_to_cpu(pkt->u.err_resp.error_type),
3283 get_cmd_string(pkt->u.err_resp.cmd_id),
3284 pkt->u.err_resp.cmd_id,
3285 le16_to_cpu(pkt->u.err_resp.bad_cmd_seq_num),
3286 le32_to_cpu(pkt->u.err_resp.error_info));
3287}
3288
3289#define TX_STATUS_ENTRY(x) case TX_STATUS_FAIL_ ## x: return #x
3290
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003291static void iwl4965_rx_csa(struct iwl_priv *priv, struct iwl4965_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003292{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003293 struct iwl4965_rx_packet *pkt = (void *)rxb->skb->data;
3294 struct iwl4965_rxon_cmd *rxon = (void *)&priv->active_rxon;
3295 struct iwl4965_csa_notification *csa = &(pkt->u.csa_notif);
Zhu Yib481de92007-09-25 17:54:57 -07003296 IWL_DEBUG_11H("CSA notif: channel %d, status %d\n",
3297 le16_to_cpu(csa->channel), le32_to_cpu(csa->status));
3298 rxon->channel = csa->channel;
3299 priv->staging_rxon.channel = csa->channel;
3300}
3301
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003302static void iwl4965_rx_spectrum_measure_notif(struct iwl_priv *priv,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003303 struct iwl4965_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003304{
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003305#ifdef CONFIG_IWL4965_SPECTRUM_MEASUREMENT
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003306 struct iwl4965_rx_packet *pkt = (void *)rxb->skb->data;
3307 struct iwl4965_spectrum_notification *report = &(pkt->u.spectrum_notif);
Zhu Yib481de92007-09-25 17:54:57 -07003308
3309 if (!report->state) {
3310 IWL_DEBUG(IWL_DL_11H | IWL_DL_INFO,
3311 "Spectrum Measure Notification: Start\n");
3312 return;
3313 }
3314
3315 memcpy(&priv->measure_report, report, sizeof(*report));
3316 priv->measurement_status |= MEASUREMENT_READY;
3317#endif
3318}
3319
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003320static void iwl4965_rx_pm_sleep_notif(struct iwl_priv *priv,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003321 struct iwl4965_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003322{
Tomas Winkler0a6857e2008-03-12 16:58:49 -07003323#ifdef CONFIG_IWLWIFI_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003324 struct iwl4965_rx_packet *pkt = (void *)rxb->skb->data;
3325 struct iwl4965_sleep_notification *sleep = &(pkt->u.sleep_notif);
Zhu Yib481de92007-09-25 17:54:57 -07003326 IWL_DEBUG_RX("sleep mode: %d, src: %d\n",
3327 sleep->pm_sleep_mode, sleep->pm_wakeup_src);
3328#endif
3329}
3330
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003331static void iwl4965_rx_pm_debug_statistics_notif(struct iwl_priv *priv,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003332 struct iwl4965_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003333{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003334 struct iwl4965_rx_packet *pkt = (void *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07003335 IWL_DEBUG_RADIO("Dumping %d bytes of unhandled "
3336 "notification for %s:\n",
3337 le32_to_cpu(pkt->len), get_cmd_string(pkt->hdr.cmd));
Tomas Winkler0a6857e2008-03-12 16:58:49 -07003338 iwl_print_hex_dump(IWL_DL_RADIO, pkt->u.raw, le32_to_cpu(pkt->len));
Zhu Yib481de92007-09-25 17:54:57 -07003339}
3340
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003341static void iwl4965_bg_beacon_update(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -07003342{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003343 struct iwl_priv *priv =
3344 container_of(work, struct iwl_priv, beacon_update);
Zhu Yib481de92007-09-25 17:54:57 -07003345 struct sk_buff *beacon;
3346
3347 /* Pull updated AP beacon from mac80211. will fail if not in AP mode */
Johannes Berg32bfd352007-12-19 01:31:26 +01003348 beacon = ieee80211_beacon_get(priv->hw, priv->vif, NULL);
Zhu Yib481de92007-09-25 17:54:57 -07003349
3350 if (!beacon) {
3351 IWL_ERROR("update beacon failed\n");
3352 return;
3353 }
3354
3355 mutex_lock(&priv->mutex);
3356 /* new beacon skb is allocated every time; dispose previous.*/
3357 if (priv->ibss_beacon)
3358 dev_kfree_skb(priv->ibss_beacon);
3359
3360 priv->ibss_beacon = beacon;
3361 mutex_unlock(&priv->mutex);
3362
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003363 iwl4965_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003364}
3365
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003366static void iwl4965_rx_beacon_notif(struct iwl_priv *priv,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003367 struct iwl4965_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003368{
Tomas Winkler0a6857e2008-03-12 16:58:49 -07003369#ifdef CONFIG_IWLWIFI_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003370 struct iwl4965_rx_packet *pkt = (void *)rxb->skb->data;
3371 struct iwl4965_beacon_notif *beacon = &(pkt->u.beacon_status);
3372 u8 rate = iwl4965_hw_get_rate(beacon->beacon_notify_hdr.rate_n_flags);
Zhu Yib481de92007-09-25 17:54:57 -07003373
3374 IWL_DEBUG_RX("beacon status %x retries %d iss %d "
3375 "tsf %d %d rate %d\n",
3376 le32_to_cpu(beacon->beacon_notify_hdr.status) & TX_STATUS_MSK,
3377 beacon->beacon_notify_hdr.failure_frame,
3378 le32_to_cpu(beacon->ibss_mgr_status),
3379 le32_to_cpu(beacon->high_tsf),
3380 le32_to_cpu(beacon->low_tsf), rate);
3381#endif
3382
3383 if ((priv->iw_mode == IEEE80211_IF_TYPE_AP) &&
3384 (!test_bit(STATUS_EXIT_PENDING, &priv->status)))
3385 queue_work(priv->workqueue, &priv->beacon_update);
3386}
3387
3388/* Service response to REPLY_SCAN_CMD (0x80) */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003389static void iwl4965_rx_reply_scan(struct iwl_priv *priv,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003390 struct iwl4965_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003391{
Tomas Winkler0a6857e2008-03-12 16:58:49 -07003392#ifdef CONFIG_IWLWIFI_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003393 struct iwl4965_rx_packet *pkt = (void *)rxb->skb->data;
3394 struct iwl4965_scanreq_notification *notif =
3395 (struct iwl4965_scanreq_notification *)pkt->u.raw;
Zhu Yib481de92007-09-25 17:54:57 -07003396
3397 IWL_DEBUG_RX("Scan request status = 0x%x\n", notif->status);
3398#endif
3399}
3400
3401/* Service SCAN_START_NOTIFICATION (0x82) */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003402static void iwl4965_rx_scan_start_notif(struct iwl_priv *priv,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003403 struct iwl4965_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003404{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003405 struct iwl4965_rx_packet *pkt = (void *)rxb->skb->data;
3406 struct iwl4965_scanstart_notification *notif =
3407 (struct iwl4965_scanstart_notification *)pkt->u.raw;
Zhu Yib481de92007-09-25 17:54:57 -07003408 priv->scan_start_tsf = le32_to_cpu(notif->tsf_low);
3409 IWL_DEBUG_SCAN("Scan start: "
3410 "%d [802.11%s] "
3411 "(TSF: 0x%08X:%08X) - %d (beacon timer %u)\n",
3412 notif->channel,
3413 notif->band ? "bg" : "a",
3414 notif->tsf_high,
3415 notif->tsf_low, notif->status, notif->beacon_timer);
3416}
3417
3418/* Service SCAN_RESULTS_NOTIFICATION (0x83) */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003419static void iwl4965_rx_scan_results_notif(struct iwl_priv *priv,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003420 struct iwl4965_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003421{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003422 struct iwl4965_rx_packet *pkt = (void *)rxb->skb->data;
3423 struct iwl4965_scanresults_notification *notif =
3424 (struct iwl4965_scanresults_notification *)pkt->u.raw;
Zhu Yib481de92007-09-25 17:54:57 -07003425
3426 IWL_DEBUG_SCAN("Scan ch.res: "
3427 "%d [802.11%s] "
3428 "(TSF: 0x%08X:%08X) - %d "
3429 "elapsed=%lu usec (%dms since last)\n",
3430 notif->channel,
3431 notif->band ? "bg" : "a",
3432 le32_to_cpu(notif->tsf_high),
3433 le32_to_cpu(notif->tsf_low),
3434 le32_to_cpu(notif->statistics[0]),
3435 le32_to_cpu(notif->tsf_low) - priv->scan_start_tsf,
3436 jiffies_to_msecs(elapsed_jiffies
3437 (priv->last_scan_jiffies, jiffies)));
3438
3439 priv->last_scan_jiffies = jiffies;
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08003440 priv->next_scan_jiffies = 0;
Zhu Yib481de92007-09-25 17:54:57 -07003441}
3442
3443/* Service SCAN_COMPLETE_NOTIFICATION (0x84) */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003444static void iwl4965_rx_scan_complete_notif(struct iwl_priv *priv,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003445 struct iwl4965_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003446{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003447 struct iwl4965_rx_packet *pkt = (void *)rxb->skb->data;
3448 struct iwl4965_scancomplete_notification *scan_notif = (void *)pkt->u.raw;
Zhu Yib481de92007-09-25 17:54:57 -07003449
3450 IWL_DEBUG_SCAN("Scan complete: %d channels (TSF 0x%08X:%08X) - %d\n",
3451 scan_notif->scanned_channels,
3452 scan_notif->tsf_low,
3453 scan_notif->tsf_high, scan_notif->status);
3454
3455 /* The HW is no longer scanning */
3456 clear_bit(STATUS_SCAN_HW, &priv->status);
3457
3458 /* The scan completion notification came in, so kill that timer... */
3459 cancel_delayed_work(&priv->scan_check);
3460
3461 IWL_DEBUG_INFO("Scan pass on %sGHz took %dms\n",
3462 (priv->scan_bands == 2) ? "2.4" : "5.2",
3463 jiffies_to_msecs(elapsed_jiffies
3464 (priv->scan_pass_start, jiffies)));
3465
3466 /* Remove this scanned band from the list
3467 * of pending bands to scan */
3468 priv->scan_bands--;
3469
3470 /* If a request to abort was given, or the scan did not succeed
3471 * then we reset the scan state machine and terminate,
3472 * re-queuing another scan if one has been requested */
3473 if (test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
3474 IWL_DEBUG_INFO("Aborted scan completed.\n");
3475 clear_bit(STATUS_SCAN_ABORTING, &priv->status);
3476 } else {
3477 /* If there are more bands on this scan pass reschedule */
3478 if (priv->scan_bands > 0)
3479 goto reschedule;
3480 }
3481
3482 priv->last_scan_jiffies = jiffies;
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08003483 priv->next_scan_jiffies = 0;
Zhu Yib481de92007-09-25 17:54:57 -07003484 IWL_DEBUG_INFO("Setting scan to off\n");
3485
3486 clear_bit(STATUS_SCANNING, &priv->status);
3487
3488 IWL_DEBUG_INFO("Scan took %dms\n",
3489 jiffies_to_msecs(elapsed_jiffies(priv->scan_start, jiffies)));
3490
3491 queue_work(priv->workqueue, &priv->scan_completed);
3492
3493 return;
3494
3495reschedule:
3496 priv->scan_pass_start = jiffies;
3497 queue_work(priv->workqueue, &priv->request_scan);
3498}
3499
3500/* Handle notification from uCode that card's power state is changing
3501 * due to software, hardware, or critical temperature RFKILL */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003502static void iwl4965_rx_card_state_notif(struct iwl_priv *priv,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003503 struct iwl4965_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003504{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003505 struct iwl4965_rx_packet *pkt = (void *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07003506 u32 flags = le32_to_cpu(pkt->u.card_state_notif.flags);
3507 unsigned long status = priv->status;
3508
3509 IWL_DEBUG_RF_KILL("Card state received: HW:%s SW:%s\n",
3510 (flags & HW_CARD_DISABLED) ? "Kill" : "On",
3511 (flags & SW_CARD_DISABLED) ? "Kill" : "On");
3512
3513 if (flags & (SW_CARD_DISABLED | HW_CARD_DISABLED |
3514 RF_CARD_DISABLED)) {
3515
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003516 iwl4965_write32(priv, CSR_UCODE_DRV_GP1_SET,
Zhu Yib481de92007-09-25 17:54:57 -07003517 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
3518
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003519 if (!iwl4965_grab_nic_access(priv)) {
3520 iwl4965_write_direct32(
Zhu Yib481de92007-09-25 17:54:57 -07003521 priv, HBUS_TARG_MBX_C,
3522 HBUS_TARG_MBX_C_REG_BIT_CMD_BLOCKED);
3523
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003524 iwl4965_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003525 }
3526
3527 if (!(flags & RXON_CARD_DISABLED)) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003528 iwl4965_write32(priv, CSR_UCODE_DRV_GP1_CLR,
Zhu Yib481de92007-09-25 17:54:57 -07003529 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003530 if (!iwl4965_grab_nic_access(priv)) {
3531 iwl4965_write_direct32(
Zhu Yib481de92007-09-25 17:54:57 -07003532 priv, HBUS_TARG_MBX_C,
3533 HBUS_TARG_MBX_C_REG_BIT_CMD_BLOCKED);
3534
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003535 iwl4965_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003536 }
3537 }
3538
3539 if (flags & RF_CARD_DISABLED) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003540 iwl4965_write32(priv, CSR_UCODE_DRV_GP1_SET,
Zhu Yib481de92007-09-25 17:54:57 -07003541 CSR_UCODE_DRV_GP1_REG_BIT_CT_KILL_EXIT);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003542 iwl4965_read32(priv, CSR_UCODE_DRV_GP1);
3543 if (!iwl4965_grab_nic_access(priv))
3544 iwl4965_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003545 }
3546 }
3547
3548 if (flags & HW_CARD_DISABLED)
3549 set_bit(STATUS_RF_KILL_HW, &priv->status);
3550 else
3551 clear_bit(STATUS_RF_KILL_HW, &priv->status);
3552
3553
3554 if (flags & SW_CARD_DISABLED)
3555 set_bit(STATUS_RF_KILL_SW, &priv->status);
3556 else
3557 clear_bit(STATUS_RF_KILL_SW, &priv->status);
3558
3559 if (!(flags & RXON_CARD_DISABLED))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003560 iwl4965_scan_cancel(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003561
3562 if ((test_bit(STATUS_RF_KILL_HW, &status) !=
3563 test_bit(STATUS_RF_KILL_HW, &priv->status)) ||
3564 (test_bit(STATUS_RF_KILL_SW, &status) !=
3565 test_bit(STATUS_RF_KILL_SW, &priv->status)))
3566 queue_work(priv->workqueue, &priv->rf_kill);
3567 else
3568 wake_up_interruptible(&priv->wait_command_queue);
3569}
3570
3571/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003572 * iwl4965_setup_rx_handlers - Initialize Rx handler callbacks
Zhu Yib481de92007-09-25 17:54:57 -07003573 *
3574 * Setup the RX handlers for each of the reply types sent from the uCode
3575 * to the host.
3576 *
3577 * This function chains into the hardware specific files for them to setup
3578 * any hardware specific handlers as well.
3579 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003580static void iwl4965_setup_rx_handlers(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003581{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003582 priv->rx_handlers[REPLY_ALIVE] = iwl4965_rx_reply_alive;
3583 priv->rx_handlers[REPLY_ADD_STA] = iwl4965_rx_reply_add_sta;
3584 priv->rx_handlers[REPLY_ERROR] = iwl4965_rx_reply_error;
3585 priv->rx_handlers[CHANNEL_SWITCH_NOTIFICATION] = iwl4965_rx_csa;
Zhu Yib481de92007-09-25 17:54:57 -07003586 priv->rx_handlers[SPECTRUM_MEASURE_NOTIFICATION] =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003587 iwl4965_rx_spectrum_measure_notif;
3588 priv->rx_handlers[PM_SLEEP_NOTIFICATION] = iwl4965_rx_pm_sleep_notif;
Zhu Yib481de92007-09-25 17:54:57 -07003589 priv->rx_handlers[PM_DEBUG_STATISTIC_NOTIFIC] =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003590 iwl4965_rx_pm_debug_statistics_notif;
3591 priv->rx_handlers[BEACON_NOTIFICATION] = iwl4965_rx_beacon_notif;
Zhu Yib481de92007-09-25 17:54:57 -07003592
Ben Cahill9fbab512007-11-29 11:09:47 +08003593 /*
3594 * The same handler is used for both the REPLY to a discrete
3595 * statistics request from the host as well as for the periodic
3596 * statistics notifications (after received beacons) from the uCode.
Zhu Yib481de92007-09-25 17:54:57 -07003597 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003598 priv->rx_handlers[REPLY_STATISTICS_CMD] = iwl4965_hw_rx_statistics;
3599 priv->rx_handlers[STATISTICS_NOTIFICATION] = iwl4965_hw_rx_statistics;
Zhu Yib481de92007-09-25 17:54:57 -07003600
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003601 priv->rx_handlers[REPLY_SCAN_CMD] = iwl4965_rx_reply_scan;
3602 priv->rx_handlers[SCAN_START_NOTIFICATION] = iwl4965_rx_scan_start_notif;
Zhu Yib481de92007-09-25 17:54:57 -07003603 priv->rx_handlers[SCAN_RESULTS_NOTIFICATION] =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003604 iwl4965_rx_scan_results_notif;
Zhu Yib481de92007-09-25 17:54:57 -07003605 priv->rx_handlers[SCAN_COMPLETE_NOTIFICATION] =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003606 iwl4965_rx_scan_complete_notif;
3607 priv->rx_handlers[CARD_STATE_NOTIFICATION] = iwl4965_rx_card_state_notif;
3608 priv->rx_handlers[REPLY_TX] = iwl4965_rx_reply_tx;
Zhu Yib481de92007-09-25 17:54:57 -07003609
Ben Cahill9fbab512007-11-29 11:09:47 +08003610 /* Set up hardware specific Rx handlers */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003611 iwl4965_hw_rx_handler_setup(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003612}
3613
3614/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003615 * iwl4965_tx_cmd_complete - Pull unused buffers off the queue and reclaim them
Zhu Yib481de92007-09-25 17:54:57 -07003616 * @rxb: Rx buffer to reclaim
3617 *
3618 * If an Rx buffer has an async callback associated with it the callback
3619 * will be executed. The attached skb (if present) will only be freed
3620 * if the callback returns 1
3621 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003622static void iwl4965_tx_cmd_complete(struct iwl_priv *priv,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003623 struct iwl4965_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003624{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003625 struct iwl4965_rx_packet *pkt = (struct iwl4965_rx_packet *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07003626 u16 sequence = le16_to_cpu(pkt->hdr.sequence);
3627 int txq_id = SEQ_TO_QUEUE(sequence);
3628 int index = SEQ_TO_INDEX(sequence);
3629 int huge = sequence & SEQ_HUGE_FRAME;
3630 int cmd_index;
Tomas Winkler857485c2008-03-21 13:53:44 -07003631 struct iwl_cmd *cmd;
Zhu Yib481de92007-09-25 17:54:57 -07003632
3633 /* If a Tx command is being handled and it isn't in the actual
3634 * command queue then there a command routing bug has been introduced
3635 * in the queue management code. */
3636 if (txq_id != IWL_CMD_QUEUE_NUM)
3637 IWL_ERROR("Error wrong command queue %d command id 0x%X\n",
3638 txq_id, pkt->hdr.cmd);
3639 BUG_ON(txq_id != IWL_CMD_QUEUE_NUM);
3640
3641 cmd_index = get_cmd_index(&priv->txq[IWL_CMD_QUEUE_NUM].q, index, huge);
3642 cmd = &priv->txq[IWL_CMD_QUEUE_NUM].cmd[cmd_index];
3643
3644 /* Input error checking is done when commands are added to queue. */
3645 if (cmd->meta.flags & CMD_WANT_SKB) {
3646 cmd->meta.source->u.skb = rxb->skb;
3647 rxb->skb = NULL;
3648 } else if (cmd->meta.u.callback &&
3649 !cmd->meta.u.callback(priv, cmd, rxb->skb))
3650 rxb->skb = NULL;
3651
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003652 iwl4965_tx_queue_reclaim(priv, txq_id, index);
Zhu Yib481de92007-09-25 17:54:57 -07003653
3654 if (!(cmd->meta.flags & CMD_ASYNC)) {
3655 clear_bit(STATUS_HCMD_ACTIVE, &priv->status);
3656 wake_up_interruptible(&priv->wait_command_queue);
3657 }
3658}
3659
3660/************************** RX-FUNCTIONS ****************************/
3661/*
3662 * Rx theory of operation
3663 *
Ben Cahill9fbab512007-11-29 11:09:47 +08003664 * Driver allocates a circular buffer of Receive Buffer Descriptors (RBDs),
3665 * each of which point to Receive Buffers to be filled by 4965. These get
3666 * used not only for Rx frames, but for any command response or notification
3667 * from the 4965. The driver and 4965 manage the Rx buffers by means
3668 * of indexes into the circular buffer.
Zhu Yib481de92007-09-25 17:54:57 -07003669 *
3670 * Rx Queue Indexes
3671 * The host/firmware share two index registers for managing the Rx buffers.
3672 *
3673 * The READ index maps to the first position that the firmware may be writing
3674 * to -- the driver can read up to (but not including) this position and get
3675 * good data.
3676 * The READ index is managed by the firmware once the card is enabled.
3677 *
3678 * The WRITE index maps to the last position the driver has read from -- the
3679 * position preceding WRITE is the last slot the firmware can place a packet.
3680 *
3681 * The queue is empty (no good data) if WRITE = READ - 1, and is full if
3682 * WRITE = READ.
3683 *
Ben Cahill9fbab512007-11-29 11:09:47 +08003684 * During initialization, the host sets up the READ queue position to the first
Zhu Yib481de92007-09-25 17:54:57 -07003685 * INDEX position, and WRITE to the last (READ - 1 wrapped)
3686 *
Ben Cahill9fbab512007-11-29 11:09:47 +08003687 * When the firmware places a packet in a buffer, it will advance the READ index
Zhu Yib481de92007-09-25 17:54:57 -07003688 * and fire the RX interrupt. The driver can then query the READ index and
3689 * process as many packets as possible, moving the WRITE index forward as it
3690 * resets the Rx queue buffers with new memory.
3691 *
3692 * The management in the driver is as follows:
3693 * + A list of pre-allocated SKBs is stored in iwl->rxq->rx_free. When
3694 * iwl->rxq->free_count drops to or below RX_LOW_WATERMARK, work is scheduled
Ian Schram01ebd062007-10-25 17:15:22 +08003695 * to replenish the iwl->rxq->rx_free.
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003696 * + In iwl4965_rx_replenish (scheduled) if 'processed' != 'read' then the
Zhu Yib481de92007-09-25 17:54:57 -07003697 * iwl->rxq is replenished and the READ INDEX is updated (updating the
3698 * 'processed' and 'read' driver indexes as well)
3699 * + A received packet is processed and handed to the kernel network stack,
3700 * detached from the iwl->rxq. The driver 'processed' index is updated.
3701 * + The Host/Firmware iwl->rxq is replenished at tasklet time from the rx_free
3702 * list. If there are no allocated buffers in iwl->rxq->rx_free, the READ
3703 * INDEX is not incremented and iwl->status(RX_STALLED) is set. If there
3704 * were enough free buffers and RX_STALLED is set it is cleared.
3705 *
3706 *
3707 * Driver sequence:
3708 *
Ben Cahill9fbab512007-11-29 11:09:47 +08003709 * iwl4965_rx_queue_alloc() Allocates rx_free
3710 * iwl4965_rx_replenish() Replenishes rx_free list from rx_used, and calls
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003711 * iwl4965_rx_queue_restock
Ben Cahill9fbab512007-11-29 11:09:47 +08003712 * iwl4965_rx_queue_restock() Moves available buffers from rx_free into Rx
Zhu Yib481de92007-09-25 17:54:57 -07003713 * queue, updates firmware pointers, and updates
3714 * the WRITE index. If insufficient rx_free buffers
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003715 * are available, schedules iwl4965_rx_replenish
Zhu Yib481de92007-09-25 17:54:57 -07003716 *
3717 * -- enable interrupts --
Ben Cahill9fbab512007-11-29 11:09:47 +08003718 * ISR - iwl4965_rx() Detach iwl4965_rx_mem_buffers from pool up to the
Zhu Yib481de92007-09-25 17:54:57 -07003719 * READ INDEX, detaching the SKB from the pool.
3720 * Moves the packet buffer from queue to rx_used.
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003721 * Calls iwl4965_rx_queue_restock to refill any empty
Zhu Yib481de92007-09-25 17:54:57 -07003722 * slots.
3723 * ...
3724 *
3725 */
3726
3727/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003728 * iwl4965_rx_queue_space - Return number of free slots available in queue.
Zhu Yib481de92007-09-25 17:54:57 -07003729 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003730static int iwl4965_rx_queue_space(const struct iwl4965_rx_queue *q)
Zhu Yib481de92007-09-25 17:54:57 -07003731{
3732 int s = q->read - q->write;
3733 if (s <= 0)
3734 s += RX_QUEUE_SIZE;
3735 /* keep some buffer to not confuse full and empty queue */
3736 s -= 2;
3737 if (s < 0)
3738 s = 0;
3739 return s;
3740}
3741
3742/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003743 * iwl4965_rx_queue_update_write_ptr - Update the write pointer for the RX queue
Zhu Yib481de92007-09-25 17:54:57 -07003744 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003745int iwl4965_rx_queue_update_write_ptr(struct iwl_priv *priv, struct iwl4965_rx_queue *q)
Zhu Yib481de92007-09-25 17:54:57 -07003746{
3747 u32 reg = 0;
3748 int rc = 0;
3749 unsigned long flags;
3750
3751 spin_lock_irqsave(&q->lock, flags);
3752
3753 if (q->need_update == 0)
3754 goto exit_unlock;
3755
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003756 /* If power-saving is in use, make sure device is awake */
Zhu Yib481de92007-09-25 17:54:57 -07003757 if (test_bit(STATUS_POWER_PMI, &priv->status)) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003758 reg = iwl4965_read32(priv, CSR_UCODE_DRV_GP1);
Zhu Yib481de92007-09-25 17:54:57 -07003759
3760 if (reg & CSR_UCODE_DRV_GP1_BIT_MAC_SLEEP) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003761 iwl4965_set_bit(priv, CSR_GP_CNTRL,
Zhu Yib481de92007-09-25 17:54:57 -07003762 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
3763 goto exit_unlock;
3764 }
3765
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003766 rc = iwl4965_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003767 if (rc)
3768 goto exit_unlock;
3769
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003770 /* Device expects a multiple of 8 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003771 iwl4965_write_direct32(priv, FH_RSCSR_CHNL0_WPTR,
Zhu Yib481de92007-09-25 17:54:57 -07003772 q->write & ~0x7);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003773 iwl4965_release_nic_access(priv);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003774
3775 /* Else device is assumed to be awake */
Zhu Yib481de92007-09-25 17:54:57 -07003776 } else
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003777 /* Device expects a multiple of 8 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003778 iwl4965_write32(priv, FH_RSCSR_CHNL0_WPTR, q->write & ~0x7);
Zhu Yib481de92007-09-25 17:54:57 -07003779
3780
3781 q->need_update = 0;
3782
3783 exit_unlock:
3784 spin_unlock_irqrestore(&q->lock, flags);
3785 return rc;
3786}
3787
3788/**
Ben Cahill9fbab512007-11-29 11:09:47 +08003789 * iwl4965_dma_addr2rbd_ptr - convert a DMA address to a uCode read buffer ptr
Zhu Yib481de92007-09-25 17:54:57 -07003790 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003791static inline __le32 iwl4965_dma_addr2rbd_ptr(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07003792 dma_addr_t dma_addr)
3793{
3794 return cpu_to_le32((u32)(dma_addr >> 8));
3795}
3796
3797
3798/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003799 * iwl4965_rx_queue_restock - refill RX queue from pre-allocated pool
Zhu Yib481de92007-09-25 17:54:57 -07003800 *
Ben Cahill9fbab512007-11-29 11:09:47 +08003801 * If there are slots in the RX queue that need to be restocked,
Zhu Yib481de92007-09-25 17:54:57 -07003802 * and we have free pre-allocated buffers, fill the ranks as much
Ben Cahill9fbab512007-11-29 11:09:47 +08003803 * as we can, pulling from rx_free.
Zhu Yib481de92007-09-25 17:54:57 -07003804 *
3805 * This moves the 'write' index forward to catch up with 'processed', and
3806 * also updates the memory address in the firmware to reference the new
3807 * target buffer.
3808 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003809static int iwl4965_rx_queue_restock(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003810{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003811 struct iwl4965_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07003812 struct list_head *element;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003813 struct iwl4965_rx_mem_buffer *rxb;
Zhu Yib481de92007-09-25 17:54:57 -07003814 unsigned long flags;
3815 int write, rc;
3816
3817 spin_lock_irqsave(&rxq->lock, flags);
3818 write = rxq->write & ~0x7;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003819 while ((iwl4965_rx_queue_space(rxq) > 0) && (rxq->free_count)) {
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003820 /* Get next free Rx buffer, remove from free list */
Zhu Yib481de92007-09-25 17:54:57 -07003821 element = rxq->rx_free.next;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003822 rxb = list_entry(element, struct iwl4965_rx_mem_buffer, list);
Zhu Yib481de92007-09-25 17:54:57 -07003823 list_del(element);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003824
3825 /* Point to Rx buffer via next RBD in circular buffer */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003826 rxq->bd[rxq->write] = iwl4965_dma_addr2rbd_ptr(priv, rxb->dma_addr);
Zhu Yib481de92007-09-25 17:54:57 -07003827 rxq->queue[rxq->write] = rxb;
3828 rxq->write = (rxq->write + 1) & RX_QUEUE_MASK;
3829 rxq->free_count--;
3830 }
3831 spin_unlock_irqrestore(&rxq->lock, flags);
3832 /* If the pre-allocated buffer pool is dropping low, schedule to
3833 * refill it */
3834 if (rxq->free_count <= RX_LOW_WATERMARK)
3835 queue_work(priv->workqueue, &priv->rx_replenish);
3836
3837
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003838 /* If we've added more space for the firmware to place data, tell it.
3839 * Increment device's write pointer in multiples of 8. */
Zhu Yib481de92007-09-25 17:54:57 -07003840 if ((write != (rxq->write & ~0x7))
3841 || (abs(rxq->write - rxq->read) > 7)) {
3842 spin_lock_irqsave(&rxq->lock, flags);
3843 rxq->need_update = 1;
3844 spin_unlock_irqrestore(&rxq->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003845 rc = iwl4965_rx_queue_update_write_ptr(priv, rxq);
Zhu Yib481de92007-09-25 17:54:57 -07003846 if (rc)
3847 return rc;
3848 }
3849
3850 return 0;
3851}
3852
3853/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003854 * iwl4965_rx_replenish - Move all used packet from rx_used to rx_free
Zhu Yib481de92007-09-25 17:54:57 -07003855 *
3856 * When moving to rx_free an SKB is allocated for the slot.
3857 *
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003858 * Also restock the Rx queue via iwl4965_rx_queue_restock.
Ian Schram01ebd062007-10-25 17:15:22 +08003859 * This is called as a scheduled work item (except for during initialization)
Zhu Yib481de92007-09-25 17:54:57 -07003860 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003861static void iwl4965_rx_allocate(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003862{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003863 struct iwl4965_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07003864 struct list_head *element;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003865 struct iwl4965_rx_mem_buffer *rxb;
Zhu Yib481de92007-09-25 17:54:57 -07003866 unsigned long flags;
3867 spin_lock_irqsave(&rxq->lock, flags);
3868 while (!list_empty(&rxq->rx_used)) {
3869 element = rxq->rx_used.next;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003870 rxb = list_entry(element, struct iwl4965_rx_mem_buffer, list);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003871
3872 /* Alloc a new receive buffer */
Zhu Yib481de92007-09-25 17:54:57 -07003873 rxb->skb =
Ron Rindjunsky9ee1ba42007-11-26 16:14:42 +02003874 alloc_skb(priv->hw_setting.rx_buf_size,
3875 __GFP_NOWARN | GFP_ATOMIC);
Zhu Yib481de92007-09-25 17:54:57 -07003876 if (!rxb->skb) {
3877 if (net_ratelimit())
3878 printk(KERN_CRIT DRV_NAME
3879 ": Can not allocate SKB buffers\n");
3880 /* We don't reschedule replenish work here -- we will
3881 * call the restock method and if it still needs
3882 * more buffers it will schedule replenish */
3883 break;
3884 }
3885 priv->alloc_rxb_skb++;
3886 list_del(element);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003887
3888 /* Get physical address of RB/SKB */
Zhu Yib481de92007-09-25 17:54:57 -07003889 rxb->dma_addr =
3890 pci_map_single(priv->pci_dev, rxb->skb->data,
Ron Rindjunsky9ee1ba42007-11-26 16:14:42 +02003891 priv->hw_setting.rx_buf_size, PCI_DMA_FROMDEVICE);
Zhu Yib481de92007-09-25 17:54:57 -07003892 list_add_tail(&rxb->list, &rxq->rx_free);
3893 rxq->free_count++;
3894 }
3895 spin_unlock_irqrestore(&rxq->lock, flags);
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003896}
3897
3898/*
3899 * this should be called while priv->lock is locked
3900*/
Tomas Winkler4fd1f842007-12-05 20:59:58 +02003901static void __iwl4965_rx_replenish(void *data)
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003902{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003903 struct iwl_priv *priv = data;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003904
3905 iwl4965_rx_allocate(priv);
3906 iwl4965_rx_queue_restock(priv);
3907}
3908
3909
3910void iwl4965_rx_replenish(void *data)
3911{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003912 struct iwl_priv *priv = data;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08003913 unsigned long flags;
3914
3915 iwl4965_rx_allocate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003916
3917 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003918 iwl4965_rx_queue_restock(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003919 spin_unlock_irqrestore(&priv->lock, flags);
3920}
3921
3922/* Assumes that the skb field of the buffers in 'pool' is kept accurate.
Ben Cahill9fbab512007-11-29 11:09:47 +08003923 * If an SKB has been detached, the POOL needs to have its SKB set to NULL
Zhu Yib481de92007-09-25 17:54:57 -07003924 * This free routine walks the list of POOL entries and if SKB is set to
3925 * non NULL it is unmapped and freed
3926 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003927static void iwl4965_rx_queue_free(struct iwl_priv *priv, struct iwl4965_rx_queue *rxq)
Zhu Yib481de92007-09-25 17:54:57 -07003928{
3929 int i;
3930 for (i = 0; i < RX_QUEUE_SIZE + RX_FREE_BUFFERS; i++) {
3931 if (rxq->pool[i].skb != NULL) {
3932 pci_unmap_single(priv->pci_dev,
3933 rxq->pool[i].dma_addr,
Ron Rindjunsky9ee1ba42007-11-26 16:14:42 +02003934 priv->hw_setting.rx_buf_size,
3935 PCI_DMA_FROMDEVICE);
Zhu Yib481de92007-09-25 17:54:57 -07003936 dev_kfree_skb(rxq->pool[i].skb);
3937 }
3938 }
3939
3940 pci_free_consistent(priv->pci_dev, 4 * RX_QUEUE_SIZE, rxq->bd,
3941 rxq->dma_addr);
3942 rxq->bd = NULL;
3943}
3944
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003945int iwl4965_rx_queue_alloc(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003946{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003947 struct iwl4965_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07003948 struct pci_dev *dev = priv->pci_dev;
3949 int i;
3950
3951 spin_lock_init(&rxq->lock);
3952 INIT_LIST_HEAD(&rxq->rx_free);
3953 INIT_LIST_HEAD(&rxq->rx_used);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003954
3955 /* Alloc the circular buffer of Read Buffer Descriptors (RBDs) */
Zhu Yib481de92007-09-25 17:54:57 -07003956 rxq->bd = pci_alloc_consistent(dev, 4 * RX_QUEUE_SIZE, &rxq->dma_addr);
3957 if (!rxq->bd)
3958 return -ENOMEM;
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003959
Zhu Yib481de92007-09-25 17:54:57 -07003960 /* Fill the rx_used queue with _all_ of the Rx buffers */
3961 for (i = 0; i < RX_FREE_BUFFERS + RX_QUEUE_SIZE; i++)
3962 list_add_tail(&rxq->pool[i].list, &rxq->rx_used);
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003963
Zhu Yib481de92007-09-25 17:54:57 -07003964 /* Set us so that we have processed and used all buffers, but have
3965 * not restocked the Rx queue with fresh buffers */
3966 rxq->read = rxq->write = 0;
3967 rxq->free_count = 0;
3968 rxq->need_update = 0;
3969 return 0;
3970}
3971
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003972void iwl4965_rx_queue_reset(struct iwl_priv *priv, struct iwl4965_rx_queue *rxq)
Zhu Yib481de92007-09-25 17:54:57 -07003973{
3974 unsigned long flags;
3975 int i;
3976 spin_lock_irqsave(&rxq->lock, flags);
3977 INIT_LIST_HEAD(&rxq->rx_free);
3978 INIT_LIST_HEAD(&rxq->rx_used);
3979 /* Fill the rx_used queue with _all_ of the Rx buffers */
3980 for (i = 0; i < RX_FREE_BUFFERS + RX_QUEUE_SIZE; i++) {
3981 /* In the reset function, these buffers may have been allocated
3982 * to an SKB, so we need to unmap and free potential storage */
3983 if (rxq->pool[i].skb != NULL) {
3984 pci_unmap_single(priv->pci_dev,
3985 rxq->pool[i].dma_addr,
Ron Rindjunsky9ee1ba42007-11-26 16:14:42 +02003986 priv->hw_setting.rx_buf_size,
3987 PCI_DMA_FROMDEVICE);
Zhu Yib481de92007-09-25 17:54:57 -07003988 priv->alloc_rxb_skb--;
3989 dev_kfree_skb(rxq->pool[i].skb);
3990 rxq->pool[i].skb = NULL;
3991 }
3992 list_add_tail(&rxq->pool[i].list, &rxq->rx_used);
3993 }
3994
3995 /* Set us so that we have processed and used all buffers, but have
3996 * not restocked the Rx queue with fresh buffers */
3997 rxq->read = rxq->write = 0;
3998 rxq->free_count = 0;
3999 spin_unlock_irqrestore(&rxq->lock, flags);
4000}
4001
4002/* Convert linear signal-to-noise ratio into dB */
4003static u8 ratio2dB[100] = {
4004/* 0 1 2 3 4 5 6 7 8 9 */
4005 0, 0, 6, 10, 12, 14, 16, 17, 18, 19, /* 00 - 09 */
4006 20, 21, 22, 22, 23, 23, 24, 25, 26, 26, /* 10 - 19 */
4007 26, 26, 26, 27, 27, 28, 28, 28, 29, 29, /* 20 - 29 */
4008 29, 30, 30, 30, 31, 31, 31, 31, 32, 32, /* 30 - 39 */
4009 32, 32, 32, 33, 33, 33, 33, 33, 34, 34, /* 40 - 49 */
4010 34, 34, 34, 34, 35, 35, 35, 35, 35, 35, /* 50 - 59 */
4011 36, 36, 36, 36, 36, 36, 36, 37, 37, 37, /* 60 - 69 */
4012 37, 37, 37, 37, 37, 38, 38, 38, 38, 38, /* 70 - 79 */
4013 38, 38, 38, 38, 38, 39, 39, 39, 39, 39, /* 80 - 89 */
4014 39, 39, 39, 39, 39, 40, 40, 40, 40, 40 /* 90 - 99 */
4015};
4016
4017/* Calculates a relative dB value from a ratio of linear
4018 * (i.e. not dB) signal levels.
4019 * Conversion assumes that levels are voltages (20*log), not powers (10*log). */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004020int iwl4965_calc_db_from_ratio(int sig_ratio)
Zhu Yib481de92007-09-25 17:54:57 -07004021{
Adrian Bunkc899a572007-10-14 19:51:15 +02004022 /* 1000:1 or higher just report as 60 dB */
4023 if (sig_ratio >= 1000)
Zhu Yib481de92007-09-25 17:54:57 -07004024 return 60;
4025
Adrian Bunkc899a572007-10-14 19:51:15 +02004026 /* 100:1 or higher, divide by 10 and use table,
Zhu Yib481de92007-09-25 17:54:57 -07004027 * add 20 dB to make up for divide by 10 */
Adrian Bunkc899a572007-10-14 19:51:15 +02004028 if (sig_ratio >= 100)
Zhu Yib481de92007-09-25 17:54:57 -07004029 return (20 + (int)ratio2dB[sig_ratio/10]);
4030
4031 /* We shouldn't see this */
4032 if (sig_ratio < 1)
4033 return 0;
4034
4035 /* Use table for ratios 1:1 - 99:1 */
4036 return (int)ratio2dB[sig_ratio];
4037}
4038
4039#define PERFECT_RSSI (-20) /* dBm */
4040#define WORST_RSSI (-95) /* dBm */
4041#define RSSI_RANGE (PERFECT_RSSI - WORST_RSSI)
4042
4043/* Calculate an indication of rx signal quality (a percentage, not dBm!).
4044 * See http://www.ces.clemson.edu/linux/signal_quality.shtml for info
4045 * about formulas used below. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004046int iwl4965_calc_sig_qual(int rssi_dbm, int noise_dbm)
Zhu Yib481de92007-09-25 17:54:57 -07004047{
4048 int sig_qual;
4049 int degradation = PERFECT_RSSI - rssi_dbm;
4050
4051 /* If we get a noise measurement, use signal-to-noise ratio (SNR)
4052 * as indicator; formula is (signal dbm - noise dbm).
4053 * SNR at or above 40 is a great signal (100%).
4054 * Below that, scale to fit SNR of 0 - 40 dB within 0 - 100% indicator.
4055 * Weakest usable signal is usually 10 - 15 dB SNR. */
4056 if (noise_dbm) {
4057 if (rssi_dbm - noise_dbm >= 40)
4058 return 100;
4059 else if (rssi_dbm < noise_dbm)
4060 return 0;
4061 sig_qual = ((rssi_dbm - noise_dbm) * 5) / 2;
4062
4063 /* Else use just the signal level.
4064 * This formula is a least squares fit of data points collected and
4065 * compared with a reference system that had a percentage (%) display
4066 * for signal quality. */
4067 } else
4068 sig_qual = (100 * (RSSI_RANGE * RSSI_RANGE) - degradation *
4069 (15 * RSSI_RANGE + 62 * degradation)) /
4070 (RSSI_RANGE * RSSI_RANGE);
4071
4072 if (sig_qual > 100)
4073 sig_qual = 100;
4074 else if (sig_qual < 1)
4075 sig_qual = 0;
4076
4077 return sig_qual;
4078}
4079
4080/**
Ben Cahill9fbab512007-11-29 11:09:47 +08004081 * iwl4965_rx_handle - Main entry function for receiving responses from uCode
Zhu Yib481de92007-09-25 17:54:57 -07004082 *
4083 * Uses the priv->rx_handlers callback function array to invoke
4084 * the appropriate handlers, including command responses,
4085 * frame-received notifications, and other notifications.
4086 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004087static void iwl4965_rx_handle(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004088{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004089 struct iwl4965_rx_mem_buffer *rxb;
4090 struct iwl4965_rx_packet *pkt;
4091 struct iwl4965_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07004092 u32 r, i;
4093 int reclaim;
4094 unsigned long flags;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08004095 u8 fill_rx = 0;
Mohamed Abbasd68ab682008-02-07 13:16:33 -08004096 u32 count = 8;
Zhu Yib481de92007-09-25 17:54:57 -07004097
Cahill, Ben M6440adb2007-11-29 11:09:55 +08004098 /* uCode's read index (stored in shared DRAM) indicates the last Rx
4099 * buffer that the driver may process (last buffer filled by ucode). */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004100 r = iwl4965_hw_get_rx_read(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004101 i = rxq->read;
4102
4103 /* Rx interrupt, but nothing sent from uCode */
4104 if (i == r)
4105 IWL_DEBUG(IWL_DL_RX | IWL_DL_ISR, "r = %d, i = %d\n", r, i);
4106
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08004107 if (iwl4965_rx_queue_space(rxq) > (RX_QUEUE_SIZE / 2))
4108 fill_rx = 1;
4109
Zhu Yib481de92007-09-25 17:54:57 -07004110 while (i != r) {
4111 rxb = rxq->queue[i];
4112
Ben Cahill9fbab512007-11-29 11:09:47 +08004113 /* If an RXB doesn't have a Rx queue slot associated with it,
Zhu Yib481de92007-09-25 17:54:57 -07004114 * then a bug has been introduced in the queue refilling
4115 * routines -- catch it here */
4116 BUG_ON(rxb == NULL);
4117
4118 rxq->queue[i] = NULL;
4119
4120 pci_dma_sync_single_for_cpu(priv->pci_dev, rxb->dma_addr,
Ron Rindjunsky9ee1ba42007-11-26 16:14:42 +02004121 priv->hw_setting.rx_buf_size,
Zhu Yib481de92007-09-25 17:54:57 -07004122 PCI_DMA_FROMDEVICE);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004123 pkt = (struct iwl4965_rx_packet *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07004124
4125 /* Reclaim a command buffer only if this packet is a response
4126 * to a (driver-originated) command.
4127 * If the packet (e.g. Rx frame) originated from uCode,
4128 * there is no command buffer to reclaim.
4129 * Ucode should set SEQ_RX_FRAME bit if ucode-originated,
4130 * but apparently a few don't get set; catch them here. */
4131 reclaim = !(pkt->hdr.sequence & SEQ_RX_FRAME) &&
4132 (pkt->hdr.cmd != REPLY_RX_PHY_CMD) &&
Tomas Winkler857485c2008-03-21 13:53:44 -07004133 (pkt->hdr.cmd != REPLY_RX) &&
Zhu Yicfe01702007-09-27 11:27:31 +08004134 (pkt->hdr.cmd != REPLY_COMPRESSED_BA) &&
Zhu Yib481de92007-09-25 17:54:57 -07004135 (pkt->hdr.cmd != STATISTICS_NOTIFICATION) &&
4136 (pkt->hdr.cmd != REPLY_TX);
4137
4138 /* Based on type of command response or notification,
4139 * handle those that need handling via function in
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004140 * rx_handlers table. See iwl4965_setup_rx_handlers() */
Zhu Yib481de92007-09-25 17:54:57 -07004141 if (priv->rx_handlers[pkt->hdr.cmd]) {
4142 IWL_DEBUG(IWL_DL_HOST_COMMAND | IWL_DL_RX | IWL_DL_ISR,
4143 "r = %d, i = %d, %s, 0x%02x\n", r, i,
4144 get_cmd_string(pkt->hdr.cmd), pkt->hdr.cmd);
4145 priv->rx_handlers[pkt->hdr.cmd] (priv, rxb);
4146 } else {
4147 /* No handling needed */
4148 IWL_DEBUG(IWL_DL_HOST_COMMAND | IWL_DL_RX | IWL_DL_ISR,
4149 "r %d i %d No handler needed for %s, 0x%02x\n",
4150 r, i, get_cmd_string(pkt->hdr.cmd),
4151 pkt->hdr.cmd);
4152 }
4153
4154 if (reclaim) {
Ben Cahill9fbab512007-11-29 11:09:47 +08004155 /* Invoke any callbacks, transfer the skb to caller, and
Tomas Winkler857485c2008-03-21 13:53:44 -07004156 * fire off the (possibly) blocking iwl_send_cmd()
Zhu Yib481de92007-09-25 17:54:57 -07004157 * as we reclaim the driver command queue */
4158 if (rxb && rxb->skb)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004159 iwl4965_tx_cmd_complete(priv, rxb);
Zhu Yib481de92007-09-25 17:54:57 -07004160 else
4161 IWL_WARNING("Claim null rxb?\n");
4162 }
4163
4164 /* For now we just don't re-use anything. We can tweak this
4165 * later to try and re-use notification packets and SKBs that
4166 * fail to Rx correctly */
4167 if (rxb->skb != NULL) {
4168 priv->alloc_rxb_skb--;
4169 dev_kfree_skb_any(rxb->skb);
4170 rxb->skb = NULL;
4171 }
4172
4173 pci_unmap_single(priv->pci_dev, rxb->dma_addr,
Ron Rindjunsky9ee1ba42007-11-26 16:14:42 +02004174 priv->hw_setting.rx_buf_size,
4175 PCI_DMA_FROMDEVICE);
Zhu Yib481de92007-09-25 17:54:57 -07004176 spin_lock_irqsave(&rxq->lock, flags);
4177 list_add_tail(&rxb->list, &priv->rxq.rx_used);
4178 spin_unlock_irqrestore(&rxq->lock, flags);
4179 i = (i + 1) & RX_QUEUE_MASK;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08004180 /* If there are a lot of unused frames,
4181 * restock the Rx queue so ucode wont assert. */
4182 if (fill_rx) {
4183 count++;
4184 if (count >= 8) {
4185 priv->rxq.read = i;
4186 __iwl4965_rx_replenish(priv);
4187 count = 0;
4188 }
4189 }
Zhu Yib481de92007-09-25 17:54:57 -07004190 }
4191
4192 /* Backtrack one entry */
4193 priv->rxq.read = i;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004194 iwl4965_rx_queue_restock(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004195}
4196
Cahill, Ben M6440adb2007-11-29 11:09:55 +08004197/**
4198 * iwl4965_tx_queue_update_write_ptr - Send new write index to hardware
4199 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004200static int iwl4965_tx_queue_update_write_ptr(struct iwl_priv *priv,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004201 struct iwl4965_tx_queue *txq)
Zhu Yib481de92007-09-25 17:54:57 -07004202{
4203 u32 reg = 0;
4204 int rc = 0;
4205 int txq_id = txq->q.id;
4206
4207 if (txq->need_update == 0)
4208 return rc;
4209
4210 /* if we're trying to save power */
4211 if (test_bit(STATUS_POWER_PMI, &priv->status)) {
4212 /* wake up nic if it's powered down ...
4213 * uCode will wake up, and interrupt us again, so next
4214 * time we'll skip this part. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004215 reg = iwl4965_read32(priv, CSR_UCODE_DRV_GP1);
Zhu Yib481de92007-09-25 17:54:57 -07004216
4217 if (reg & CSR_UCODE_DRV_GP1_BIT_MAC_SLEEP) {
4218 IWL_DEBUG_INFO("Requesting wakeup, GP1 = 0x%x\n", reg);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004219 iwl4965_set_bit(priv, CSR_GP_CNTRL,
Zhu Yib481de92007-09-25 17:54:57 -07004220 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
4221 return rc;
4222 }
4223
4224 /* restore this queue's parameters in nic hardware. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004225 rc = iwl4965_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004226 if (rc)
4227 return rc;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004228 iwl4965_write_direct32(priv, HBUS_TARG_WRPTR,
Tomas Winklerfc4b6852007-10-25 17:15:24 +08004229 txq->q.write_ptr | (txq_id << 8));
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004230 iwl4965_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004231
4232 /* else not in power-save mode, uCode will never sleep when we're
4233 * trying to tx (during RFKILL, we're not trying to tx). */
4234 } else
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004235 iwl4965_write32(priv, HBUS_TARG_WRPTR,
Tomas Winklerfc4b6852007-10-25 17:15:24 +08004236 txq->q.write_ptr | (txq_id << 8));
Zhu Yib481de92007-09-25 17:54:57 -07004237
4238 txq->need_update = 0;
4239
4240 return rc;
4241}
4242
Tomas Winkler0a6857e2008-03-12 16:58:49 -07004243#ifdef CONFIG_IWLWIFI_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004244static void iwl4965_print_rx_config_cmd(struct iwl4965_rxon_cmd *rxon)
Zhu Yib481de92007-09-25 17:54:57 -07004245{
Joe Perches0795af52007-10-03 17:59:30 -07004246 DECLARE_MAC_BUF(mac);
4247
Zhu Yib481de92007-09-25 17:54:57 -07004248 IWL_DEBUG_RADIO("RX CONFIG:\n");
Tomas Winkler0a6857e2008-03-12 16:58:49 -07004249 iwl_print_hex_dump(IWL_DL_RADIO, (u8 *) rxon, sizeof(*rxon));
Zhu Yib481de92007-09-25 17:54:57 -07004250 IWL_DEBUG_RADIO("u16 channel: 0x%x\n", le16_to_cpu(rxon->channel));
4251 IWL_DEBUG_RADIO("u32 flags: 0x%08X\n", le32_to_cpu(rxon->flags));
4252 IWL_DEBUG_RADIO("u32 filter_flags: 0x%08x\n",
4253 le32_to_cpu(rxon->filter_flags));
4254 IWL_DEBUG_RADIO("u8 dev_type: 0x%x\n", rxon->dev_type);
4255 IWL_DEBUG_RADIO("u8 ofdm_basic_rates: 0x%02x\n",
4256 rxon->ofdm_basic_rates);
4257 IWL_DEBUG_RADIO("u8 cck_basic_rates: 0x%02x\n", rxon->cck_basic_rates);
Joe Perches0795af52007-10-03 17:59:30 -07004258 IWL_DEBUG_RADIO("u8[6] node_addr: %s\n",
4259 print_mac(mac, rxon->node_addr));
4260 IWL_DEBUG_RADIO("u8[6] bssid_addr: %s\n",
4261 print_mac(mac, rxon->bssid_addr));
Zhu Yib481de92007-09-25 17:54:57 -07004262 IWL_DEBUG_RADIO("u16 assoc_id: 0x%x\n", le16_to_cpu(rxon->assoc_id));
4263}
4264#endif
4265
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004266static void iwl4965_enable_interrupts(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004267{
4268 IWL_DEBUG_ISR("Enabling interrupts\n");
4269 set_bit(STATUS_INT_ENABLED, &priv->status);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004270 iwl4965_write32(priv, CSR_INT_MASK, CSR_INI_SET_MASK);
Zhu Yib481de92007-09-25 17:54:57 -07004271}
4272
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004273static inline void iwl4965_disable_interrupts(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004274{
4275 clear_bit(STATUS_INT_ENABLED, &priv->status);
4276
4277 /* disable interrupts from uCode/NIC to host */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004278 iwl4965_write32(priv, CSR_INT_MASK, 0x00000000);
Zhu Yib481de92007-09-25 17:54:57 -07004279
4280 /* acknowledge/clear/reset any interrupts still pending
4281 * from uCode or flow handler (Rx/Tx DMA) */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004282 iwl4965_write32(priv, CSR_INT, 0xffffffff);
4283 iwl4965_write32(priv, CSR_FH_INT_STATUS, 0xffffffff);
Zhu Yib481de92007-09-25 17:54:57 -07004284 IWL_DEBUG_ISR("Disabled interrupts\n");
4285}
4286
4287static const char *desc_lookup(int i)
4288{
4289 switch (i) {
4290 case 1:
4291 return "FAIL";
4292 case 2:
4293 return "BAD_PARAM";
4294 case 3:
4295 return "BAD_CHECKSUM";
4296 case 4:
4297 return "NMI_INTERRUPT";
4298 case 5:
4299 return "SYSASSERT";
4300 case 6:
4301 return "FATAL_ERROR";
4302 }
4303
4304 return "UNKNOWN";
4305}
4306
4307#define ERROR_START_OFFSET (1 * sizeof(u32))
4308#define ERROR_ELEM_SIZE (7 * sizeof(u32))
4309
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004310static void iwl4965_dump_nic_error_log(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004311{
4312 u32 data2, line;
4313 u32 desc, time, count, base, data1;
4314 u32 blink1, blink2, ilink1, ilink2;
4315 int rc;
4316
4317 base = le32_to_cpu(priv->card_alive.error_event_table_ptr);
4318
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004319 if (!iwl4965_hw_valid_rtc_data_addr(base)) {
Zhu Yib481de92007-09-25 17:54:57 -07004320 IWL_ERROR("Not valid error log pointer 0x%08X\n", base);
4321 return;
4322 }
4323
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004324 rc = iwl4965_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004325 if (rc) {
4326 IWL_WARNING("Can not read from adapter at this time.\n");
4327 return;
4328 }
4329
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004330 count = iwl4965_read_targ_mem(priv, base);
Zhu Yib481de92007-09-25 17:54:57 -07004331
4332 if (ERROR_START_OFFSET <= count * ERROR_ELEM_SIZE) {
4333 IWL_ERROR("Start IWL Error Log Dump:\n");
Tomas Winkler2acae162008-03-02 01:25:59 +02004334 IWL_ERROR("Status: 0x%08lX, count: %d\n", priv->status, count);
Zhu Yib481de92007-09-25 17:54:57 -07004335 }
4336
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004337 desc = iwl4965_read_targ_mem(priv, base + 1 * sizeof(u32));
4338 blink1 = iwl4965_read_targ_mem(priv, base + 3 * sizeof(u32));
4339 blink2 = iwl4965_read_targ_mem(priv, base + 4 * sizeof(u32));
4340 ilink1 = iwl4965_read_targ_mem(priv, base + 5 * sizeof(u32));
4341 ilink2 = iwl4965_read_targ_mem(priv, base + 6 * sizeof(u32));
4342 data1 = iwl4965_read_targ_mem(priv, base + 7 * sizeof(u32));
4343 data2 = iwl4965_read_targ_mem(priv, base + 8 * sizeof(u32));
4344 line = iwl4965_read_targ_mem(priv, base + 9 * sizeof(u32));
4345 time = iwl4965_read_targ_mem(priv, base + 11 * sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07004346
4347 IWL_ERROR("Desc Time "
4348 "data1 data2 line\n");
4349 IWL_ERROR("%-13s (#%d) %010u 0x%08X 0x%08X %u\n",
4350 desc_lookup(desc), desc, time, data1, data2, line);
4351 IWL_ERROR("blink1 blink2 ilink1 ilink2\n");
4352 IWL_ERROR("0x%05X 0x%05X 0x%05X 0x%05X\n", blink1, blink2,
4353 ilink1, ilink2);
4354
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004355 iwl4965_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004356}
4357
4358#define EVENT_START_OFFSET (4 * sizeof(u32))
4359
4360/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004361 * iwl4965_print_event_log - Dump error event log to syslog
Zhu Yib481de92007-09-25 17:54:57 -07004362 *
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004363 * NOTE: Must be called with iwl4965_grab_nic_access() already obtained!
Zhu Yib481de92007-09-25 17:54:57 -07004364 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004365static void iwl4965_print_event_log(struct iwl_priv *priv, u32 start_idx,
Zhu Yib481de92007-09-25 17:54:57 -07004366 u32 num_events, u32 mode)
4367{
4368 u32 i;
4369 u32 base; /* SRAM byte address of event log header */
4370 u32 event_size; /* 2 u32s, or 3 u32s if timestamp recorded */
4371 u32 ptr; /* SRAM byte address of log data */
4372 u32 ev, time, data; /* event log data */
4373
4374 if (num_events == 0)
4375 return;
4376
4377 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
4378
4379 if (mode == 0)
4380 event_size = 2 * sizeof(u32);
4381 else
4382 event_size = 3 * sizeof(u32);
4383
4384 ptr = base + EVENT_START_OFFSET + (start_idx * event_size);
4385
4386 /* "time" is actually "data" for mode 0 (no timestamp).
4387 * place event id # at far right for easier visual parsing. */
4388 for (i = 0; i < num_events; i++) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004389 ev = iwl4965_read_targ_mem(priv, ptr);
Zhu Yib481de92007-09-25 17:54:57 -07004390 ptr += sizeof(u32);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004391 time = iwl4965_read_targ_mem(priv, ptr);
Zhu Yib481de92007-09-25 17:54:57 -07004392 ptr += sizeof(u32);
4393 if (mode == 0)
4394 IWL_ERROR("0x%08x\t%04u\n", time, ev); /* data, ev */
4395 else {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004396 data = iwl4965_read_targ_mem(priv, ptr);
Zhu Yib481de92007-09-25 17:54:57 -07004397 ptr += sizeof(u32);
4398 IWL_ERROR("%010u\t0x%08x\t%04u\n", time, data, ev);
4399 }
4400 }
4401}
4402
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004403static void iwl4965_dump_nic_event_log(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004404{
4405 int rc;
4406 u32 base; /* SRAM byte address of event log header */
4407 u32 capacity; /* event log capacity in # entries */
4408 u32 mode; /* 0 - no timestamp, 1 - timestamp recorded */
4409 u32 num_wraps; /* # times uCode wrapped to top of log */
4410 u32 next_entry; /* index of next entry to be written by uCode */
4411 u32 size; /* # entries that we'll print */
4412
4413 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004414 if (!iwl4965_hw_valid_rtc_data_addr(base)) {
Zhu Yib481de92007-09-25 17:54:57 -07004415 IWL_ERROR("Invalid event log pointer 0x%08X\n", base);
4416 return;
4417 }
4418
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004419 rc = iwl4965_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004420 if (rc) {
4421 IWL_WARNING("Can not read from adapter at this time.\n");
4422 return;
4423 }
4424
4425 /* event log header */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004426 capacity = iwl4965_read_targ_mem(priv, base);
4427 mode = iwl4965_read_targ_mem(priv, base + (1 * sizeof(u32)));
4428 num_wraps = iwl4965_read_targ_mem(priv, base + (2 * sizeof(u32)));
4429 next_entry = iwl4965_read_targ_mem(priv, base + (3 * sizeof(u32)));
Zhu Yib481de92007-09-25 17:54:57 -07004430
4431 size = num_wraps ? capacity : next_entry;
4432
4433 /* bail out if nothing in log */
4434 if (size == 0) {
Zhu Yi583fab32007-09-27 11:27:30 +08004435 IWL_ERROR("Start IWL Event Log Dump: nothing in log\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004436 iwl4965_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004437 return;
4438 }
4439
Zhu Yi583fab32007-09-27 11:27:30 +08004440 IWL_ERROR("Start IWL Event Log Dump: display count %d, wraps %d\n",
Zhu Yib481de92007-09-25 17:54:57 -07004441 size, num_wraps);
4442
4443 /* if uCode has wrapped back to top of log, start at the oldest entry,
4444 * i.e the next one that uCode would fill. */
4445 if (num_wraps)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004446 iwl4965_print_event_log(priv, next_entry,
Zhu Yib481de92007-09-25 17:54:57 -07004447 capacity - next_entry, mode);
4448
4449 /* (then/else) start at top of log */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004450 iwl4965_print_event_log(priv, 0, next_entry, mode);
Zhu Yib481de92007-09-25 17:54:57 -07004451
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004452 iwl4965_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004453}
4454
4455/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004456 * iwl4965_irq_handle_error - called for HW or SW error interrupt from card
Zhu Yib481de92007-09-25 17:54:57 -07004457 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004458static void iwl4965_irq_handle_error(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004459{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004460 /* Set the FW error flag -- cleared on iwl4965_down */
Zhu Yib481de92007-09-25 17:54:57 -07004461 set_bit(STATUS_FW_ERROR, &priv->status);
4462
4463 /* Cancel currently queued command. */
4464 clear_bit(STATUS_HCMD_ACTIVE, &priv->status);
4465
Tomas Winkler0a6857e2008-03-12 16:58:49 -07004466#ifdef CONFIG_IWLWIFI_DEBUG
4467 if (iwl_debug_level & IWL_DL_FW_ERRORS) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004468 iwl4965_dump_nic_error_log(priv);
4469 iwl4965_dump_nic_event_log(priv);
4470 iwl4965_print_rx_config_cmd(&priv->staging_rxon);
Zhu Yib481de92007-09-25 17:54:57 -07004471 }
4472#endif
4473
4474 wake_up_interruptible(&priv->wait_command_queue);
4475
4476 /* Keep the restart process from trying to send host
4477 * commands by clearing the INIT status bit */
4478 clear_bit(STATUS_READY, &priv->status);
4479
4480 if (!test_bit(STATUS_EXIT_PENDING, &priv->status)) {
4481 IWL_DEBUG(IWL_DL_INFO | IWL_DL_FW_ERRORS,
4482 "Restarting adapter due to uCode error.\n");
4483
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004484 if (iwl4965_is_associated(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07004485 memcpy(&priv->recovery_rxon, &priv->active_rxon,
4486 sizeof(priv->recovery_rxon));
4487 priv->error_recovering = 1;
4488 }
4489 queue_work(priv->workqueue, &priv->restart);
4490 }
4491}
4492
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004493static void iwl4965_error_recovery(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004494{
4495 unsigned long flags;
4496
4497 memcpy(&priv->staging_rxon, &priv->recovery_rxon,
4498 sizeof(priv->staging_rxon));
4499 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004500 iwl4965_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004501
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004502 iwl4965_rxon_add_station(priv, priv->bssid, 1);
Zhu Yib481de92007-09-25 17:54:57 -07004503
4504 spin_lock_irqsave(&priv->lock, flags);
4505 priv->assoc_id = le16_to_cpu(priv->staging_rxon.assoc_id);
4506 priv->error_recovering = 0;
4507 spin_unlock_irqrestore(&priv->lock, flags);
4508}
4509
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004510static void iwl4965_irq_tasklet(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004511{
4512 u32 inta, handled = 0;
4513 u32 inta_fh;
4514 unsigned long flags;
Tomas Winkler0a6857e2008-03-12 16:58:49 -07004515#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07004516 u32 inta_mask;
4517#endif
4518
4519 spin_lock_irqsave(&priv->lock, flags);
4520
4521 /* Ack/clear/reset pending uCode interrupts.
4522 * Note: Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS,
4523 * and will clear only when CSR_FH_INT_STATUS gets cleared. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004524 inta = iwl4965_read32(priv, CSR_INT);
4525 iwl4965_write32(priv, CSR_INT, inta);
Zhu Yib481de92007-09-25 17:54:57 -07004526
4527 /* Ack/clear/reset pending flow-handler (DMA) interrupts.
4528 * Any new interrupts that happen after this, either while we're
4529 * in this tasklet, or later, will show up in next ISR/tasklet. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004530 inta_fh = iwl4965_read32(priv, CSR_FH_INT_STATUS);
4531 iwl4965_write32(priv, CSR_FH_INT_STATUS, inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -07004532
Tomas Winkler0a6857e2008-03-12 16:58:49 -07004533#ifdef CONFIG_IWLWIFI_DEBUG
4534 if (iwl_debug_level & IWL_DL_ISR) {
Ben Cahill9fbab512007-11-29 11:09:47 +08004535 /* just for debug */
4536 inta_mask = iwl4965_read32(priv, CSR_INT_MASK);
Zhu Yib481de92007-09-25 17:54:57 -07004537 IWL_DEBUG_ISR("inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
4538 inta, inta_mask, inta_fh);
4539 }
4540#endif
4541
4542 /* Since CSR_INT and CSR_FH_INT_STATUS reads and clears are not
4543 * atomic, make sure that inta covers all the interrupts that
4544 * we've discovered, even if FH interrupt came in just after
4545 * reading CSR_INT. */
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08004546 if (inta_fh & CSR49_FH_INT_RX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07004547 inta |= CSR_INT_BIT_FH_RX;
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08004548 if (inta_fh & CSR49_FH_INT_TX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07004549 inta |= CSR_INT_BIT_FH_TX;
4550
4551 /* Now service all interrupt bits discovered above. */
4552 if (inta & CSR_INT_BIT_HW_ERR) {
4553 IWL_ERROR("Microcode HW error detected. Restarting.\n");
4554
4555 /* Tell the device to stop sending interrupts */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004556 iwl4965_disable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004557
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004558 iwl4965_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004559
4560 handled |= CSR_INT_BIT_HW_ERR;
4561
4562 spin_unlock_irqrestore(&priv->lock, flags);
4563
4564 return;
4565 }
4566
Tomas Winkler0a6857e2008-03-12 16:58:49 -07004567#ifdef CONFIG_IWLWIFI_DEBUG
4568 if (iwl_debug_level & (IWL_DL_ISR)) {
Zhu Yib481de92007-09-25 17:54:57 -07004569 /* NIC fires this, but we don't use it, redundant with WAKEUP */
Joonwoo Park25c03d82008-01-23 10:15:20 -08004570 if (inta & CSR_INT_BIT_SCD)
4571 IWL_DEBUG_ISR("Scheduler finished to transmit "
4572 "the frame/frames.\n");
Zhu Yib481de92007-09-25 17:54:57 -07004573
4574 /* Alive notification via Rx interrupt will do the real work */
4575 if (inta & CSR_INT_BIT_ALIVE)
4576 IWL_DEBUG_ISR("Alive interrupt\n");
4577 }
4578#endif
4579 /* Safely ignore these bits for debug checks below */
Joonwoo Park25c03d82008-01-23 10:15:20 -08004580 inta &= ~(CSR_INT_BIT_SCD | CSR_INT_BIT_ALIVE);
Zhu Yib481de92007-09-25 17:54:57 -07004581
Ben Cahill9fbab512007-11-29 11:09:47 +08004582 /* HW RF KILL switch toggled */
Zhu Yib481de92007-09-25 17:54:57 -07004583 if (inta & CSR_INT_BIT_RF_KILL) {
4584 int hw_rf_kill = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004585 if (!(iwl4965_read32(priv, CSR_GP_CNTRL) &
Zhu Yib481de92007-09-25 17:54:57 -07004586 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW))
4587 hw_rf_kill = 1;
4588
4589 IWL_DEBUG(IWL_DL_INFO | IWL_DL_RF_KILL | IWL_DL_ISR,
4590 "RF_KILL bit toggled to %s.\n",
4591 hw_rf_kill ? "disable radio":"enable radio");
4592
4593 /* Queue restart only if RF_KILL switch was set to "kill"
4594 * when we loaded driver, and is now set to "enable".
4595 * After we're Alive, RF_KILL gets handled by
Reinette Chatre32304552008-02-15 14:34:37 -08004596 * iwl4965_rx_card_state_notif() */
Zhu Yi53e49092007-12-06 16:08:44 +08004597 if (!hw_rf_kill && !test_bit(STATUS_ALIVE, &priv->status)) {
4598 clear_bit(STATUS_RF_KILL_HW, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07004599 queue_work(priv->workqueue, &priv->restart);
Zhu Yi53e49092007-12-06 16:08:44 +08004600 }
Zhu Yib481de92007-09-25 17:54:57 -07004601
4602 handled |= CSR_INT_BIT_RF_KILL;
4603 }
4604
Ben Cahill9fbab512007-11-29 11:09:47 +08004605 /* Chip got too hot and stopped itself */
Zhu Yib481de92007-09-25 17:54:57 -07004606 if (inta & CSR_INT_BIT_CT_KILL) {
4607 IWL_ERROR("Microcode CT kill error detected.\n");
4608 handled |= CSR_INT_BIT_CT_KILL;
4609 }
4610
4611 /* Error detected by uCode */
4612 if (inta & CSR_INT_BIT_SW_ERR) {
4613 IWL_ERROR("Microcode SW error detected. Restarting 0x%X.\n",
4614 inta);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004615 iwl4965_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004616 handled |= CSR_INT_BIT_SW_ERR;
4617 }
4618
4619 /* uCode wakes up after power-down sleep */
4620 if (inta & CSR_INT_BIT_WAKEUP) {
4621 IWL_DEBUG_ISR("Wakeup interrupt\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004622 iwl4965_rx_queue_update_write_ptr(priv, &priv->rxq);
4623 iwl4965_tx_queue_update_write_ptr(priv, &priv->txq[0]);
4624 iwl4965_tx_queue_update_write_ptr(priv, &priv->txq[1]);
4625 iwl4965_tx_queue_update_write_ptr(priv, &priv->txq[2]);
4626 iwl4965_tx_queue_update_write_ptr(priv, &priv->txq[3]);
4627 iwl4965_tx_queue_update_write_ptr(priv, &priv->txq[4]);
4628 iwl4965_tx_queue_update_write_ptr(priv, &priv->txq[5]);
Zhu Yib481de92007-09-25 17:54:57 -07004629
4630 handled |= CSR_INT_BIT_WAKEUP;
4631 }
4632
4633 /* All uCode command responses, including Tx command responses,
4634 * Rx "responses" (frame-received notification), and other
4635 * notifications from uCode come through here*/
4636 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004637 iwl4965_rx_handle(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004638 handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX);
4639 }
4640
4641 if (inta & CSR_INT_BIT_FH_TX) {
4642 IWL_DEBUG_ISR("Tx interrupt\n");
4643 handled |= CSR_INT_BIT_FH_TX;
4644 }
4645
4646 if (inta & ~handled)
4647 IWL_ERROR("Unhandled INTA bits 0x%08x\n", inta & ~handled);
4648
4649 if (inta & ~CSR_INI_SET_MASK) {
4650 IWL_WARNING("Disabled INTA bits 0x%08x were pending\n",
4651 inta & ~CSR_INI_SET_MASK);
4652 IWL_WARNING(" with FH_INT = 0x%08x\n", inta_fh);
4653 }
4654
4655 /* Re-enable all interrupts */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004656 iwl4965_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004657
Tomas Winkler0a6857e2008-03-12 16:58:49 -07004658#ifdef CONFIG_IWLWIFI_DEBUG
4659 if (iwl_debug_level & (IWL_DL_ISR)) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004660 inta = iwl4965_read32(priv, CSR_INT);
4661 inta_mask = iwl4965_read32(priv, CSR_INT_MASK);
4662 inta_fh = iwl4965_read32(priv, CSR_FH_INT_STATUS);
Zhu Yib481de92007-09-25 17:54:57 -07004663 IWL_DEBUG_ISR("End inta 0x%08x, enabled 0x%08x, fh 0x%08x, "
4664 "flags 0x%08lx\n", inta, inta_mask, inta_fh, flags);
4665 }
4666#endif
4667 spin_unlock_irqrestore(&priv->lock, flags);
4668}
4669
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004670static irqreturn_t iwl4965_isr(int irq, void *data)
Zhu Yib481de92007-09-25 17:54:57 -07004671{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004672 struct iwl_priv *priv = data;
Zhu Yib481de92007-09-25 17:54:57 -07004673 u32 inta, inta_mask;
4674 u32 inta_fh;
4675 if (!priv)
4676 return IRQ_NONE;
4677
4678 spin_lock(&priv->lock);
4679
4680 /* Disable (but don't clear!) interrupts here to avoid
4681 * back-to-back ISRs and sporadic interrupts from our NIC.
4682 * If we have something to service, the tasklet will re-enable ints.
4683 * If we *don't* have something, we'll re-enable before leaving here. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004684 inta_mask = iwl4965_read32(priv, CSR_INT_MASK); /* just for debug */
4685 iwl4965_write32(priv, CSR_INT_MASK, 0x00000000);
Zhu Yib481de92007-09-25 17:54:57 -07004686
4687 /* Discover which interrupts are active/pending */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004688 inta = iwl4965_read32(priv, CSR_INT);
4689 inta_fh = iwl4965_read32(priv, CSR_FH_INT_STATUS);
Zhu Yib481de92007-09-25 17:54:57 -07004690
4691 /* Ignore interrupt if there's nothing in NIC to service.
4692 * This may be due to IRQ shared with another device,
4693 * or due to sporadic interrupts thrown from our NIC. */
4694 if (!inta && !inta_fh) {
4695 IWL_DEBUG_ISR("Ignore interrupt, inta == 0, inta_fh == 0\n");
4696 goto none;
4697 }
4698
4699 if ((inta == 0xFFFFFFFF) || ((inta & 0xFFFFFFF0) == 0xa5a5a5a0)) {
Oliver Neukum66fbb542007-11-15 09:31:10 +08004700 /* Hardware disappeared. It might have already raised
4701 * an interrupt */
Zhu Yib481de92007-09-25 17:54:57 -07004702 IWL_WARNING("HARDWARE GONE?? INTA == 0x%080x\n", inta);
Oliver Neukum66fbb542007-11-15 09:31:10 +08004703 goto unplugged;
Zhu Yib481de92007-09-25 17:54:57 -07004704 }
4705
4706 IWL_DEBUG_ISR("ISR inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
4707 inta, inta_mask, inta_fh);
4708
Joonwoo Park25c03d82008-01-23 10:15:20 -08004709 inta &= ~CSR_INT_BIT_SCD;
4710
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004711 /* iwl4965_irq_tasklet() will service interrupts and re-enable them */
Joonwoo Park25c03d82008-01-23 10:15:20 -08004712 if (likely(inta || inta_fh))
4713 tasklet_schedule(&priv->irq_tasklet);
Zhu Yib481de92007-09-25 17:54:57 -07004714
Oliver Neukum66fbb542007-11-15 09:31:10 +08004715 unplugged:
4716 spin_unlock(&priv->lock);
Zhu Yib481de92007-09-25 17:54:57 -07004717 return IRQ_HANDLED;
4718
4719 none:
4720 /* re-enable interrupts here since we don't have anything to service. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004721 iwl4965_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004722 spin_unlock(&priv->lock);
4723 return IRQ_NONE;
4724}
4725
Zhu Yib481de92007-09-25 17:54:57 -07004726/* For active scan, listen ACTIVE_DWELL_TIME (msec) on each channel after
4727 * sending probe req. This should be set long enough to hear probe responses
4728 * from more than one AP. */
4729#define IWL_ACTIVE_DWELL_TIME_24 (20) /* all times in msec */
4730#define IWL_ACTIVE_DWELL_TIME_52 (10)
4731
4732/* For faster active scanning, scan will move to the next channel if fewer than
4733 * PLCP_QUIET_THRESH packets are heard on this channel within
4734 * ACTIVE_QUIET_TIME after sending probe request. This shortens the dwell
4735 * time if it's a quiet channel (nothing responded to our probe, and there's
4736 * no other traffic).
4737 * Disable "quiet" feature by setting PLCP_QUIET_THRESH to 0. */
4738#define IWL_PLCP_QUIET_THRESH __constant_cpu_to_le16(1) /* packets */
4739#define IWL_ACTIVE_QUIET_TIME __constant_cpu_to_le16(5) /* msec */
4740
4741/* For passive scan, listen PASSIVE_DWELL_TIME (msec) on each channel.
4742 * Must be set longer than active dwell time.
4743 * For the most reliable scan, set > AP beacon interval (typically 100msec). */
4744#define IWL_PASSIVE_DWELL_TIME_24 (20) /* all times in msec */
4745#define IWL_PASSIVE_DWELL_TIME_52 (10)
4746#define IWL_PASSIVE_DWELL_BASE (100)
4747#define IWL_CHANNEL_TUNE_TIME 5
4748
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004749static inline u16 iwl4965_get_active_dwell_time(struct iwl_priv *priv,
Johannes Berg8318d782008-01-24 19:38:38 +01004750 enum ieee80211_band band)
Zhu Yib481de92007-09-25 17:54:57 -07004751{
Johannes Berg8318d782008-01-24 19:38:38 +01004752 if (band == IEEE80211_BAND_5GHZ)
Zhu Yib481de92007-09-25 17:54:57 -07004753 return IWL_ACTIVE_DWELL_TIME_52;
4754 else
4755 return IWL_ACTIVE_DWELL_TIME_24;
4756}
4757
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004758static u16 iwl4965_get_passive_dwell_time(struct iwl_priv *priv,
Johannes Berg8318d782008-01-24 19:38:38 +01004759 enum ieee80211_band band)
Zhu Yib481de92007-09-25 17:54:57 -07004760{
Johannes Berg8318d782008-01-24 19:38:38 +01004761 u16 active = iwl4965_get_active_dwell_time(priv, band);
4762 u16 passive = (band != IEEE80211_BAND_5GHZ) ?
Zhu Yib481de92007-09-25 17:54:57 -07004763 IWL_PASSIVE_DWELL_BASE + IWL_PASSIVE_DWELL_TIME_24 :
4764 IWL_PASSIVE_DWELL_BASE + IWL_PASSIVE_DWELL_TIME_52;
4765
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004766 if (iwl4965_is_associated(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07004767 /* If we're associated, we clamp the maximum passive
4768 * dwell time to be 98% of the beacon interval (minus
4769 * 2 * channel tune time) */
4770 passive = priv->beacon_int;
4771 if ((passive > IWL_PASSIVE_DWELL_BASE) || !passive)
4772 passive = IWL_PASSIVE_DWELL_BASE;
4773 passive = (passive * 98) / 100 - IWL_CHANNEL_TUNE_TIME * 2;
4774 }
4775
4776 if (passive <= active)
4777 passive = active + 1;
4778
4779 return passive;
4780}
4781
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004782static int iwl4965_get_channels_for_scan(struct iwl_priv *priv,
Johannes Berg8318d782008-01-24 19:38:38 +01004783 enum ieee80211_band band,
Zhu Yib481de92007-09-25 17:54:57 -07004784 u8 is_active, u8 direct_mask,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004785 struct iwl4965_scan_channel *scan_ch)
Zhu Yib481de92007-09-25 17:54:57 -07004786{
4787 const struct ieee80211_channel *channels = NULL;
Johannes Berg8318d782008-01-24 19:38:38 +01004788 const struct ieee80211_supported_band *sband;
Assaf Kraussbf85ea42008-03-14 10:38:49 -07004789 const struct iwl_channel_info *ch_info;
Zhu Yib481de92007-09-25 17:54:57 -07004790 u16 passive_dwell = 0;
4791 u16 active_dwell = 0;
4792 int added, i;
4793
Johannes Berg8318d782008-01-24 19:38:38 +01004794 sband = iwl4965_get_hw_mode(priv, band);
4795 if (!sband)
Zhu Yib481de92007-09-25 17:54:57 -07004796 return 0;
4797
Johannes Berg8318d782008-01-24 19:38:38 +01004798 channels = sband->channels;
Zhu Yib481de92007-09-25 17:54:57 -07004799
Johannes Berg8318d782008-01-24 19:38:38 +01004800 active_dwell = iwl4965_get_active_dwell_time(priv, band);
4801 passive_dwell = iwl4965_get_passive_dwell_time(priv, band);
Zhu Yib481de92007-09-25 17:54:57 -07004802
Johannes Berg8318d782008-01-24 19:38:38 +01004803 for (i = 0, added = 0; i < sband->n_channels; i++) {
4804 if (ieee80211_frequency_to_channel(channels[i].center_freq) ==
Zhu Yib481de92007-09-25 17:54:57 -07004805 le16_to_cpu(priv->active_rxon.channel)) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004806 if (iwl4965_is_associated(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07004807 IWL_DEBUG_SCAN
4808 ("Skipping current channel %d\n",
4809 le16_to_cpu(priv->active_rxon.channel));
4810 continue;
4811 }
4812 } else if (priv->only_active_channel)
4813 continue;
4814
Johannes Berg8318d782008-01-24 19:38:38 +01004815 scan_ch->channel = ieee80211_frequency_to_channel(channels[i].center_freq);
Zhu Yib481de92007-09-25 17:54:57 -07004816
Assaf Krauss8622e702008-03-21 13:53:43 -07004817 ch_info = iwl_get_channel_info(priv, band,
Ben Cahill9fbab512007-11-29 11:09:47 +08004818 scan_ch->channel);
Zhu Yib481de92007-09-25 17:54:57 -07004819 if (!is_channel_valid(ch_info)) {
4820 IWL_DEBUG_SCAN("Channel %d is INVALID for this SKU.\n",
4821 scan_ch->channel);
4822 continue;
4823 }
4824
4825 if (!is_active || is_channel_passive(ch_info) ||
Johannes Berg8318d782008-01-24 19:38:38 +01004826 (channels[i].flags & IEEE80211_CHAN_PASSIVE_SCAN))
Zhu Yib481de92007-09-25 17:54:57 -07004827 scan_ch->type = 0; /* passive */
4828 else
4829 scan_ch->type = 1; /* active */
4830
4831 if (scan_ch->type & 1)
4832 scan_ch->type |= (direct_mask << 1);
4833
4834 if (is_channel_narrow(ch_info))
4835 scan_ch->type |= (1 << 7);
4836
4837 scan_ch->active_dwell = cpu_to_le16(active_dwell);
4838 scan_ch->passive_dwell = cpu_to_le16(passive_dwell);
4839
Ben Cahill9fbab512007-11-29 11:09:47 +08004840 /* Set txpower levels to defaults */
Zhu Yib481de92007-09-25 17:54:57 -07004841 scan_ch->tpc.dsp_atten = 110;
4842 /* scan_pwr_info->tpc.dsp_atten; */
4843
4844 /*scan_pwr_info->tpc.tx_gain; */
Johannes Berg8318d782008-01-24 19:38:38 +01004845 if (band == IEEE80211_BAND_5GHZ)
Zhu Yib481de92007-09-25 17:54:57 -07004846 scan_ch->tpc.tx_gain = ((1 << 5) | (3 << 3)) | 3;
4847 else {
4848 scan_ch->tpc.tx_gain = ((1 << 5) | (5 << 3));
4849 /* NOTE: if we were doing 6Mb OFDM for scans we'd use
Ben Cahill9fbab512007-11-29 11:09:47 +08004850 * power level:
Reinette Chatre8a1b0242008-01-14 17:46:25 -08004851 * scan_ch->tpc.tx_gain = ((1 << 5) | (2 << 3)) | 3;
Zhu Yib481de92007-09-25 17:54:57 -07004852 */
4853 }
4854
4855 IWL_DEBUG_SCAN("Scanning %d [%s %d]\n",
4856 scan_ch->channel,
4857 (scan_ch->type & 1) ? "ACTIVE" : "PASSIVE",
4858 (scan_ch->type & 1) ?
4859 active_dwell : passive_dwell);
4860
4861 scan_ch++;
4862 added++;
4863 }
4864
4865 IWL_DEBUG_SCAN("total channels to scan %d \n", added);
4866 return added;
4867}
4868
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004869static void iwl4965_init_hw_rates(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07004870 struct ieee80211_rate *rates)
4871{
4872 int i;
4873
4874 for (i = 0; i < IWL_RATE_COUNT; i++) {
Johannes Berg8318d782008-01-24 19:38:38 +01004875 rates[i].bitrate = iwl4965_rates[i].ieee * 5;
4876 rates[i].hw_value = i; /* Rate scaling will work on indexes */
4877 rates[i].hw_value_short = i;
4878 rates[i].flags = 0;
4879 if ((i > IWL_LAST_OFDM_RATE) || (i < IWL_FIRST_OFDM_RATE)) {
Zhu Yib481de92007-09-25 17:54:57 -07004880 /*
Johannes Berg8318d782008-01-24 19:38:38 +01004881 * If CCK != 1M then set short preamble rate flag.
Zhu Yib481de92007-09-25 17:54:57 -07004882 */
Tomas Winkler35cdeaf2008-03-11 16:17:20 -07004883 rates[i].flags |=
4884 (iwl4965_rates[i].plcp == IWL_RATE_1M_PLCP) ?
4885 0 : IEEE80211_RATE_SHORT_PREAMBLE;
Zhu Yib481de92007-09-25 17:54:57 -07004886 }
Zhu Yib481de92007-09-25 17:54:57 -07004887 }
Zhu Yib481de92007-09-25 17:54:57 -07004888}
4889
4890/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004891 * iwl4965_init_geos - Initialize mac80211's geo/channel info based from eeprom
Zhu Yib481de92007-09-25 17:54:57 -07004892 */
Assaf Kraussbf85ea42008-03-14 10:38:49 -07004893int iwl4965_init_geos(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004894{
Assaf Kraussbf85ea42008-03-14 10:38:49 -07004895 struct iwl_channel_info *ch;
Tomas Winkler8211ef72008-03-02 01:36:04 +02004896 struct ieee80211_supported_band *sband;
Zhu Yib481de92007-09-25 17:54:57 -07004897 struct ieee80211_channel *channels;
4898 struct ieee80211_channel *geo_ch;
4899 struct ieee80211_rate *rates;
4900 int i = 0;
Zhu Yib481de92007-09-25 17:54:57 -07004901
Johannes Berg8318d782008-01-24 19:38:38 +01004902 if (priv->bands[IEEE80211_BAND_2GHZ].n_bitrates ||
4903 priv->bands[IEEE80211_BAND_5GHZ].n_bitrates) {
Zhu Yib481de92007-09-25 17:54:57 -07004904 IWL_DEBUG_INFO("Geography modes already initialized.\n");
4905 set_bit(STATUS_GEO_CONFIGURED, &priv->status);
4906 return 0;
4907 }
4908
Zhu Yib481de92007-09-25 17:54:57 -07004909 channels = kzalloc(sizeof(struct ieee80211_channel) *
4910 priv->channel_count, GFP_KERNEL);
Johannes Berg8318d782008-01-24 19:38:38 +01004911 if (!channels)
Zhu Yib481de92007-09-25 17:54:57 -07004912 return -ENOMEM;
Zhu Yib481de92007-09-25 17:54:57 -07004913
Tomas Winkler8211ef72008-03-02 01:36:04 +02004914 rates = kzalloc((sizeof(struct ieee80211_rate) * (IWL_RATE_COUNT + 1)),
Zhu Yib481de92007-09-25 17:54:57 -07004915 GFP_KERNEL);
4916 if (!rates) {
Zhu Yib481de92007-09-25 17:54:57 -07004917 kfree(channels);
4918 return -ENOMEM;
4919 }
4920
Zhu Yib481de92007-09-25 17:54:57 -07004921 /* 5.2GHz channels start after the 2.4GHz channels */
Tomas Winkler8211ef72008-03-02 01:36:04 +02004922 sband = &priv->bands[IEEE80211_BAND_5GHZ];
Assaf Kraussbf85ea42008-03-14 10:38:49 -07004923 sband->channels = &channels[ARRAY_SIZE(iwl_eeprom_band_1)];
Tomas Winkler8211ef72008-03-02 01:36:04 +02004924 /* just OFDM */
4925 sband->bitrates = &rates[IWL_FIRST_OFDM_RATE];
4926 sband->n_bitrates = IWL_RATE_COUNT - IWL_FIRST_OFDM_RATE;
Johannes Berg8318d782008-01-24 19:38:38 +01004927
Assaf Krauss1ea87392008-03-18 14:57:50 -07004928 iwl4965_init_ht_hw_capab(priv, &sband->ht_info, IEEE80211_BAND_5GHZ);
Tomas Winkler78330fd2008-02-06 02:37:18 +02004929
Tomas Winkler8211ef72008-03-02 01:36:04 +02004930 sband = &priv->bands[IEEE80211_BAND_2GHZ];
4931 sband->channels = channels;
4932 /* OFDM & CCK */
4933 sband->bitrates = rates;
4934 sband->n_bitrates = IWL_RATE_COUNT;
Zhu Yib481de92007-09-25 17:54:57 -07004935
Assaf Krauss1ea87392008-03-18 14:57:50 -07004936 iwl4965_init_ht_hw_capab(priv, &sband->ht_info, IEEE80211_BAND_2GHZ);
Tomas Winkler78330fd2008-02-06 02:37:18 +02004937
Zhu Yib481de92007-09-25 17:54:57 -07004938 priv->ieee_channels = channels;
4939 priv->ieee_rates = rates;
4940
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08004941 iwl4965_init_hw_rates(priv, rates);
Zhu Yib481de92007-09-25 17:54:57 -07004942
Tomas Winkler8211ef72008-03-02 01:36:04 +02004943 for (i = 0; i < priv->channel_count; i++) {
Zhu Yib481de92007-09-25 17:54:57 -07004944 ch = &priv->channel_info[i];
4945
Tomas Winkler8211ef72008-03-02 01:36:04 +02004946 /* FIXME: might be removed if scan is OK */
4947 if (!is_channel_valid(ch))
Zhu Yib481de92007-09-25 17:54:57 -07004948 continue;
Zhu Yib481de92007-09-25 17:54:57 -07004949
Tomas Winkler8211ef72008-03-02 01:36:04 +02004950 if (is_channel_a_band(ch))
4951 sband = &priv->bands[IEEE80211_BAND_5GHZ];
4952 else
4953 sband = &priv->bands[IEEE80211_BAND_2GHZ];
Zhu Yib481de92007-09-25 17:54:57 -07004954
Tomas Winkler8211ef72008-03-02 01:36:04 +02004955 geo_ch = &sband->channels[sband->n_channels++];
4956
4957 geo_ch->center_freq = ieee80211_channel_to_frequency(ch->channel);
Johannes Berg8318d782008-01-24 19:38:38 +01004958 geo_ch->max_power = ch->max_power_avg;
4959 geo_ch->max_antenna_gain = 0xff;
Mohamed Abbas7b723042008-01-31 21:46:40 -08004960 geo_ch->hw_value = ch->channel;
Zhu Yib481de92007-09-25 17:54:57 -07004961
4962 if (is_channel_valid(ch)) {
Johannes Berg8318d782008-01-24 19:38:38 +01004963 if (!(ch->flags & EEPROM_CHANNEL_IBSS))
4964 geo_ch->flags |= IEEE80211_CHAN_NO_IBSS;
Zhu Yib481de92007-09-25 17:54:57 -07004965
Johannes Berg8318d782008-01-24 19:38:38 +01004966 if (!(ch->flags & EEPROM_CHANNEL_ACTIVE))
4967 geo_ch->flags |= IEEE80211_CHAN_PASSIVE_SCAN;
Zhu Yib481de92007-09-25 17:54:57 -07004968
4969 if (ch->flags & EEPROM_CHANNEL_RADAR)
Johannes Berg8318d782008-01-24 19:38:38 +01004970 geo_ch->flags |= IEEE80211_CHAN_RADAR;
Zhu Yib481de92007-09-25 17:54:57 -07004971
4972 if (ch->max_power_avg > priv->max_channel_txpower_limit)
4973 priv->max_channel_txpower_limit =
4974 ch->max_power_avg;
Tomas Winkler8211ef72008-03-02 01:36:04 +02004975 } else {
Johannes Berg8318d782008-01-24 19:38:38 +01004976 geo_ch->flags |= IEEE80211_CHAN_DISABLED;
Tomas Winkler8211ef72008-03-02 01:36:04 +02004977 }
4978
4979 /* Save flags for reg domain usage */
4980 geo_ch->orig_flags = geo_ch->flags;
4981
4982 IWL_DEBUG_INFO("Channel %d Freq=%d[%sGHz] %s flag=0%X\n",
4983 ch->channel, geo_ch->center_freq,
4984 is_channel_a_band(ch) ? "5.2" : "2.4",
4985 geo_ch->flags & IEEE80211_CHAN_DISABLED ?
4986 "restricted" : "valid",
4987 geo_ch->flags);
Zhu Yib481de92007-09-25 17:54:57 -07004988 }
4989
Tomas Winkler82b9a122008-03-04 18:09:30 -08004990 if ((priv->bands[IEEE80211_BAND_5GHZ].n_channels == 0) &&
4991 priv->cfg->sku & IWL_SKU_A) {
Zhu Yib481de92007-09-25 17:54:57 -07004992 printk(KERN_INFO DRV_NAME
4993 ": Incorrectly detected BG card as ABG. Please send "
4994 "your PCI ID 0x%04X:0x%04X to maintainer.\n",
4995 priv->pci_dev->device, priv->pci_dev->subsystem_device);
Tomas Winkler82b9a122008-03-04 18:09:30 -08004996 priv->cfg->sku &= ~IWL_SKU_A;
Zhu Yib481de92007-09-25 17:54:57 -07004997 }
4998
4999 printk(KERN_INFO DRV_NAME
5000 ": Tunable channels: %d 802.11bg, %d 802.11a channels\n",
Johannes Berg8318d782008-01-24 19:38:38 +01005001 priv->bands[IEEE80211_BAND_2GHZ].n_channels,
5002 priv->bands[IEEE80211_BAND_5GHZ].n_channels);
Zhu Yib481de92007-09-25 17:54:57 -07005003
John W. Linvillee0e0a672008-03-25 15:58:40 -04005004 if (priv->bands[IEEE80211_BAND_2GHZ].n_channels)
5005 priv->hw->wiphy->bands[IEEE80211_BAND_2GHZ] =
5006 &priv->bands[IEEE80211_BAND_2GHZ];
5007 if (priv->bands[IEEE80211_BAND_5GHZ].n_channels)
5008 priv->hw->wiphy->bands[IEEE80211_BAND_5GHZ] =
5009 &priv->bands[IEEE80211_BAND_5GHZ];
Zhu Yib481de92007-09-25 17:54:57 -07005010
Zhu Yib481de92007-09-25 17:54:57 -07005011 set_bit(STATUS_GEO_CONFIGURED, &priv->status);
5012
5013 return 0;
5014}
5015
Reinette Chatre849e0dc2008-01-23 10:15:18 -08005016/*
5017 * iwl4965_free_geos - undo allocations in iwl4965_init_geos
5018 */
Assaf Kraussbf85ea42008-03-14 10:38:49 -07005019void iwl4965_free_geos(struct iwl_priv *priv)
Reinette Chatre849e0dc2008-01-23 10:15:18 -08005020{
Reinette Chatre849e0dc2008-01-23 10:15:18 -08005021 kfree(priv->ieee_channels);
5022 kfree(priv->ieee_rates);
5023 clear_bit(STATUS_GEO_CONFIGURED, &priv->status);
5024}
5025
Zhu Yib481de92007-09-25 17:54:57 -07005026/******************************************************************************
5027 *
5028 * uCode download functions
5029 *
5030 ******************************************************************************/
5031
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07005032static void iwl4965_dealloc_ucode_pci(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005033{
Tomas Winkler98c92212008-01-14 17:46:20 -08005034 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_code);
5035 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data);
5036 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
5037 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init);
5038 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init_data);
5039 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_boot);
Zhu Yib481de92007-09-25 17:54:57 -07005040}
5041
5042/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005043 * iwl4965_verify_inst_full - verify runtime uCode image in card vs. host,
Zhu Yib481de92007-09-25 17:54:57 -07005044 * looking at all data.
5045 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07005046static int iwl4965_verify_inst_full(struct iwl_priv *priv, __le32 *image,
Ben Cahill9fbab512007-11-29 11:09:47 +08005047 u32 len)
Zhu Yib481de92007-09-25 17:54:57 -07005048{
5049 u32 val;
5050 u32 save_len = len;
5051 int rc = 0;
5052 u32 errcnt;
5053
5054 IWL_DEBUG_INFO("ucode inst image size is %u\n", len);
5055
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005056 rc = iwl4965_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005057 if (rc)
5058 return rc;
5059
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005060 iwl4965_write_direct32(priv, HBUS_TARG_MEM_RADDR, RTC_INST_LOWER_BOUND);
Zhu Yib481de92007-09-25 17:54:57 -07005061
5062 errcnt = 0;
5063 for (; len > 0; len -= sizeof(u32), image++) {
5064 /* read data comes through single port, auto-incr addr */
5065 /* NOTE: Use the debugless read so we don't flood kernel log
5066 * if IWL_DL_IO is set */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005067 val = _iwl4965_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Zhu Yib481de92007-09-25 17:54:57 -07005068 if (val != le32_to_cpu(*image)) {
5069 IWL_ERROR("uCode INST section is invalid at "
5070 "offset 0x%x, is 0x%x, s/b 0x%x\n",
5071 save_len - len, val, le32_to_cpu(*image));
5072 rc = -EIO;
5073 errcnt++;
5074 if (errcnt >= 20)
5075 break;
5076 }
5077 }
5078
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005079 iwl4965_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005080
5081 if (!errcnt)
5082 IWL_DEBUG_INFO
5083 ("ucode image in INSTRUCTION memory is good\n");
5084
5085 return rc;
5086}
5087
5088
5089/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005090 * iwl4965_verify_inst_sparse - verify runtime uCode image in card vs. host,
Zhu Yib481de92007-09-25 17:54:57 -07005091 * using sample data 100 bytes apart. If these sample points are good,
5092 * it's a pretty good bet that everything between them is good, too.
5093 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07005094static int iwl4965_verify_inst_sparse(struct iwl_priv *priv, __le32 *image, u32 len)
Zhu Yib481de92007-09-25 17:54:57 -07005095{
5096 u32 val;
5097 int rc = 0;
5098 u32 errcnt = 0;
5099 u32 i;
5100
5101 IWL_DEBUG_INFO("ucode inst image size is %u\n", len);
5102
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005103 rc = iwl4965_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005104 if (rc)
5105 return rc;
5106
5107 for (i = 0; i < len; i += 100, image += 100/sizeof(u32)) {
5108 /* read data comes through single port, auto-incr addr */
5109 /* NOTE: Use the debugless read so we don't flood kernel log
5110 * if IWL_DL_IO is set */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005111 iwl4965_write_direct32(priv, HBUS_TARG_MEM_RADDR,
Zhu Yib481de92007-09-25 17:54:57 -07005112 i + RTC_INST_LOWER_BOUND);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005113 val = _iwl4965_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Zhu Yib481de92007-09-25 17:54:57 -07005114 if (val != le32_to_cpu(*image)) {
5115#if 0 /* Enable this if you want to see details */
5116 IWL_ERROR("uCode INST section is invalid at "
5117 "offset 0x%x, is 0x%x, s/b 0x%x\n",
5118 i, val, *image);
5119#endif
5120 rc = -EIO;
5121 errcnt++;
5122 if (errcnt >= 3)
5123 break;
5124 }
5125 }
5126
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005127 iwl4965_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005128
5129 return rc;
5130}
5131
5132
5133/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005134 * iwl4965_verify_ucode - determine which instruction image is in SRAM,
Zhu Yib481de92007-09-25 17:54:57 -07005135 * and verify its contents
5136 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07005137static int iwl4965_verify_ucode(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005138{
5139 __le32 *image;
5140 u32 len;
5141 int rc = 0;
5142
5143 /* Try bootstrap */
5144 image = (__le32 *)priv->ucode_boot.v_addr;
5145 len = priv->ucode_boot.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005146 rc = iwl4965_verify_inst_sparse(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07005147 if (rc == 0) {
5148 IWL_DEBUG_INFO("Bootstrap uCode is good in inst SRAM\n");
5149 return 0;
5150 }
5151
5152 /* Try initialize */
5153 image = (__le32 *)priv->ucode_init.v_addr;
5154 len = priv->ucode_init.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005155 rc = iwl4965_verify_inst_sparse(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07005156 if (rc == 0) {
5157 IWL_DEBUG_INFO("Initialize uCode is good in inst SRAM\n");
5158 return 0;
5159 }
5160
5161 /* Try runtime/protocol */
5162 image = (__le32 *)priv->ucode_code.v_addr;
5163 len = priv->ucode_code.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005164 rc = iwl4965_verify_inst_sparse(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07005165 if (rc == 0) {
5166 IWL_DEBUG_INFO("Runtime uCode is good in inst SRAM\n");
5167 return 0;
5168 }
5169
5170 IWL_ERROR("NO VALID UCODE IMAGE IN INSTRUCTION SRAM!!\n");
5171
Ben Cahill9fbab512007-11-29 11:09:47 +08005172 /* Since nothing seems to match, show first several data entries in
5173 * instruction SRAM, so maybe visual inspection will give a clue.
5174 * Selection of bootstrap image (vs. other images) is arbitrary. */
Zhu Yib481de92007-09-25 17:54:57 -07005175 image = (__le32 *)priv->ucode_boot.v_addr;
5176 len = priv->ucode_boot.len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005177 rc = iwl4965_verify_inst_full(priv, image, len);
Zhu Yib481de92007-09-25 17:54:57 -07005178
5179 return rc;
5180}
5181
5182
5183/* check contents of special bootstrap uCode SRAM */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07005184static int iwl4965_verify_bsm(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005185{
5186 __le32 *image = priv->ucode_boot.v_addr;
5187 u32 len = priv->ucode_boot.len;
5188 u32 reg;
5189 u32 val;
5190
5191 IWL_DEBUG_INFO("Begin verify bsm\n");
5192
5193 /* verify BSM SRAM contents */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005194 val = iwl4965_read_prph(priv, BSM_WR_DWCOUNT_REG);
Zhu Yib481de92007-09-25 17:54:57 -07005195 for (reg = BSM_SRAM_LOWER_BOUND;
5196 reg < BSM_SRAM_LOWER_BOUND + len;
5197 reg += sizeof(u32), image ++) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005198 val = iwl4965_read_prph(priv, reg);
Zhu Yib481de92007-09-25 17:54:57 -07005199 if (val != le32_to_cpu(*image)) {
5200 IWL_ERROR("BSM uCode verification failed at "
5201 "addr 0x%08X+%u (of %u), is 0x%x, s/b 0x%x\n",
5202 BSM_SRAM_LOWER_BOUND,
5203 reg - BSM_SRAM_LOWER_BOUND, len,
5204 val, le32_to_cpu(*image));
5205 return -EIO;
5206 }
5207 }
5208
5209 IWL_DEBUG_INFO("BSM bootstrap uCode image OK\n");
5210
5211 return 0;
5212}
5213
5214/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005215 * iwl4965_load_bsm - Load bootstrap instructions
Zhu Yib481de92007-09-25 17:54:57 -07005216 *
5217 * BSM operation:
5218 *
5219 * The Bootstrap State Machine (BSM) stores a short bootstrap uCode program
5220 * in special SRAM that does not power down during RFKILL. When powering back
5221 * up after power-saving sleeps (or during initial uCode load), the BSM loads
5222 * the bootstrap program into the on-board processor, and starts it.
5223 *
5224 * The bootstrap program loads (via DMA) instructions and data for a new
5225 * program from host DRAM locations indicated by the host driver in the
5226 * BSM_DRAM_* registers. Once the new program is loaded, it starts
5227 * automatically.
5228 *
5229 * When initializing the NIC, the host driver points the BSM to the
5230 * "initialize" uCode image. This uCode sets up some internal data, then
5231 * notifies host via "initialize alive" that it is complete.
5232 *
5233 * The host then replaces the BSM_DRAM_* pointer values to point to the
5234 * normal runtime uCode instructions and a backup uCode data cache buffer
5235 * (filled initially with starting data values for the on-board processor),
5236 * then triggers the "initialize" uCode to load and launch the runtime uCode,
5237 * which begins normal operation.
5238 *
5239 * When doing a power-save shutdown, runtime uCode saves data SRAM into
5240 * the backup data cache in DRAM before SRAM is powered down.
5241 *
5242 * When powering back up, the BSM loads the bootstrap program. This reloads
5243 * the runtime uCode instructions and the backup data cache into SRAM,
5244 * and re-launches the runtime uCode from where it left off.
5245 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07005246static int iwl4965_load_bsm(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005247{
5248 __le32 *image = priv->ucode_boot.v_addr;
5249 u32 len = priv->ucode_boot.len;
5250 dma_addr_t pinst;
5251 dma_addr_t pdata;
5252 u32 inst_len;
5253 u32 data_len;
5254 int rc;
5255 int i;
5256 u32 done;
5257 u32 reg_offset;
5258
5259 IWL_DEBUG_INFO("Begin load bsm\n");
5260
5261 /* make sure bootstrap program is no larger than BSM's SRAM size */
5262 if (len > IWL_MAX_BSM_SIZE)
5263 return -EINVAL;
5264
5265 /* Tell bootstrap uCode where to find the "Initialize" uCode
Ben Cahill9fbab512007-11-29 11:09:47 +08005266 * in host DRAM ... host DRAM physical address bits 35:4 for 4965.
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005267 * NOTE: iwl4965_initialize_alive_start() will replace these values,
Zhu Yib481de92007-09-25 17:54:57 -07005268 * after the "initialize" uCode has run, to point to
5269 * runtime/protocol instructions and backup data cache. */
5270 pinst = priv->ucode_init.p_addr >> 4;
5271 pdata = priv->ucode_init_data.p_addr >> 4;
5272 inst_len = priv->ucode_init.len;
5273 data_len = priv->ucode_init_data.len;
5274
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005275 rc = iwl4965_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005276 if (rc)
5277 return rc;
5278
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005279 iwl4965_write_prph(priv, BSM_DRAM_INST_PTR_REG, pinst);
5280 iwl4965_write_prph(priv, BSM_DRAM_DATA_PTR_REG, pdata);
5281 iwl4965_write_prph(priv, BSM_DRAM_INST_BYTECOUNT_REG, inst_len);
5282 iwl4965_write_prph(priv, BSM_DRAM_DATA_BYTECOUNT_REG, data_len);
Zhu Yib481de92007-09-25 17:54:57 -07005283
5284 /* Fill BSM memory with bootstrap instructions */
5285 for (reg_offset = BSM_SRAM_LOWER_BOUND;
5286 reg_offset < BSM_SRAM_LOWER_BOUND + len;
5287 reg_offset += sizeof(u32), image++)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005288 _iwl4965_write_prph(priv, reg_offset,
Zhu Yib481de92007-09-25 17:54:57 -07005289 le32_to_cpu(*image));
5290
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005291 rc = iwl4965_verify_bsm(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005292 if (rc) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005293 iwl4965_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005294 return rc;
5295 }
5296
5297 /* Tell BSM to copy from BSM SRAM into instruction SRAM, when asked */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005298 iwl4965_write_prph(priv, BSM_WR_MEM_SRC_REG, 0x0);
5299 iwl4965_write_prph(priv, BSM_WR_MEM_DST_REG,
Zhu Yib481de92007-09-25 17:54:57 -07005300 RTC_INST_LOWER_BOUND);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005301 iwl4965_write_prph(priv, BSM_WR_DWCOUNT_REG, len / sizeof(u32));
Zhu Yib481de92007-09-25 17:54:57 -07005302
5303 /* Load bootstrap code into instruction SRAM now,
5304 * to prepare to load "initialize" uCode */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005305 iwl4965_write_prph(priv, BSM_WR_CTRL_REG,
Zhu Yib481de92007-09-25 17:54:57 -07005306 BSM_WR_CTRL_REG_BIT_START);
5307
5308 /* Wait for load of bootstrap uCode to finish */
5309 for (i = 0; i < 100; i++) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005310 done = iwl4965_read_prph(priv, BSM_WR_CTRL_REG);
Zhu Yib481de92007-09-25 17:54:57 -07005311 if (!(done & BSM_WR_CTRL_REG_BIT_START))
5312 break;
5313 udelay(10);
5314 }
5315 if (i < 100)
5316 IWL_DEBUG_INFO("BSM write complete, poll %d iterations\n", i);
5317 else {
5318 IWL_ERROR("BSM write did not complete!\n");
5319 return -EIO;
5320 }
5321
5322 /* Enable future boot loads whenever power management unit triggers it
5323 * (e.g. when powering back up after power-save shutdown) */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005324 iwl4965_write_prph(priv, BSM_WR_CTRL_REG,
Zhu Yib481de92007-09-25 17:54:57 -07005325 BSM_WR_CTRL_REG_BIT_START_EN);
5326
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005327 iwl4965_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005328
5329 return 0;
5330}
5331
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07005332static void iwl4965_nic_start(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005333{
5334 /* Remove all resets to allow NIC to operate */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005335 iwl4965_write32(priv, CSR_RESET, 0);
Zhu Yib481de92007-09-25 17:54:57 -07005336}
5337
Tomas Winkler90e759d2007-11-29 11:09:41 +08005338
Zhu Yib481de92007-09-25 17:54:57 -07005339/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005340 * iwl4965_read_ucode - Read uCode images from disk file.
Zhu Yib481de92007-09-25 17:54:57 -07005341 *
5342 * Copy into buffers for card to fetch via bus-mastering
5343 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07005344static int iwl4965_read_ucode(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005345{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005346 struct iwl4965_ucode *ucode;
Tomas Winkler90e759d2007-11-29 11:09:41 +08005347 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07005348 const struct firmware *ucode_raw;
Tomas Winkler4bf775c2008-03-04 18:09:31 -08005349 const char *name = priv->cfg->fw_name;
Zhu Yib481de92007-09-25 17:54:57 -07005350 u8 *src;
5351 size_t len;
5352 u32 ver, inst_size, data_size, init_size, init_data_size, boot_size;
5353
5354 /* Ask kernel firmware_class module to get the boot firmware off disk.
5355 * request_firmware() is synchronous, file is in memory on return. */
Tomas Winkler90e759d2007-11-29 11:09:41 +08005356 ret = request_firmware(&ucode_raw, name, &priv->pci_dev->dev);
5357 if (ret < 0) {
5358 IWL_ERROR("%s firmware file req failed: Reason %d\n",
5359 name, ret);
Zhu Yib481de92007-09-25 17:54:57 -07005360 goto error;
5361 }
5362
5363 IWL_DEBUG_INFO("Got firmware '%s' file (%zd bytes) from disk\n",
5364 name, ucode_raw->size);
5365
5366 /* Make sure that we got at least our header! */
5367 if (ucode_raw->size < sizeof(*ucode)) {
5368 IWL_ERROR("File size way too small!\n");
Tomas Winkler90e759d2007-11-29 11:09:41 +08005369 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07005370 goto err_release;
5371 }
5372
5373 /* Data from ucode file: header followed by uCode images */
5374 ucode = (void *)ucode_raw->data;
5375
5376 ver = le32_to_cpu(ucode->ver);
5377 inst_size = le32_to_cpu(ucode->inst_size);
5378 data_size = le32_to_cpu(ucode->data_size);
5379 init_size = le32_to_cpu(ucode->init_size);
5380 init_data_size = le32_to_cpu(ucode->init_data_size);
5381 boot_size = le32_to_cpu(ucode->boot_size);
5382
5383 IWL_DEBUG_INFO("f/w package hdr ucode version = 0x%x\n", ver);
5384 IWL_DEBUG_INFO("f/w package hdr runtime inst size = %u\n",
5385 inst_size);
5386 IWL_DEBUG_INFO("f/w package hdr runtime data size = %u\n",
5387 data_size);
5388 IWL_DEBUG_INFO("f/w package hdr init inst size = %u\n",
5389 init_size);
5390 IWL_DEBUG_INFO("f/w package hdr init data size = %u\n",
5391 init_data_size);
5392 IWL_DEBUG_INFO("f/w package hdr boot inst size = %u\n",
5393 boot_size);
5394
5395 /* Verify size of file vs. image size info in file's header */
5396 if (ucode_raw->size < sizeof(*ucode) +
5397 inst_size + data_size + init_size +
5398 init_data_size + boot_size) {
5399
5400 IWL_DEBUG_INFO("uCode file size %d too small\n",
5401 (int)ucode_raw->size);
Tomas Winkler90e759d2007-11-29 11:09:41 +08005402 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07005403 goto err_release;
5404 }
5405
5406 /* Verify that uCode images will fit in card's SRAM */
5407 if (inst_size > IWL_MAX_INST_SIZE) {
Tomas Winkler90e759d2007-11-29 11:09:41 +08005408 IWL_DEBUG_INFO("uCode instr len %d too large to fit in\n",
5409 inst_size);
5410 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07005411 goto err_release;
5412 }
5413
5414 if (data_size > IWL_MAX_DATA_SIZE) {
Tomas Winkler90e759d2007-11-29 11:09:41 +08005415 IWL_DEBUG_INFO("uCode data len %d too large to fit in\n",
5416 data_size);
5417 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07005418 goto err_release;
5419 }
5420 if (init_size > IWL_MAX_INST_SIZE) {
5421 IWL_DEBUG_INFO
Tomas Winkler90e759d2007-11-29 11:09:41 +08005422 ("uCode init instr len %d too large to fit in\n",
5423 init_size);
5424 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07005425 goto err_release;
5426 }
5427 if (init_data_size > IWL_MAX_DATA_SIZE) {
5428 IWL_DEBUG_INFO
Tomas Winkler90e759d2007-11-29 11:09:41 +08005429 ("uCode init data len %d too large to fit in\n",
5430 init_data_size);
5431 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07005432 goto err_release;
5433 }
5434 if (boot_size > IWL_MAX_BSM_SIZE) {
5435 IWL_DEBUG_INFO
Tomas Winkler90e759d2007-11-29 11:09:41 +08005436 ("uCode boot instr len %d too large to fit in\n",
5437 boot_size);
5438 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07005439 goto err_release;
5440 }
5441
5442 /* Allocate ucode buffers for card's bus-master loading ... */
5443
5444 /* Runtime instructions and 2 copies of data:
5445 * 1) unmodified from disk
5446 * 2) backup cache for save/restore during power-downs */
5447 priv->ucode_code.len = inst_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08005448 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_code);
Zhu Yib481de92007-09-25 17:54:57 -07005449
5450 priv->ucode_data.len = data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08005451 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data);
Zhu Yib481de92007-09-25 17:54:57 -07005452
5453 priv->ucode_data_backup.len = data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08005454 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
Zhu Yib481de92007-09-25 17:54:57 -07005455
5456 /* Initialization instructions and data */
Tomas Winkler90e759d2007-11-29 11:09:41 +08005457 if (init_size && init_data_size) {
5458 priv->ucode_init.len = init_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08005459 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init);
Zhu Yib481de92007-09-25 17:54:57 -07005460
Tomas Winkler90e759d2007-11-29 11:09:41 +08005461 priv->ucode_init_data.len = init_data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08005462 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init_data);
Tomas Winkler90e759d2007-11-29 11:09:41 +08005463
5464 if (!priv->ucode_init.v_addr || !priv->ucode_init_data.v_addr)
5465 goto err_pci_alloc;
5466 }
Zhu Yib481de92007-09-25 17:54:57 -07005467
5468 /* Bootstrap (instructions only, no data) */
Tomas Winkler90e759d2007-11-29 11:09:41 +08005469 if (boot_size) {
5470 priv->ucode_boot.len = boot_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08005471 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_boot);
Zhu Yib481de92007-09-25 17:54:57 -07005472
Tomas Winkler90e759d2007-11-29 11:09:41 +08005473 if (!priv->ucode_boot.v_addr)
5474 goto err_pci_alloc;
5475 }
Zhu Yib481de92007-09-25 17:54:57 -07005476
5477 /* Copy images into buffers for card's bus-master reads ... */
5478
5479 /* Runtime instructions (first block of data in file) */
5480 src = &ucode->data[0];
5481 len = priv->ucode_code.len;
Tomas Winkler90e759d2007-11-29 11:09:41 +08005482 IWL_DEBUG_INFO("Copying (but not loading) uCode instr len %Zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07005483 memcpy(priv->ucode_code.v_addr, src, len);
5484 IWL_DEBUG_INFO("uCode instr buf vaddr = 0x%p, paddr = 0x%08x\n",
5485 priv->ucode_code.v_addr, (u32)priv->ucode_code.p_addr);
5486
5487 /* Runtime data (2nd block)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005488 * NOTE: Copy into backup buffer will be done in iwl4965_up() */
Zhu Yib481de92007-09-25 17:54:57 -07005489 src = &ucode->data[inst_size];
5490 len = priv->ucode_data.len;
Tomas Winkler90e759d2007-11-29 11:09:41 +08005491 IWL_DEBUG_INFO("Copying (but not loading) uCode data len %Zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07005492 memcpy(priv->ucode_data.v_addr, src, len);
5493 memcpy(priv->ucode_data_backup.v_addr, src, len);
5494
5495 /* Initialization instructions (3rd block) */
5496 if (init_size) {
5497 src = &ucode->data[inst_size + data_size];
5498 len = priv->ucode_init.len;
Tomas Winkler90e759d2007-11-29 11:09:41 +08005499 IWL_DEBUG_INFO("Copying (but not loading) init instr len %Zd\n",
5500 len);
Zhu Yib481de92007-09-25 17:54:57 -07005501 memcpy(priv->ucode_init.v_addr, src, len);
5502 }
5503
5504 /* Initialization data (4th block) */
5505 if (init_data_size) {
5506 src = &ucode->data[inst_size + data_size + init_size];
5507 len = priv->ucode_init_data.len;
Tomas Winkler90e759d2007-11-29 11:09:41 +08005508 IWL_DEBUG_INFO("Copying (but not loading) init data len %Zd\n",
5509 len);
Zhu Yib481de92007-09-25 17:54:57 -07005510 memcpy(priv->ucode_init_data.v_addr, src, len);
5511 }
5512
5513 /* Bootstrap instructions (5th block) */
5514 src = &ucode->data[inst_size + data_size + init_size + init_data_size];
5515 len = priv->ucode_boot.len;
Tomas Winkler90e759d2007-11-29 11:09:41 +08005516 IWL_DEBUG_INFO("Copying (but not loading) boot instr len %Zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07005517 memcpy(priv->ucode_boot.v_addr, src, len);
5518
5519 /* We have our copies now, allow OS release its copies */
5520 release_firmware(ucode_raw);
5521 return 0;
5522
5523 err_pci_alloc:
5524 IWL_ERROR("failed to allocate pci memory\n");
Tomas Winkler90e759d2007-11-29 11:09:41 +08005525 ret = -ENOMEM;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005526 iwl4965_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005527
5528 err_release:
5529 release_firmware(ucode_raw);
5530
5531 error:
Tomas Winkler90e759d2007-11-29 11:09:41 +08005532 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07005533}
5534
5535
5536/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005537 * iwl4965_set_ucode_ptrs - Set uCode address location
Zhu Yib481de92007-09-25 17:54:57 -07005538 *
5539 * Tell initialization uCode where to find runtime uCode.
5540 *
5541 * BSM registers initially contain pointers to initialization uCode.
5542 * We need to replace them to load runtime uCode inst and data,
5543 * and to save runtime data when powering down.
5544 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07005545static int iwl4965_set_ucode_ptrs(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005546{
5547 dma_addr_t pinst;
5548 dma_addr_t pdata;
5549 int rc = 0;
5550 unsigned long flags;
5551
5552 /* bits 35:4 for 4965 */
5553 pinst = priv->ucode_code.p_addr >> 4;
5554 pdata = priv->ucode_data_backup.p_addr >> 4;
5555
5556 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005557 rc = iwl4965_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005558 if (rc) {
5559 spin_unlock_irqrestore(&priv->lock, flags);
5560 return rc;
5561 }
5562
5563 /* Tell bootstrap uCode where to find image to load */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005564 iwl4965_write_prph(priv, BSM_DRAM_INST_PTR_REG, pinst);
5565 iwl4965_write_prph(priv, BSM_DRAM_DATA_PTR_REG, pdata);
5566 iwl4965_write_prph(priv, BSM_DRAM_DATA_BYTECOUNT_REG,
Zhu Yib481de92007-09-25 17:54:57 -07005567 priv->ucode_data.len);
5568
5569 /* Inst bytecount must be last to set up, bit 31 signals uCode
5570 * that all new ptr/size info is in place */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005571 iwl4965_write_prph(priv, BSM_DRAM_INST_BYTECOUNT_REG,
Zhu Yib481de92007-09-25 17:54:57 -07005572 priv->ucode_code.len | BSM_DRAM_INST_LOAD);
5573
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005574 iwl4965_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005575
5576 spin_unlock_irqrestore(&priv->lock, flags);
5577
5578 IWL_DEBUG_INFO("Runtime uCode pointers are set.\n");
5579
5580 return rc;
5581}
5582
5583/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005584 * iwl4965_init_alive_start - Called after REPLY_ALIVE notification received
Zhu Yib481de92007-09-25 17:54:57 -07005585 *
5586 * Called after REPLY_ALIVE notification received from "initialize" uCode.
5587 *
5588 * The 4965 "initialize" ALIVE reply contains calibration data for:
5589 * Voltage, temperature, and MIMO tx gain correction, now stored in priv
5590 * (3945 does not contain this data).
5591 *
5592 * Tell "initialize" uCode to go ahead and load the runtime uCode.
5593*/
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07005594static void iwl4965_init_alive_start(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005595{
5596 /* Check alive response for "valid" sign from uCode */
5597 if (priv->card_alive_init.is_valid != UCODE_VALID_OK) {
5598 /* We had an error bringing up the hardware, so take it
5599 * all the way back down so we can try again */
5600 IWL_DEBUG_INFO("Initialize Alive failed.\n");
5601 goto restart;
5602 }
5603
5604 /* Bootstrap uCode has loaded initialize uCode ... verify inst image.
5605 * This is a paranoid check, because we would not have gotten the
5606 * "initialize" alive if code weren't properly loaded. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005607 if (iwl4965_verify_ucode(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07005608 /* Runtime instruction load was bad;
5609 * take it all the way back down so we can try again */
5610 IWL_DEBUG_INFO("Bad \"initialize\" uCode load.\n");
5611 goto restart;
5612 }
5613
5614 /* Calculate temperature */
5615 priv->temperature = iwl4965_get_temperature(priv);
5616
5617 /* Send pointers to protocol/runtime uCode image ... init code will
5618 * load and launch runtime uCode, which will send us another "Alive"
5619 * notification. */
5620 IWL_DEBUG_INFO("Initialization Alive received.\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005621 if (iwl4965_set_ucode_ptrs(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07005622 /* Runtime instruction load won't happen;
5623 * take it all the way back down so we can try again */
5624 IWL_DEBUG_INFO("Couldn't set up uCode pointers.\n");
5625 goto restart;
5626 }
5627 return;
5628
5629 restart:
5630 queue_work(priv->workqueue, &priv->restart);
5631}
5632
5633
5634/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005635 * iwl4965_alive_start - called after REPLY_ALIVE notification received
Zhu Yib481de92007-09-25 17:54:57 -07005636 * from protocol/runtime uCode (initialization uCode's
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005637 * Alive gets handled by iwl4965_init_alive_start()).
Zhu Yib481de92007-09-25 17:54:57 -07005638 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07005639static void iwl4965_alive_start(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005640{
5641 int rc = 0;
5642
5643 IWL_DEBUG_INFO("Runtime Alive received.\n");
5644
5645 if (priv->card_alive.is_valid != UCODE_VALID_OK) {
5646 /* We had an error bringing up the hardware, so take it
5647 * all the way back down so we can try again */
5648 IWL_DEBUG_INFO("Alive failed.\n");
5649 goto restart;
5650 }
5651
5652 /* Initialize uCode has loaded Runtime uCode ... verify inst image.
5653 * This is a paranoid check, because we would not have gotten the
5654 * "runtime" alive if code weren't properly loaded. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005655 if (iwl4965_verify_ucode(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07005656 /* Runtime instruction load was bad;
5657 * take it all the way back down so we can try again */
5658 IWL_DEBUG_INFO("Bad runtime uCode load.\n");
5659 goto restart;
5660 }
5661
Assaf Kraussbf85ea42008-03-14 10:38:49 -07005662 iwlcore_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005663
5664 rc = iwl4965_alive_notify(priv);
5665 if (rc) {
5666 IWL_WARNING("Could not complete ALIVE transition [ntf]: %d\n",
5667 rc);
5668 goto restart;
5669 }
5670
Ben Cahill9fbab512007-11-29 11:09:47 +08005671 /* After the ALIVE response, we can send host commands to 4965 uCode */
Zhu Yib481de92007-09-25 17:54:57 -07005672 set_bit(STATUS_ALIVE, &priv->status);
5673
5674 /* Clear out the uCode error bit if it is set */
5675 clear_bit(STATUS_FW_ERROR, &priv->status);
5676
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005677 if (iwl4965_is_rfkill(priv))
Zhu Yib481de92007-09-25 17:54:57 -07005678 return;
5679
Zhu Yi5a669262008-01-14 17:46:18 -08005680 ieee80211_start_queues(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07005681
5682 priv->active_rate = priv->rates_mask;
5683 priv->active_rate_basic = priv->rates_mask & IWL_BASIC_RATES_MASK;
5684
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005685 iwl4965_send_power_mode(priv, IWL_POWER_LEVEL(priv->power_mode));
Zhu Yib481de92007-09-25 17:54:57 -07005686
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005687 if (iwl4965_is_associated(priv)) {
5688 struct iwl4965_rxon_cmd *active_rxon =
5689 (struct iwl4965_rxon_cmd *)(&priv->active_rxon);
Zhu Yib481de92007-09-25 17:54:57 -07005690
5691 memcpy(&priv->staging_rxon, &priv->active_rxon,
5692 sizeof(priv->staging_rxon));
5693 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
5694 } else {
5695 /* Initialize our rx_config data */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005696 iwl4965_connection_init_rx_config(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005697 memcpy(priv->staging_rxon.node_addr, priv->mac_addr, ETH_ALEN);
5698 }
5699
Ben Cahill9fbab512007-11-29 11:09:47 +08005700 /* Configure Bluetooth device coexistence support */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005701 iwl4965_send_bt_config(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005702
5703 /* Configure the adapter for unassociated operation */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005704 iwl4965_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005705
5706 /* At this point, the NIC is initialized and operational */
5707 priv->notif_missed_beacons = 0;
5708 set_bit(STATUS_READY, &priv->status);
5709
5710 iwl4965_rf_kill_ct_config(priv);
Zhu Yi5a669262008-01-14 17:46:18 -08005711
Zhu Yib481de92007-09-25 17:54:57 -07005712 IWL_DEBUG_INFO("ALIVE processing complete.\n");
Zhu Yi5a669262008-01-14 17:46:18 -08005713 wake_up_interruptible(&priv->wait_command_queue);
Zhu Yib481de92007-09-25 17:54:57 -07005714
5715 if (priv->error_recovering)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005716 iwl4965_error_recovery(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005717
5718 return;
5719
5720 restart:
5721 queue_work(priv->workqueue, &priv->restart);
5722}
5723
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07005724static void iwl4965_cancel_deferred_work(struct iwl_priv *priv);
Zhu Yib481de92007-09-25 17:54:57 -07005725
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07005726static void __iwl4965_down(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005727{
5728 unsigned long flags;
5729 int exit_pending = test_bit(STATUS_EXIT_PENDING, &priv->status);
5730 struct ieee80211_conf *conf = NULL;
5731
5732 IWL_DEBUG_INFO(DRV_NAME " is going down\n");
5733
5734 conf = ieee80211_get_hw_conf(priv->hw);
5735
5736 if (!exit_pending)
5737 set_bit(STATUS_EXIT_PENDING, &priv->status);
5738
Assaf Kraussbf85ea42008-03-14 10:38:49 -07005739 iwlcore_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005740
5741 /* Unblock any waiting calls */
5742 wake_up_interruptible_all(&priv->wait_command_queue);
5743
Zhu Yib481de92007-09-25 17:54:57 -07005744 /* Wipe out the EXIT_PENDING status bit if we are not actually
5745 * exiting the module */
5746 if (!exit_pending)
5747 clear_bit(STATUS_EXIT_PENDING, &priv->status);
5748
5749 /* stop and reset the on-board processor */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005750 iwl4965_write32(priv, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET);
Zhu Yib481de92007-09-25 17:54:57 -07005751
5752 /* tell the device to stop sending interrupts */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005753 iwl4965_disable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005754
5755 if (priv->mac80211_registered)
5756 ieee80211_stop_queues(priv->hw);
5757
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005758 /* If we have not previously called iwl4965_init() then
Zhu Yib481de92007-09-25 17:54:57 -07005759 * clear all bits but the RF Kill and SUSPEND bits and return */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005760 if (!iwl4965_is_init(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07005761 priv->status = test_bit(STATUS_RF_KILL_HW, &priv->status) <<
5762 STATUS_RF_KILL_HW |
5763 test_bit(STATUS_RF_KILL_SW, &priv->status) <<
5764 STATUS_RF_KILL_SW |
Reinette Chatre97888642008-02-06 11:20:38 -08005765 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
5766 STATUS_GEO_CONFIGURED |
Zhu Yib481de92007-09-25 17:54:57 -07005767 test_bit(STATUS_IN_SUSPEND, &priv->status) <<
5768 STATUS_IN_SUSPEND;
5769 goto exit;
5770 }
5771
5772 /* ...otherwise clear out all the status bits but the RF Kill and
5773 * SUSPEND bits and continue taking the NIC down. */
5774 priv->status &= test_bit(STATUS_RF_KILL_HW, &priv->status) <<
5775 STATUS_RF_KILL_HW |
5776 test_bit(STATUS_RF_KILL_SW, &priv->status) <<
5777 STATUS_RF_KILL_SW |
Reinette Chatre97888642008-02-06 11:20:38 -08005778 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
5779 STATUS_GEO_CONFIGURED |
Zhu Yib481de92007-09-25 17:54:57 -07005780 test_bit(STATUS_IN_SUSPEND, &priv->status) <<
5781 STATUS_IN_SUSPEND |
5782 test_bit(STATUS_FW_ERROR, &priv->status) <<
5783 STATUS_FW_ERROR;
5784
5785 spin_lock_irqsave(&priv->lock, flags);
Ben Cahill9fbab512007-11-29 11:09:47 +08005786 iwl4965_clear_bit(priv, CSR_GP_CNTRL,
5787 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
Zhu Yib481de92007-09-25 17:54:57 -07005788 spin_unlock_irqrestore(&priv->lock, flags);
5789
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005790 iwl4965_hw_txq_ctx_stop(priv);
5791 iwl4965_hw_rxq_stop(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005792
5793 spin_lock_irqsave(&priv->lock, flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005794 if (!iwl4965_grab_nic_access(priv)) {
5795 iwl4965_write_prph(priv, APMG_CLK_DIS_REG,
Zhu Yib481de92007-09-25 17:54:57 -07005796 APMG_CLK_VAL_DMA_CLK_RQT);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005797 iwl4965_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005798 }
5799 spin_unlock_irqrestore(&priv->lock, flags);
5800
5801 udelay(5);
5802
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005803 iwl4965_hw_nic_stop_master(priv);
5804 iwl4965_set_bit(priv, CSR_RESET, CSR_RESET_REG_FLAG_SW_RESET);
5805 iwl4965_hw_nic_reset(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005806
5807 exit:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005808 memset(&priv->card_alive, 0, sizeof(struct iwl4965_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07005809
5810 if (priv->ibss_beacon)
5811 dev_kfree_skb(priv->ibss_beacon);
5812 priv->ibss_beacon = NULL;
5813
5814 /* clear out any free frames */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005815 iwl4965_clear_free_frames(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005816}
5817
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07005818static void iwl4965_down(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005819{
5820 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005821 __iwl4965_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005822 mutex_unlock(&priv->mutex);
Zhu Yib24d22b2007-12-19 13:59:52 +08005823
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005824 iwl4965_cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005825}
5826
5827#define MAX_HW_RESTARTS 5
5828
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07005829static int __iwl4965_up(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07005830{
5831 int rc, i;
Zhu Yib481de92007-09-25 17:54:57 -07005832
5833 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
5834 IWL_WARNING("Exit pending; will not bring the NIC up\n");
5835 return -EIO;
5836 }
5837
5838 if (test_bit(STATUS_RF_KILL_SW, &priv->status)) {
5839 IWL_WARNING("Radio disabled by SW RF kill (module "
5840 "parameter)\n");
Zhu Yie655b9f2008-01-24 02:19:38 -08005841 return -ENODEV;
5842 }
5843
Reinette Chatree903fbd2008-01-30 22:05:15 -08005844 if (!priv->ucode_data_backup.v_addr || !priv->ucode_data.v_addr) {
5845 IWL_ERROR("ucode not available for device bringup\n");
5846 return -EIO;
5847 }
5848
Zhu Yie655b9f2008-01-24 02:19:38 -08005849 /* If platform's RF_KILL switch is NOT set to KILL */
5850 if (iwl4965_read32(priv, CSR_GP_CNTRL) &
5851 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
5852 clear_bit(STATUS_RF_KILL_HW, &priv->status);
5853 else {
5854 set_bit(STATUS_RF_KILL_HW, &priv->status);
5855 if (!test_bit(STATUS_IN_SUSPEND, &priv->status)) {
5856 IWL_WARNING("Radio disabled by HW RF Kill switch\n");
5857 return -ENODEV;
5858 }
Zhu Yib481de92007-09-25 17:54:57 -07005859 }
5860
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005861 iwl4965_write32(priv, CSR_INT, 0xFFFFFFFF);
Zhu Yib481de92007-09-25 17:54:57 -07005862
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005863 rc = iwl4965_hw_nic_init(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005864 if (rc) {
5865 IWL_ERROR("Unable to int nic\n");
5866 return rc;
5867 }
5868
5869 /* make sure rfkill handshake bits are cleared */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005870 iwl4965_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
5871 iwl4965_write32(priv, CSR_UCODE_DRV_GP1_CLR,
Zhu Yib481de92007-09-25 17:54:57 -07005872 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
5873
5874 /* clear (again), then enable host interrupts */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005875 iwl4965_write32(priv, CSR_INT, 0xFFFFFFFF);
5876 iwl4965_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005877
5878 /* really make sure rfkill handshake bits are cleared */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005879 iwl4965_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
5880 iwl4965_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
Zhu Yib481de92007-09-25 17:54:57 -07005881
5882 /* Copy original ucode data image from disk into backup cache.
5883 * This will be used to initialize the on-board processor's
5884 * data SRAM for a clean start when the runtime program first loads. */
5885 memcpy(priv->ucode_data_backup.v_addr, priv->ucode_data.v_addr,
Zhu Yi5a669262008-01-14 17:46:18 -08005886 priv->ucode_data.len);
Zhu Yib481de92007-09-25 17:54:57 -07005887
Zhu Yie655b9f2008-01-24 02:19:38 -08005888 /* We return success when we resume from suspend and rf_kill is on. */
5889 if (test_bit(STATUS_RF_KILL_HW, &priv->status))
Zhu Yib481de92007-09-25 17:54:57 -07005890 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07005891
5892 for (i = 0; i < MAX_HW_RESTARTS; i++) {
5893
Assaf Kraussbf85ea42008-03-14 10:38:49 -07005894 iwlcore_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005895
5896 /* load bootstrap state machine,
5897 * load bootstrap program into processor's memory,
5898 * prepare to load the "initialize" uCode */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005899 rc = iwl4965_load_bsm(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005900
5901 if (rc) {
5902 IWL_ERROR("Unable to set up bootstrap uCode: %d\n", rc);
5903 continue;
5904 }
5905
5906 /* start card; "initialize" will load runtime ucode */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005907 iwl4965_nic_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005908
Zhu Yib481de92007-09-25 17:54:57 -07005909 IWL_DEBUG_INFO(DRV_NAME " is coming up\n");
5910
5911 return 0;
5912 }
5913
5914 set_bit(STATUS_EXIT_PENDING, &priv->status);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005915 __iwl4965_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005916
5917 /* tried to restart and config the device for as long as our
5918 * patience could withstand */
5919 IWL_ERROR("Unable to initialize device after %d attempts.\n", i);
5920 return -EIO;
5921}
5922
5923
5924/*****************************************************************************
5925 *
5926 * Workqueue callbacks
5927 *
5928 *****************************************************************************/
5929
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005930static void iwl4965_bg_init_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07005931{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07005932 struct iwl_priv *priv =
5933 container_of(data, struct iwl_priv, init_alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07005934
5935 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
5936 return;
5937
5938 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005939 iwl4965_init_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005940 mutex_unlock(&priv->mutex);
5941}
5942
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005943static void iwl4965_bg_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07005944{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07005945 struct iwl_priv *priv =
5946 container_of(data, struct iwl_priv, alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07005947
5948 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
5949 return;
5950
5951 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005952 iwl4965_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07005953 mutex_unlock(&priv->mutex);
5954}
5955
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005956static void iwl4965_bg_rf_kill(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -07005957{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07005958 struct iwl_priv *priv = container_of(work, struct iwl_priv, rf_kill);
Zhu Yib481de92007-09-25 17:54:57 -07005959
5960 wake_up_interruptible(&priv->wait_command_queue);
5961
5962 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
5963 return;
5964
5965 mutex_lock(&priv->mutex);
5966
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005967 if (!iwl4965_is_rfkill(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07005968 IWL_DEBUG(IWL_DL_INFO | IWL_DL_RF_KILL,
5969 "HW and/or SW RF Kill no longer active, restarting "
5970 "device\n");
5971 if (!test_bit(STATUS_EXIT_PENDING, &priv->status))
5972 queue_work(priv->workqueue, &priv->restart);
5973 } else {
5974
5975 if (!test_bit(STATUS_RF_KILL_HW, &priv->status))
5976 IWL_DEBUG_RF_KILL("Can not turn radio back on - "
5977 "disabled by SW switch\n");
5978 else
5979 IWL_WARNING("Radio Frequency Kill Switch is On:\n"
5980 "Kill switch must be turned off for "
5981 "wireless networking to work.\n");
5982 }
5983 mutex_unlock(&priv->mutex);
5984}
5985
5986#define IWL_SCAN_CHECK_WATCHDOG (7 * HZ)
5987
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08005988static void iwl4965_bg_scan_check(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07005989{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07005990 struct iwl_priv *priv =
5991 container_of(data, struct iwl_priv, scan_check.work);
Zhu Yib481de92007-09-25 17:54:57 -07005992
5993 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
5994 return;
5995
5996 mutex_lock(&priv->mutex);
5997 if (test_bit(STATUS_SCANNING, &priv->status) ||
5998 test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
5999 IWL_DEBUG(IWL_DL_INFO | IWL_DL_SCAN,
6000 "Scan completion watchdog resetting adapter (%dms)\n",
6001 jiffies_to_msecs(IWL_SCAN_CHECK_WATCHDOG));
mabbas052c4b92007-10-25 17:15:43 +08006002
Zhu Yib481de92007-09-25 17:54:57 -07006003 if (!test_bit(STATUS_EXIT_PENDING, &priv->status))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006004 iwl4965_send_scan_abort(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006005 }
6006 mutex_unlock(&priv->mutex);
6007}
6008
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006009static void iwl4965_bg_request_scan(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07006010{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07006011 struct iwl_priv *priv =
6012 container_of(data, struct iwl_priv, request_scan);
Tomas Winkler857485c2008-03-21 13:53:44 -07006013 struct iwl_host_cmd cmd = {
Zhu Yib481de92007-09-25 17:54:57 -07006014 .id = REPLY_SCAN_CMD,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006015 .len = sizeof(struct iwl4965_scan_cmd),
Zhu Yib481de92007-09-25 17:54:57 -07006016 .meta.flags = CMD_SIZE_HUGE,
6017 };
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006018 struct iwl4965_scan_cmd *scan;
Zhu Yib481de92007-09-25 17:54:57 -07006019 struct ieee80211_conf *conf = NULL;
Tomas Winkler78330fd2008-02-06 02:37:18 +02006020 u16 cmd_len;
Johannes Berg8318d782008-01-24 19:38:38 +01006021 enum ieee80211_band band;
Tomas Winkler78330fd2008-02-06 02:37:18 +02006022 u8 direct_mask;
Tomas Winkler857485c2008-03-21 13:53:44 -07006023 int ret = 0;
Zhu Yib481de92007-09-25 17:54:57 -07006024
6025 conf = ieee80211_get_hw_conf(priv->hw);
6026
6027 mutex_lock(&priv->mutex);
6028
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006029 if (!iwl4965_is_ready(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006030 IWL_WARNING("request scan called when driver not ready.\n");
6031 goto done;
6032 }
6033
6034 /* Make sure the scan wasn't cancelled before this queued work
6035 * was given the chance to run... */
6036 if (!test_bit(STATUS_SCANNING, &priv->status))
6037 goto done;
6038
6039 /* This should never be called or scheduled if there is currently
6040 * a scan active in the hardware. */
6041 if (test_bit(STATUS_SCAN_HW, &priv->status)) {
6042 IWL_DEBUG_INFO("Multiple concurrent scan requests in parallel. "
6043 "Ignoring second request.\n");
Tomas Winkler857485c2008-03-21 13:53:44 -07006044 ret = -EIO;
Zhu Yib481de92007-09-25 17:54:57 -07006045 goto done;
6046 }
6047
6048 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
6049 IWL_DEBUG_SCAN("Aborting scan due to device shutdown\n");
6050 goto done;
6051 }
6052
6053 if (test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
6054 IWL_DEBUG_HC("Scan request while abort pending. Queuing.\n");
6055 goto done;
6056 }
6057
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006058 if (iwl4965_is_rfkill(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006059 IWL_DEBUG_HC("Aborting scan due to RF Kill activation\n");
6060 goto done;
6061 }
6062
6063 if (!test_bit(STATUS_READY, &priv->status)) {
6064 IWL_DEBUG_HC("Scan request while uninitialized. Queuing.\n");
6065 goto done;
6066 }
6067
6068 if (!priv->scan_bands) {
6069 IWL_DEBUG_HC("Aborting scan due to no requested bands\n");
6070 goto done;
6071 }
6072
6073 if (!priv->scan) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006074 priv->scan = kmalloc(sizeof(struct iwl4965_scan_cmd) +
Zhu Yib481de92007-09-25 17:54:57 -07006075 IWL_MAX_SCAN_SIZE, GFP_KERNEL);
6076 if (!priv->scan) {
Tomas Winkler857485c2008-03-21 13:53:44 -07006077 ret = -ENOMEM;
Zhu Yib481de92007-09-25 17:54:57 -07006078 goto done;
6079 }
6080 }
6081 scan = priv->scan;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006082 memset(scan, 0, sizeof(struct iwl4965_scan_cmd) + IWL_MAX_SCAN_SIZE);
Zhu Yib481de92007-09-25 17:54:57 -07006083
6084 scan->quiet_plcp_th = IWL_PLCP_QUIET_THRESH;
6085 scan->quiet_time = IWL_ACTIVE_QUIET_TIME;
6086
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006087 if (iwl4965_is_associated(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006088 u16 interval = 0;
6089 u32 extra;
6090 u32 suspend_time = 100;
6091 u32 scan_suspend_time = 100;
6092 unsigned long flags;
6093
6094 IWL_DEBUG_INFO("Scanning while associated...\n");
6095
6096 spin_lock_irqsave(&priv->lock, flags);
6097 interval = priv->beacon_int;
6098 spin_unlock_irqrestore(&priv->lock, flags);
6099
6100 scan->suspend_time = 0;
mabbas052c4b92007-10-25 17:15:43 +08006101 scan->max_out_time = cpu_to_le32(200 * 1024);
Zhu Yib481de92007-09-25 17:54:57 -07006102 if (!interval)
6103 interval = suspend_time;
6104
6105 extra = (suspend_time / interval) << 22;
6106 scan_suspend_time = (extra |
6107 ((suspend_time % interval) * 1024));
6108 scan->suspend_time = cpu_to_le32(scan_suspend_time);
6109 IWL_DEBUG_SCAN("suspend_time 0x%X beacon interval %d\n",
6110 scan_suspend_time, interval);
6111 }
6112
6113 /* We should add the ability for user to lock to PASSIVE ONLY */
6114 if (priv->one_direct_scan) {
6115 IWL_DEBUG_SCAN
6116 ("Kicking off one direct scan for '%s'\n",
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006117 iwl4965_escape_essid(priv->direct_ssid,
Zhu Yib481de92007-09-25 17:54:57 -07006118 priv->direct_ssid_len));
6119 scan->direct_scan[0].id = WLAN_EID_SSID;
6120 scan->direct_scan[0].len = priv->direct_ssid_len;
6121 memcpy(scan->direct_scan[0].ssid,
6122 priv->direct_ssid, priv->direct_ssid_len);
6123 direct_mask = 1;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006124 } else if (!iwl4965_is_associated(priv) && priv->essid_len) {
Zhu Yib481de92007-09-25 17:54:57 -07006125 scan->direct_scan[0].id = WLAN_EID_SSID;
6126 scan->direct_scan[0].len = priv->essid_len;
6127 memcpy(scan->direct_scan[0].ssid, priv->essid, priv->essid_len);
6128 direct_mask = 1;
Tomas Winkler857485c2008-03-21 13:53:44 -07006129 } else {
Zhu Yib481de92007-09-25 17:54:57 -07006130 direct_mask = 0;
Tomas Winkler857485c2008-03-21 13:53:44 -07006131 }
Zhu Yib481de92007-09-25 17:54:57 -07006132
Zhu Yib481de92007-09-25 17:54:57 -07006133 scan->tx_cmd.tx_flags = TX_CMD_FLG_SEQ_CTL_MSK;
6134 scan->tx_cmd.sta_id = priv->hw_setting.bcast_sta_id;
6135 scan->tx_cmd.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
6136
Zhu Yib481de92007-09-25 17:54:57 -07006137
6138 switch (priv->scan_bands) {
6139 case 2:
6140 scan->flags = RXON_FLG_BAND_24G_MSK | RXON_FLG_AUTO_DETECT_MSK;
6141 scan->tx_cmd.rate_n_flags =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006142 iwl4965_hw_set_rate_n_flags(IWL_RATE_1M_PLCP,
Zhu Yib481de92007-09-25 17:54:57 -07006143 RATE_MCS_ANT_B_MSK|RATE_MCS_CCK_MSK);
6144
6145 scan->good_CRC_th = 0;
Johannes Berg8318d782008-01-24 19:38:38 +01006146 band = IEEE80211_BAND_2GHZ;
Zhu Yib481de92007-09-25 17:54:57 -07006147 break;
6148
6149 case 1:
6150 scan->tx_cmd.rate_n_flags =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006151 iwl4965_hw_set_rate_n_flags(IWL_RATE_6M_PLCP,
Zhu Yib481de92007-09-25 17:54:57 -07006152 RATE_MCS_ANT_B_MSK);
6153 scan->good_CRC_th = IWL_GOOD_CRC_TH;
Johannes Berg8318d782008-01-24 19:38:38 +01006154 band = IEEE80211_BAND_5GHZ;
Zhu Yib481de92007-09-25 17:54:57 -07006155 break;
6156
6157 default:
6158 IWL_WARNING("Invalid scan band count\n");
6159 goto done;
6160 }
6161
Tomas Winkler78330fd2008-02-06 02:37:18 +02006162 /* We don't build a direct scan probe request; the uCode will do
6163 * that based on the direct_mask added to each channel entry */
6164 cmd_len = iwl4965_fill_probe_req(priv, band,
6165 (struct ieee80211_mgmt *)scan->data,
6166 IWL_MAX_SCAN_SIZE - sizeof(*scan), 0);
6167
6168 scan->tx_cmd.len = cpu_to_le16(cmd_len);
Zhu Yib481de92007-09-25 17:54:57 -07006169 /* select Rx chains */
6170
6171 /* Force use of chains B and C (0x6) for scan Rx.
6172 * Avoid A (0x1) because of its off-channel reception on A-band.
6173 * MIMO is not used here, but value is required to make uCode happy. */
6174 scan->rx_chain = RXON_RX_CHAIN_DRIVER_FORCE_MSK |
6175 cpu_to_le16((0x7 << RXON_RX_CHAIN_VALID_POS) |
6176 (0x6 << RXON_RX_CHAIN_FORCE_SEL_POS) |
6177 (0x7 << RXON_RX_CHAIN_FORCE_MIMO_SEL_POS));
6178
6179 if (priv->iw_mode == IEEE80211_IF_TYPE_MNTR)
6180 scan->filter_flags = RXON_FILTER_PROMISC_MSK;
6181
Reinette Chatre26c0f032008-03-11 16:17:15 -07006182 if (direct_mask) {
Zhu Yib481de92007-09-25 17:54:57 -07006183 IWL_DEBUG_SCAN
6184 ("Initiating direct scan for %s.\n",
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006185 iwl4965_escape_essid(priv->essid, priv->essid_len));
Reinette Chatre26c0f032008-03-11 16:17:15 -07006186 scan->channel_count =
6187 iwl4965_get_channels_for_scan(
6188 priv, band, 1, /* active */
6189 direct_mask,
6190 (void *)&scan->data[le16_to_cpu(scan->tx_cmd.len)]);
6191 } else {
Zhu Yib481de92007-09-25 17:54:57 -07006192 IWL_DEBUG_SCAN("Initiating indirect scan.\n");
Reinette Chatre26c0f032008-03-11 16:17:15 -07006193 scan->channel_count =
6194 iwl4965_get_channels_for_scan(
6195 priv, band, 0, /* passive */
6196 direct_mask,
6197 (void *)&scan->data[le16_to_cpu(scan->tx_cmd.len)]);
6198 }
Zhu Yib481de92007-09-25 17:54:57 -07006199
6200 cmd.len += le16_to_cpu(scan->tx_cmd.len) +
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006201 scan->channel_count * sizeof(struct iwl4965_scan_channel);
Zhu Yib481de92007-09-25 17:54:57 -07006202 cmd.data = scan;
6203 scan->len = cpu_to_le16(cmd.len);
6204
6205 set_bit(STATUS_SCAN_HW, &priv->status);
Tomas Winkler857485c2008-03-21 13:53:44 -07006206 ret = iwl_send_cmd_sync(priv, &cmd);
6207 if (ret)
Zhu Yib481de92007-09-25 17:54:57 -07006208 goto done;
6209
6210 queue_delayed_work(priv->workqueue, &priv->scan_check,
6211 IWL_SCAN_CHECK_WATCHDOG);
6212
6213 mutex_unlock(&priv->mutex);
6214 return;
6215
6216 done:
Ian Schram01ebd062007-10-25 17:15:22 +08006217 /* inform mac80211 scan aborted */
Zhu Yib481de92007-09-25 17:54:57 -07006218 queue_work(priv->workqueue, &priv->scan_completed);
6219 mutex_unlock(&priv->mutex);
6220}
6221
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006222static void iwl4965_bg_up(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07006223{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07006224 struct iwl_priv *priv = container_of(data, struct iwl_priv, up);
Zhu Yib481de92007-09-25 17:54:57 -07006225
6226 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
6227 return;
6228
6229 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006230 __iwl4965_up(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006231 mutex_unlock(&priv->mutex);
6232}
6233
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006234static void iwl4965_bg_restart(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07006235{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07006236 struct iwl_priv *priv = container_of(data, struct iwl_priv, restart);
Zhu Yib481de92007-09-25 17:54:57 -07006237
6238 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
6239 return;
6240
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006241 iwl4965_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006242 queue_work(priv->workqueue, &priv->up);
6243}
6244
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006245static void iwl4965_bg_rx_replenish(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07006246{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07006247 struct iwl_priv *priv =
6248 container_of(data, struct iwl_priv, rx_replenish);
Zhu Yib481de92007-09-25 17:54:57 -07006249
6250 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
6251 return;
6252
6253 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006254 iwl4965_rx_replenish(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006255 mutex_unlock(&priv->mutex);
6256}
6257
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08006258#define IWL_DELAY_NEXT_SCAN (HZ*2)
6259
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006260static void iwl4965_bg_post_associate(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07006261{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07006262 struct iwl_priv *priv = container_of(data, struct iwl_priv,
Zhu Yib481de92007-09-25 17:54:57 -07006263 post_associate.work);
Zhu Yib481de92007-09-25 17:54:57 -07006264 struct ieee80211_conf *conf = NULL;
Tomas Winkler857485c2008-03-21 13:53:44 -07006265 int ret = 0;
Joe Perches0795af52007-10-03 17:59:30 -07006266 DECLARE_MAC_BUF(mac);
Zhu Yib481de92007-09-25 17:54:57 -07006267
6268 if (priv->iw_mode == IEEE80211_IF_TYPE_AP) {
6269 IWL_ERROR("%s Should not be called in AP mode\n", __FUNCTION__);
6270 return;
6271 }
6272
Joe Perches0795af52007-10-03 17:59:30 -07006273 IWL_DEBUG_ASSOC("Associated as %d to: %s\n",
6274 priv->assoc_id,
6275 print_mac(mac, priv->active_rxon.bssid_addr));
Zhu Yib481de92007-09-25 17:54:57 -07006276
6277
6278 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
6279 return;
6280
6281 mutex_lock(&priv->mutex);
6282
Johannes Berg32bfd352007-12-19 01:31:26 +01006283 if (!priv->vif || !priv->is_open) {
Mohamed Abbas948c1712007-10-25 17:15:45 +08006284 mutex_unlock(&priv->mutex);
6285 return;
6286 }
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006287 iwl4965_scan_cancel_timeout(priv, 200);
mabbas052c4b92007-10-25 17:15:43 +08006288
Zhu Yib481de92007-09-25 17:54:57 -07006289 conf = ieee80211_get_hw_conf(priv->hw);
6290
6291 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006292 iwl4965_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006293
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006294 memset(&priv->rxon_timing, 0, sizeof(struct iwl4965_rxon_time_cmd));
6295 iwl4965_setup_rxon_timing(priv);
Tomas Winkler857485c2008-03-21 13:53:44 -07006296 ret = iwl_send_cmd_pdu(priv, REPLY_RXON_TIMING,
Zhu Yib481de92007-09-25 17:54:57 -07006297 sizeof(priv->rxon_timing), &priv->rxon_timing);
Tomas Winkler857485c2008-03-21 13:53:44 -07006298 if (ret)
Zhu Yib481de92007-09-25 17:54:57 -07006299 IWL_WARNING("REPLY_RXON_TIMING failed - "
6300 "Attempting to continue.\n");
6301
6302 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
6303
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08006304#ifdef CONFIG_IWL4965_HT
Ron Rindjunskyfd105e72007-11-26 16:14:39 +02006305 if (priv->current_ht_config.is_ht)
6306 iwl4965_set_rxon_ht(priv, &priv->current_ht_config);
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08006307#endif /* CONFIG_IWL4965_HT*/
Zhu Yib481de92007-09-25 17:54:57 -07006308 iwl4965_set_rxon_chain(priv);
6309 priv->staging_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
6310
6311 IWL_DEBUG_ASSOC("assoc id %d beacon interval %d\n",
6312 priv->assoc_id, priv->beacon_int);
6313
6314 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
6315 priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
6316 else
6317 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
6318
6319 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) {
6320 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_SLOT_TIME)
6321 priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
6322 else
6323 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
6324
6325 if (priv->iw_mode == IEEE80211_IF_TYPE_IBSS)
6326 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
6327
6328 }
6329
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006330 iwl4965_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006331
6332 switch (priv->iw_mode) {
6333 case IEEE80211_IF_TYPE_STA:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006334 iwl4965_rate_scale_init(priv->hw, IWL_AP_ID);
Zhu Yib481de92007-09-25 17:54:57 -07006335 break;
6336
6337 case IEEE80211_IF_TYPE_IBSS:
6338
6339 /* clear out the station table */
Assaf Kraussbf85ea42008-03-14 10:38:49 -07006340 iwlcore_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006341
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006342 iwl4965_rxon_add_station(priv, iwl4965_broadcast_addr, 0);
6343 iwl4965_rxon_add_station(priv, priv->bssid, 0);
6344 iwl4965_rate_scale_init(priv->hw, IWL_STA_ID);
6345 iwl4965_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006346
6347 break;
6348
6349 default:
6350 IWL_ERROR("%s Should not be called in %d mode\n",
6351 __FUNCTION__, priv->iw_mode);
6352 break;
6353 }
6354
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006355 iwl4965_sequence_reset(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006356
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08006357#ifdef CONFIG_IWL4965_SENSITIVITY
Zhu Yib481de92007-09-25 17:54:57 -07006358 /* Enable Rx differential gain and sensitivity calibrations */
6359 iwl4965_chain_noise_reset(priv);
6360 priv->start_calib = 1;
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08006361#endif /* CONFIG_IWL4965_SENSITIVITY */
Zhu Yib481de92007-09-25 17:54:57 -07006362
6363 if (priv->iw_mode == IEEE80211_IF_TYPE_IBSS)
6364 priv->assoc_station_added = 1;
6365
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006366 iwl4965_activate_qos(priv, 0);
Ron Rindjunsky292ae172008-02-06 11:20:39 -08006367
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08006368 /* we have just associated, don't start scan too early */
6369 priv->next_scan_jiffies = jiffies + IWL_DELAY_NEXT_SCAN;
Zhu Yib481de92007-09-25 17:54:57 -07006370 mutex_unlock(&priv->mutex);
6371}
6372
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006373static void iwl4965_bg_abort_scan(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -07006374{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07006375 struct iwl_priv *priv = container_of(work, struct iwl_priv, abort_scan);
Zhu Yib481de92007-09-25 17:54:57 -07006376
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006377 if (!iwl4965_is_ready(priv))
Zhu Yib481de92007-09-25 17:54:57 -07006378 return;
6379
6380 mutex_lock(&priv->mutex);
6381
6382 set_bit(STATUS_SCAN_ABORTING, &priv->status);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006383 iwl4965_send_scan_abort(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006384
6385 mutex_unlock(&priv->mutex);
6386}
6387
Zhu Yi76bb77e2007-11-22 10:53:22 +08006388static int iwl4965_mac_config(struct ieee80211_hw *hw, struct ieee80211_conf *conf);
6389
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006390static void iwl4965_bg_scan_completed(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -07006391{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07006392 struct iwl_priv *priv =
6393 container_of(work, struct iwl_priv, scan_completed);
Zhu Yib481de92007-09-25 17:54:57 -07006394
6395 IWL_DEBUG(IWL_DL_INFO | IWL_DL_SCAN, "SCAN complete scan\n");
6396
6397 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
6398 return;
6399
Zhu Yia0646472007-12-20 14:10:01 +08006400 if (test_bit(STATUS_CONF_PENDING, &priv->status))
6401 iwl4965_mac_config(priv->hw, ieee80211_get_hw_conf(priv->hw));
Zhu Yi76bb77e2007-11-22 10:53:22 +08006402
Zhu Yib481de92007-09-25 17:54:57 -07006403 ieee80211_scan_completed(priv->hw);
6404
6405 /* Since setting the TXPOWER may have been deferred while
6406 * performing the scan, fire one off */
6407 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006408 iwl4965_hw_reg_send_txpower(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006409 mutex_unlock(&priv->mutex);
6410}
6411
6412/*****************************************************************************
6413 *
6414 * mac80211 entry point functions
6415 *
6416 *****************************************************************************/
6417
Zhu Yi5a669262008-01-14 17:46:18 -08006418#define UCODE_READY_TIMEOUT (2 * HZ)
6419
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006420static int iwl4965_mac_start(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07006421{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07006422 struct iwl_priv *priv = hw->priv;
Zhu Yi5a669262008-01-14 17:46:18 -08006423 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07006424
6425 IWL_DEBUG_MAC80211("enter\n");
6426
Zhu Yi5a669262008-01-14 17:46:18 -08006427 if (pci_enable_device(priv->pci_dev)) {
6428 IWL_ERROR("Fail to pci_enable_device\n");
6429 return -ENODEV;
6430 }
6431 pci_restore_state(priv->pci_dev);
6432 pci_enable_msi(priv->pci_dev);
6433
6434 ret = request_irq(priv->pci_dev->irq, iwl4965_isr, IRQF_SHARED,
6435 DRV_NAME, priv);
6436 if (ret) {
6437 IWL_ERROR("Error allocating IRQ %d\n", priv->pci_dev->irq);
6438 goto out_disable_msi;
6439 }
6440
Zhu Yib481de92007-09-25 17:54:57 -07006441 /* we should be verifying the device is ready to be opened */
6442 mutex_lock(&priv->mutex);
6443
Zhu Yi5a669262008-01-14 17:46:18 -08006444 memset(&priv->staging_rxon, 0, sizeof(struct iwl4965_rxon_cmd));
6445 /* fetch ucode file from disk, alloc and copy to bus-master buffers ...
6446 * ucode filename and max sizes are card-specific. */
6447
6448 if (!priv->ucode_code.len) {
6449 ret = iwl4965_read_ucode(priv);
6450 if (ret) {
6451 IWL_ERROR("Could not read microcode: %d\n", ret);
6452 mutex_unlock(&priv->mutex);
6453 goto out_release_irq;
6454 }
6455 }
6456
Zhu Yie655b9f2008-01-24 02:19:38 -08006457 ret = __iwl4965_up(priv);
Zhu Yi5a669262008-01-14 17:46:18 -08006458
Zhu Yib481de92007-09-25 17:54:57 -07006459 mutex_unlock(&priv->mutex);
Zhu Yi5a669262008-01-14 17:46:18 -08006460
Zhu Yie655b9f2008-01-24 02:19:38 -08006461 if (ret)
6462 goto out_release_irq;
6463
6464 IWL_DEBUG_INFO("Start UP work done.\n");
6465
6466 if (test_bit(STATUS_IN_SUSPEND, &priv->status))
6467 return 0;
6468
Zhu Yi5a669262008-01-14 17:46:18 -08006469 /* Wait for START_ALIVE from ucode. Otherwise callbacks from
6470 * mac80211 will not be run successfully. */
6471 ret = wait_event_interruptible_timeout(priv->wait_command_queue,
6472 test_bit(STATUS_READY, &priv->status),
6473 UCODE_READY_TIMEOUT);
6474 if (!ret) {
6475 if (!test_bit(STATUS_READY, &priv->status)) {
6476 IWL_ERROR("Wait for START_ALIVE timeout after %dms.\n",
6477 jiffies_to_msecs(UCODE_READY_TIMEOUT));
6478 ret = -ETIMEDOUT;
6479 goto out_release_irq;
6480 }
6481 }
6482
Zhu Yie655b9f2008-01-24 02:19:38 -08006483 priv->is_open = 1;
Zhu Yib481de92007-09-25 17:54:57 -07006484 IWL_DEBUG_MAC80211("leave\n");
6485 return 0;
Zhu Yi5a669262008-01-14 17:46:18 -08006486
6487out_release_irq:
6488 free_irq(priv->pci_dev->irq, priv);
6489out_disable_msi:
6490 pci_disable_msi(priv->pci_dev);
Zhu Yie655b9f2008-01-24 02:19:38 -08006491 pci_disable_device(priv->pci_dev);
6492 priv->is_open = 0;
6493 IWL_DEBUG_MAC80211("leave - failed\n");
Zhu Yi5a669262008-01-14 17:46:18 -08006494 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07006495}
6496
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006497static void iwl4965_mac_stop(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07006498{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07006499 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006500
6501 IWL_DEBUG_MAC80211("enter\n");
Mohamed Abbas948c1712007-10-25 17:15:45 +08006502
Zhu Yie655b9f2008-01-24 02:19:38 -08006503 if (!priv->is_open) {
6504 IWL_DEBUG_MAC80211("leave - skip\n");
6505 return;
6506 }
6507
Zhu Yib481de92007-09-25 17:54:57 -07006508 priv->is_open = 0;
Zhu Yi5a669262008-01-14 17:46:18 -08006509
6510 if (iwl4965_is_ready_rf(priv)) {
Zhu Yie655b9f2008-01-24 02:19:38 -08006511 /* stop mac, cancel any scan request and clear
6512 * RXON_FILTER_ASSOC_MSK BIT
6513 */
Zhu Yi5a669262008-01-14 17:46:18 -08006514 mutex_lock(&priv->mutex);
6515 iwl4965_scan_cancel_timeout(priv, 100);
6516 cancel_delayed_work(&priv->post_associate);
Mohamed Abbasfde35712007-11-29 11:10:15 +08006517 mutex_unlock(&priv->mutex);
Mohamed Abbasfde35712007-11-29 11:10:15 +08006518 }
6519
Zhu Yi5a669262008-01-14 17:46:18 -08006520 iwl4965_down(priv);
6521
6522 flush_workqueue(priv->workqueue);
6523 free_irq(priv->pci_dev->irq, priv);
6524 pci_disable_msi(priv->pci_dev);
6525 pci_save_state(priv->pci_dev);
6526 pci_disable_device(priv->pci_dev);
Mohamed Abbas948c1712007-10-25 17:15:45 +08006527
Zhu Yib481de92007-09-25 17:54:57 -07006528 IWL_DEBUG_MAC80211("leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07006529}
6530
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006531static int iwl4965_mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb,
Zhu Yib481de92007-09-25 17:54:57 -07006532 struct ieee80211_tx_control *ctl)
6533{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07006534 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006535
6536 IWL_DEBUG_MAC80211("enter\n");
6537
6538 if (priv->iw_mode == IEEE80211_IF_TYPE_MNTR) {
6539 IWL_DEBUG_MAC80211("leave - monitor\n");
6540 return -1;
6541 }
6542
6543 IWL_DEBUG_TX("dev->xmit(%d bytes) at rate 0x%02x\n", skb->len,
Johannes Berg8318d782008-01-24 19:38:38 +01006544 ctl->tx_rate->bitrate);
Zhu Yib481de92007-09-25 17:54:57 -07006545
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006546 if (iwl4965_tx_skb(priv, skb, ctl))
Zhu Yib481de92007-09-25 17:54:57 -07006547 dev_kfree_skb_any(skb);
6548
6549 IWL_DEBUG_MAC80211("leave\n");
6550 return 0;
6551}
6552
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006553static int iwl4965_mac_add_interface(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07006554 struct ieee80211_if_init_conf *conf)
6555{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07006556 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006557 unsigned long flags;
Joe Perches0795af52007-10-03 17:59:30 -07006558 DECLARE_MAC_BUF(mac);
Zhu Yib481de92007-09-25 17:54:57 -07006559
Johannes Berg32bfd352007-12-19 01:31:26 +01006560 IWL_DEBUG_MAC80211("enter: type %d\n", conf->type);
Zhu Yib481de92007-09-25 17:54:57 -07006561
Johannes Berg32bfd352007-12-19 01:31:26 +01006562 if (priv->vif) {
6563 IWL_DEBUG_MAC80211("leave - vif != NULL\n");
Reinette Chatre75849d22008-01-23 10:15:17 -08006564 return -EOPNOTSUPP;
Zhu Yib481de92007-09-25 17:54:57 -07006565 }
6566
6567 spin_lock_irqsave(&priv->lock, flags);
Johannes Berg32bfd352007-12-19 01:31:26 +01006568 priv->vif = conf->vif;
Zhu Yib481de92007-09-25 17:54:57 -07006569
6570 spin_unlock_irqrestore(&priv->lock, flags);
6571
6572 mutex_lock(&priv->mutex);
Tomas Winkler864792e2007-11-27 21:00:52 +02006573
6574 if (conf->mac_addr) {
6575 IWL_DEBUG_MAC80211("Set %s\n", print_mac(mac, conf->mac_addr));
6576 memcpy(priv->mac_addr, conf->mac_addr, ETH_ALEN);
6577 }
Zhu Yib481de92007-09-25 17:54:57 -07006578
Zhu Yi5a669262008-01-14 17:46:18 -08006579 if (iwl4965_is_ready(priv))
6580 iwl4965_set_mode(priv, conf->type);
6581
Zhu Yib481de92007-09-25 17:54:57 -07006582 mutex_unlock(&priv->mutex);
6583
Zhu Yi5a669262008-01-14 17:46:18 -08006584 IWL_DEBUG_MAC80211("leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07006585 return 0;
6586}
6587
6588/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006589 * iwl4965_mac_config - mac80211 config callback
Zhu Yib481de92007-09-25 17:54:57 -07006590 *
6591 * We ignore conf->flags & IEEE80211_CONF_SHORT_SLOT_TIME since it seems to
6592 * be set inappropriately and the driver currently sets the hardware up to
6593 * use it whenever needed.
6594 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006595static int iwl4965_mac_config(struct ieee80211_hw *hw, struct ieee80211_conf *conf)
Zhu Yib481de92007-09-25 17:54:57 -07006596{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07006597 struct iwl_priv *priv = hw->priv;
Assaf Kraussbf85ea42008-03-14 10:38:49 -07006598 const struct iwl_channel_info *ch_info;
Zhu Yib481de92007-09-25 17:54:57 -07006599 unsigned long flags;
Zhu Yi76bb77e2007-11-22 10:53:22 +08006600 int ret = 0;
Zhu Yib481de92007-09-25 17:54:57 -07006601
6602 mutex_lock(&priv->mutex);
Johannes Berg8318d782008-01-24 19:38:38 +01006603 IWL_DEBUG_MAC80211("enter to channel %d\n", conf->channel->hw_value);
Zhu Yib481de92007-09-25 17:54:57 -07006604
Zhu Yi12342c42007-12-20 11:27:32 +08006605 priv->add_radiotap = !!(conf->flags & IEEE80211_CONF_RADIOTAP);
6606
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006607 if (!iwl4965_is_ready(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006608 IWL_DEBUG_MAC80211("leave - not ready\n");
Zhu Yi76bb77e2007-11-22 10:53:22 +08006609 ret = -EIO;
6610 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07006611 }
6612
Assaf Krauss1ea87392008-03-18 14:57:50 -07006613 if (unlikely(!priv->cfg->mod_params->disable_hw_scan &&
Zhu Yib481de92007-09-25 17:54:57 -07006614 test_bit(STATUS_SCANNING, &priv->status))) {
Zhu Yia0646472007-12-20 14:10:01 +08006615 IWL_DEBUG_MAC80211("leave - scanning\n");
6616 set_bit(STATUS_CONF_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07006617 mutex_unlock(&priv->mutex);
Zhu Yia0646472007-12-20 14:10:01 +08006618 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07006619 }
6620
6621 spin_lock_irqsave(&priv->lock, flags);
6622
Assaf Krauss8622e702008-03-21 13:53:43 -07006623 ch_info = iwl_get_channel_info(priv, conf->channel->band,
Johannes Berg8318d782008-01-24 19:38:38 +01006624 ieee80211_frequency_to_channel(conf->channel->center_freq));
Zhu Yib481de92007-09-25 17:54:57 -07006625 if (!is_channel_valid(ch_info)) {
Zhu Yib481de92007-09-25 17:54:57 -07006626 IWL_DEBUG_MAC80211("leave - invalid channel\n");
6627 spin_unlock_irqrestore(&priv->lock, flags);
Zhu Yi76bb77e2007-11-22 10:53:22 +08006628 ret = -EINVAL;
6629 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07006630 }
6631
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08006632#ifdef CONFIG_IWL4965_HT
Tomas Winkler78330fd2008-02-06 02:37:18 +02006633 /* if we are switching from ht to 2.4 clear flags
Zhu Yib481de92007-09-25 17:54:57 -07006634 * from any ht related info since 2.4 does not
6635 * support ht */
Tomas Winkler78330fd2008-02-06 02:37:18 +02006636 if ((le16_to_cpu(priv->staging_rxon.channel) != conf->channel->hw_value)
Zhu Yib481de92007-09-25 17:54:57 -07006637#ifdef IEEE80211_CONF_CHANNEL_SWITCH
6638 && !(conf->flags & IEEE80211_CONF_CHANNEL_SWITCH)
6639#endif
6640 )
6641 priv->staging_rxon.flags = 0;
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08006642#endif /* CONFIG_IWL4965_HT */
Zhu Yib481de92007-09-25 17:54:57 -07006643
Assaf Kraussbf85ea42008-03-14 10:38:49 -07006644 iwlcore_set_rxon_channel(priv, conf->channel->band,
Johannes Berg8318d782008-01-24 19:38:38 +01006645 ieee80211_frequency_to_channel(conf->channel->center_freq));
Zhu Yib481de92007-09-25 17:54:57 -07006646
Johannes Berg8318d782008-01-24 19:38:38 +01006647 iwl4965_set_flags_for_phymode(priv, conf->channel->band);
Zhu Yib481de92007-09-25 17:54:57 -07006648
6649 /* The list of supported rates and rate mask can be different
Johannes Berg8318d782008-01-24 19:38:38 +01006650 * for each band; since the band may have changed, reset
Zhu Yib481de92007-09-25 17:54:57 -07006651 * the rate mask to what mac80211 lists */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006652 iwl4965_set_rate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006653
6654 spin_unlock_irqrestore(&priv->lock, flags);
6655
6656#ifdef IEEE80211_CONF_CHANNEL_SWITCH
6657 if (conf->flags & IEEE80211_CONF_CHANNEL_SWITCH) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006658 iwl4965_hw_channel_switch(priv, conf->channel);
Zhu Yi76bb77e2007-11-22 10:53:22 +08006659 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07006660 }
6661#endif
6662
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006663 iwl4965_radio_kill_sw(priv, !conf->radio_enabled);
Zhu Yib481de92007-09-25 17:54:57 -07006664
6665 if (!conf->radio_enabled) {
6666 IWL_DEBUG_MAC80211("leave - radio disabled\n");
Zhu Yi76bb77e2007-11-22 10:53:22 +08006667 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07006668 }
6669
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006670 if (iwl4965_is_rfkill(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006671 IWL_DEBUG_MAC80211("leave - RF kill\n");
Zhu Yi76bb77e2007-11-22 10:53:22 +08006672 ret = -EIO;
6673 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07006674 }
6675
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006676 iwl4965_set_rate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006677
6678 if (memcmp(&priv->active_rxon,
6679 &priv->staging_rxon, sizeof(priv->staging_rxon)))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006680 iwl4965_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006681 else
6682 IWL_DEBUG_INFO("No re-sending same RXON configuration.\n");
6683
6684 IWL_DEBUG_MAC80211("leave\n");
6685
Zhu Yia0646472007-12-20 14:10:01 +08006686out:
6687 clear_bit(STATUS_CONF_PENDING, &priv->status);
Zhu Yi5a669262008-01-14 17:46:18 -08006688 mutex_unlock(&priv->mutex);
Zhu Yi76bb77e2007-11-22 10:53:22 +08006689 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07006690}
6691
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07006692static void iwl4965_config_ap(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07006693{
Tomas Winkler857485c2008-03-21 13:53:44 -07006694 int ret = 0;
Zhu Yib481de92007-09-25 17:54:57 -07006695
Maarten Lankhorstd986bcd2008-01-23 10:15:16 -08006696 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
Zhu Yib481de92007-09-25 17:54:57 -07006697 return;
6698
6699 /* The following should be done only at AP bring up */
6700 if ((priv->active_rxon.filter_flags & RXON_FILTER_ASSOC_MSK) == 0) {
6701
6702 /* RXON - unassoc (to set timing command) */
6703 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006704 iwl4965_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006705
6706 /* RXON Timing */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006707 memset(&priv->rxon_timing, 0, sizeof(struct iwl4965_rxon_time_cmd));
6708 iwl4965_setup_rxon_timing(priv);
Tomas Winkler857485c2008-03-21 13:53:44 -07006709 ret = iwl_send_cmd_pdu(priv, REPLY_RXON_TIMING,
Zhu Yib481de92007-09-25 17:54:57 -07006710 sizeof(priv->rxon_timing), &priv->rxon_timing);
Tomas Winkler857485c2008-03-21 13:53:44 -07006711 if (ret)
Zhu Yib481de92007-09-25 17:54:57 -07006712 IWL_WARNING("REPLY_RXON_TIMING failed - "
6713 "Attempting to continue.\n");
6714
6715 iwl4965_set_rxon_chain(priv);
6716
6717 /* FIXME: what should be the assoc_id for AP? */
6718 priv->staging_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
6719 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
6720 priv->staging_rxon.flags |=
6721 RXON_FLG_SHORT_PREAMBLE_MSK;
6722 else
6723 priv->staging_rxon.flags &=
6724 ~RXON_FLG_SHORT_PREAMBLE_MSK;
6725
6726 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) {
6727 if (priv->assoc_capability &
6728 WLAN_CAPABILITY_SHORT_SLOT_TIME)
6729 priv->staging_rxon.flags |=
6730 RXON_FLG_SHORT_SLOT_MSK;
6731 else
6732 priv->staging_rxon.flags &=
6733 ~RXON_FLG_SHORT_SLOT_MSK;
6734
6735 if (priv->iw_mode == IEEE80211_IF_TYPE_IBSS)
6736 priv->staging_rxon.flags &=
6737 ~RXON_FLG_SHORT_SLOT_MSK;
6738 }
6739 /* restore RXON assoc */
6740 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006741 iwl4965_commit_rxon(priv);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006742 iwl4965_activate_qos(priv, 1);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006743 iwl4965_rxon_add_station(priv, iwl4965_broadcast_addr, 0);
Zhu Yie1493de2007-09-27 11:27:32 +08006744 }
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006745 iwl4965_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006746
6747 /* FIXME - we need to add code here to detect a totally new
6748 * configuration, reset the AP, unassoc, rxon timing, assoc,
6749 * clear sta table, add BCAST sta... */
6750}
6751
Johannes Berg32bfd352007-12-19 01:31:26 +01006752static int iwl4965_mac_config_interface(struct ieee80211_hw *hw,
6753 struct ieee80211_vif *vif,
Zhu Yib481de92007-09-25 17:54:57 -07006754 struct ieee80211_if_conf *conf)
6755{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07006756 struct iwl_priv *priv = hw->priv;
Joe Perches0795af52007-10-03 17:59:30 -07006757 DECLARE_MAC_BUF(mac);
Zhu Yib481de92007-09-25 17:54:57 -07006758 unsigned long flags;
6759 int rc;
6760
6761 if (conf == NULL)
6762 return -EIO;
6763
Emmanuel Grumbachb716bb92008-03-04 18:09:32 -08006764 if (priv->vif != vif) {
6765 IWL_DEBUG_MAC80211("leave - priv->vif != vif\n");
6766 mutex_unlock(&priv->mutex);
6767 return 0;
6768 }
6769
Zhu Yib481de92007-09-25 17:54:57 -07006770 if ((priv->iw_mode == IEEE80211_IF_TYPE_AP) &&
6771 (!conf->beacon || !conf->ssid_len)) {
6772 IWL_DEBUG_MAC80211
6773 ("Leaving in AP mode because HostAPD is not ready.\n");
6774 return 0;
6775 }
6776
Zhu Yi5a669262008-01-14 17:46:18 -08006777 if (!iwl4965_is_alive(priv))
6778 return -EAGAIN;
6779
Zhu Yib481de92007-09-25 17:54:57 -07006780 mutex_lock(&priv->mutex);
6781
Zhu Yib481de92007-09-25 17:54:57 -07006782 if (conf->bssid)
Joe Perches0795af52007-10-03 17:59:30 -07006783 IWL_DEBUG_MAC80211("bssid: %s\n",
6784 print_mac(mac, conf->bssid));
Zhu Yib481de92007-09-25 17:54:57 -07006785
Johannes Berg4150c572007-09-17 01:29:23 -04006786/*
6787 * very dubious code was here; the probe filtering flag is never set:
6788 *
Zhu Yib481de92007-09-25 17:54:57 -07006789 if (unlikely(test_bit(STATUS_SCANNING, &priv->status)) &&
6790 !(priv->hw->flags & IEEE80211_HW_NO_PROBE_FILTERING)) {
Johannes Berg4150c572007-09-17 01:29:23 -04006791 */
Zhu Yib481de92007-09-25 17:54:57 -07006792
6793 if (priv->iw_mode == IEEE80211_IF_TYPE_AP) {
6794 if (!conf->bssid) {
6795 conf->bssid = priv->mac_addr;
6796 memcpy(priv->bssid, priv->mac_addr, ETH_ALEN);
Joe Perches0795af52007-10-03 17:59:30 -07006797 IWL_DEBUG_MAC80211("bssid was set to: %s\n",
6798 print_mac(mac, conf->bssid));
Zhu Yib481de92007-09-25 17:54:57 -07006799 }
6800 if (priv->ibss_beacon)
6801 dev_kfree_skb(priv->ibss_beacon);
6802
6803 priv->ibss_beacon = conf->beacon;
6804 }
6805
Mohamed Abbasfde35712007-11-29 11:10:15 +08006806 if (iwl4965_is_rfkill(priv))
6807 goto done;
6808
Zhu Yib481de92007-09-25 17:54:57 -07006809 if (conf->bssid && !is_zero_ether_addr(conf->bssid) &&
6810 !is_multicast_ether_addr(conf->bssid)) {
6811 /* If there is currently a HW scan going on in the background
6812 * then we need to cancel it else the RXON below will fail. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006813 if (iwl4965_scan_cancel_timeout(priv, 100)) {
Zhu Yib481de92007-09-25 17:54:57 -07006814 IWL_WARNING("Aborted scan still in progress "
6815 "after 100ms\n");
6816 IWL_DEBUG_MAC80211("leaving - scan abort failed.\n");
6817 mutex_unlock(&priv->mutex);
6818 return -EAGAIN;
6819 }
6820 memcpy(priv->staging_rxon.bssid_addr, conf->bssid, ETH_ALEN);
6821
6822 /* TODO: Audit driver for usage of these members and see
6823 * if mac80211 deprecates them (priv->bssid looks like it
6824 * shouldn't be there, but I haven't scanned the IBSS code
6825 * to verify) - jpk */
6826 memcpy(priv->bssid, conf->bssid, ETH_ALEN);
6827
6828 if (priv->iw_mode == IEEE80211_IF_TYPE_AP)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006829 iwl4965_config_ap(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006830 else {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006831 rc = iwl4965_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006832 if ((priv->iw_mode == IEEE80211_IF_TYPE_STA) && rc)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006833 iwl4965_rxon_add_station(
Zhu Yib481de92007-09-25 17:54:57 -07006834 priv, priv->active_rxon.bssid_addr, 1);
6835 }
6836
6837 } else {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006838 iwl4965_scan_cancel_timeout(priv, 100);
Zhu Yib481de92007-09-25 17:54:57 -07006839 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006840 iwl4965_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006841 }
6842
Mohamed Abbasfde35712007-11-29 11:10:15 +08006843 done:
Zhu Yib481de92007-09-25 17:54:57 -07006844 spin_lock_irqsave(&priv->lock, flags);
6845 if (!conf->ssid_len)
6846 memset(priv->essid, 0, IW_ESSID_MAX_SIZE);
6847 else
6848 memcpy(priv->essid, conf->ssid, conf->ssid_len);
6849
6850 priv->essid_len = conf->ssid_len;
6851 spin_unlock_irqrestore(&priv->lock, flags);
6852
6853 IWL_DEBUG_MAC80211("leave\n");
6854 mutex_unlock(&priv->mutex);
6855
6856 return 0;
6857}
6858
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006859static void iwl4965_configure_filter(struct ieee80211_hw *hw,
Johannes Berg4150c572007-09-17 01:29:23 -04006860 unsigned int changed_flags,
6861 unsigned int *total_flags,
6862 int mc_count, struct dev_addr_list *mc_list)
6863{
6864 /*
6865 * XXX: dummy
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006866 * see also iwl4965_connection_init_rx_config
Johannes Berg4150c572007-09-17 01:29:23 -04006867 */
6868 *total_flags = 0;
6869}
6870
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006871static void iwl4965_mac_remove_interface(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07006872 struct ieee80211_if_init_conf *conf)
6873{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07006874 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006875
6876 IWL_DEBUG_MAC80211("enter\n");
6877
6878 mutex_lock(&priv->mutex);
Mohamed Abbas948c1712007-10-25 17:15:45 +08006879
Mohamed Abbasfde35712007-11-29 11:10:15 +08006880 if (iwl4965_is_ready_rf(priv)) {
6881 iwl4965_scan_cancel_timeout(priv, 100);
6882 cancel_delayed_work(&priv->post_associate);
6883 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
6884 iwl4965_commit_rxon(priv);
6885 }
Johannes Berg32bfd352007-12-19 01:31:26 +01006886 if (priv->vif == conf->vif) {
6887 priv->vif = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07006888 memset(priv->bssid, 0, ETH_ALEN);
6889 memset(priv->essid, 0, IW_ESSID_MAX_SIZE);
6890 priv->essid_len = 0;
6891 }
6892 mutex_unlock(&priv->mutex);
6893
6894 IWL_DEBUG_MAC80211("leave\n");
6895
6896}
Johannes Berg471b3ef2007-12-28 14:32:58 +01006897
6898static void iwl4965_bss_info_changed(struct ieee80211_hw *hw,
6899 struct ieee80211_vif *vif,
6900 struct ieee80211_bss_conf *bss_conf,
6901 u32 changes)
Tomas Winkler220173b2007-10-16 00:50:25 +02006902{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07006903 struct iwl_priv *priv = hw->priv;
Tomas Winkler220173b2007-10-16 00:50:25 +02006904
Johannes Berg471b3ef2007-12-28 14:32:58 +01006905 if (changes & BSS_CHANGED_ERP_PREAMBLE) {
6906 if (bss_conf->use_short_preamble)
Tomas Winkler220173b2007-10-16 00:50:25 +02006907 priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
6908 else
6909 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
6910 }
6911
Johannes Berg471b3ef2007-12-28 14:32:58 +01006912 if (changes & BSS_CHANGED_ERP_CTS_PROT) {
Johannes Berg8318d782008-01-24 19:38:38 +01006913 if (bss_conf->use_cts_prot && (priv->band != IEEE80211_BAND_5GHZ))
Tomas Winkler220173b2007-10-16 00:50:25 +02006914 priv->staging_rxon.flags |= RXON_FLG_TGG_PROTECT_MSK;
6915 else
6916 priv->staging_rxon.flags &= ~RXON_FLG_TGG_PROTECT_MSK;
6917 }
6918
Johannes Berg471b3ef2007-12-28 14:32:58 +01006919 if (changes & BSS_CHANGED_ASSOC) {
6920 /*
6921 * TODO:
6922 * do stuff instead of sniffing assoc resp
6923 */
6924 }
6925
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006926 if (iwl4965_is_associated(priv))
6927 iwl4965_send_rxon_assoc(priv);
Tomas Winkler220173b2007-10-16 00:50:25 +02006928}
Zhu Yib481de92007-09-25 17:54:57 -07006929
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006930static int iwl4965_mac_hw_scan(struct ieee80211_hw *hw, u8 *ssid, size_t len)
Zhu Yib481de92007-09-25 17:54:57 -07006931{
6932 int rc = 0;
6933 unsigned long flags;
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07006934 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07006935
6936 IWL_DEBUG_MAC80211("enter\n");
6937
mabbas052c4b92007-10-25 17:15:43 +08006938 mutex_lock(&priv->mutex);
Zhu Yib481de92007-09-25 17:54:57 -07006939 spin_lock_irqsave(&priv->lock, flags);
6940
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006941 if (!iwl4965_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07006942 rc = -EIO;
6943 IWL_DEBUG_MAC80211("leave - not ready or exit pending\n");
6944 goto out_unlock;
6945 }
6946
6947 if (priv->iw_mode == IEEE80211_IF_TYPE_AP) { /* APs don't scan */
6948 rc = -EIO;
6949 IWL_ERROR("ERROR: APs don't scan\n");
6950 goto out_unlock;
6951 }
6952
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08006953 /* we don't schedule scan within next_scan_jiffies period */
6954 if (priv->next_scan_jiffies &&
6955 time_after(priv->next_scan_jiffies, jiffies)) {
6956 rc = -EAGAIN;
6957 goto out_unlock;
6958 }
Zhu Yib481de92007-09-25 17:54:57 -07006959 /* if we just finished scan ask for delay */
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08006960 if (priv->last_scan_jiffies && time_after(priv->last_scan_jiffies +
6961 IWL_DELAY_NEXT_SCAN, jiffies)) {
Zhu Yib481de92007-09-25 17:54:57 -07006962 rc = -EAGAIN;
6963 goto out_unlock;
6964 }
6965 if (len) {
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08006966 IWL_DEBUG_SCAN("direct scan for %s [%d]\n ",
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006967 iwl4965_escape_essid(ssid, len), (int)len);
Zhu Yib481de92007-09-25 17:54:57 -07006968
6969 priv->one_direct_scan = 1;
6970 priv->direct_ssid_len = (u8)
6971 min((u8) len, (u8) IW_ESSID_MAX_SIZE);
6972 memcpy(priv->direct_ssid, ssid, priv->direct_ssid_len);
Mohamed Abbas948c1712007-10-25 17:15:45 +08006973 } else
6974 priv->one_direct_scan = 0;
Zhu Yib481de92007-09-25 17:54:57 -07006975
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08006976 rc = iwl4965_scan_initiate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07006977
6978 IWL_DEBUG_MAC80211("leave\n");
6979
6980out_unlock:
6981 spin_unlock_irqrestore(&priv->lock, flags);
mabbas052c4b92007-10-25 17:15:43 +08006982 mutex_unlock(&priv->mutex);
Zhu Yib481de92007-09-25 17:54:57 -07006983
6984 return rc;
6985}
6986
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02006987static void iwl4965_mac_update_tkip_key(struct ieee80211_hw *hw,
6988 struct ieee80211_key_conf *keyconf, const u8 *addr,
6989 u32 iv32, u16 *phase1key)
6990{
6991 struct iwl_priv *priv = hw->priv;
6992 u8 sta_id = IWL_INVALID_STATION;
6993 unsigned long flags;
6994 __le16 key_flags = 0;
6995 int i;
6996 DECLARE_MAC_BUF(mac);
6997
6998 IWL_DEBUG_MAC80211("enter\n");
6999
7000 sta_id = iwl4965_hw_find_station(priv, addr);
7001 if (sta_id == IWL_INVALID_STATION) {
7002 IWL_DEBUG_MAC80211("leave - %s not in station map.\n",
7003 print_mac(mac, addr));
7004 return;
7005 }
7006
7007 iwl4965_scan_cancel_timeout(priv, 100);
7008
7009 key_flags |= (STA_KEY_FLG_TKIP | STA_KEY_FLG_MAP_KEY_MSK);
7010 key_flags |= cpu_to_le16(keyconf->keyidx << STA_KEY_FLG_KEYID_POS);
7011 key_flags &= ~STA_KEY_FLG_INVALID;
7012
7013 if (sta_id == priv->hw_setting.bcast_sta_id)
7014 key_flags |= STA_KEY_MULTICAST_MSK;
7015
7016 spin_lock_irqsave(&priv->sta_lock, flags);
7017
7018 priv->stations[sta_id].sta.key.key_offset =
7019 (sta_id % STA_KEY_MAX_NUM);/* FIXME */
7020 priv->stations[sta_id].sta.key.key_flags = key_flags;
7021 priv->stations[sta_id].sta.key.tkip_rx_tsc_byte2 = (u8) iv32;
7022
7023 for (i = 0; i < 5; i++)
7024 priv->stations[sta_id].sta.key.tkip_rx_ttak[i] =
7025 cpu_to_le16(phase1key[i]);
7026
7027 priv->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
7028 priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
7029
7030 iwl4965_send_add_station(priv, &priv->stations[sta_id].sta, CMD_ASYNC);
7031
7032 spin_unlock_irqrestore(&priv->sta_lock, flags);
7033
7034 IWL_DEBUG_MAC80211("leave\n");
7035}
7036
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007037static int iwl4965_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
Zhu Yib481de92007-09-25 17:54:57 -07007038 const u8 *local_addr, const u8 *addr,
7039 struct ieee80211_key_conf *key)
7040{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07007041 struct iwl_priv *priv = hw->priv;
Joe Perches0795af52007-10-03 17:59:30 -07007042 DECLARE_MAC_BUF(mac);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07007043 int ret = 0;
7044 u8 sta_id = IWL_INVALID_STATION;
7045 u8 static_key;
Zhu Yib481de92007-09-25 17:54:57 -07007046
7047 IWL_DEBUG_MAC80211("enter\n");
7048
Assaf Krauss1ea87392008-03-18 14:57:50 -07007049 if (!priv->cfg->mod_params->hw_crypto) {
Zhu Yib481de92007-09-25 17:54:57 -07007050 IWL_DEBUG_MAC80211("leave - hwcrypto disabled\n");
7051 return -EOPNOTSUPP;
7052 }
7053
7054 if (is_zero_ether_addr(addr))
7055 /* only support pairwise keys */
7056 return -EOPNOTSUPP;
7057
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07007058 /* FIXME: need to differenciate between static and dynamic key
7059 * in the level of mac80211 */
7060 static_key = !iwl4965_is_associated(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007061
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07007062 if (!static_key) {
7063 sta_id = iwl4965_hw_find_station(priv, addr);
7064 if (sta_id == IWL_INVALID_STATION) {
7065 IWL_DEBUG_MAC80211("leave - %s not in station map.\n",
7066 print_mac(mac, addr));
7067 return -EINVAL;
7068 }
7069 }
Zhu Yib481de92007-09-25 17:54:57 -07007070
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007071 iwl4965_scan_cancel_timeout(priv, 100);
mabbas052c4b92007-10-25 17:15:43 +08007072
Zhu Yib481de92007-09-25 17:54:57 -07007073 switch (cmd) {
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07007074 case SET_KEY:
7075 if (static_key)
7076 ret = iwl4965_set_static_key(priv, key);
7077 else
7078 ret = iwl4965_set_dynamic_key(priv, key, sta_id);
7079
7080 IWL_DEBUG_MAC80211("enable hwcrypto key\n");
Zhu Yib481de92007-09-25 17:54:57 -07007081 break;
7082 case DISABLE_KEY:
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07007083 if (static_key)
7084 ret = iwl4965_remove_static_key(priv);
7085 else
7086 ret = iwl4965_clear_sta_key_info(priv, sta_id);
7087
7088 IWL_DEBUG_MAC80211("disable hwcrypto key\n");
Zhu Yib481de92007-09-25 17:54:57 -07007089 break;
7090 default:
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07007091 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07007092 }
7093
7094 IWL_DEBUG_MAC80211("leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07007095
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07007096 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07007097}
7098
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007099static int iwl4965_mac_conf_tx(struct ieee80211_hw *hw, int queue,
Zhu Yib481de92007-09-25 17:54:57 -07007100 const struct ieee80211_tx_queue_params *params)
7101{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07007102 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07007103 unsigned long flags;
7104 int q;
Zhu Yib481de92007-09-25 17:54:57 -07007105
7106 IWL_DEBUG_MAC80211("enter\n");
7107
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007108 if (!iwl4965_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07007109 IWL_DEBUG_MAC80211("leave - RF not ready\n");
7110 return -EIO;
7111 }
7112
7113 if (queue >= AC_NUM) {
7114 IWL_DEBUG_MAC80211("leave - queue >= AC_NUM %d\n", queue);
7115 return 0;
7116 }
7117
Zhu Yib481de92007-09-25 17:54:57 -07007118 if (!priv->qos_data.qos_enable) {
7119 priv->qos_data.qos_active = 0;
7120 IWL_DEBUG_MAC80211("leave - qos not enabled\n");
7121 return 0;
7122 }
7123 q = AC_NUM - 1 - queue;
7124
7125 spin_lock_irqsave(&priv->lock, flags);
7126
7127 priv->qos_data.def_qos_parm.ac[q].cw_min = cpu_to_le16(params->cw_min);
7128 priv->qos_data.def_qos_parm.ac[q].cw_max = cpu_to_le16(params->cw_max);
7129 priv->qos_data.def_qos_parm.ac[q].aifsn = params->aifs;
7130 priv->qos_data.def_qos_parm.ac[q].edca_txop =
Johannes Berg3330d7be2008-02-10 16:49:38 +01007131 cpu_to_le16((params->txop * 32));
Zhu Yib481de92007-09-25 17:54:57 -07007132
7133 priv->qos_data.def_qos_parm.ac[q].reserved1 = 0;
7134 priv->qos_data.qos_active = 1;
7135
7136 spin_unlock_irqrestore(&priv->lock, flags);
7137
7138 mutex_lock(&priv->mutex);
7139 if (priv->iw_mode == IEEE80211_IF_TYPE_AP)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007140 iwl4965_activate_qos(priv, 1);
7141 else if (priv->assoc_id && iwl4965_is_associated(priv))
7142 iwl4965_activate_qos(priv, 0);
Zhu Yib481de92007-09-25 17:54:57 -07007143
7144 mutex_unlock(&priv->mutex);
7145
Zhu Yib481de92007-09-25 17:54:57 -07007146 IWL_DEBUG_MAC80211("leave\n");
7147 return 0;
7148}
7149
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007150static int iwl4965_mac_get_tx_stats(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07007151 struct ieee80211_tx_queue_stats *stats)
7152{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07007153 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07007154 int i, avail;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007155 struct iwl4965_tx_queue *txq;
7156 struct iwl4965_queue *q;
Zhu Yib481de92007-09-25 17:54:57 -07007157 unsigned long flags;
7158
7159 IWL_DEBUG_MAC80211("enter\n");
7160
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007161 if (!iwl4965_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07007162 IWL_DEBUG_MAC80211("leave - RF not ready\n");
7163 return -EIO;
7164 }
7165
7166 spin_lock_irqsave(&priv->lock, flags);
7167
7168 for (i = 0; i < AC_NUM; i++) {
7169 txq = &priv->txq[i];
7170 q = &txq->q;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007171 avail = iwl4965_queue_space(q);
Zhu Yib481de92007-09-25 17:54:57 -07007172
7173 stats->data[i].len = q->n_window - avail;
7174 stats->data[i].limit = q->n_window - q->high_mark;
7175 stats->data[i].count = q->n_window;
7176
7177 }
7178 spin_unlock_irqrestore(&priv->lock, flags);
7179
7180 IWL_DEBUG_MAC80211("leave\n");
7181
7182 return 0;
7183}
7184
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007185static int iwl4965_mac_get_stats(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07007186 struct ieee80211_low_level_stats *stats)
7187{
7188 IWL_DEBUG_MAC80211("enter\n");
7189 IWL_DEBUG_MAC80211("leave\n");
7190
7191 return 0;
7192}
7193
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007194static u64 iwl4965_mac_get_tsf(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07007195{
7196 IWL_DEBUG_MAC80211("enter\n");
7197 IWL_DEBUG_MAC80211("leave\n");
7198
7199 return 0;
7200}
7201
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007202static void iwl4965_mac_reset_tsf(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07007203{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07007204 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07007205 unsigned long flags;
7206
7207 mutex_lock(&priv->mutex);
7208 IWL_DEBUG_MAC80211("enter\n");
7209
7210 priv->lq_mngr.lq_ready = 0;
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08007211#ifdef CONFIG_IWL4965_HT
Zhu Yib481de92007-09-25 17:54:57 -07007212 spin_lock_irqsave(&priv->lock, flags);
Ron Rindjunskyfd105e72007-11-26 16:14:39 +02007213 memset(&priv->current_ht_config, 0, sizeof(struct iwl_ht_info));
Zhu Yib481de92007-09-25 17:54:57 -07007214 spin_unlock_irqrestore(&priv->lock, flags);
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08007215#endif /* CONFIG_IWL4965_HT */
Zhu Yib481de92007-09-25 17:54:57 -07007216
Assaf Kraussbf85ea42008-03-14 10:38:49 -07007217 iwlcore_reset_qos(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007218
7219 cancel_delayed_work(&priv->post_associate);
7220
7221 spin_lock_irqsave(&priv->lock, flags);
7222 priv->assoc_id = 0;
7223 priv->assoc_capability = 0;
7224 priv->call_post_assoc_from_beacon = 0;
7225 priv->assoc_station_added = 0;
7226
7227 /* new association get rid of ibss beacon skb */
7228 if (priv->ibss_beacon)
7229 dev_kfree_skb(priv->ibss_beacon);
7230
7231 priv->ibss_beacon = NULL;
7232
7233 priv->beacon_int = priv->hw->conf.beacon_int;
7234 priv->timestamp1 = 0;
7235 priv->timestamp0 = 0;
7236 if ((priv->iw_mode == IEEE80211_IF_TYPE_STA))
7237 priv->beacon_int = 0;
7238
7239 spin_unlock_irqrestore(&priv->lock, flags);
7240
Mohamed Abbasfde35712007-11-29 11:10:15 +08007241 if (!iwl4965_is_ready_rf(priv)) {
7242 IWL_DEBUG_MAC80211("leave - not ready\n");
7243 mutex_unlock(&priv->mutex);
7244 return;
7245 }
7246
mabbas052c4b92007-10-25 17:15:43 +08007247 /* we are restarting association process
7248 * clear RXON_FILTER_ASSOC_MSK bit
7249 */
7250 if (priv->iw_mode != IEEE80211_IF_TYPE_AP) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007251 iwl4965_scan_cancel_timeout(priv, 100);
mabbas052c4b92007-10-25 17:15:43 +08007252 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007253 iwl4965_commit_rxon(priv);
mabbas052c4b92007-10-25 17:15:43 +08007254 }
7255
Zhu Yib481de92007-09-25 17:54:57 -07007256 /* Per mac80211.h: This is only used in IBSS mode... */
7257 if (priv->iw_mode != IEEE80211_IF_TYPE_IBSS) {
mabbas052c4b92007-10-25 17:15:43 +08007258
Zhu Yib481de92007-09-25 17:54:57 -07007259 IWL_DEBUG_MAC80211("leave - not in IBSS\n");
7260 mutex_unlock(&priv->mutex);
7261 return;
7262 }
7263
Zhu Yib481de92007-09-25 17:54:57 -07007264 priv->only_active_channel = 0;
7265
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007266 iwl4965_set_rate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007267
7268 mutex_unlock(&priv->mutex);
7269
7270 IWL_DEBUG_MAC80211("leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07007271}
7272
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007273static int iwl4965_mac_beacon_update(struct ieee80211_hw *hw, struct sk_buff *skb,
Zhu Yib481de92007-09-25 17:54:57 -07007274 struct ieee80211_tx_control *control)
7275{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07007276 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07007277 unsigned long flags;
7278
7279 mutex_lock(&priv->mutex);
7280 IWL_DEBUG_MAC80211("enter\n");
7281
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007282 if (!iwl4965_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07007283 IWL_DEBUG_MAC80211("leave - RF not ready\n");
7284 mutex_unlock(&priv->mutex);
7285 return -EIO;
7286 }
7287
7288 if (priv->iw_mode != IEEE80211_IF_TYPE_IBSS) {
7289 IWL_DEBUG_MAC80211("leave - not IBSS\n");
7290 mutex_unlock(&priv->mutex);
7291 return -EIO;
7292 }
7293
7294 spin_lock_irqsave(&priv->lock, flags);
7295
7296 if (priv->ibss_beacon)
7297 dev_kfree_skb(priv->ibss_beacon);
7298
7299 priv->ibss_beacon = skb;
7300
7301 priv->assoc_id = 0;
7302
7303 IWL_DEBUG_MAC80211("leave\n");
7304 spin_unlock_irqrestore(&priv->lock, flags);
7305
Assaf Kraussbf85ea42008-03-14 10:38:49 -07007306 iwlcore_reset_qos(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007307
7308 queue_work(priv->workqueue, &priv->post_associate.work);
7309
7310 mutex_unlock(&priv->mutex);
7311
7312 return 0;
7313}
7314
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08007315#ifdef CONFIG_IWL4965_HT
Zhu Yib481de92007-09-25 17:54:57 -07007316
Ron Rindjunskyfd105e72007-11-26 16:14:39 +02007317static void iwl4965_ht_info_fill(struct ieee80211_conf *conf,
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07007318 struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07007319{
Ron Rindjunskyfd105e72007-11-26 16:14:39 +02007320 struct iwl_ht_info *iwl_conf = &priv->current_ht_config;
7321 struct ieee80211_ht_info *ht_conf = &conf->ht_conf;
7322 struct ieee80211_ht_bss_info *ht_bss_conf = &conf->ht_bss_conf;
Zhu Yib481de92007-09-25 17:54:57 -07007323
7324 IWL_DEBUG_MAC80211("enter: \n");
7325
Ron Rindjunskyfd105e72007-11-26 16:14:39 +02007326 if (!(conf->flags & IEEE80211_CONF_SUPPORT_HT_MODE)) {
7327 iwl_conf->is_ht = 0;
7328 return;
Zhu Yib481de92007-09-25 17:54:57 -07007329 }
7330
Ron Rindjunskyfd105e72007-11-26 16:14:39 +02007331 iwl_conf->is_ht = 1;
7332 priv->ps_mode = (u8)((ht_conf->cap & IEEE80211_HT_CAP_MIMO_PS) >> 2);
Zhu Yib481de92007-09-25 17:54:57 -07007333
Ron Rindjunskyfd105e72007-11-26 16:14:39 +02007334 if (ht_conf->cap & IEEE80211_HT_CAP_SGI_20)
7335 iwl_conf->sgf |= 0x1;
7336 if (ht_conf->cap & IEEE80211_HT_CAP_SGI_40)
7337 iwl_conf->sgf |= 0x2;
Zhu Yib481de92007-09-25 17:54:57 -07007338
Ron Rindjunskyfd105e72007-11-26 16:14:39 +02007339 iwl_conf->is_green_field = !!(ht_conf->cap & IEEE80211_HT_CAP_GRN_FLD);
7340 iwl_conf->max_amsdu_size =
7341 !!(ht_conf->cap & IEEE80211_HT_CAP_MAX_AMSDU);
Guy Cohen134eb5d2008-03-04 18:09:25 -08007342
Ron Rindjunskyfd105e72007-11-26 16:14:39 +02007343 iwl_conf->supported_chan_width =
7344 !!(ht_conf->cap & IEEE80211_HT_CAP_SUP_WIDTH);
Guy Cohen134eb5d2008-03-04 18:09:25 -08007345 iwl_conf->extension_chan_offset =
7346 ht_bss_conf->bss_cap & IEEE80211_HT_IE_CHA_SEC_OFFSET;
7347 /* If no above or below channel supplied disable FAT channel */
7348 if (iwl_conf->extension_chan_offset != IWL_EXT_CHANNEL_OFFSET_ABOVE &&
7349 iwl_conf->extension_chan_offset != IWL_EXT_CHANNEL_OFFSET_BELOW)
7350 iwl_conf->supported_chan_width = 0;
7351
Ron Rindjunskyfd105e72007-11-26 16:14:39 +02007352 iwl_conf->tx_mimo_ps_mode =
7353 (u8)((ht_conf->cap & IEEE80211_HT_CAP_MIMO_PS) >> 2);
7354 memcpy(iwl_conf->supp_mcs_set, ht_conf->supp_mcs_set, 16);
Zhu Yib481de92007-09-25 17:54:57 -07007355
Ron Rindjunskyfd105e72007-11-26 16:14:39 +02007356 iwl_conf->control_channel = ht_bss_conf->primary_channel;
Ron Rindjunskyfd105e72007-11-26 16:14:39 +02007357 iwl_conf->tx_chan_width =
7358 !!(ht_bss_conf->bss_cap & IEEE80211_HT_IE_CHA_WIDTH);
7359 iwl_conf->ht_protection =
7360 ht_bss_conf->bss_op_mode & IEEE80211_HT_IE_HT_PROTECTION;
7361 iwl_conf->non_GF_STA_present =
7362 !!(ht_bss_conf->bss_op_mode & IEEE80211_HT_IE_NON_GF_STA_PRSNT);
Zhu Yib481de92007-09-25 17:54:57 -07007363
Ron Rindjunskyfd105e72007-11-26 16:14:39 +02007364 IWL_DEBUG_MAC80211("control channel %d\n",
7365 iwl_conf->control_channel);
Zhu Yib481de92007-09-25 17:54:57 -07007366 IWL_DEBUG_MAC80211("leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07007367}
7368
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007369static int iwl4965_mac_conf_ht(struct ieee80211_hw *hw,
Ron Rindjunskyfd105e72007-11-26 16:14:39 +02007370 struct ieee80211_conf *conf)
Zhu Yib481de92007-09-25 17:54:57 -07007371{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07007372 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07007373
7374 IWL_DEBUG_MAC80211("enter: \n");
7375
Ron Rindjunskyfd105e72007-11-26 16:14:39 +02007376 iwl4965_ht_info_fill(conf, priv);
Zhu Yib481de92007-09-25 17:54:57 -07007377 iwl4965_set_rxon_chain(priv);
7378
7379 if (priv && priv->assoc_id &&
7380 (priv->iw_mode == IEEE80211_IF_TYPE_STA)) {
7381 unsigned long flags;
7382
7383 spin_lock_irqsave(&priv->lock, flags);
7384 if (priv->beacon_int)
7385 queue_work(priv->workqueue, &priv->post_associate.work);
7386 else
7387 priv->call_post_assoc_from_beacon = 1;
7388 spin_unlock_irqrestore(&priv->lock, flags);
7389 }
7390
Ron Rindjunskyfd105e72007-11-26 16:14:39 +02007391 IWL_DEBUG_MAC80211("leave:\n");
7392 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07007393}
7394
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08007395#endif /*CONFIG_IWL4965_HT*/
Zhu Yib481de92007-09-25 17:54:57 -07007396
7397/*****************************************************************************
7398 *
7399 * sysfs attributes
7400 *
7401 *****************************************************************************/
7402
Tomas Winkler0a6857e2008-03-12 16:58:49 -07007403#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07007404
7405/*
7406 * The following adds a new attribute to the sysfs representation
7407 * of this device driver (i.e. a new file in /sys/bus/pci/drivers/iwl/)
7408 * used for controlling the debug level.
7409 *
7410 * See the level definitions in iwl for details.
7411 */
7412
7413static ssize_t show_debug_level(struct device_driver *d, char *buf)
7414{
Tomas Winkler0a6857e2008-03-12 16:58:49 -07007415 return sprintf(buf, "0x%08X\n", iwl_debug_level);
Zhu Yib481de92007-09-25 17:54:57 -07007416}
7417static ssize_t store_debug_level(struct device_driver *d,
7418 const char *buf, size_t count)
7419{
7420 char *p = (char *)buf;
7421 u32 val;
7422
7423 val = simple_strtoul(p, &p, 0);
7424 if (p == buf)
7425 printk(KERN_INFO DRV_NAME
7426 ": %s is not in hex or decimal form.\n", buf);
7427 else
Tomas Winkler0a6857e2008-03-12 16:58:49 -07007428 iwl_debug_level = val;
Zhu Yib481de92007-09-25 17:54:57 -07007429
7430 return strnlen(buf, count);
7431}
7432
7433static DRIVER_ATTR(debug_level, S_IWUSR | S_IRUGO,
7434 show_debug_level, store_debug_level);
7435
Tomas Winkler0a6857e2008-03-12 16:58:49 -07007436#endif /* CONFIG_IWLWIFI_DEBUG */
Zhu Yib481de92007-09-25 17:54:57 -07007437
7438static ssize_t show_rf_kill(struct device *d,
7439 struct device_attribute *attr, char *buf)
7440{
7441 /*
7442 * 0 - RF kill not enabled
7443 * 1 - SW based RF kill active (sysfs)
7444 * 2 - HW based RF kill active
7445 * 3 - Both HW and SW based RF kill active
7446 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07007447 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07007448 int val = (test_bit(STATUS_RF_KILL_SW, &priv->status) ? 0x1 : 0x0) |
7449 (test_bit(STATUS_RF_KILL_HW, &priv->status) ? 0x2 : 0x0);
7450
7451 return sprintf(buf, "%i\n", val);
7452}
7453
7454static ssize_t store_rf_kill(struct device *d,
7455 struct device_attribute *attr,
7456 const char *buf, size_t count)
7457{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07007458 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07007459
7460 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007461 iwl4965_radio_kill_sw(priv, buf[0] == '1');
Zhu Yib481de92007-09-25 17:54:57 -07007462 mutex_unlock(&priv->mutex);
7463
7464 return count;
7465}
7466
7467static DEVICE_ATTR(rf_kill, S_IWUSR | S_IRUGO, show_rf_kill, store_rf_kill);
7468
7469static ssize_t show_temperature(struct device *d,
7470 struct device_attribute *attr, char *buf)
7471{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07007472 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07007473
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007474 if (!iwl4965_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07007475 return -EAGAIN;
7476
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007477 return sprintf(buf, "%d\n", iwl4965_hw_get_temperature(priv));
Zhu Yib481de92007-09-25 17:54:57 -07007478}
7479
7480static DEVICE_ATTR(temperature, S_IRUGO, show_temperature, NULL);
7481
7482static ssize_t show_rs_window(struct device *d,
7483 struct device_attribute *attr,
7484 char *buf)
7485{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07007486 struct iwl_priv *priv = d->driver_data;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007487 return iwl4965_fill_rs_info(priv->hw, buf, IWL_AP_ID);
Zhu Yib481de92007-09-25 17:54:57 -07007488}
7489static DEVICE_ATTR(rs_window, S_IRUGO, show_rs_window, NULL);
7490
7491static ssize_t show_tx_power(struct device *d,
7492 struct device_attribute *attr, char *buf)
7493{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07007494 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07007495 return sprintf(buf, "%d\n", priv->user_txpower_limit);
7496}
7497
7498static ssize_t store_tx_power(struct device *d,
7499 struct device_attribute *attr,
7500 const char *buf, size_t count)
7501{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07007502 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07007503 char *p = (char *)buf;
7504 u32 val;
7505
7506 val = simple_strtoul(p, &p, 10);
7507 if (p == buf)
7508 printk(KERN_INFO DRV_NAME
7509 ": %s is not in decimal form.\n", buf);
7510 else
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007511 iwl4965_hw_reg_set_txpower(priv, val);
Zhu Yib481de92007-09-25 17:54:57 -07007512
7513 return count;
7514}
7515
7516static DEVICE_ATTR(tx_power, S_IWUSR | S_IRUGO, show_tx_power, store_tx_power);
7517
7518static ssize_t show_flags(struct device *d,
7519 struct device_attribute *attr, char *buf)
7520{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07007521 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07007522
7523 return sprintf(buf, "0x%04X\n", priv->active_rxon.flags);
7524}
7525
7526static ssize_t store_flags(struct device *d,
7527 struct device_attribute *attr,
7528 const char *buf, size_t count)
7529{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07007530 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07007531 u32 flags = simple_strtoul(buf, NULL, 0);
7532
7533 mutex_lock(&priv->mutex);
7534 if (le32_to_cpu(priv->staging_rxon.flags) != flags) {
7535 /* Cancel any currently running scans... */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007536 if (iwl4965_scan_cancel_timeout(priv, 100))
Zhu Yib481de92007-09-25 17:54:57 -07007537 IWL_WARNING("Could not cancel scan.\n");
7538 else {
7539 IWL_DEBUG_INFO("Committing rxon.flags = 0x%04X\n",
7540 flags);
7541 priv->staging_rxon.flags = cpu_to_le32(flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007542 iwl4965_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007543 }
7544 }
7545 mutex_unlock(&priv->mutex);
7546
7547 return count;
7548}
7549
7550static DEVICE_ATTR(flags, S_IWUSR | S_IRUGO, show_flags, store_flags);
7551
7552static ssize_t show_filter_flags(struct device *d,
7553 struct device_attribute *attr, char *buf)
7554{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07007555 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07007556
7557 return sprintf(buf, "0x%04X\n",
7558 le32_to_cpu(priv->active_rxon.filter_flags));
7559}
7560
7561static ssize_t store_filter_flags(struct device *d,
7562 struct device_attribute *attr,
7563 const char *buf, size_t count)
7564{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07007565 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07007566 u32 filter_flags = simple_strtoul(buf, NULL, 0);
7567
7568 mutex_lock(&priv->mutex);
7569 if (le32_to_cpu(priv->staging_rxon.filter_flags) != filter_flags) {
7570 /* Cancel any currently running scans... */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007571 if (iwl4965_scan_cancel_timeout(priv, 100))
Zhu Yib481de92007-09-25 17:54:57 -07007572 IWL_WARNING("Could not cancel scan.\n");
7573 else {
7574 IWL_DEBUG_INFO("Committing rxon.filter_flags = "
7575 "0x%04X\n", filter_flags);
7576 priv->staging_rxon.filter_flags =
7577 cpu_to_le32(filter_flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007578 iwl4965_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007579 }
7580 }
7581 mutex_unlock(&priv->mutex);
7582
7583 return count;
7584}
7585
7586static DEVICE_ATTR(filter_flags, S_IWUSR | S_IRUGO, show_filter_flags,
7587 store_filter_flags);
7588
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08007589#ifdef CONFIG_IWL4965_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -07007590
7591static ssize_t show_measurement(struct device *d,
7592 struct device_attribute *attr, char *buf)
7593{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07007594 struct iwl_priv *priv = dev_get_drvdata(d);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007595 struct iwl4965_spectrum_notification measure_report;
Zhu Yib481de92007-09-25 17:54:57 -07007596 u32 size = sizeof(measure_report), len = 0, ofs = 0;
7597 u8 *data = (u8 *) & measure_report;
7598 unsigned long flags;
7599
7600 spin_lock_irqsave(&priv->lock, flags);
7601 if (!(priv->measurement_status & MEASUREMENT_READY)) {
7602 spin_unlock_irqrestore(&priv->lock, flags);
7603 return 0;
7604 }
7605 memcpy(&measure_report, &priv->measure_report, size);
7606 priv->measurement_status = 0;
7607 spin_unlock_irqrestore(&priv->lock, flags);
7608
7609 while (size && (PAGE_SIZE - len)) {
7610 hex_dump_to_buffer(data + ofs, size, 16, 1, buf + len,
7611 PAGE_SIZE - len, 1);
7612 len = strlen(buf);
7613 if (PAGE_SIZE - len)
7614 buf[len++] = '\n';
7615
7616 ofs += 16;
7617 size -= min(size, 16U);
7618 }
7619
7620 return len;
7621}
7622
7623static ssize_t store_measurement(struct device *d,
7624 struct device_attribute *attr,
7625 const char *buf, size_t count)
7626{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07007627 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07007628 struct ieee80211_measurement_params params = {
7629 .channel = le16_to_cpu(priv->active_rxon.channel),
7630 .start_time = cpu_to_le64(priv->last_tsf),
7631 .duration = cpu_to_le16(1),
7632 };
7633 u8 type = IWL_MEASURE_BASIC;
7634 u8 buffer[32];
7635 u8 channel;
7636
7637 if (count) {
7638 char *p = buffer;
7639 strncpy(buffer, buf, min(sizeof(buffer), count));
7640 channel = simple_strtoul(p, NULL, 0);
7641 if (channel)
7642 params.channel = channel;
7643
7644 p = buffer;
7645 while (*p && *p != ' ')
7646 p++;
7647 if (*p)
7648 type = simple_strtoul(p + 1, NULL, 0);
7649 }
7650
7651 IWL_DEBUG_INFO("Invoking measurement of type %d on "
7652 "channel %d (for '%s')\n", type, params.channel, buf);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007653 iwl4965_get_measurement(priv, &params, type);
Zhu Yib481de92007-09-25 17:54:57 -07007654
7655 return count;
7656}
7657
7658static DEVICE_ATTR(measurement, S_IRUSR | S_IWUSR,
7659 show_measurement, store_measurement);
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08007660#endif /* CONFIG_IWL4965_SPECTRUM_MEASUREMENT */
Zhu Yib481de92007-09-25 17:54:57 -07007661
7662static ssize_t store_retry_rate(struct device *d,
7663 struct device_attribute *attr,
7664 const char *buf, size_t count)
7665{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07007666 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07007667
7668 priv->retry_rate = simple_strtoul(buf, NULL, 0);
7669 if (priv->retry_rate <= 0)
7670 priv->retry_rate = 1;
7671
7672 return count;
7673}
7674
7675static ssize_t show_retry_rate(struct device *d,
7676 struct device_attribute *attr, char *buf)
7677{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07007678 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07007679 return sprintf(buf, "%d", priv->retry_rate);
7680}
7681
7682static DEVICE_ATTR(retry_rate, S_IWUSR | S_IRUSR, show_retry_rate,
7683 store_retry_rate);
7684
7685static ssize_t store_power_level(struct device *d,
7686 struct device_attribute *attr,
7687 const char *buf, size_t count)
7688{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07007689 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07007690 int rc;
7691 int mode;
7692
7693 mode = simple_strtoul(buf, NULL, 0);
7694 mutex_lock(&priv->mutex);
7695
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007696 if (!iwl4965_is_ready(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07007697 rc = -EAGAIN;
7698 goto out;
7699 }
7700
7701 if ((mode < 1) || (mode > IWL_POWER_LIMIT) || (mode == IWL_POWER_AC))
7702 mode = IWL_POWER_AC;
7703 else
7704 mode |= IWL_POWER_ENABLED;
7705
7706 if (mode != priv->power_mode) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007707 rc = iwl4965_send_power_mode(priv, IWL_POWER_LEVEL(mode));
Zhu Yib481de92007-09-25 17:54:57 -07007708 if (rc) {
7709 IWL_DEBUG_MAC80211("failed setting power mode.\n");
7710 goto out;
7711 }
7712 priv->power_mode = mode;
7713 }
7714
7715 rc = count;
7716
7717 out:
7718 mutex_unlock(&priv->mutex);
7719 return rc;
7720}
7721
7722#define MAX_WX_STRING 80
7723
7724/* Values are in microsecond */
7725static const s32 timeout_duration[] = {
7726 350000,
7727 250000,
7728 75000,
7729 37000,
7730 25000,
7731};
7732static const s32 period_duration[] = {
7733 400000,
7734 700000,
7735 1000000,
7736 1000000,
7737 1000000
7738};
7739
7740static ssize_t show_power_level(struct device *d,
7741 struct device_attribute *attr, char *buf)
7742{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07007743 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07007744 int level = IWL_POWER_LEVEL(priv->power_mode);
7745 char *p = buf;
7746
7747 p += sprintf(p, "%d ", level);
7748 switch (level) {
7749 case IWL_POWER_MODE_CAM:
7750 case IWL_POWER_AC:
7751 p += sprintf(p, "(AC)");
7752 break;
7753 case IWL_POWER_BATTERY:
7754 p += sprintf(p, "(BATTERY)");
7755 break;
7756 default:
7757 p += sprintf(p,
7758 "(Timeout %dms, Period %dms)",
7759 timeout_duration[level - 1] / 1000,
7760 period_duration[level - 1] / 1000);
7761 }
7762
7763 if (!(priv->power_mode & IWL_POWER_ENABLED))
7764 p += sprintf(p, " OFF\n");
7765 else
7766 p += sprintf(p, " \n");
7767
7768 return (p - buf + 1);
7769
7770}
7771
7772static DEVICE_ATTR(power_level, S_IWUSR | S_IRUSR, show_power_level,
7773 store_power_level);
7774
7775static ssize_t show_channels(struct device *d,
7776 struct device_attribute *attr, char *buf)
7777{
Johannes Berg8318d782008-01-24 19:38:38 +01007778 /* all this shit doesn't belong into sysfs anyway */
7779 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07007780}
7781
7782static DEVICE_ATTR(channels, S_IRUSR, show_channels, NULL);
7783
7784static ssize_t show_statistics(struct device *d,
7785 struct device_attribute *attr, char *buf)
7786{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07007787 struct iwl_priv *priv = dev_get_drvdata(d);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007788 u32 size = sizeof(struct iwl4965_notif_statistics);
Zhu Yib481de92007-09-25 17:54:57 -07007789 u32 len = 0, ofs = 0;
7790 u8 *data = (u8 *) & priv->statistics;
7791 int rc = 0;
7792
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007793 if (!iwl4965_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07007794 return -EAGAIN;
7795
7796 mutex_lock(&priv->mutex);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007797 rc = iwl4965_send_statistics_request(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007798 mutex_unlock(&priv->mutex);
7799
7800 if (rc) {
7801 len = sprintf(buf,
7802 "Error sending statistics request: 0x%08X\n", rc);
7803 return len;
7804 }
7805
7806 while (size && (PAGE_SIZE - len)) {
7807 hex_dump_to_buffer(data + ofs, size, 16, 1, buf + len,
7808 PAGE_SIZE - len, 1);
7809 len = strlen(buf);
7810 if (PAGE_SIZE - len)
7811 buf[len++] = '\n';
7812
7813 ofs += 16;
7814 size -= min(size, 16U);
7815 }
7816
7817 return len;
7818}
7819
7820static DEVICE_ATTR(statistics, S_IRUGO, show_statistics, NULL);
7821
7822static ssize_t show_antenna(struct device *d,
7823 struct device_attribute *attr, char *buf)
7824{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07007825 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07007826
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007827 if (!iwl4965_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07007828 return -EAGAIN;
7829
7830 return sprintf(buf, "%d\n", priv->antenna);
7831}
7832
7833static ssize_t store_antenna(struct device *d,
7834 struct device_attribute *attr,
7835 const char *buf, size_t count)
7836{
7837 int ant;
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07007838 struct iwl_priv *priv = dev_get_drvdata(d);
Zhu Yib481de92007-09-25 17:54:57 -07007839
7840 if (count == 0)
7841 return 0;
7842
7843 if (sscanf(buf, "%1i", &ant) != 1) {
7844 IWL_DEBUG_INFO("not in hex or decimal form.\n");
7845 return count;
7846 }
7847
7848 if ((ant >= 0) && (ant <= 2)) {
7849 IWL_DEBUG_INFO("Setting antenna select to %d.\n", ant);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007850 priv->antenna = (enum iwl4965_antenna)ant;
Zhu Yib481de92007-09-25 17:54:57 -07007851 } else
7852 IWL_DEBUG_INFO("Bad antenna select value %d.\n", ant);
7853
7854
7855 return count;
7856}
7857
7858static DEVICE_ATTR(antenna, S_IWUSR | S_IRUGO, show_antenna, store_antenna);
7859
7860static ssize_t show_status(struct device *d,
7861 struct device_attribute *attr, char *buf)
7862{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07007863 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007864 if (!iwl4965_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07007865 return -EAGAIN;
7866 return sprintf(buf, "0x%08x\n", (int)priv->status);
7867}
7868
7869static DEVICE_ATTR(status, S_IRUGO, show_status, NULL);
7870
7871static ssize_t dump_error_log(struct device *d,
7872 struct device_attribute *attr,
7873 const char *buf, size_t count)
7874{
7875 char *p = (char *)buf;
7876
7877 if (p[0] == '1')
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07007878 iwl4965_dump_nic_error_log((struct iwl_priv *)d->driver_data);
Zhu Yib481de92007-09-25 17:54:57 -07007879
7880 return strnlen(buf, count);
7881}
7882
7883static DEVICE_ATTR(dump_errors, S_IWUSR, NULL, dump_error_log);
7884
7885static ssize_t dump_event_log(struct device *d,
7886 struct device_attribute *attr,
7887 const char *buf, size_t count)
7888{
7889 char *p = (char *)buf;
7890
7891 if (p[0] == '1')
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07007892 iwl4965_dump_nic_event_log((struct iwl_priv *)d->driver_data);
Zhu Yib481de92007-09-25 17:54:57 -07007893
7894 return strnlen(buf, count);
7895}
7896
7897static DEVICE_ATTR(dump_events, S_IWUSR, NULL, dump_event_log);
7898
7899/*****************************************************************************
7900 *
7901 * driver setup and teardown
7902 *
7903 *****************************************************************************/
7904
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07007905static void iwl4965_setup_deferred_work(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07007906{
7907 priv->workqueue = create_workqueue(DRV_NAME);
7908
7909 init_waitqueue_head(&priv->wait_command_queue);
7910
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007911 INIT_WORK(&priv->up, iwl4965_bg_up);
7912 INIT_WORK(&priv->restart, iwl4965_bg_restart);
7913 INIT_WORK(&priv->rx_replenish, iwl4965_bg_rx_replenish);
7914 INIT_WORK(&priv->scan_completed, iwl4965_bg_scan_completed);
7915 INIT_WORK(&priv->request_scan, iwl4965_bg_request_scan);
7916 INIT_WORK(&priv->abort_scan, iwl4965_bg_abort_scan);
7917 INIT_WORK(&priv->rf_kill, iwl4965_bg_rf_kill);
7918 INIT_WORK(&priv->beacon_update, iwl4965_bg_beacon_update);
7919 INIT_DELAYED_WORK(&priv->post_associate, iwl4965_bg_post_associate);
7920 INIT_DELAYED_WORK(&priv->init_alive_start, iwl4965_bg_init_alive_start);
7921 INIT_DELAYED_WORK(&priv->alive_start, iwl4965_bg_alive_start);
7922 INIT_DELAYED_WORK(&priv->scan_check, iwl4965_bg_scan_check);
Zhu Yib481de92007-09-25 17:54:57 -07007923
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007924 iwl4965_hw_setup_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007925
7926 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007927 iwl4965_irq_tasklet, (unsigned long)priv);
Zhu Yib481de92007-09-25 17:54:57 -07007928}
7929
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07007930static void iwl4965_cancel_deferred_work(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07007931{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007932 iwl4965_hw_cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07007933
Joonwoo Park3ae6a052007-11-29 10:43:16 +09007934 cancel_delayed_work_sync(&priv->init_alive_start);
Zhu Yib481de92007-09-25 17:54:57 -07007935 cancel_delayed_work(&priv->scan_check);
7936 cancel_delayed_work(&priv->alive_start);
7937 cancel_delayed_work(&priv->post_associate);
7938 cancel_work_sync(&priv->beacon_update);
7939}
7940
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007941static struct attribute *iwl4965_sysfs_entries[] = {
Zhu Yib481de92007-09-25 17:54:57 -07007942 &dev_attr_antenna.attr,
7943 &dev_attr_channels.attr,
7944 &dev_attr_dump_errors.attr,
7945 &dev_attr_dump_events.attr,
7946 &dev_attr_flags.attr,
7947 &dev_attr_filter_flags.attr,
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08007948#ifdef CONFIG_IWL4965_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -07007949 &dev_attr_measurement.attr,
7950#endif
7951 &dev_attr_power_level.attr,
7952 &dev_attr_retry_rate.attr,
7953 &dev_attr_rf_kill.attr,
7954 &dev_attr_rs_window.attr,
7955 &dev_attr_statistics.attr,
7956 &dev_attr_status.attr,
7957 &dev_attr_temperature.attr,
Zhu Yib481de92007-09-25 17:54:57 -07007958 &dev_attr_tx_power.attr,
7959
7960 NULL
7961};
7962
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007963static struct attribute_group iwl4965_attribute_group = {
Zhu Yib481de92007-09-25 17:54:57 -07007964 .name = NULL, /* put in device directory */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007965 .attrs = iwl4965_sysfs_entries,
Zhu Yib481de92007-09-25 17:54:57 -07007966};
7967
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007968static struct ieee80211_ops iwl4965_hw_ops = {
7969 .tx = iwl4965_mac_tx,
7970 .start = iwl4965_mac_start,
7971 .stop = iwl4965_mac_stop,
7972 .add_interface = iwl4965_mac_add_interface,
7973 .remove_interface = iwl4965_mac_remove_interface,
7974 .config = iwl4965_mac_config,
7975 .config_interface = iwl4965_mac_config_interface,
7976 .configure_filter = iwl4965_configure_filter,
7977 .set_key = iwl4965_mac_set_key,
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02007978 .update_tkip_key = iwl4965_mac_update_tkip_key,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007979 .get_stats = iwl4965_mac_get_stats,
7980 .get_tx_stats = iwl4965_mac_get_tx_stats,
7981 .conf_tx = iwl4965_mac_conf_tx,
7982 .get_tsf = iwl4965_mac_get_tsf,
7983 .reset_tsf = iwl4965_mac_reset_tsf,
7984 .beacon_update = iwl4965_mac_beacon_update,
Johannes Berg471b3ef2007-12-28 14:32:58 +01007985 .bss_info_changed = iwl4965_bss_info_changed,
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08007986#ifdef CONFIG_IWL4965_HT
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007987 .conf_ht = iwl4965_mac_conf_ht,
Ron Rindjunsky9ab46172007-12-25 17:00:38 +02007988 .ampdu_action = iwl4965_mac_ampdu_action,
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08007989#endif /* CONFIG_IWL4965_HT */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007990 .hw_scan = iwl4965_mac_hw_scan
Zhu Yib481de92007-09-25 17:54:57 -07007991};
7992
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08007993static int iwl4965_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
Zhu Yib481de92007-09-25 17:54:57 -07007994{
7995 int err = 0;
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07007996 struct iwl_priv *priv;
Zhu Yib481de92007-09-25 17:54:57 -07007997 struct ieee80211_hw *hw;
Tomas Winkler82b9a122008-03-04 18:09:30 -08007998 struct iwl_cfg *cfg = (struct iwl_cfg *)(ent->driver_data);
Zhu Yi5a669262008-01-14 17:46:18 -08007999 DECLARE_MAC_BUF(mac);
Zhu Yib481de92007-09-25 17:54:57 -07008000
Assaf Krauss316c30d2008-03-14 10:38:46 -07008001 /************************
8002 * 1. Allocating HW data
8003 ************************/
8004
Cahill, Ben M6440adb2007-11-29 11:09:55 +08008005 /* Disabling hardware scan means that mac80211 will perform scans
8006 * "the hard way", rather than using device's scan. */
Assaf Krauss1ea87392008-03-18 14:57:50 -07008007 if (cfg->mod_params->disable_hw_scan) {
Zhu Yib481de92007-09-25 17:54:57 -07008008 IWL_DEBUG_INFO("Disabling hw_scan\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008009 iwl4965_hw_ops.hw_scan = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07008010 }
8011
Assaf Krauss1d0a0822008-03-14 10:38:48 -07008012 hw = iwl_alloc_all(cfg, &iwl4965_hw_ops);
8013 if (!hw) {
Zhu Yib481de92007-09-25 17:54:57 -07008014 err = -ENOMEM;
8015 goto out;
8016 }
Assaf Krauss1d0a0822008-03-14 10:38:48 -07008017 priv = hw->priv;
8018 /* At this point both hw and priv are allocated. */
8019
Zhu Yib481de92007-09-25 17:54:57 -07008020 SET_IEEE80211_DEV(hw, &pdev->dev);
8021
8022 IWL_DEBUG_INFO("*** LOAD DRIVER ***\n");
Tomas Winkler82b9a122008-03-04 18:09:30 -08008023 priv->cfg = cfg;
Zhu Yib481de92007-09-25 17:54:57 -07008024 priv->pci_dev = pdev;
Assaf Krauss316c30d2008-03-14 10:38:46 -07008025
Tomas Winkler0a6857e2008-03-12 16:58:49 -07008026#ifdef CONFIG_IWLWIFI_DEBUG
Assaf Krauss1ea87392008-03-18 14:57:50 -07008027 iwl_debug_level = priv->cfg->mod_params->debug;
Zhu Yib481de92007-09-25 17:54:57 -07008028 atomic_set(&priv->restrict_refcnt, 0);
8029#endif
Zhu Yib481de92007-09-25 17:54:57 -07008030
Assaf Krauss316c30d2008-03-14 10:38:46 -07008031 /**************************
8032 * 2. Initializing PCI bus
8033 **************************/
8034 if (pci_enable_device(pdev)) {
8035 err = -ENODEV;
8036 goto out_ieee80211_free_hw;
8037 }
8038
8039 pci_set_master(pdev);
8040
8041 err = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
8042 if (!err)
8043 err = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK);
8044 if (err) {
8045 printk(KERN_WARNING DRV_NAME
8046 ": No suitable DMA available.\n");
8047 goto out_pci_disable_device;
8048 }
8049
8050 err = pci_request_regions(pdev, DRV_NAME);
8051 if (err)
8052 goto out_pci_disable_device;
8053
8054 pci_set_drvdata(pdev, priv);
8055
8056 /* We disable the RETRY_TIMEOUT register (0x41) to keep
8057 * PCI Tx retries from interfering with C3 CPU state */
8058 pci_write_config_byte(pdev, 0x41, 0x00);
8059
8060 /***********************
8061 * 3. Read REV register
8062 ***********************/
8063 priv->hw_base = pci_iomap(pdev, 0, 0);
8064 if (!priv->hw_base) {
8065 err = -ENODEV;
8066 goto out_pci_release_regions;
8067 }
8068
8069 IWL_DEBUG_INFO("pci_resource_len = 0x%08llx\n",
8070 (unsigned long long) pci_resource_len(pdev, 0));
8071 IWL_DEBUG_INFO("pci_resource_base = %p\n", priv->hw_base);
8072
8073 printk(KERN_INFO DRV_NAME
8074 ": Detected Intel Wireless WiFi Link %s\n", priv->cfg->name);
8075
8076 /*****************
8077 * 4. Read EEPROM
8078 *****************/
8079 /* nic init */
8080 iwl4965_set_bit(priv, CSR_GIO_CHICKEN_BITS,
8081 CSR_GIO_CHICKEN_BITS_REG_BIT_DIS_L0S_EXIT_TIMER);
8082
8083 iwl4965_set_bit(priv, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_INIT_DONE);
8084 err = iwl4965_poll_bit(priv, CSR_GP_CNTRL,
8085 CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY,
8086 CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY, 25000);
8087 if (err < 0) {
8088 IWL_DEBUG_INFO("Failed to init the card\n");
8089 goto out_iounmap;
8090 }
8091 /* Read the EEPROM */
8092 err = iwl_eeprom_init(priv);
8093 if (err) {
8094 IWL_ERROR("Unable to init EEPROM\n");
8095 goto out_iounmap;
8096 }
8097 /* MAC Address location in EEPROM same for 3945/4965 */
8098 iwl_eeprom_get_mac(priv, priv->mac_addr);
8099 IWL_DEBUG_INFO("MAC address: %s\n", print_mac(mac, priv->mac_addr));
8100 SET_IEEE80211_PERM_ADDR(priv->hw, priv->mac_addr);
8101
8102 /************************
8103 * 5. Setup HW constants
8104 ************************/
8105 /* Device-specific setup */
8106 if (iwl4965_hw_set_hw_setting(priv)) {
8107 IWL_ERROR("failed to set hw settings\n");
8108 goto out_iounmap;
8109 }
8110
8111 /*******************
8112 * 6. Setup hw/priv
8113 *******************/
Zhu Yib481de92007-09-25 17:54:57 -07008114
Assaf Kraussbf85ea42008-03-14 10:38:49 -07008115 err = iwl_setup(priv);
8116 if (err)
Assaf Krauss316c30d2008-03-14 10:38:46 -07008117 goto out_unset_hw_settings;
Assaf Kraussbf85ea42008-03-14 10:38:49 -07008118 /* At this point both hw and priv are initialized. */
Assaf Krauss316c30d2008-03-14 10:38:46 -07008119
8120 /**********************************
8121 * 7. Initialize module parameters
8122 **********************************/
8123
8124 /* Disable radio (SW RF KILL) via parameter when loading driver */
Assaf Krauss1ea87392008-03-18 14:57:50 -07008125 if (priv->cfg->mod_params->disable) {
Assaf Krauss316c30d2008-03-14 10:38:46 -07008126 set_bit(STATUS_RF_KILL_SW, &priv->status);
8127 IWL_DEBUG_INFO("Radio disabled.\n");
8128 }
8129
Assaf Krauss1ea87392008-03-18 14:57:50 -07008130 if (priv->cfg->mod_params->enable_qos)
Assaf Krauss316c30d2008-03-14 10:38:46 -07008131 priv->qos_data.qos_enable = 1;
8132
8133 /********************
8134 * 8. Setup services
8135 ********************/
8136 iwl4965_disable_interrupts(priv);
8137
8138 err = sysfs_create_group(&pdev->dev.kobj, &iwl4965_attribute_group);
8139 if (err) {
8140 IWL_ERROR("failed to create sysfs device attributes\n");
Assaf Kraussbf85ea42008-03-14 10:38:49 -07008141 goto out_unset_hw_settings;
Assaf Krauss316c30d2008-03-14 10:38:46 -07008142 }
8143
8144 err = iwl_dbgfs_register(priv, DRV_NAME);
8145 if (err) {
8146 IWL_ERROR("failed to create debugfs files\n");
8147 goto out_remove_sysfs;
8148 }
8149
8150 iwl4965_setup_deferred_work(priv);
8151 iwl4965_setup_rx_handlers(priv);
8152
8153 /********************
8154 * 9. Conclude
8155 ********************/
Zhu Yi5a669262008-01-14 17:46:18 -08008156 pci_save_state(pdev);
8157 pci_disable_device(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07008158
8159 return 0;
8160
Assaf Krauss316c30d2008-03-14 10:38:46 -07008161 out_remove_sysfs:
8162 sysfs_remove_group(&pdev->dev.kobj, &iwl4965_attribute_group);
Assaf Krauss316c30d2008-03-14 10:38:46 -07008163 out_unset_hw_settings:
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008164 iwl4965_unset_hw_setting(priv);
Zhu Yib481de92007-09-25 17:54:57 -07008165 out_iounmap:
8166 pci_iounmap(pdev, priv->hw_base);
8167 out_pci_release_regions:
8168 pci_release_regions(pdev);
Assaf Krauss316c30d2008-03-14 10:38:46 -07008169 pci_set_drvdata(pdev, NULL);
Zhu Yib481de92007-09-25 17:54:57 -07008170 out_pci_disable_device:
8171 pci_disable_device(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07008172 out_ieee80211_free_hw:
8173 ieee80211_free_hw(priv->hw);
8174 out:
8175 return err;
8176}
8177
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008178static void iwl4965_pci_remove(struct pci_dev *pdev)
Zhu Yib481de92007-09-25 17:54:57 -07008179{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07008180 struct iwl_priv *priv = pci_get_drvdata(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07008181 struct list_head *p, *q;
8182 int i;
8183
8184 if (!priv)
8185 return;
8186
8187 IWL_DEBUG_INFO("*** UNLOAD DRIVER ***\n");
8188
Zhu Yib481de92007-09-25 17:54:57 -07008189 set_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib24d22b2007-12-19 13:59:52 +08008190
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008191 iwl4965_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07008192
8193 /* Free MAC hash list for ADHOC */
8194 for (i = 0; i < IWL_IBSS_MAC_HASH_SIZE; i++) {
8195 list_for_each_safe(p, q, &priv->ibss_mac_hash[i]) {
8196 list_del(p);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008197 kfree(list_entry(p, struct iwl4965_ibss_seq, list));
Zhu Yib481de92007-09-25 17:54:57 -07008198 }
8199 }
8200
Tomas Winkler712b6cf2008-03-12 16:58:52 -07008201 iwl_dbgfs_unregister(priv);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008202 sysfs_remove_group(&pdev->dev.kobj, &iwl4965_attribute_group);
Zhu Yib481de92007-09-25 17:54:57 -07008203
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008204 iwl4965_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07008205
8206 if (priv->rxq.bd)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008207 iwl4965_rx_queue_free(priv, &priv->rxq);
8208 iwl4965_hw_txq_ctx_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07008209
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008210 iwl4965_unset_hw_setting(priv);
Assaf Kraussbf85ea42008-03-14 10:38:49 -07008211 iwlcore_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07008212
8213 if (priv->mac80211_registered) {
8214 ieee80211_unregister_hw(priv->hw);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008215 iwl4965_rate_control_unregister(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07008216 }
8217
Mohamed Abbas948c1712007-10-25 17:15:45 +08008218 /*netif_stop_queue(dev); */
8219 flush_workqueue(priv->workqueue);
8220
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008221 /* ieee80211_unregister_hw calls iwl4965_mac_stop, which flushes
Zhu Yib481de92007-09-25 17:54:57 -07008222 * priv->workqueue... so we can't take down the workqueue
8223 * until now... */
8224 destroy_workqueue(priv->workqueue);
8225 priv->workqueue = NULL;
8226
Zhu Yib481de92007-09-25 17:54:57 -07008227 pci_iounmap(pdev, priv->hw_base);
8228 pci_release_regions(pdev);
8229 pci_disable_device(pdev);
8230 pci_set_drvdata(pdev, NULL);
8231
Assaf Kraussbf85ea42008-03-14 10:38:49 -07008232 iwl_free_channel_map(priv);
Reinette Chatre849e0dc2008-01-23 10:15:18 -08008233 iwl4965_free_geos(priv);
Zhu Yib481de92007-09-25 17:54:57 -07008234
8235 if (priv->ibss_beacon)
8236 dev_kfree_skb(priv->ibss_beacon);
8237
8238 ieee80211_free_hw(priv->hw);
8239}
8240
8241#ifdef CONFIG_PM
8242
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008243static int iwl4965_pci_suspend(struct pci_dev *pdev, pm_message_t state)
Zhu Yib481de92007-09-25 17:54:57 -07008244{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07008245 struct iwl_priv *priv = pci_get_drvdata(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07008246
Zhu Yie655b9f2008-01-24 02:19:38 -08008247 if (priv->is_open) {
8248 set_bit(STATUS_IN_SUSPEND, &priv->status);
8249 iwl4965_mac_stop(priv->hw);
8250 priv->is_open = 1;
8251 }
Zhu Yib481de92007-09-25 17:54:57 -07008252
Zhu Yib481de92007-09-25 17:54:57 -07008253 pci_set_power_state(pdev, PCI_D3hot);
8254
Zhu Yib481de92007-09-25 17:54:57 -07008255 return 0;
8256}
8257
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008258static int iwl4965_pci_resume(struct pci_dev *pdev)
Zhu Yib481de92007-09-25 17:54:57 -07008259{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07008260 struct iwl_priv *priv = pci_get_drvdata(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07008261
Zhu Yib481de92007-09-25 17:54:57 -07008262 pci_set_power_state(pdev, PCI_D0);
Zhu Yib481de92007-09-25 17:54:57 -07008263
Zhu Yie655b9f2008-01-24 02:19:38 -08008264 if (priv->is_open)
8265 iwl4965_mac_start(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07008266
Zhu Yie655b9f2008-01-24 02:19:38 -08008267 clear_bit(STATUS_IN_SUSPEND, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07008268 return 0;
8269}
8270
8271#endif /* CONFIG_PM */
8272
8273/*****************************************************************************
8274 *
8275 * driver and module entry point
8276 *
8277 *****************************************************************************/
8278
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008279static struct pci_driver iwl4965_driver = {
Zhu Yib481de92007-09-25 17:54:57 -07008280 .name = DRV_NAME,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008281 .id_table = iwl4965_hw_card_ids,
8282 .probe = iwl4965_pci_probe,
8283 .remove = __devexit_p(iwl4965_pci_remove),
Zhu Yib481de92007-09-25 17:54:57 -07008284#ifdef CONFIG_PM
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008285 .suspend = iwl4965_pci_suspend,
8286 .resume = iwl4965_pci_resume,
Zhu Yib481de92007-09-25 17:54:57 -07008287#endif
8288};
8289
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008290static int __init iwl4965_init(void)
Zhu Yib481de92007-09-25 17:54:57 -07008291{
8292
8293 int ret;
8294 printk(KERN_INFO DRV_NAME ": " DRV_DESCRIPTION ", " DRV_VERSION "\n");
8295 printk(KERN_INFO DRV_NAME ": " DRV_COPYRIGHT "\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008296 ret = pci_register_driver(&iwl4965_driver);
Zhu Yib481de92007-09-25 17:54:57 -07008297 if (ret) {
8298 IWL_ERROR("Unable to initialize PCI module\n");
8299 return ret;
8300 }
Tomas Winkler0a6857e2008-03-12 16:58:49 -07008301#ifdef CONFIG_IWLWIFI_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008302 ret = driver_create_file(&iwl4965_driver.driver, &driver_attr_debug_level);
Zhu Yib481de92007-09-25 17:54:57 -07008303 if (ret) {
8304 IWL_ERROR("Unable to create driver sysfs file\n");
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008305 pci_unregister_driver(&iwl4965_driver);
Zhu Yib481de92007-09-25 17:54:57 -07008306 return ret;
8307 }
8308#endif
8309
8310 return ret;
8311}
8312
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008313static void __exit iwl4965_exit(void)
Zhu Yib481de92007-09-25 17:54:57 -07008314{
Tomas Winkler0a6857e2008-03-12 16:58:49 -07008315#ifdef CONFIG_IWLWIFI_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008316 driver_remove_file(&iwl4965_driver.driver, &driver_attr_debug_level);
Zhu Yib481de92007-09-25 17:54:57 -07008317#endif
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008318 pci_unregister_driver(&iwl4965_driver);
Zhu Yib481de92007-09-25 17:54:57 -07008319}
8320
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08008321module_exit(iwl4965_exit);
8322module_init(iwl4965_init);