blob: 1050f31d90a4ea5871eaac7a18a246e517cdf1f6 [file] [log] [blame]
Zhu Yib481de92007-09-25 17:54:57 -07001/******************************************************************************
2 *
Reinette Chatre1f447802010-01-15 13:43:41 -08003 * Copyright(c) 2003 - 2010 Intel Corporation. All rights reserved.
Zhu Yib481de92007-09-25 17:54:57 -07004 *
5 * Portions of this file are derived from the ipw3945 project, as well
6 * as portions of the ieee80211 subsystem header files.
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of version 2 of the GNU General Public License as
10 * published by the Free Software Foundation.
11 *
12 * This program is distributed in the hope that it will be useful, but WITHOUT
13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
15 * more details.
16 *
17 * You should have received a copy of the GNU General Public License along with
18 * this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
20 *
21 * The full GNU General Public License is included in this distribution in the
22 * file called LICENSE.
23 *
24 * Contact Information:
Winkler, Tomas759ef892008-12-09 11:28:58 -080025 * Intel Linux Wireless <ilw@linux.intel.com>
Zhu Yib481de92007-09-25 17:54:57 -070026 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
27 *
28 *****************************************************************************/
29
Joe Perchesc96c31e2010-07-26 14:39:58 -070030#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
31
Zhu Yib481de92007-09-25 17:54:57 -070032#include <linux/kernel.h>
33#include <linux/module.h>
Zhu Yib481de92007-09-25 17:54:57 -070034#include <linux/init.h>
35#include <linux/pci.h>
John W. Linville1a7123c2010-08-05 14:39:31 -040036#include <linux/pci-aspm.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090037#include <linux/slab.h>
Zhu Yib481de92007-09-25 17:54:57 -070038#include <linux/dma-mapping.h>
39#include <linux/delay.h>
Alexey Dobriyand43c36d2009-10-07 17:09:06 +040040#include <linux/sched.h>
Zhu Yib481de92007-09-25 17:54:57 -070041#include <linux/skbuff.h>
42#include <linux/netdevice.h>
43#include <linux/wireless.h>
44#include <linux/firmware.h>
Zhu Yib481de92007-09-25 17:54:57 -070045#include <linux/etherdevice.h>
46#include <linux/if_arp.h>
47
Zhu Yib481de92007-09-25 17:54:57 -070048#include <net/mac80211.h>
49
50#include <asm/div64.h>
51
Samuel Ortiza3139c52008-12-19 10:37:09 +080052#define DRV_NAME "iwlagn"
53
Assaf Krauss6bc913b2008-03-11 16:17:18 -070054#include "iwl-eeprom.h"
Tomas Winkler3e0d4cb2008-04-24 11:55:38 -070055#include "iwl-dev.h"
Tomas Winklerfee12472008-04-03 16:05:21 -070056#include "iwl-core.h"
Tomas Winkler3395f6e2008-03-25 16:33:37 -070057#include "iwl-io.h"
Zhu Yib481de92007-09-25 17:54:57 -070058#include "iwl-helpers.h"
Emmanuel Grumbach6974e362008-04-14 21:16:06 -070059#include "iwl-sta.h"
Johannes Berg0de76732010-09-22 18:02:11 +020060#include "iwl-agn-calib.h"
Johannes Berga1175122010-01-21 06:21:10 -080061#include "iwl-agn.h"
Zhu Yib481de92007-09-25 17:54:57 -070062
Christoph Hellwig416e1432007-10-25 17:15:49 +080063
Zhu Yib481de92007-09-25 17:54:57 -070064/******************************************************************************
65 *
66 * module boiler plate
67 *
68 ******************************************************************************/
69
Zhu Yib481de92007-09-25 17:54:57 -070070/*
71 * module name, copyright, version, etc.
Zhu Yib481de92007-09-25 17:54:57 -070072 */
Tomas Winklerd783b062008-07-18 13:53:02 +080073#define DRV_DESCRIPTION "Intel(R) Wireless WiFi Link AGN driver for Linux"
Zhu Yib481de92007-09-25 17:54:57 -070074
Tomas Winkler0a6857e2008-03-12 16:58:49 -070075#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -070076#define VD "d"
77#else
78#define VD
79#endif
80
Reinette Chatre81963d62010-01-22 14:22:57 -080081#define DRV_VERSION IWLWIFI_VERSION VD
Zhu Yib481de92007-09-25 17:54:57 -070082
Zhu Yib481de92007-09-25 17:54:57 -070083
84MODULE_DESCRIPTION(DRV_DESCRIPTION);
85MODULE_VERSION(DRV_VERSION);
Tomas Winklera7b75202008-12-11 10:33:41 -080086MODULE_AUTHOR(DRV_COPYRIGHT " " DRV_AUTHOR);
Zhu Yib481de92007-09-25 17:54:57 -070087MODULE_LICENSE("GPL");
Tomas Winkler4fc22b22008-07-21 18:54:42 +030088MODULE_ALIAS("iwl4965");
Zhu Yib481de92007-09-25 17:54:57 -070089
Wey-Yi Guybee008b2010-08-23 07:57:04 -070090static int iwlagn_ant_coupling;
Wey-Yi Guyf37837c2010-08-23 07:57:12 -070091static bool iwlagn_bt_ch_announce = 1;
Wey-Yi Guybee008b2010-08-23 07:57:04 -070092
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -070093void iwl_update_chain_flags(struct iwl_priv *priv)
Mohamed Abbas5da4b552008-04-21 15:41:51 -070094{
Johannes Berg246ed352010-08-23 10:46:32 +020095 struct iwl_rxon_context *ctx;
Mohamed Abbas5da4b552008-04-21 15:41:51 -070096
Johannes Berg246ed352010-08-23 10:46:32 +020097 if (priv->cfg->ops->hcmd->set_rxon_chain) {
98 for_each_context(priv, ctx) {
99 priv->cfg->ops->hcmd->set_rxon_chain(priv, ctx);
100 iwlcore_commit_rxon(priv, ctx);
101 }
102 }
Mohamed Abbas5da4b552008-04-21 15:41:51 -0700103}
104
Tomas Winklerfcab4232008-05-15 13:54:01 +0800105static void iwl_clear_free_frames(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700106{
107 struct list_head *element;
108
Tomas Winklere1623442009-01-27 14:27:56 -0800109 IWL_DEBUG_INFO(priv, "%d frames on pre-allocated heap on clear.\n",
Zhu Yib481de92007-09-25 17:54:57 -0700110 priv->frames_count);
111
112 while (!list_empty(&priv->free_frames)) {
113 element = priv->free_frames.next;
114 list_del(element);
Tomas Winklerfcab4232008-05-15 13:54:01 +0800115 kfree(list_entry(element, struct iwl_frame, list));
Zhu Yib481de92007-09-25 17:54:57 -0700116 priv->frames_count--;
117 }
118
119 if (priv->frames_count) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800120 IWL_WARN(priv, "%d frames still in use. Did we lose one?\n",
Zhu Yib481de92007-09-25 17:54:57 -0700121 priv->frames_count);
122 priv->frames_count = 0;
123 }
124}
125
Tomas Winklerfcab4232008-05-15 13:54:01 +0800126static struct iwl_frame *iwl_get_free_frame(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700127{
Tomas Winklerfcab4232008-05-15 13:54:01 +0800128 struct iwl_frame *frame;
Zhu Yib481de92007-09-25 17:54:57 -0700129 struct list_head *element;
130 if (list_empty(&priv->free_frames)) {
131 frame = kzalloc(sizeof(*frame), GFP_KERNEL);
132 if (!frame) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800133 IWL_ERR(priv, "Could not allocate frame!\n");
Zhu Yib481de92007-09-25 17:54:57 -0700134 return NULL;
135 }
136
137 priv->frames_count++;
138 return frame;
139 }
140
141 element = priv->free_frames.next;
142 list_del(element);
Tomas Winklerfcab4232008-05-15 13:54:01 +0800143 return list_entry(element, struct iwl_frame, list);
Zhu Yib481de92007-09-25 17:54:57 -0700144}
145
Tomas Winklerfcab4232008-05-15 13:54:01 +0800146static void iwl_free_frame(struct iwl_priv *priv, struct iwl_frame *frame)
Zhu Yib481de92007-09-25 17:54:57 -0700147{
148 memset(frame, 0, sizeof(*frame));
149 list_add(&frame->list, &priv->free_frames);
150}
151
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800152static u32 iwl_fill_beacon_frame(struct iwl_priv *priv,
Johannes Berg77834542010-10-04 05:50:36 -0700153 struct ieee80211_hdr *hdr,
154 int left)
Zhu Yib481de92007-09-25 17:54:57 -0700155{
Johannes Berg77834542010-10-04 05:50:36 -0700156 lockdep_assert_held(&priv->mutex);
157
Johannes Berg12e934d2010-10-04 05:50:06 -0700158 if (!priv->beacon_skb)
Zhu Yib481de92007-09-25 17:54:57 -0700159 return 0;
160
Johannes Berg12e934d2010-10-04 05:50:06 -0700161 if (priv->beacon_skb->len > left)
Zhu Yib481de92007-09-25 17:54:57 -0700162 return 0;
163
Johannes Berg12e934d2010-10-04 05:50:06 -0700164 memcpy(hdr, priv->beacon_skb->data, priv->beacon_skb->len);
Zhu Yib481de92007-09-25 17:54:57 -0700165
Johannes Berg12e934d2010-10-04 05:50:06 -0700166 return priv->beacon_skb->len;
Zhu Yib481de92007-09-25 17:54:57 -0700167}
168
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800169/* Parse the beacon frame to find the TIM element and set tim_idx & tim_size */
170static void iwl_set_beacon_tim(struct iwl_priv *priv,
Johannes Berg77834542010-10-04 05:50:36 -0700171 struct iwl_tx_beacon_cmd *tx_beacon_cmd,
172 u8 *beacon, u32 frame_size)
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800173{
174 u16 tim_idx;
175 struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *)beacon;
176
177 /*
178 * The index is relative to frame start but we start looking at the
179 * variable-length part of the beacon.
180 */
181 tim_idx = mgmt->u.beacon.variable - beacon;
182
183 /* Parse variable-length elements of beacon to find WLAN_EID_TIM */
184 while ((tim_idx < (frame_size - 2)) &&
185 (beacon[tim_idx] != WLAN_EID_TIM))
186 tim_idx += beacon[tim_idx+1] + 2;
187
188 /* If TIM field was found, set variables */
189 if ((tim_idx < (frame_size - 1)) && (beacon[tim_idx] == WLAN_EID_TIM)) {
190 tx_beacon_cmd->tim_idx = cpu_to_le16(tim_idx);
191 tx_beacon_cmd->tim_size = beacon[tim_idx+1];
192 } else
193 IWL_WARN(priv, "Unable to find TIM Element in beacon\n");
194}
195
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700196static unsigned int iwl_hw_get_beacon_cmd(struct iwl_priv *priv,
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800197 struct iwl_frame *frame)
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800198{
199 struct iwl_tx_beacon_cmd *tx_beacon_cmd;
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800200 u32 frame_size;
201 u32 rate_flags;
202 u32 rate;
203 /*
204 * We have to set up the TX command, the TX Beacon command, and the
205 * beacon contents.
206 */
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800207
Johannes Berg76d04812010-08-23 10:46:47 +0200208 lockdep_assert_held(&priv->mutex);
209
210 if (!priv->beacon_ctx) {
211 IWL_ERR(priv, "trying to build beacon w/o beacon context!\n");
Julia Lawall950094c2010-09-05 21:00:26 +0200212 return 0;
Johannes Berg76d04812010-08-23 10:46:47 +0200213 }
214
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800215 /* Initialize memory */
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800216 tx_beacon_cmd = &frame->u.beacon;
217 memset(tx_beacon_cmd, 0, sizeof(*tx_beacon_cmd));
218
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800219 /* Set up TX beacon contents */
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800220 frame_size = iwl_fill_beacon_frame(priv, tx_beacon_cmd->frame,
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800221 sizeof(frame->u) - sizeof(*tx_beacon_cmd));
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800222 if (WARN_ON_ONCE(frame_size > MAX_MPDU_SIZE))
223 return 0;
Johannes Berg40bbfd42010-10-07 04:00:33 -0700224 if (!frame_size)
225 return 0;
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800226
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800227 /* Set up TX command fields */
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800228 tx_beacon_cmd->tx.len = cpu_to_le16((u16)frame_size);
Johannes Berg76d04812010-08-23 10:46:47 +0200229 tx_beacon_cmd->tx.sta_id = priv->beacon_ctx->bcast_sta_id;
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800230 tx_beacon_cmd->tx.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800231 tx_beacon_cmd->tx.tx_flags = TX_CMD_FLG_SEQ_CTL_MSK |
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800232 TX_CMD_FLG_TSF_MSK | TX_CMD_FLG_STA_RATE_MSK;
233
234 /* Set up TX beacon command fields */
235 iwl_set_beacon_tim(priv, tx_beacon_cmd, (u8 *)tx_beacon_cmd->frame,
Johannes Berg77834542010-10-04 05:50:36 -0700236 frame_size);
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800237
238 /* Set up packet rate and flags */
Johannes Berg76d04812010-08-23 10:46:47 +0200239 rate = iwl_rate_get_lowest_plcp(priv, priv->beacon_ctx);
Johannes Berg0e1654f2010-05-18 02:48:36 -0700240 priv->mgmt_tx_ant = iwl_toggle_tx_ant(priv, priv->mgmt_tx_ant,
241 priv->hw_params.valid_tx_ant);
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800242 rate_flags = iwl_ant_idx_to_flags(priv->mgmt_tx_ant);
243 if ((rate >= IWL_FIRST_CCK_RATE) && (rate <= IWL_LAST_CCK_RATE))
244 rate_flags |= RATE_MCS_CCK_MSK;
245 tx_beacon_cmd->tx.rate_n_flags = iwl_hw_set_rate_n_flags(rate,
246 rate_flags);
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800247
248 return sizeof(*tx_beacon_cmd) + frame_size;
249}
Johannes Berg2295c662010-10-23 09:15:41 -0700250
251int iwlagn_send_beacon_cmd(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700252{
Tomas Winklerfcab4232008-05-15 13:54:01 +0800253 struct iwl_frame *frame;
Zhu Yib481de92007-09-25 17:54:57 -0700254 unsigned int frame_size;
255 int rc;
Zhu Yib481de92007-09-25 17:54:57 -0700256
Tomas Winklerfcab4232008-05-15 13:54:01 +0800257 frame = iwl_get_free_frame(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700258 if (!frame) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800259 IWL_ERR(priv, "Could not obtain free frame buffer for beacon "
Zhu Yib481de92007-09-25 17:54:57 -0700260 "command.\n");
261 return -ENOMEM;
262 }
263
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800264 frame_size = iwl_hw_get_beacon_cmd(priv, frame);
265 if (!frame_size) {
266 IWL_ERR(priv, "Error configuring the beacon command\n");
267 iwl_free_frame(priv, frame);
268 return -EINVAL;
269 }
Zhu Yib481de92007-09-25 17:54:57 -0700270
Tomas Winkler857485c2008-03-21 13:53:44 -0700271 rc = iwl_send_cmd_pdu(priv, REPLY_TX_BEACON, frame_size,
Zhu Yib481de92007-09-25 17:54:57 -0700272 &frame->u.cmd[0]);
273
Tomas Winklerfcab4232008-05-15 13:54:01 +0800274 iwl_free_frame(priv, frame);
Zhu Yib481de92007-09-25 17:54:57 -0700275
276 return rc;
277}
278
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800279static inline dma_addr_t iwl_tfd_tb_get_addr(struct iwl_tfd *tfd, u8 idx)
280{
281 struct iwl_tfd_tb *tb = &tfd->tbs[idx];
282
283 dma_addr_t addr = get_unaligned_le32(&tb->lo);
284 if (sizeof(dma_addr_t) > sizeof(u32))
285 addr |=
286 ((dma_addr_t)(le16_to_cpu(tb->hi_n_len) & 0xF) << 16) << 16;
287
288 return addr;
289}
290
291static inline u16 iwl_tfd_tb_get_len(struct iwl_tfd *tfd, u8 idx)
292{
293 struct iwl_tfd_tb *tb = &tfd->tbs[idx];
294
295 return le16_to_cpu(tb->hi_n_len) >> 4;
296}
297
298static inline void iwl_tfd_set_tb(struct iwl_tfd *tfd, u8 idx,
299 dma_addr_t addr, u16 len)
300{
301 struct iwl_tfd_tb *tb = &tfd->tbs[idx];
302 u16 hi_n_len = len << 4;
303
304 put_unaligned_le32(addr, &tb->lo);
305 if (sizeof(dma_addr_t) > sizeof(u32))
306 hi_n_len |= ((addr >> 16) >> 16) & 0xF;
307
308 tb->hi_n_len = cpu_to_le16(hi_n_len);
309
310 tfd->num_tbs = idx + 1;
311}
312
313static inline u8 iwl_tfd_get_num_tbs(struct iwl_tfd *tfd)
314{
315 return tfd->num_tbs & 0x1f;
316}
317
318/**
319 * iwl_hw_txq_free_tfd - Free all chunks referenced by TFD [txq->q.read_ptr]
320 * @priv - driver private data
321 * @txq - tx queue
322 *
323 * Does NOT advance any TFD circular buffer read/write indexes
324 * Does NOT free the TFD itself (which is within circular buffer)
325 */
326void iwl_hw_txq_free_tfd(struct iwl_priv *priv, struct iwl_tx_queue *txq)
327{
Samuel Ortiz59606ff2009-01-23 13:45:13 -0800328 struct iwl_tfd *tfd_tmp = (struct iwl_tfd *)txq->tfds;
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800329 struct iwl_tfd *tfd;
330 struct pci_dev *dev = priv->pci_dev;
331 int index = txq->q.read_ptr;
332 int i;
333 int num_tbs;
334
335 tfd = &tfd_tmp[index];
336
337 /* Sanity check on number of chunks */
338 num_tbs = iwl_tfd_get_num_tbs(tfd);
339
340 if (num_tbs >= IWL_NUM_OF_TBS) {
341 IWL_ERR(priv, "Too many chunks: %i\n", num_tbs);
342 /* @todo issue fatal error, it is quite serious situation */
343 return;
344 }
345
346 /* Unmap tx_cmd */
347 if (num_tbs)
348 pci_unmap_single(dev,
FUJITA Tomonori2e724442010-06-03 14:19:20 +0900349 dma_unmap_addr(&txq->meta[index], mapping),
350 dma_unmap_len(&txq->meta[index], len),
Fenghua Yu96891ce2009-02-18 15:54:33 -0800351 PCI_DMA_BIDIRECTIONAL);
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800352
353 /* Unmap chunks, if any. */
Johannes Bergff0d91c2010-05-17 02:37:34 -0700354 for (i = 1; i < num_tbs; i++)
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800355 pci_unmap_single(dev, iwl_tfd_tb_get_addr(tfd, i),
356 iwl_tfd_tb_get_len(tfd, i), PCI_DMA_TODEVICE);
357
Johannes Bergff0d91c2010-05-17 02:37:34 -0700358 /* free SKB */
359 if (txq->txb) {
360 struct sk_buff *skb;
Johannes Berg6f802402010-05-17 02:37:32 -0700361
Johannes Bergff0d91c2010-05-17 02:37:34 -0700362 skb = txq->txb[txq->q.read_ptr].skb;
Johannes Berg6f802402010-05-17 02:37:32 -0700363
Johannes Bergff0d91c2010-05-17 02:37:34 -0700364 /* can be called from irqs-disabled context */
365 if (skb) {
366 dev_kfree_skb_any(skb);
367 txq->txb[txq->q.read_ptr].skb = NULL;
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800368 }
369 }
370}
371
372int iwl_hw_txq_attach_buf_to_tfd(struct iwl_priv *priv,
373 struct iwl_tx_queue *txq,
374 dma_addr_t addr, u16 len,
375 u8 reset, u8 pad)
376{
377 struct iwl_queue *q;
Samuel Ortiz59606ff2009-01-23 13:45:13 -0800378 struct iwl_tfd *tfd, *tfd_tmp;
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800379 u32 num_tbs;
380
381 q = &txq->q;
Samuel Ortiz59606ff2009-01-23 13:45:13 -0800382 tfd_tmp = (struct iwl_tfd *)txq->tfds;
383 tfd = &tfd_tmp[q->write_ptr];
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800384
385 if (reset)
386 memset(tfd, 0, sizeof(*tfd));
387
388 num_tbs = iwl_tfd_get_num_tbs(tfd);
389
390 /* Each TFD can point to a maximum 20 Tx buffers */
391 if (num_tbs >= IWL_NUM_OF_TBS) {
392 IWL_ERR(priv, "Error can not send more than %d chunks\n",
393 IWL_NUM_OF_TBS);
394 return -EINVAL;
395 }
396
397 BUG_ON(addr & ~DMA_BIT_MASK(36));
398 if (unlikely(addr & ~IWL_TX_DMA_MASK))
399 IWL_ERR(priv, "Unaligned address = %llx\n",
400 (unsigned long long)addr);
401
402 iwl_tfd_set_tb(tfd, num_tbs, addr, len);
403
404 return 0;
405}
406
Samuel Ortiza8e74e272009-01-23 13:45:14 -0800407/*
408 * Tell nic where to find circular buffer of Tx Frame Descriptors for
409 * given Tx queue, and enable the DMA channel used for that queue.
410 *
411 * 4965 supports up to 16 Tx queues in DRAM, mapped to up to 8 Tx DMA
412 * channels supported in hardware.
413 */
414int iwl_hw_tx_queue_init(struct iwl_priv *priv,
415 struct iwl_tx_queue *txq)
416{
Samuel Ortiza8e74e272009-01-23 13:45:14 -0800417 int txq_id = txq->q.id;
418
Samuel Ortiza8e74e272009-01-23 13:45:14 -0800419 /* Circular buffer (TFD queue in DRAM) physical base address */
420 iwl_write_direct32(priv, FH_MEM_CBBC_QUEUE(txq_id),
421 txq->q.dma_addr >> 8);
422
Samuel Ortiza8e74e272009-01-23 13:45:14 -0800423 return 0;
424}
425
Zhu Yib481de92007-09-25 17:54:57 -0700426/******************************************************************************
427 *
428 * Generic RX handler implementations
429 *
430 ******************************************************************************/
Tomas Winkler885ba202008-05-29 16:34:55 +0800431static void iwl_rx_reply_alive(struct iwl_priv *priv,
432 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700433{
Zhu Yi2f301222009-10-09 17:19:45 +0800434 struct iwl_rx_packet *pkt = rxb_addr(rxb);
Tomas Winkler885ba202008-05-29 16:34:55 +0800435 struct iwl_alive_resp *palive;
Zhu Yib481de92007-09-25 17:54:57 -0700436 struct delayed_work *pwork;
437
438 palive = &pkt->u.alive_frame;
439
Tomas Winklere1623442009-01-27 14:27:56 -0800440 IWL_DEBUG_INFO(priv, "Alive ucode status 0x%08X revision "
Zhu Yib481de92007-09-25 17:54:57 -0700441 "0x%01X 0x%01X\n",
442 palive->is_valid, palive->ver_type,
443 palive->ver_subtype);
444
445 if (palive->ver_subtype == INITIALIZE_SUBTYPE) {
Tomas Winklere1623442009-01-27 14:27:56 -0800446 IWL_DEBUG_INFO(priv, "Initialization Alive received.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700447 memcpy(&priv->card_alive_init,
448 &pkt->u.alive_frame,
Tomas Winkler885ba202008-05-29 16:34:55 +0800449 sizeof(struct iwl_init_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -0700450 pwork = &priv->init_alive_start;
451 } else {
Tomas Winklere1623442009-01-27 14:27:56 -0800452 IWL_DEBUG_INFO(priv, "Runtime Alive received.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700453 memcpy(&priv->card_alive, &pkt->u.alive_frame,
Tomas Winkler885ba202008-05-29 16:34:55 +0800454 sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -0700455 pwork = &priv->alive_start;
456 }
457
458 /* We delay the ALIVE response by 5ms to
459 * give the HW RF Kill time to activate... */
460 if (palive->is_valid == UCODE_VALID_OK)
461 queue_delayed_work(priv->workqueue, pwork,
462 msecs_to_jiffies(5));
463 else
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800464 IWL_WARN(priv, "uCode did not respond OK.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700465}
466
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700467static void iwl_bg_beacon_update(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -0700468{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700469 struct iwl_priv *priv =
470 container_of(work, struct iwl_priv, beacon_update);
Zhu Yib481de92007-09-25 17:54:57 -0700471 struct sk_buff *beacon;
472
Johannes Berg76d04812010-08-23 10:46:47 +0200473 mutex_lock(&priv->mutex);
474 if (!priv->beacon_ctx) {
475 IWL_ERR(priv, "updating beacon w/o beacon context!\n");
476 goto out;
Zhu Yib481de92007-09-25 17:54:57 -0700477 }
478
Johannes Berg60744f62010-08-23 10:46:50 +0200479 if (priv->beacon_ctx->vif->type != NL80211_IFTYPE_AP) {
480 /*
481 * The ucode will send beacon notifications even in
482 * IBSS mode, but we don't want to process them. But
483 * we need to defer the type check to here due to
484 * requiring locking around the beacon_ctx access.
485 */
486 goto out;
487 }
488
Johannes Berg76d04812010-08-23 10:46:47 +0200489 /* Pull updated AP beacon from mac80211. will fail if not in AP mode */
490 beacon = ieee80211_beacon_get(priv->hw, priv->beacon_ctx->vif);
491 if (!beacon) {
Johannes Berg77834542010-10-04 05:50:36 -0700492 IWL_ERR(priv, "update beacon failed -- keeping old\n");
Johannes Berg76d04812010-08-23 10:46:47 +0200493 goto out;
494 }
495
Zhu Yib481de92007-09-25 17:54:57 -0700496 /* new beacon skb is allocated every time; dispose previous.*/
Johannes Berg77834542010-10-04 05:50:36 -0700497 dev_kfree_skb(priv->beacon_skb);
Zhu Yib481de92007-09-25 17:54:57 -0700498
Johannes Berg12e934d2010-10-04 05:50:06 -0700499 priv->beacon_skb = beacon;
Zhu Yib481de92007-09-25 17:54:57 -0700500
Johannes Berg2295c662010-10-23 09:15:41 -0700501 iwlagn_send_beacon_cmd(priv);
Johannes Berg76d04812010-08-23 10:46:47 +0200502 out:
503 mutex_unlock(&priv->mutex);
Zhu Yib481de92007-09-25 17:54:57 -0700504}
505
Wey-Yi Guyfbba9412010-08-23 07:57:10 -0700506static void iwl_bg_bt_runtime_config(struct work_struct *work)
507{
508 struct iwl_priv *priv =
509 container_of(work, struct iwl_priv, bt_runtime_config);
510
511 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
512 return;
513
514 /* dont send host command if rf-kill is on */
515 if (!iwl_is_ready_rf(priv))
516 return;
517 priv->cfg->ops->hcmd->send_bt_config(priv);
518}
519
Wey-Yi Guybee008b2010-08-23 07:57:04 -0700520static void iwl_bg_bt_full_concurrency(struct work_struct *work)
521{
522 struct iwl_priv *priv =
523 container_of(work, struct iwl_priv, bt_full_concurrency);
Johannes Berg246ed352010-08-23 10:46:32 +0200524 struct iwl_rxon_context *ctx;
Wey-Yi Guybee008b2010-08-23 07:57:04 -0700525
526 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
527 return;
528
529 /* dont send host command if rf-kill is on */
530 if (!iwl_is_ready_rf(priv))
531 return;
532
533 IWL_DEBUG_INFO(priv, "BT coex in %s mode\n",
534 priv->bt_full_concurrent ?
535 "full concurrency" : "3-wire");
536
537 /*
538 * LQ & RXON updated cmds must be sent before BT Config cmd
539 * to avoid 3-wire collisions
540 */
Johannes Berg246ed352010-08-23 10:46:32 +0200541 mutex_lock(&priv->mutex);
542 for_each_context(priv, ctx) {
543 if (priv->cfg->ops->hcmd->set_rxon_chain)
544 priv->cfg->ops->hcmd->set_rxon_chain(priv, ctx);
545 iwlcore_commit_rxon(priv, ctx);
546 }
547 mutex_unlock(&priv->mutex);
Wey-Yi Guybee008b2010-08-23 07:57:04 -0700548
549 priv->cfg->ops->hcmd->send_bt_config(priv);
550}
551
Emmanuel Grumbach4e393172008-06-12 09:46:53 +0800552/**
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700553 * iwl_bg_statistics_periodic - Timer callback to queue statistics
Emmanuel Grumbach4e393172008-06-12 09:46:53 +0800554 *
555 * This callback is provided in order to send a statistics request.
556 *
557 * This timer function is continually reset to execute within
558 * REG_RECALIB_PERIOD seconds since the last STATISTICS_NOTIFICATION
559 * was received. We need to ensure we receive the statistics in order
560 * to update the temperature used for calibrating the TXPOWER.
561 */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700562static void iwl_bg_statistics_periodic(unsigned long data)
Emmanuel Grumbach4e393172008-06-12 09:46:53 +0800563{
564 struct iwl_priv *priv = (struct iwl_priv *)data;
565
566 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
567 return;
568
Mohamed Abbas61780ee2008-10-29 14:05:49 -0700569 /* dont send host command if rf-kill is on */
570 if (!iwl_is_ready_rf(priv))
571 return;
572
Wey-Yi Guyef8d5522009-11-13 11:56:28 -0800573 iwl_send_statistics_request(priv, CMD_ASYNC, false);
Emmanuel Grumbach4e393172008-06-12 09:46:53 +0800574}
575
Wey-Yi Guya9e1cb62009-12-10 14:37:26 -0800576
577static void iwl_print_cont_event_trace(struct iwl_priv *priv, u32 base,
578 u32 start_idx, u32 num_events,
579 u32 mode)
580{
581 u32 i;
582 u32 ptr; /* SRAM byte address of log data */
583 u32 ev, time, data; /* event log data */
584 unsigned long reg_flags;
585
586 if (mode == 0)
587 ptr = base + (4 * sizeof(u32)) + (start_idx * 2 * sizeof(u32));
588 else
589 ptr = base + (4 * sizeof(u32)) + (start_idx * 3 * sizeof(u32));
590
591 /* Make sure device is powered up for SRAM reads */
592 spin_lock_irqsave(&priv->reg_lock, reg_flags);
593 if (iwl_grab_nic_access(priv)) {
594 spin_unlock_irqrestore(&priv->reg_lock, reg_flags);
595 return;
596 }
597
598 /* Set starting address; reads will auto-increment */
599 _iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR, ptr);
600 rmb();
601
602 /*
603 * "time" is actually "data" for mode 0 (no timestamp).
604 * place event id # at far right for easier visual parsing.
605 */
606 for (i = 0; i < num_events; i++) {
607 ev = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
608 time = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
609 if (mode == 0) {
610 trace_iwlwifi_dev_ucode_cont_event(priv,
611 0, time, ev);
612 } else {
613 data = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
614 trace_iwlwifi_dev_ucode_cont_event(priv,
615 time, data, ev);
616 }
617 }
618 /* Allow device to power down */
619 iwl_release_nic_access(priv);
620 spin_unlock_irqrestore(&priv->reg_lock, reg_flags);
621}
622
Johannes Berg875295f2010-01-22 14:22:55 -0800623static void iwl_continuous_event_trace(struct iwl_priv *priv)
Wey-Yi Guya9e1cb62009-12-10 14:37:26 -0800624{
625 u32 capacity; /* event log capacity in # entries */
626 u32 base; /* SRAM byte address of event log header */
627 u32 mode; /* 0 - no timestamp, 1 - timestamp recorded */
628 u32 num_wraps; /* # times uCode wrapped to top of log */
629 u32 next_entry; /* index of next entry to be written by uCode */
630
631 if (priv->ucode_type == UCODE_INIT)
632 base = le32_to_cpu(priv->card_alive_init.error_event_table_ptr);
633 else
634 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
635 if (priv->cfg->ops->lib->is_valid_rtc_data_addr(base)) {
636 capacity = iwl_read_targ_mem(priv, base);
637 num_wraps = iwl_read_targ_mem(priv, base + (2 * sizeof(u32)));
638 mode = iwl_read_targ_mem(priv, base + (1 * sizeof(u32)));
639 next_entry = iwl_read_targ_mem(priv, base + (3 * sizeof(u32)));
640 } else
641 return;
642
643 if (num_wraps == priv->event_log.num_wraps) {
644 iwl_print_cont_event_trace(priv,
645 base, priv->event_log.next_entry,
646 next_entry - priv->event_log.next_entry,
647 mode);
648 priv->event_log.non_wraps_count++;
649 } else {
650 if ((num_wraps - priv->event_log.num_wraps) > 1)
651 priv->event_log.wraps_more_count++;
652 else
653 priv->event_log.wraps_once_count++;
654 trace_iwlwifi_dev_ucode_wrap_event(priv,
655 num_wraps - priv->event_log.num_wraps,
656 next_entry, priv->event_log.next_entry);
657 if (next_entry < priv->event_log.next_entry) {
658 iwl_print_cont_event_trace(priv, base,
659 priv->event_log.next_entry,
660 capacity - priv->event_log.next_entry,
661 mode);
662
663 iwl_print_cont_event_trace(priv, base, 0,
664 next_entry, mode);
665 } else {
666 iwl_print_cont_event_trace(priv, base,
667 next_entry, capacity - next_entry,
668 mode);
669
670 iwl_print_cont_event_trace(priv, base, 0,
671 next_entry, mode);
672 }
673 }
674 priv->event_log.num_wraps = num_wraps;
675 priv->event_log.next_entry = next_entry;
676}
677
678/**
679 * iwl_bg_ucode_trace - Timer callback to log ucode event
680 *
681 * The timer is continually set to execute every
682 * UCODE_TRACE_PERIOD milliseconds after the last timer expired
683 * this function is to perform continuous uCode event logging operation
684 * if enabled
685 */
686static void iwl_bg_ucode_trace(unsigned long data)
687{
688 struct iwl_priv *priv = (struct iwl_priv *)data;
689
690 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
691 return;
692
693 if (priv->event_log.ucode_trace) {
694 iwl_continuous_event_trace(priv);
695 /* Reschedule the timer to occur in UCODE_TRACE_PERIOD */
696 mod_timer(&priv->ucode_trace,
697 jiffies + msecs_to_jiffies(UCODE_TRACE_PERIOD));
698 }
699}
700
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700701static void iwl_rx_beacon_notif(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +0800702 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700703{
Zhu Yi2f301222009-10-09 17:19:45 +0800704 struct iwl_rx_packet *pkt = rxb_addr(rxb);
Tomas Winkler2aa6ab82008-12-11 10:33:40 -0800705 struct iwl4965_beacon_notif *beacon =
706 (struct iwl4965_beacon_notif *)pkt->u.raw;
Johannes Berga85d7cc2010-07-31 08:34:10 -0700707#ifdef CONFIG_IWLWIFI_DEBUG
Tomas Winklere7d326a2008-06-12 09:47:11 +0800708 u8 rate = iwl_hw_get_rate(beacon->beacon_notify_hdr.rate_n_flags);
Zhu Yib481de92007-09-25 17:54:57 -0700709
Tomas Winklere1623442009-01-27 14:27:56 -0800710 IWL_DEBUG_RX(priv, "beacon status %x retries %d iss %d "
Zhu Yib481de92007-09-25 17:54:57 -0700711 "tsf %d %d rate %d\n",
Tomas Winkler25a65722008-06-12 09:47:07 +0800712 le32_to_cpu(beacon->beacon_notify_hdr.u.status) & TX_STATUS_MSK,
Zhu Yib481de92007-09-25 17:54:57 -0700713 beacon->beacon_notify_hdr.failure_frame,
714 le32_to_cpu(beacon->ibss_mgr_status),
715 le32_to_cpu(beacon->high_tsf),
716 le32_to_cpu(beacon->low_tsf), rate);
717#endif
718
Johannes Berga85d7cc2010-07-31 08:34:10 -0700719 priv->ibss_manager = le32_to_cpu(beacon->ibss_mgr_status);
720
Johannes Berg60744f62010-08-23 10:46:50 +0200721 if (!test_bit(STATUS_EXIT_PENDING, &priv->status))
Zhu Yib481de92007-09-25 17:54:57 -0700722 queue_work(priv->workqueue, &priv->beacon_update);
723}
724
Zhu Yib481de92007-09-25 17:54:57 -0700725/* Handle notification from uCode that card's power state is changing
726 * due to software, hardware, or critical temperature RFKILL */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700727static void iwl_rx_card_state_notif(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +0800728 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700729{
Zhu Yi2f301222009-10-09 17:19:45 +0800730 struct iwl_rx_packet *pkt = rxb_addr(rxb);
Zhu Yib481de92007-09-25 17:54:57 -0700731 u32 flags = le32_to_cpu(pkt->u.card_state_notif.flags);
732 unsigned long status = priv->status;
733
Wey-Yi Guy3a41bbd2009-12-10 14:37:24 -0800734 IWL_DEBUG_RF_KILL(priv, "Card state received: HW:%s SW:%s CT:%s\n",
Zhu Yib481de92007-09-25 17:54:57 -0700735 (flags & HW_CARD_DISABLED) ? "Kill" : "On",
Wey-Yi Guy3a41bbd2009-12-10 14:37:24 -0800736 (flags & SW_CARD_DISABLED) ? "Kill" : "On",
737 (flags & CT_CARD_DISABLED) ?
738 "Reached" : "Not reached");
Zhu Yib481de92007-09-25 17:54:57 -0700739
740 if (flags & (SW_CARD_DISABLED | HW_CARD_DISABLED |
Wey-Yi Guy3a41bbd2009-12-10 14:37:24 -0800741 CT_CARD_DISABLED)) {
Zhu Yib481de92007-09-25 17:54:57 -0700742
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700743 iwl_write32(priv, CSR_UCODE_DRV_GP1_SET,
Zhu Yib481de92007-09-25 17:54:57 -0700744 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
745
Mohamed Abbasa8b50a02009-05-22 11:01:47 -0700746 iwl_write_direct32(priv, HBUS_TARG_MBX_C,
747 HBUS_TARG_MBX_C_REG_BIT_CMD_BLOCKED);
Zhu Yib481de92007-09-25 17:54:57 -0700748
749 if (!(flags & RXON_CARD_DISABLED)) {
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700750 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR,
Zhu Yib481de92007-09-25 17:54:57 -0700751 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
Mohamed Abbasa8b50a02009-05-22 11:01:47 -0700752 iwl_write_direct32(priv, HBUS_TARG_MBX_C,
Zhu Yib481de92007-09-25 17:54:57 -0700753 HBUS_TARG_MBX_C_REG_BIT_CMD_BLOCKED);
Zhu Yib481de92007-09-25 17:54:57 -0700754 }
Wey-Yi Guy3a41bbd2009-12-10 14:37:24 -0800755 if (flags & CT_CARD_DISABLED)
Wey-Yi Guy39b73fb12009-07-24 11:13:02 -0700756 iwl_tt_enter_ct_kill(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700757 }
Wey-Yi Guy3a41bbd2009-12-10 14:37:24 -0800758 if (!(flags & CT_CARD_DISABLED))
Wey-Yi Guy39b73fb12009-07-24 11:13:02 -0700759 iwl_tt_exit_ct_kill(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700760
761 if (flags & HW_CARD_DISABLED)
762 set_bit(STATUS_RF_KILL_HW, &priv->status);
763 else
764 clear_bit(STATUS_RF_KILL_HW, &priv->status);
765
766
Zhu Yib481de92007-09-25 17:54:57 -0700767 if (!(flags & RXON_CARD_DISABLED))
Tomas Winkler2a421b92008-06-12 09:47:10 +0800768 iwl_scan_cancel(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700769
770 if ((test_bit(STATUS_RF_KILL_HW, &status) !=
Johannes Berga60e77e2009-06-04 18:26:06 +0200771 test_bit(STATUS_RF_KILL_HW, &priv->status)))
772 wiphy_rfkill_set_hw_state(priv->hw->wiphy,
773 test_bit(STATUS_RF_KILL_HW, &priv->status));
Zhu Yib481de92007-09-25 17:54:57 -0700774 else
775 wake_up_interruptible(&priv->wait_command_queue);
776}
777
Wey-Yi Guy65550632010-06-24 13:18:35 -0700778static void iwl_bg_tx_flush(struct work_struct *work)
779{
780 struct iwl_priv *priv =
781 container_of(work, struct iwl_priv, tx_flush);
782
783 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
784 return;
785
786 /* do nothing if rf-kill is on */
787 if (!iwl_is_ready_rf(priv))
788 return;
789
790 if (priv->cfg->ops->lib->txfifo_flush) {
791 IWL_DEBUG_INFO(priv, "device request: flush all tx frames\n");
792 iwlagn_dev_txfifo_flush(priv, IWL_DROP_ALL);
793 }
794}
795
Zhu Yib481de92007-09-25 17:54:57 -0700796/**
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700797 * iwl_setup_rx_handlers - Initialize Rx handler callbacks
Zhu Yib481de92007-09-25 17:54:57 -0700798 *
799 * Setup the RX handlers for each of the reply types sent from the uCode
800 * to the host.
801 *
802 * This function chains into the hardware specific files for them to setup
803 * any hardware specific handlers as well.
804 */
Emmanuel Grumbach653fa4a2008-06-30 17:23:11 +0800805static void iwl_setup_rx_handlers(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700806{
Tomas Winkler885ba202008-05-29 16:34:55 +0800807 priv->rx_handlers[REPLY_ALIVE] = iwl_rx_reply_alive;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700808 priv->rx_handlers[REPLY_ERROR] = iwl_rx_reply_error;
809 priv->rx_handlers[CHANNEL_SWITCH_NOTIFICATION] = iwl_rx_csa;
Reinette Chatre81963d62010-01-22 14:22:57 -0800810 priv->rx_handlers[SPECTRUM_MEASURE_NOTIFICATION] =
811 iwl_rx_spectrum_measure_notif;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700812 priv->rx_handlers[PM_SLEEP_NOTIFICATION] = iwl_rx_pm_sleep_notif;
Zhu Yib481de92007-09-25 17:54:57 -0700813 priv->rx_handlers[PM_DEBUG_STATISTIC_NOTIFIC] =
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700814 iwl_rx_pm_debug_statistics_notif;
815 priv->rx_handlers[BEACON_NOTIFICATION] = iwl_rx_beacon_notif;
Zhu Yib481de92007-09-25 17:54:57 -0700816
Ben Cahill9fbab512007-11-29 11:09:47 +0800817 /*
818 * The same handler is used for both the REPLY to a discrete
819 * statistics request from the host as well as for the periodic
820 * statistics notifications (after received beacons) from the uCode.
Zhu Yib481de92007-09-25 17:54:57 -0700821 */
Wey-Yi Guyef8d5522009-11-13 11:56:28 -0800822 priv->rx_handlers[REPLY_STATISTICS_CMD] = iwl_reply_statistics;
Emmanuel Grumbach8f91aec2008-06-30 17:23:07 +0800823 priv->rx_handlers[STATISTICS_NOTIFICATION] = iwl_rx_statistics;
Tomas Winkler2a421b92008-06-12 09:47:10 +0800824
825 iwl_setup_rx_scan_handlers(priv);
826
Ron Rindjunsky37a44212008-05-29 16:35:18 +0800827 /* status change handler */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700828 priv->rx_handlers[CARD_STATE_NOTIFICATION] = iwl_rx_card_state_notif;
Zhu Yib481de92007-09-25 17:54:57 -0700829
Tomas Winklerc1354752008-05-29 16:35:04 +0800830 priv->rx_handlers[MISSED_BEACONS_NOTIFICATION] =
831 iwl_rx_missed_beacon_notif;
Ron Rindjunsky37a44212008-05-29 16:35:18 +0800832 /* Rx handlers */
Wey-Yi Guy8d801082010-03-17 13:34:36 -0700833 priv->rx_handlers[REPLY_RX_PHY_CMD] = iwlagn_rx_reply_rx_phy;
834 priv->rx_handlers[REPLY_RX_MPDU_CMD] = iwlagn_rx_reply_rx;
Emmanuel Grumbach653fa4a2008-06-30 17:23:11 +0800835 /* block ack */
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700836 priv->rx_handlers[REPLY_COMPRESSED_BA] = iwlagn_rx_reply_compressed_ba;
Ben Cahill9fbab512007-11-29 11:09:47 +0800837 /* Set up hardware specific Rx handlers */
Emmanuel Grumbachd4789ef2008-04-24 11:55:20 -0700838 priv->cfg->ops->lib->rx_handler_setup(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700839}
840
Zhu Yib481de92007-09-25 17:54:57 -0700841/**
Tomas Winklera55360e2008-05-05 10:22:28 +0800842 * iwl_rx_handle - Main entry function for receiving responses from uCode
Zhu Yib481de92007-09-25 17:54:57 -0700843 *
844 * Uses the priv->rx_handlers callback function array to invoke
845 * the appropriate handlers, including command responses,
846 * frame-received notifications, and other notifications.
847 */
Tomas Winklera55360e2008-05-05 10:22:28 +0800848void iwl_rx_handle(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700849{
Tomas Winklera55360e2008-05-05 10:22:28 +0800850 struct iwl_rx_mem_buffer *rxb;
Tomas Winklerdb11d632008-05-05 10:22:33 +0800851 struct iwl_rx_packet *pkt;
Tomas Winklera55360e2008-05-05 10:22:28 +0800852 struct iwl_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -0700853 u32 r, i;
854 int reclaim;
855 unsigned long flags;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +0800856 u8 fill_rx = 0;
Mohamed Abbasd68ab682008-02-07 13:16:33 -0800857 u32 count = 8;
Mohamed Abbas4752c932009-05-22 11:01:51 -0700858 int total_empty;
Zhu Yib481de92007-09-25 17:54:57 -0700859
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800860 /* uCode's read index (stored in shared DRAM) indicates the last Rx
861 * buffer that the driver may process (last buffer filled by ucode). */
Winkler, Tomas8d864222008-11-07 09:58:39 -0800862 r = le16_to_cpu(rxq->rb_stts->closed_rb_num) & 0x0FFF;
Zhu Yib481de92007-09-25 17:54:57 -0700863 i = rxq->read;
864
865 /* Rx interrupt, but nothing sent from uCode */
866 if (i == r)
Tomas Winklere1623442009-01-27 14:27:56 -0800867 IWL_DEBUG_RX(priv, "r = %d, i = %d\n", r, i);
Zhu Yib481de92007-09-25 17:54:57 -0700868
Mohamed Abbas4752c932009-05-22 11:01:51 -0700869 /* calculate total frames need to be restock after handling RX */
Zhu Yi73005152009-10-23 13:42:32 -0700870 total_empty = r - rxq->write_actual;
Mohamed Abbas4752c932009-05-22 11:01:51 -0700871 if (total_empty < 0)
872 total_empty += RX_QUEUE_SIZE;
873
874 if (total_empty > (RX_QUEUE_SIZE / 2))
Mohamed Abbas5c0eef92007-11-29 11:10:14 +0800875 fill_rx = 1;
876
Zhu Yib481de92007-09-25 17:54:57 -0700877 while (i != r) {
Johannes Bergf4989d92010-05-28 04:08:30 -0700878 int len;
879
Zhu Yib481de92007-09-25 17:54:57 -0700880 rxb = rxq->queue[i];
881
Ben Cahill9fbab512007-11-29 11:09:47 +0800882 /* If an RXB doesn't have a Rx queue slot associated with it,
Zhu Yib481de92007-09-25 17:54:57 -0700883 * then a bug has been introduced in the queue refilling
884 * routines -- catch it here */
885 BUG_ON(rxb == NULL);
886
887 rxq->queue[i] = NULL;
888
Zhu Yi2f301222009-10-09 17:19:45 +0800889 pci_unmap_page(priv->pci_dev, rxb->page_dma,
890 PAGE_SIZE << priv->hw_params.rx_page_order,
891 PCI_DMA_FROMDEVICE);
892 pkt = rxb_addr(rxb);
Zhu Yib481de92007-09-25 17:54:57 -0700893
Johannes Bergf4989d92010-05-28 04:08:30 -0700894 len = le32_to_cpu(pkt->len_n_flags) & FH_RSCSR_FRAME_SIZE_MSK;
895 len += sizeof(u32); /* account for status word */
896 trace_iwlwifi_dev_rx(priv, pkt, len);
Johannes Bergbe1a71a2009-10-02 13:44:02 -0700897
Zhu Yib481de92007-09-25 17:54:57 -0700898 /* Reclaim a command buffer only if this packet is a response
899 * to a (driver-originated) command.
900 * If the packet (e.g. Rx frame) originated from uCode,
901 * there is no command buffer to reclaim.
902 * Ucode should set SEQ_RX_FRAME bit if ucode-originated,
903 * but apparently a few don't get set; catch them here. */
904 reclaim = !(pkt->hdr.sequence & SEQ_RX_FRAME) &&
905 (pkt->hdr.cmd != REPLY_RX_PHY_CMD) &&
Tomas Winkler857485c2008-03-21 13:53:44 -0700906 (pkt->hdr.cmd != REPLY_RX) &&
Daniel Halperin7dddaf12008-10-23 23:48:58 -0700907 (pkt->hdr.cmd != REPLY_RX_MPDU_CMD) &&
Zhu Yicfe01702007-09-27 11:27:31 +0800908 (pkt->hdr.cmd != REPLY_COMPRESSED_BA) &&
Zhu Yib481de92007-09-25 17:54:57 -0700909 (pkt->hdr.cmd != STATISTICS_NOTIFICATION) &&
910 (pkt->hdr.cmd != REPLY_TX);
911
912 /* Based on type of command response or notification,
913 * handle those that need handling via function in
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700914 * rx_handlers table. See iwl_setup_rx_handlers() */
Zhu Yib481de92007-09-25 17:54:57 -0700915 if (priv->rx_handlers[pkt->hdr.cmd]) {
Tomas Winklere1623442009-01-27 14:27:56 -0800916 IWL_DEBUG_RX(priv, "r = %d, i = %d, %s, 0x%02x\n", r,
Ester Kummerf3d67992008-05-06 11:05:12 +0800917 i, get_cmd_string(pkt->hdr.cmd), pkt->hdr.cmd);
Wey-Yi Guya83b9142009-04-08 11:39:32 -0700918 priv->isr_stats.rx_handlers[pkt->hdr.cmd]++;
Zhu Yi29b1b262009-10-23 13:42:25 -0700919 priv->rx_handlers[pkt->hdr.cmd] (priv, rxb);
Zhu Yib481de92007-09-25 17:54:57 -0700920 } else {
921 /* No handling needed */
Tomas Winklere1623442009-01-27 14:27:56 -0800922 IWL_DEBUG_RX(priv,
Zhu Yib481de92007-09-25 17:54:57 -0700923 "r %d i %d No handler needed for %s, 0x%02x\n",
924 r, i, get_cmd_string(pkt->hdr.cmd),
925 pkt->hdr.cmd);
926 }
927
Zhu Yi29b1b262009-10-23 13:42:25 -0700928 /*
929 * XXX: After here, we should always check rxb->page
930 * against NULL before touching it or its virtual
931 * memory (pkt). Because some rx_handler might have
932 * already taken or freed the pages.
933 */
934
Zhu Yib481de92007-09-25 17:54:57 -0700935 if (reclaim) {
Zhu Yi2f301222009-10-09 17:19:45 +0800936 /* Invoke any callbacks, transfer the buffer to caller,
937 * and fire off the (possibly) blocking iwl_send_cmd()
Zhu Yib481de92007-09-25 17:54:57 -0700938 * as we reclaim the driver command queue */
Zhu Yi29b1b262009-10-23 13:42:25 -0700939 if (rxb->page)
Tomas Winkler17b88922008-05-29 16:35:12 +0800940 iwl_tx_cmd_complete(priv, rxb);
Zhu Yib481de92007-09-25 17:54:57 -0700941 else
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800942 IWL_WARN(priv, "Claim null rxb?\n");
Zhu Yib481de92007-09-25 17:54:57 -0700943 }
944
Zhu Yi73005152009-10-23 13:42:32 -0700945 /* Reuse the page if possible. For notification packets and
946 * SKBs that fail to Rx correctly, add them back into the
947 * rx_free list for reuse later. */
Zhu Yib481de92007-09-25 17:54:57 -0700948 spin_lock_irqsave(&rxq->lock, flags);
Zhu Yi73005152009-10-23 13:42:32 -0700949 if (rxb->page != NULL) {
950 rxb->page_dma = pci_map_page(priv->pci_dev, rxb->page,
951 0, PAGE_SIZE << priv->hw_params.rx_page_order,
952 PCI_DMA_FROMDEVICE);
953 list_add_tail(&rxb->list, &rxq->rx_free);
954 rxq->free_count++;
955 } else
956 list_add_tail(&rxb->list, &rxq->rx_used);
957
Zhu Yib481de92007-09-25 17:54:57 -0700958 spin_unlock_irqrestore(&rxq->lock, flags);
Zhu Yi73005152009-10-23 13:42:32 -0700959
Zhu Yib481de92007-09-25 17:54:57 -0700960 i = (i + 1) & RX_QUEUE_MASK;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +0800961 /* If there are a lot of unused frames,
962 * restock the Rx queue so ucode wont assert. */
963 if (fill_rx) {
964 count++;
965 if (count >= 8) {
Zhu Yi73005152009-10-23 13:42:32 -0700966 rxq->read = i;
Wey-Yi Guy54b81552010-03-17 13:34:35 -0700967 iwlagn_rx_replenish_now(priv);
Mohamed Abbas5c0eef92007-11-29 11:10:14 +0800968 count = 0;
969 }
970 }
Zhu Yib481de92007-09-25 17:54:57 -0700971 }
972
973 /* Backtrack one entry */
Zhu Yi73005152009-10-23 13:42:32 -0700974 rxq->read = i;
Mohamed Abbas4752c932009-05-22 11:01:51 -0700975 if (fill_rx)
Wey-Yi Guy54b81552010-03-17 13:34:35 -0700976 iwlagn_rx_replenish_now(priv);
Mohamed Abbas4752c932009-05-22 11:01:51 -0700977 else
Wey-Yi Guy54b81552010-03-17 13:34:35 -0700978 iwlagn_rx_queue_restock(priv);
Tomas Winklera55360e2008-05-05 10:22:28 +0800979}
Tomas Winklera55360e2008-05-05 10:22:28 +0800980
Mohamed Abbas0359fac2008-03-28 16:21:08 -0700981/* call this function to flush any scheduled tasklet */
982static inline void iwl_synchronize_irq(struct iwl_priv *priv)
983{
Tomas Winklera96a27f2008-10-23 23:48:56 -0700984 /* wait to make sure we flush pending tasklet*/
Mohamed Abbas0359fac2008-03-28 16:21:08 -0700985 synchronize_irq(priv->pci_dev->irq);
986 tasklet_kill(&priv->irq_tasklet);
987}
988
Mohamed Abbasef850d72009-05-22 11:01:50 -0700989static void iwl_irq_tasklet_legacy(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700990{
991 u32 inta, handled = 0;
992 u32 inta_fh;
993 unsigned long flags;
Ben Cahillc2e61da2009-10-30 14:36:09 -0700994 u32 i;
Tomas Winkler0a6857e2008-03-12 16:58:49 -0700995#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -0700996 u32 inta_mask;
997#endif
998
999 spin_lock_irqsave(&priv->lock, flags);
1000
1001 /* Ack/clear/reset pending uCode interrupts.
1002 * Note: Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS,
1003 * and will clear only when CSR_FH_INT_STATUS gets cleared. */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001004 inta = iwl_read32(priv, CSR_INT);
1005 iwl_write32(priv, CSR_INT, inta);
Zhu Yib481de92007-09-25 17:54:57 -07001006
1007 /* Ack/clear/reset pending flow-handler (DMA) interrupts.
1008 * Any new interrupts that happen after this, either while we're
1009 * in this tasklet, or later, will show up in next ISR/tasklet. */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001010 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
1011 iwl_write32(priv, CSR_FH_INT_STATUS, inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -07001012
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001013#ifdef CONFIG_IWLWIFI_DEBUG
Reinette Chatre3d816c72009-08-07 15:41:37 -07001014 if (iwl_get_debug_level(priv) & IWL_DL_ISR) {
Ben Cahill9fbab512007-11-29 11:09:47 +08001015 /* just for debug */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001016 inta_mask = iwl_read32(priv, CSR_INT_MASK);
Tomas Winklere1623442009-01-27 14:27:56 -08001017 IWL_DEBUG_ISR(priv, "inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
Zhu Yib481de92007-09-25 17:54:57 -07001018 inta, inta_mask, inta_fh);
1019 }
1020#endif
1021
Zhu Yi2f301222009-10-09 17:19:45 +08001022 spin_unlock_irqrestore(&priv->lock, flags);
1023
Zhu Yib481de92007-09-25 17:54:57 -07001024 /* Since CSR_INT and CSR_FH_INT_STATUS reads and clears are not
1025 * atomic, make sure that inta covers all the interrupts that
1026 * we've discovered, even if FH interrupt came in just after
1027 * reading CSR_INT. */
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08001028 if (inta_fh & CSR49_FH_INT_RX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07001029 inta |= CSR_INT_BIT_FH_RX;
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08001030 if (inta_fh & CSR49_FH_INT_TX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07001031 inta |= CSR_INT_BIT_FH_TX;
1032
1033 /* Now service all interrupt bits discovered above. */
1034 if (inta & CSR_INT_BIT_HW_ERR) {
Reinette Chatre58dba722009-07-17 09:30:25 -07001035 IWL_ERR(priv, "Hardware error detected. Restarting.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001036
1037 /* Tell the device to stop sending interrupts */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001038 iwl_disable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001039
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001040 priv->isr_stats.hw++;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001041 iwl_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001042
1043 handled |= CSR_INT_BIT_HW_ERR;
1044
Zhu Yib481de92007-09-25 17:54:57 -07001045 return;
1046 }
1047
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001048#ifdef CONFIG_IWLWIFI_DEBUG
Reinette Chatre3d816c72009-08-07 15:41:37 -07001049 if (iwl_get_debug_level(priv) & (IWL_DL_ISR)) {
Zhu Yib481de92007-09-25 17:54:57 -07001050 /* NIC fires this, but we don't use it, redundant with WAKEUP */
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001051 if (inta & CSR_INT_BIT_SCD) {
Tomas Winklere1623442009-01-27 14:27:56 -08001052 IWL_DEBUG_ISR(priv, "Scheduler finished to transmit "
Joonwoo Park25c03d82008-01-23 10:15:20 -08001053 "the frame/frames.\n");
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001054 priv->isr_stats.sch++;
1055 }
Zhu Yib481de92007-09-25 17:54:57 -07001056
1057 /* Alive notification via Rx interrupt will do the real work */
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001058 if (inta & CSR_INT_BIT_ALIVE) {
Tomas Winklere1623442009-01-27 14:27:56 -08001059 IWL_DEBUG_ISR(priv, "Alive interrupt\n");
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001060 priv->isr_stats.alive++;
1061 }
Zhu Yib481de92007-09-25 17:54:57 -07001062 }
1063#endif
1064 /* Safely ignore these bits for debug checks below */
Joonwoo Park25c03d82008-01-23 10:15:20 -08001065 inta &= ~(CSR_INT_BIT_SCD | CSR_INT_BIT_ALIVE);
Zhu Yib481de92007-09-25 17:54:57 -07001066
Ben Cahill9fbab512007-11-29 11:09:47 +08001067 /* HW RF KILL switch toggled */
Zhu Yib481de92007-09-25 17:54:57 -07001068 if (inta & CSR_INT_BIT_RF_KILL) {
1069 int hw_rf_kill = 0;
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001070 if (!(iwl_read32(priv, CSR_GP_CNTRL) &
Zhu Yib481de92007-09-25 17:54:57 -07001071 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW))
1072 hw_rf_kill = 1;
1073
Reinette Chatre4c423a22009-07-17 09:30:26 -07001074 IWL_WARN(priv, "RF_KILL bit toggled to %s.\n",
Abhijeet Kolekarc3056062008-11-12 13:14:08 -08001075 hw_rf_kill ? "disable radio" : "enable radio");
Zhu Yib481de92007-09-25 17:54:57 -07001076
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001077 priv->isr_stats.rfkill++;
1078
Emmanuel Grumbacha9efa652008-06-30 17:23:25 +08001079 /* driver only loads ucode once setting the interface up.
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01001080 * the driver allows loading the ucode even if the radio
1081 * is killed. Hence update the killswitch state here. The
1082 * rfkill handler will care about restarting if needed.
Emmanuel Grumbacha9efa652008-06-30 17:23:25 +08001083 */
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01001084 if (!test_bit(STATUS_ALIVE, &priv->status)) {
1085 if (hw_rf_kill)
1086 set_bit(STATUS_RF_KILL_HW, &priv->status);
1087 else
1088 clear_bit(STATUS_RF_KILL_HW, &priv->status);
Johannes Berga60e77e2009-06-04 18:26:06 +02001089 wiphy_rfkill_set_hw_state(priv->hw->wiphy, hw_rf_kill);
Mohamed Abbasedb34222008-12-11 10:33:37 -08001090 }
Zhu Yib481de92007-09-25 17:54:57 -07001091
1092 handled |= CSR_INT_BIT_RF_KILL;
1093 }
1094
Ben Cahill9fbab512007-11-29 11:09:47 +08001095 /* Chip got too hot and stopped itself */
Zhu Yib481de92007-09-25 17:54:57 -07001096 if (inta & CSR_INT_BIT_CT_KILL) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001097 IWL_ERR(priv, "Microcode CT kill error detected.\n");
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001098 priv->isr_stats.ctkill++;
Zhu Yib481de92007-09-25 17:54:57 -07001099 handled |= CSR_INT_BIT_CT_KILL;
1100 }
1101
1102 /* Error detected by uCode */
1103 if (inta & CSR_INT_BIT_SW_ERR) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001104 IWL_ERR(priv, "Microcode SW error detected. "
1105 " Restarting 0x%X.\n", inta);
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001106 priv->isr_stats.sw++;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001107 iwl_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001108 handled |= CSR_INT_BIT_SW_ERR;
1109 }
1110
Ben Cahillc2e61da2009-10-30 14:36:09 -07001111 /*
1112 * uCode wakes up after power-down sleep.
1113 * Tell device about any new tx or host commands enqueued,
1114 * and about any Rx buffers made available while asleep.
1115 */
Zhu Yib481de92007-09-25 17:54:57 -07001116 if (inta & CSR_INT_BIT_WAKEUP) {
Tomas Winklere1623442009-01-27 14:27:56 -08001117 IWL_DEBUG_ISR(priv, "Wakeup interrupt\n");
Tomas Winklera55360e2008-05-05 10:22:28 +08001118 iwl_rx_queue_update_write_ptr(priv, &priv->rxq);
Ben Cahillc2e61da2009-10-30 14:36:09 -07001119 for (i = 0; i < priv->hw_params.max_txq_num; i++)
1120 iwl_txq_update_write_ptr(priv, &priv->txq[i]);
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001121 priv->isr_stats.wakeup++;
Zhu Yib481de92007-09-25 17:54:57 -07001122 handled |= CSR_INT_BIT_WAKEUP;
1123 }
1124
1125 /* All uCode command responses, including Tx command responses,
1126 * Rx "responses" (frame-received notification), and other
1127 * notifications from uCode come through here*/
1128 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) {
Tomas Winklera55360e2008-05-05 10:22:28 +08001129 iwl_rx_handle(priv);
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001130 priv->isr_stats.rx++;
Zhu Yib481de92007-09-25 17:54:57 -07001131 handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX);
1132 }
1133
Ben Cahillc72cd192009-10-30 14:36:08 -07001134 /* This "Tx" DMA channel is used only for loading uCode */
Zhu Yib481de92007-09-25 17:54:57 -07001135 if (inta & CSR_INT_BIT_FH_TX) {
Ben Cahillc72cd192009-10-30 14:36:08 -07001136 IWL_DEBUG_ISR(priv, "uCode load interrupt\n");
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001137 priv->isr_stats.tx++;
Zhu Yib481de92007-09-25 17:54:57 -07001138 handled |= CSR_INT_BIT_FH_TX;
Ben Cahillc72cd192009-10-30 14:36:08 -07001139 /* Wake up uCode load routine, now that load is complete */
Ron Rindjunskydbb983b2008-05-15 13:54:12 +08001140 priv->ucode_write_complete = 1;
1141 wake_up_interruptible(&priv->wait_command_queue);
Zhu Yib481de92007-09-25 17:54:57 -07001142 }
1143
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001144 if (inta & ~handled) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001145 IWL_ERR(priv, "Unhandled INTA bits 0x%08x\n", inta & ~handled);
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001146 priv->isr_stats.unhandled++;
1147 }
Zhu Yib481de92007-09-25 17:54:57 -07001148
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001149 if (inta & ~(priv->inta_mask)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001150 IWL_WARN(priv, "Disabled INTA bits 0x%08x were pending\n",
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001151 inta & ~priv->inta_mask);
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001152 IWL_WARN(priv, " with FH_INT = 0x%08x\n", inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -07001153 }
1154
1155 /* Re-enable all interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001156 /* only Re-enable if diabled by irq */
1157 if (test_bit(STATUS_INT_ENABLED, &priv->status))
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001158 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001159
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001160#ifdef CONFIG_IWLWIFI_DEBUG
Reinette Chatre3d816c72009-08-07 15:41:37 -07001161 if (iwl_get_debug_level(priv) & (IWL_DL_ISR)) {
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001162 inta = iwl_read32(priv, CSR_INT);
1163 inta_mask = iwl_read32(priv, CSR_INT_MASK);
1164 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
Tomas Winklere1623442009-01-27 14:27:56 -08001165 IWL_DEBUG_ISR(priv, "End inta 0x%08x, enabled 0x%08x, fh 0x%08x, "
Zhu Yib481de92007-09-25 17:54:57 -07001166 "flags 0x%08lx\n", inta, inta_mask, inta_fh, flags);
1167 }
1168#endif
Zhu Yib481de92007-09-25 17:54:57 -07001169}
1170
Mohamed Abbasef850d72009-05-22 11:01:50 -07001171/* tasklet for iwlagn interrupt */
1172static void iwl_irq_tasklet(struct iwl_priv *priv)
1173{
1174 u32 inta = 0;
1175 u32 handled = 0;
1176 unsigned long flags;
Ben Cahill87569902009-11-06 14:53:01 -08001177 u32 i;
Mohamed Abbasef850d72009-05-22 11:01:50 -07001178#ifdef CONFIG_IWLWIFI_DEBUG
1179 u32 inta_mask;
1180#endif
1181
1182 spin_lock_irqsave(&priv->lock, flags);
1183
1184 /* Ack/clear/reset pending uCode interrupts.
1185 * Note: Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS,
1186 */
Shanyu Zhao48a6be62010-03-16 10:22:26 -07001187 /* There is a hardware bug in the interrupt mask function that some
1188 * interrupts (i.e. CSR_INT_BIT_SCD) can still be generated even if
1189 * they are disabled in the CSR_INT_MASK register. Furthermore the
1190 * ICT interrupt handling mechanism has another bug that might cause
1191 * these unmasked interrupts fail to be detected. We workaround the
1192 * hardware bugs here by ACKing all the possible interrupts so that
1193 * interrupt coalescing can still be achieved.
1194 */
David S. Miller4a35ecf2010-04-06 23:53:30 -07001195 iwl_write32(priv, CSR_INT, priv->_agn.inta | ~priv->inta_mask);
Mohamed Abbasef850d72009-05-22 11:01:50 -07001196
Johannes Berga4c8b2a2010-01-21 06:25:54 -08001197 inta = priv->_agn.inta;
Mohamed Abbasef850d72009-05-22 11:01:50 -07001198
1199#ifdef CONFIG_IWLWIFI_DEBUG
Reinette Chatre3d816c72009-08-07 15:41:37 -07001200 if (iwl_get_debug_level(priv) & IWL_DL_ISR) {
Mohamed Abbasef850d72009-05-22 11:01:50 -07001201 /* just for debug */
1202 inta_mask = iwl_read32(priv, CSR_INT_MASK);
1203 IWL_DEBUG_ISR(priv, "inta 0x%08x, enabled 0x%08x\n ",
1204 inta, inta_mask);
1205 }
1206#endif
Zhu Yi2f301222009-10-09 17:19:45 +08001207
1208 spin_unlock_irqrestore(&priv->lock, flags);
1209
Johannes Berga4c8b2a2010-01-21 06:25:54 -08001210 /* saved interrupt in inta variable now we can reset priv->_agn.inta */
1211 priv->_agn.inta = 0;
Mohamed Abbasef850d72009-05-22 11:01:50 -07001212
1213 /* Now service all interrupt bits discovered above. */
1214 if (inta & CSR_INT_BIT_HW_ERR) {
Reinette Chatre58dba722009-07-17 09:30:25 -07001215 IWL_ERR(priv, "Hardware error detected. Restarting.\n");
Mohamed Abbasef850d72009-05-22 11:01:50 -07001216
1217 /* Tell the device to stop sending interrupts */
1218 iwl_disable_interrupts(priv);
1219
1220 priv->isr_stats.hw++;
1221 iwl_irq_handle_error(priv);
1222
1223 handled |= CSR_INT_BIT_HW_ERR;
1224
Mohamed Abbasef850d72009-05-22 11:01:50 -07001225 return;
1226 }
1227
1228#ifdef CONFIG_IWLWIFI_DEBUG
Reinette Chatre3d816c72009-08-07 15:41:37 -07001229 if (iwl_get_debug_level(priv) & (IWL_DL_ISR)) {
Mohamed Abbasef850d72009-05-22 11:01:50 -07001230 /* NIC fires this, but we don't use it, redundant with WAKEUP */
1231 if (inta & CSR_INT_BIT_SCD) {
1232 IWL_DEBUG_ISR(priv, "Scheduler finished to transmit "
1233 "the frame/frames.\n");
1234 priv->isr_stats.sch++;
1235 }
1236
1237 /* Alive notification via Rx interrupt will do the real work */
1238 if (inta & CSR_INT_BIT_ALIVE) {
1239 IWL_DEBUG_ISR(priv, "Alive interrupt\n");
1240 priv->isr_stats.alive++;
1241 }
1242 }
1243#endif
1244 /* Safely ignore these bits for debug checks below */
1245 inta &= ~(CSR_INT_BIT_SCD | CSR_INT_BIT_ALIVE);
1246
1247 /* HW RF KILL switch toggled */
1248 if (inta & CSR_INT_BIT_RF_KILL) {
1249 int hw_rf_kill = 0;
1250 if (!(iwl_read32(priv, CSR_GP_CNTRL) &
1251 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW))
1252 hw_rf_kill = 1;
1253
Reinette Chatre4c423a22009-07-17 09:30:26 -07001254 IWL_WARN(priv, "RF_KILL bit toggled to %s.\n",
Mohamed Abbasef850d72009-05-22 11:01:50 -07001255 hw_rf_kill ? "disable radio" : "enable radio");
1256
1257 priv->isr_stats.rfkill++;
1258
1259 /* driver only loads ucode once setting the interface up.
1260 * the driver allows loading the ucode even if the radio
1261 * is killed. Hence update the killswitch state here. The
1262 * rfkill handler will care about restarting if needed.
1263 */
1264 if (!test_bit(STATUS_ALIVE, &priv->status)) {
1265 if (hw_rf_kill)
1266 set_bit(STATUS_RF_KILL_HW, &priv->status);
1267 else
1268 clear_bit(STATUS_RF_KILL_HW, &priv->status);
Johannes Berga60e77e2009-06-04 18:26:06 +02001269 wiphy_rfkill_set_hw_state(priv->hw->wiphy, hw_rf_kill);
Mohamed Abbasef850d72009-05-22 11:01:50 -07001270 }
1271
1272 handled |= CSR_INT_BIT_RF_KILL;
1273 }
1274
1275 /* Chip got too hot and stopped itself */
1276 if (inta & CSR_INT_BIT_CT_KILL) {
1277 IWL_ERR(priv, "Microcode CT kill error detected.\n");
1278 priv->isr_stats.ctkill++;
1279 handled |= CSR_INT_BIT_CT_KILL;
1280 }
1281
1282 /* Error detected by uCode */
1283 if (inta & CSR_INT_BIT_SW_ERR) {
1284 IWL_ERR(priv, "Microcode SW error detected. "
1285 " Restarting 0x%X.\n", inta);
1286 priv->isr_stats.sw++;
Mohamed Abbasef850d72009-05-22 11:01:50 -07001287 iwl_irq_handle_error(priv);
1288 handled |= CSR_INT_BIT_SW_ERR;
1289 }
1290
1291 /* uCode wakes up after power-down sleep */
1292 if (inta & CSR_INT_BIT_WAKEUP) {
1293 IWL_DEBUG_ISR(priv, "Wakeup interrupt\n");
1294 iwl_rx_queue_update_write_ptr(priv, &priv->rxq);
Ben Cahill87569902009-11-06 14:53:01 -08001295 for (i = 0; i < priv->hw_params.max_txq_num; i++)
1296 iwl_txq_update_write_ptr(priv, &priv->txq[i]);
Mohamed Abbasef850d72009-05-22 11:01:50 -07001297
1298 priv->isr_stats.wakeup++;
1299
1300 handled |= CSR_INT_BIT_WAKEUP;
1301 }
1302
1303 /* All uCode command responses, including Tx command responses,
1304 * Rx "responses" (frame-received notification), and other
1305 * notifications from uCode come through here*/
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001306 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX |
1307 CSR_INT_BIT_RX_PERIODIC)) {
Mohamed Abbasef850d72009-05-22 11:01:50 -07001308 IWL_DEBUG_ISR(priv, "Rx interrupt\n");
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001309 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) {
1310 handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX);
1311 iwl_write32(priv, CSR_FH_INT_STATUS,
1312 CSR49_FH_INT_RX_MASK);
1313 }
1314 if (inta & CSR_INT_BIT_RX_PERIODIC) {
1315 handled |= CSR_INT_BIT_RX_PERIODIC;
1316 iwl_write32(priv, CSR_INT, CSR_INT_BIT_RX_PERIODIC);
1317 }
1318 /* Sending RX interrupt require many steps to be done in the
1319 * the device:
1320 * 1- write interrupt to current index in ICT table.
1321 * 2- dma RX frame.
1322 * 3- update RX shared data to indicate last write index.
1323 * 4- send interrupt.
1324 * This could lead to RX race, driver could receive RX interrupt
Ben Cahill74ba67e2009-11-20 12:04:53 -08001325 * but the shared data changes does not reflect this;
1326 * periodic interrupt will detect any dangling Rx activity.
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001327 */
Ben Cahill74ba67e2009-11-20 12:04:53 -08001328
1329 /* Disable periodic interrupt; we use it as just a one-shot. */
1330 iwl_write8(priv, CSR_INT_PERIODIC_REG,
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001331 CSR_INT_PERIODIC_DIS);
Mohamed Abbasef850d72009-05-22 11:01:50 -07001332 iwl_rx_handle(priv);
Ben Cahill74ba67e2009-11-20 12:04:53 -08001333
1334 /*
1335 * Enable periodic interrupt in 8 msec only if we received
1336 * real RX interrupt (instead of just periodic int), to catch
1337 * any dangling Rx interrupt. If it was just the periodic
1338 * interrupt, there was no dangling Rx activity, and no need
1339 * to extend the periodic interrupt; one-shot is enough.
1340 */
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001341 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX))
Ben Cahill74ba67e2009-11-20 12:04:53 -08001342 iwl_write8(priv, CSR_INT_PERIODIC_REG,
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001343 CSR_INT_PERIODIC_ENA);
1344
Mohamed Abbasef850d72009-05-22 11:01:50 -07001345 priv->isr_stats.rx++;
Mohamed Abbasef850d72009-05-22 11:01:50 -07001346 }
1347
Ben Cahillc72cd192009-10-30 14:36:08 -07001348 /* This "Tx" DMA channel is used only for loading uCode */
Mohamed Abbasef850d72009-05-22 11:01:50 -07001349 if (inta & CSR_INT_BIT_FH_TX) {
1350 iwl_write32(priv, CSR_FH_INT_STATUS, CSR49_FH_INT_TX_MASK);
Ben Cahillc72cd192009-10-30 14:36:08 -07001351 IWL_DEBUG_ISR(priv, "uCode load interrupt\n");
Mohamed Abbasef850d72009-05-22 11:01:50 -07001352 priv->isr_stats.tx++;
1353 handled |= CSR_INT_BIT_FH_TX;
Ben Cahillc72cd192009-10-30 14:36:08 -07001354 /* Wake up uCode load routine, now that load is complete */
Mohamed Abbasef850d72009-05-22 11:01:50 -07001355 priv->ucode_write_complete = 1;
1356 wake_up_interruptible(&priv->wait_command_queue);
1357 }
1358
1359 if (inta & ~handled) {
1360 IWL_ERR(priv, "Unhandled INTA bits 0x%08x\n", inta & ~handled);
1361 priv->isr_stats.unhandled++;
1362 }
1363
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001364 if (inta & ~(priv->inta_mask)) {
Mohamed Abbasef850d72009-05-22 11:01:50 -07001365 IWL_WARN(priv, "Disabled INTA bits 0x%08x were pending\n",
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001366 inta & ~priv->inta_mask);
Mohamed Abbasef850d72009-05-22 11:01:50 -07001367 }
1368
Mohamed Abbasef850d72009-05-22 11:01:50 -07001369 /* Re-enable all interrupts */
1370 /* only Re-enable if diabled by irq */
1371 if (test_bit(STATUS_INT_ENABLED, &priv->status))
1372 iwl_enable_interrupts(priv);
Mohamed Abbasef850d72009-05-22 11:01:50 -07001373}
1374
Wey-Yi Guy872c8dd2010-03-16 10:46:31 -07001375/* the threshold ratio of actual_ack_cnt to expected_ack_cnt in percent */
1376#define ACK_CNT_RATIO (50)
1377#define BA_TIMEOUT_CNT (5)
1378#define BA_TIMEOUT_MAX (16)
1379
1380/**
1381 * iwl_good_ack_health - checks for ACK count ratios, BA timeout retries.
1382 *
1383 * When the ACK count ratio is 0 and aggregated BA timeout retries exceeding
1384 * the BA_TIMEOUT_MAX, reload firmware and bring system back to normal
1385 * operation state.
1386 */
1387bool iwl_good_ack_health(struct iwl_priv *priv,
1388 struct iwl_rx_packet *pkt)
1389{
1390 bool rc = true;
1391 int actual_ack_cnt_delta, expected_ack_cnt_delta;
1392 int ba_timeout_delta;
1393
1394 actual_ack_cnt_delta =
1395 le32_to_cpu(pkt->u.stats.tx.actual_ack_cnt) -
Wey-Yi Guyf3aebee2010-06-14 17:09:54 -07001396 le32_to_cpu(priv->_agn.statistics.tx.actual_ack_cnt);
Wey-Yi Guy872c8dd2010-03-16 10:46:31 -07001397 expected_ack_cnt_delta =
1398 le32_to_cpu(pkt->u.stats.tx.expected_ack_cnt) -
Wey-Yi Guyf3aebee2010-06-14 17:09:54 -07001399 le32_to_cpu(priv->_agn.statistics.tx.expected_ack_cnt);
Wey-Yi Guy872c8dd2010-03-16 10:46:31 -07001400 ba_timeout_delta =
1401 le32_to_cpu(pkt->u.stats.tx.agg.ba_timeout) -
Wey-Yi Guyf3aebee2010-06-14 17:09:54 -07001402 le32_to_cpu(priv->_agn.statistics.tx.agg.ba_timeout);
Wey-Yi Guy872c8dd2010-03-16 10:46:31 -07001403 if ((priv->_agn.agg_tids_count > 0) &&
1404 (expected_ack_cnt_delta > 0) &&
1405 (((actual_ack_cnt_delta * 100) / expected_ack_cnt_delta)
1406 < ACK_CNT_RATIO) &&
1407 (ba_timeout_delta > BA_TIMEOUT_CNT)) {
1408 IWL_DEBUG_RADIO(priv, "actual_ack_cnt delta = %d,"
1409 " expected_ack_cnt = %d\n",
1410 actual_ack_cnt_delta, expected_ack_cnt_delta);
1411
Johannes Bergd73e4922010-05-06 12:18:41 -07001412#ifdef CONFIG_IWLWIFI_DEBUGFS
1413 /*
1414 * This is ifdef'ed on DEBUGFS because otherwise the
1415 * statistics aren't available. If DEBUGFS is set but
1416 * DEBUG is not, these will just compile out.
1417 */
Wey-Yi Guy872c8dd2010-03-16 10:46:31 -07001418 IWL_DEBUG_RADIO(priv, "rx_detected_cnt delta = %d\n",
Wey-Yi Guyf3aebee2010-06-14 17:09:54 -07001419 priv->_agn.delta_statistics.tx.rx_detected_cnt);
Wey-Yi Guy872c8dd2010-03-16 10:46:31 -07001420 IWL_DEBUG_RADIO(priv,
1421 "ack_or_ba_timeout_collision delta = %d\n",
Wey-Yi Guyf3aebee2010-06-14 17:09:54 -07001422 priv->_agn.delta_statistics.tx.
Wey-Yi Guy872c8dd2010-03-16 10:46:31 -07001423 ack_or_ba_timeout_collision);
1424#endif
1425 IWL_DEBUG_RADIO(priv, "agg ba_timeout delta = %d\n",
1426 ba_timeout_delta);
1427 if (!actual_ack_cnt_delta &&
1428 (ba_timeout_delta >= BA_TIMEOUT_MAX))
1429 rc = false;
1430 }
1431 return rc;
1432}
1433
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001434
Emmanuel Grumbach7d476182010-05-23 00:14:08 -07001435/*****************************************************************************
1436 *
1437 * sysfs attributes
1438 *
1439 *****************************************************************************/
1440
1441#ifdef CONFIG_IWLWIFI_DEBUG
1442
1443/*
1444 * The following adds a new attribute to the sysfs representation
1445 * of this device driver (i.e. a new file in /sys/class/net/wlan0/device/)
1446 * used for controlling the debug level.
1447 *
1448 * See the level definitions in iwl for details.
1449 *
1450 * The debug_level being managed using sysfs below is a per device debug
1451 * level that is used instead of the global debug level if it (the per
1452 * device debug level) is set.
1453 */
1454static ssize_t show_debug_level(struct device *d,
1455 struct device_attribute *attr, char *buf)
1456{
1457 struct iwl_priv *priv = dev_get_drvdata(d);
1458 return sprintf(buf, "0x%08X\n", iwl_get_debug_level(priv));
1459}
1460static ssize_t store_debug_level(struct device *d,
1461 struct device_attribute *attr,
1462 const char *buf, size_t count)
1463{
1464 struct iwl_priv *priv = dev_get_drvdata(d);
1465 unsigned long val;
1466 int ret;
1467
1468 ret = strict_strtoul(buf, 0, &val);
1469 if (ret)
1470 IWL_ERR(priv, "%s is not in hex or decimal form.\n", buf);
1471 else {
1472 priv->debug_level = val;
1473 if (iwl_alloc_traffic_mem(priv))
1474 IWL_ERR(priv,
1475 "Not enough memory to generate traffic log\n");
1476 }
1477 return strnlen(buf, count);
1478}
1479
1480static DEVICE_ATTR(debug_level, S_IWUSR | S_IRUGO,
1481 show_debug_level, store_debug_level);
1482
1483
1484#endif /* CONFIG_IWLWIFI_DEBUG */
1485
1486
1487static ssize_t show_temperature(struct device *d,
1488 struct device_attribute *attr, char *buf)
1489{
1490 struct iwl_priv *priv = dev_get_drvdata(d);
1491
1492 if (!iwl_is_alive(priv))
1493 return -EAGAIN;
1494
1495 return sprintf(buf, "%d\n", priv->temperature);
1496}
1497
1498static DEVICE_ATTR(temperature, S_IRUGO, show_temperature, NULL);
1499
1500static ssize_t show_tx_power(struct device *d,
1501 struct device_attribute *attr, char *buf)
1502{
1503 struct iwl_priv *priv = dev_get_drvdata(d);
1504
1505 if (!iwl_is_ready_rf(priv))
1506 return sprintf(buf, "off\n");
1507 else
1508 return sprintf(buf, "%d\n", priv->tx_power_user_lmt);
1509}
1510
1511static ssize_t store_tx_power(struct device *d,
1512 struct device_attribute *attr,
1513 const char *buf, size_t count)
1514{
1515 struct iwl_priv *priv = dev_get_drvdata(d);
1516 unsigned long val;
1517 int ret;
1518
1519 ret = strict_strtoul(buf, 10, &val);
1520 if (ret)
1521 IWL_INFO(priv, "%s is not in decimal form.\n", buf);
1522 else {
1523 ret = iwl_set_tx_power(priv, val, false);
1524 if (ret)
1525 IWL_ERR(priv, "failed setting tx power (0x%d).\n",
1526 ret);
1527 else
1528 ret = count;
1529 }
1530 return ret;
1531}
1532
1533static DEVICE_ATTR(tx_power, S_IWUSR | S_IRUGO, show_tx_power, store_tx_power);
1534
Emmanuel Grumbach7d476182010-05-23 00:14:08 -07001535static struct attribute *iwl_sysfs_entries[] = {
1536 &dev_attr_temperature.attr,
1537 &dev_attr_tx_power.attr,
Emmanuel Grumbach7d476182010-05-23 00:14:08 -07001538#ifdef CONFIG_IWLWIFI_DEBUG
1539 &dev_attr_debug_level.attr,
1540#endif
1541 NULL
1542};
1543
1544static struct attribute_group iwl_attribute_group = {
1545 .name = NULL, /* put in device directory */
1546 .attrs = iwl_sysfs_entries,
1547};
1548
Zhu Yib481de92007-09-25 17:54:57 -07001549/******************************************************************************
1550 *
1551 * uCode download functions
1552 *
1553 ******************************************************************************/
1554
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001555static void iwl_dealloc_ucode_pci(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001556{
Tomas Winkler98c92212008-01-14 17:46:20 -08001557 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_code);
1558 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data);
1559 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
1560 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init);
1561 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init_data);
1562 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_boot);
Zhu Yib481de92007-09-25 17:54:57 -07001563}
1564
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001565static void iwl_nic_start(struct iwl_priv *priv)
Ron Rindjunskyedcdf8b2008-05-15 13:53:55 +08001566{
1567 /* Remove all resets to allow NIC to operate */
1568 iwl_write32(priv, CSR_RESET, 0);
1569}
1570
Johannes Bergdd7a2502010-04-28 23:33:10 -07001571struct iwlagn_ucode_capabilities {
1572 u32 max_probe_length;
Wey-Yi Guy6a822d02010-07-13 17:13:15 -07001573 u32 standard_phy_calibration_size;
Johannes Bergece9c4e2010-08-23 10:46:49 +02001574 bool pan;
Johannes Bergdd7a2502010-04-28 23:33:10 -07001575};
Ron Rindjunskyedcdf8b2008-05-15 13:53:55 +08001576
Johannes Bergb08dfd02010-01-29 11:54:56 -08001577static void iwl_ucode_callback(const struct firmware *ucode_raw, void *context);
Johannes Bergdd7a2502010-04-28 23:33:10 -07001578static int iwl_mac_setup_register(struct iwl_priv *priv,
1579 struct iwlagn_ucode_capabilities *capa);
Johannes Bergb08dfd02010-01-29 11:54:56 -08001580
Jay Sternberg39396082010-08-12 10:24:07 -07001581#define UCODE_EXPERIMENTAL_INDEX 100
1582#define UCODE_EXPERIMENTAL_TAG "exp"
1583
Johannes Bergb08dfd02010-01-29 11:54:56 -08001584static int __must_check iwl_request_firmware(struct iwl_priv *priv, bool first)
Zhu Yib481de92007-09-25 17:54:57 -07001585{
Reinette Chatrea0987a82008-12-02 12:14:06 -08001586 const char *name_pre = priv->cfg->fw_name_pre;
Jay Sternberg39396082010-08-12 10:24:07 -07001587 char tag[8];
Johannes Bergb08dfd02010-01-29 11:54:56 -08001588
Jay Sternberg39396082010-08-12 10:24:07 -07001589 if (first) {
1590#ifdef CONFIG_IWLWIFI_DEBUG_EXPERIMENTAL_UCODE
1591 priv->fw_index = UCODE_EXPERIMENTAL_INDEX;
1592 strcpy(tag, UCODE_EXPERIMENTAL_TAG);
1593 } else if (priv->fw_index == UCODE_EXPERIMENTAL_INDEX) {
1594#endif
Johannes Bergb08dfd02010-01-29 11:54:56 -08001595 priv->fw_index = priv->cfg->ucode_api_max;
Jay Sternberg39396082010-08-12 10:24:07 -07001596 sprintf(tag, "%d", priv->fw_index);
1597 } else {
Johannes Bergb08dfd02010-01-29 11:54:56 -08001598 priv->fw_index--;
Jay Sternberg39396082010-08-12 10:24:07 -07001599 sprintf(tag, "%d", priv->fw_index);
1600 }
Johannes Bergb08dfd02010-01-29 11:54:56 -08001601
1602 if (priv->fw_index < priv->cfg->ucode_api_min) {
1603 IWL_ERR(priv, "no suitable firmware found!\n");
1604 return -ENOENT;
1605 }
1606
Jay Sternberg39396082010-08-12 10:24:07 -07001607 sprintf(priv->firmware_name, "%s%s%s", name_pre, tag, ".ucode");
Johannes Bergb08dfd02010-01-29 11:54:56 -08001608
Jay Sternberg39396082010-08-12 10:24:07 -07001609 IWL_DEBUG_INFO(priv, "attempting to load firmware %s'%s'\n",
1610 (priv->fw_index == UCODE_EXPERIMENTAL_INDEX)
1611 ? "EXPERIMENTAL " : "",
Johannes Bergb08dfd02010-01-29 11:54:56 -08001612 priv->firmware_name);
1613
1614 return request_firmware_nowait(THIS_MODULE, 1, priv->firmware_name,
1615 &priv->pci_dev->dev, GFP_KERNEL, priv,
1616 iwl_ucode_callback);
1617}
1618
Johannes Berg0e9a44d2010-04-28 12:09:16 -07001619struct iwlagn_firmware_pieces {
1620 const void *inst, *data, *init, *init_data, *boot;
1621 size_t inst_size, data_size, init_size, init_data_size, boot_size;
1622
1623 u32 build;
Johannes Bergb2e640d2010-05-05 23:24:54 -07001624
1625 u32 init_evtlog_ptr, init_evtlog_size, init_errlog_ptr;
1626 u32 inst_evtlog_ptr, inst_evtlog_size, inst_errlog_ptr;
Johannes Berg0e9a44d2010-04-28 12:09:16 -07001627};
1628
1629static int iwlagn_load_legacy_firmware(struct iwl_priv *priv,
1630 const struct firmware *ucode_raw,
1631 struct iwlagn_firmware_pieces *pieces)
1632{
1633 struct iwl_ucode_header *ucode = (void *)ucode_raw->data;
1634 u32 api_ver, hdr_size;
1635 const u8 *src;
1636
1637 priv->ucode_ver = le32_to_cpu(ucode->ver);
1638 api_ver = IWL_UCODE_API(priv->ucode_ver);
1639
1640 switch (api_ver) {
1641 default:
1642 /*
1643 * 4965 doesn't revision the firmware file format
1644 * along with the API version, it always uses v1
1645 * file format.
1646 */
1647 if ((priv->hw_rev & CSR_HW_REV_TYPE_MSK) !=
1648 CSR_HW_REV_TYPE_4965) {
1649 hdr_size = 28;
1650 if (ucode_raw->size < hdr_size) {
1651 IWL_ERR(priv, "File size too small!\n");
1652 return -EINVAL;
1653 }
1654 pieces->build = le32_to_cpu(ucode->u.v2.build);
1655 pieces->inst_size = le32_to_cpu(ucode->u.v2.inst_size);
1656 pieces->data_size = le32_to_cpu(ucode->u.v2.data_size);
1657 pieces->init_size = le32_to_cpu(ucode->u.v2.init_size);
1658 pieces->init_data_size = le32_to_cpu(ucode->u.v2.init_data_size);
1659 pieces->boot_size = le32_to_cpu(ucode->u.v2.boot_size);
1660 src = ucode->u.v2.data;
1661 break;
1662 }
1663 /* fall through for 4965 */
1664 case 0:
1665 case 1:
1666 case 2:
1667 hdr_size = 24;
1668 if (ucode_raw->size < hdr_size) {
1669 IWL_ERR(priv, "File size too small!\n");
1670 return -EINVAL;
1671 }
1672 pieces->build = 0;
1673 pieces->inst_size = le32_to_cpu(ucode->u.v1.inst_size);
1674 pieces->data_size = le32_to_cpu(ucode->u.v1.data_size);
1675 pieces->init_size = le32_to_cpu(ucode->u.v1.init_size);
1676 pieces->init_data_size = le32_to_cpu(ucode->u.v1.init_data_size);
1677 pieces->boot_size = le32_to_cpu(ucode->u.v1.boot_size);
1678 src = ucode->u.v1.data;
1679 break;
1680 }
1681
1682 /* Verify size of file vs. image size info in file's header */
1683 if (ucode_raw->size != hdr_size + pieces->inst_size +
1684 pieces->data_size + pieces->init_size +
1685 pieces->init_data_size + pieces->boot_size) {
1686
1687 IWL_ERR(priv,
1688 "uCode file size %d does not match expected size\n",
1689 (int)ucode_raw->size);
1690 return -EINVAL;
1691 }
1692
1693 pieces->inst = src;
1694 src += pieces->inst_size;
1695 pieces->data = src;
1696 src += pieces->data_size;
1697 pieces->init = src;
1698 src += pieces->init_size;
1699 pieces->init_data = src;
1700 src += pieces->init_data_size;
1701 pieces->boot = src;
1702 src += pieces->boot_size;
1703
1704 return 0;
1705}
1706
Johannes Bergdd7a2502010-04-28 23:33:10 -07001707static int iwlagn_wanted_ucode_alternative = 1;
1708
1709static int iwlagn_load_firmware(struct iwl_priv *priv,
1710 const struct firmware *ucode_raw,
1711 struct iwlagn_firmware_pieces *pieces,
1712 struct iwlagn_ucode_capabilities *capa)
1713{
1714 struct iwl_tlv_ucode_header *ucode = (void *)ucode_raw->data;
1715 struct iwl_ucode_tlv *tlv;
1716 size_t len = ucode_raw->size;
1717 const u8 *data;
1718 int wanted_alternative = iwlagn_wanted_ucode_alternative, tmp;
1719 u64 alternatives;
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001720 u32 tlv_len;
1721 enum iwl_ucode_tlv_type tlv_type;
1722 const u8 *tlv_data;
Johannes Bergdd7a2502010-04-28 23:33:10 -07001723
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001724 if (len < sizeof(*ucode)) {
1725 IWL_ERR(priv, "uCode has invalid length: %zd\n", len);
Johannes Bergdd7a2502010-04-28 23:33:10 -07001726 return -EINVAL;
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001727 }
Johannes Bergdd7a2502010-04-28 23:33:10 -07001728
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001729 if (ucode->magic != cpu_to_le32(IWL_TLV_UCODE_MAGIC)) {
1730 IWL_ERR(priv, "invalid uCode magic: 0X%x\n",
1731 le32_to_cpu(ucode->magic));
Johannes Bergdd7a2502010-04-28 23:33:10 -07001732 return -EINVAL;
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001733 }
Johannes Bergdd7a2502010-04-28 23:33:10 -07001734
1735 /*
1736 * Check which alternatives are present, and "downgrade"
1737 * when the chosen alternative is not present, warning
1738 * the user when that happens. Some files may not have
1739 * any alternatives, so don't warn in that case.
1740 */
1741 alternatives = le64_to_cpu(ucode->alternatives);
1742 tmp = wanted_alternative;
1743 if (wanted_alternative > 63)
1744 wanted_alternative = 63;
1745 while (wanted_alternative && !(alternatives & BIT(wanted_alternative)))
1746 wanted_alternative--;
1747 if (wanted_alternative && wanted_alternative != tmp)
1748 IWL_WARN(priv,
1749 "uCode alternative %d not available, choosing %d\n",
1750 tmp, wanted_alternative);
1751
1752 priv->ucode_ver = le32_to_cpu(ucode->ver);
1753 pieces->build = le32_to_cpu(ucode->build);
1754 data = ucode->data;
1755
1756 len -= sizeof(*ucode);
1757
Johannes Berg704da532010-07-14 09:34:50 -07001758 while (len >= sizeof(*tlv)) {
Johannes Bergdd7a2502010-04-28 23:33:10 -07001759 u16 tlv_alt;
Johannes Bergdd7a2502010-04-28 23:33:10 -07001760
1761 len -= sizeof(*tlv);
1762 tlv = (void *)data;
1763
1764 tlv_len = le32_to_cpu(tlv->length);
1765 tlv_type = le16_to_cpu(tlv->type);
1766 tlv_alt = le16_to_cpu(tlv->alternative);
1767 tlv_data = tlv->data;
1768
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001769 if (len < tlv_len) {
1770 IWL_ERR(priv, "invalid TLV len: %zd/%u\n",
1771 len, tlv_len);
Johannes Bergdd7a2502010-04-28 23:33:10 -07001772 return -EINVAL;
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001773 }
Johannes Bergdd7a2502010-04-28 23:33:10 -07001774 len -= ALIGN(tlv_len, 4);
1775 data += sizeof(*tlv) + ALIGN(tlv_len, 4);
1776
1777 /*
1778 * Alternative 0 is always valid.
1779 *
1780 * Skip alternative TLVs that are not selected.
1781 */
1782 if (tlv_alt != 0 && tlv_alt != wanted_alternative)
1783 continue;
1784
1785 switch (tlv_type) {
1786 case IWL_UCODE_TLV_INST:
1787 pieces->inst = tlv_data;
1788 pieces->inst_size = tlv_len;
1789 break;
1790 case IWL_UCODE_TLV_DATA:
1791 pieces->data = tlv_data;
1792 pieces->data_size = tlv_len;
1793 break;
1794 case IWL_UCODE_TLV_INIT:
1795 pieces->init = tlv_data;
1796 pieces->init_size = tlv_len;
1797 break;
1798 case IWL_UCODE_TLV_INIT_DATA:
1799 pieces->init_data = tlv_data;
1800 pieces->init_data_size = tlv_len;
1801 break;
1802 case IWL_UCODE_TLV_BOOT:
1803 pieces->boot = tlv_data;
1804 pieces->boot_size = tlv_len;
1805 break;
1806 case IWL_UCODE_TLV_PROBE_MAX_LEN:
Johannes Berg704da532010-07-14 09:34:50 -07001807 if (tlv_len != sizeof(u32))
1808 goto invalid_tlv_len;
1809 capa->max_probe_length =
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001810 le32_to_cpup((__le32 *)tlv_data);
Johannes Bergdd7a2502010-04-28 23:33:10 -07001811 break;
Johannes Bergece9c4e2010-08-23 10:46:49 +02001812 case IWL_UCODE_TLV_PAN:
1813 if (tlv_len)
1814 goto invalid_tlv_len;
1815 capa->pan = true;
1816 break;
Johannes Bergb2e640d2010-05-05 23:24:54 -07001817 case IWL_UCODE_TLV_INIT_EVTLOG_PTR:
Johannes Berg704da532010-07-14 09:34:50 -07001818 if (tlv_len != sizeof(u32))
1819 goto invalid_tlv_len;
1820 pieces->init_evtlog_ptr =
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001821 le32_to_cpup((__le32 *)tlv_data);
Johannes Bergb2e640d2010-05-05 23:24:54 -07001822 break;
1823 case IWL_UCODE_TLV_INIT_EVTLOG_SIZE:
Johannes Berg704da532010-07-14 09:34:50 -07001824 if (tlv_len != sizeof(u32))
1825 goto invalid_tlv_len;
1826 pieces->init_evtlog_size =
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001827 le32_to_cpup((__le32 *)tlv_data);
Johannes Bergb2e640d2010-05-05 23:24:54 -07001828 break;
1829 case IWL_UCODE_TLV_INIT_ERRLOG_PTR:
Johannes Berg704da532010-07-14 09:34:50 -07001830 if (tlv_len != sizeof(u32))
1831 goto invalid_tlv_len;
1832 pieces->init_errlog_ptr =
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001833 le32_to_cpup((__le32 *)tlv_data);
Johannes Bergb2e640d2010-05-05 23:24:54 -07001834 break;
1835 case IWL_UCODE_TLV_RUNT_EVTLOG_PTR:
Johannes Berg704da532010-07-14 09:34:50 -07001836 if (tlv_len != sizeof(u32))
1837 goto invalid_tlv_len;
1838 pieces->inst_evtlog_ptr =
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001839 le32_to_cpup((__le32 *)tlv_data);
Johannes Bergb2e640d2010-05-05 23:24:54 -07001840 break;
1841 case IWL_UCODE_TLV_RUNT_EVTLOG_SIZE:
Johannes Berg704da532010-07-14 09:34:50 -07001842 if (tlv_len != sizeof(u32))
1843 goto invalid_tlv_len;
1844 pieces->inst_evtlog_size =
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001845 le32_to_cpup((__le32 *)tlv_data);
Johannes Bergb2e640d2010-05-05 23:24:54 -07001846 break;
1847 case IWL_UCODE_TLV_RUNT_ERRLOG_PTR:
Johannes Berg704da532010-07-14 09:34:50 -07001848 if (tlv_len != sizeof(u32))
1849 goto invalid_tlv_len;
1850 pieces->inst_errlog_ptr =
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001851 le32_to_cpup((__le32 *)tlv_data);
Johannes Bergb2e640d2010-05-05 23:24:54 -07001852 break;
Wey-Yi Guyc8312fa2010-06-28 13:05:17 -07001853 case IWL_UCODE_TLV_ENHANCE_SENS_TBL:
1854 if (tlv_len)
Johannes Berg704da532010-07-14 09:34:50 -07001855 goto invalid_tlv_len;
1856 priv->enhance_sensitivity_table = true;
Wey-Yi Guyc8312fa2010-06-28 13:05:17 -07001857 break;
Wey-Yi Guy6a822d02010-07-13 17:13:15 -07001858 case IWL_UCODE_TLV_PHY_CALIBRATION_SIZE:
Johannes Berg704da532010-07-14 09:34:50 -07001859 if (tlv_len != sizeof(u32))
1860 goto invalid_tlv_len;
1861 capa->standard_phy_calibration_size =
Wey-Yi Guy6a822d02010-07-13 17:13:15 -07001862 le32_to_cpup((__le32 *)tlv_data);
1863 break;
Johannes Bergdd7a2502010-04-28 23:33:10 -07001864 default:
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001865 IWL_WARN(priv, "unknown TLV: %d\n", tlv_type);
Johannes Bergdd7a2502010-04-28 23:33:10 -07001866 break;
1867 }
1868 }
1869
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001870 if (len) {
1871 IWL_ERR(priv, "invalid TLV after parsing: %zd\n", len);
1872 iwl_print_hex_dump(priv, IWL_DL_FW, (u8 *)data, len);
Johannes Berg704da532010-07-14 09:34:50 -07001873 return -EINVAL;
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001874 }
Johannes Bergdd7a2502010-04-28 23:33:10 -07001875
Johannes Berg704da532010-07-14 09:34:50 -07001876 return 0;
1877
1878 invalid_tlv_len:
1879 IWL_ERR(priv, "TLV %d has invalid size: %u\n", tlv_type, tlv_len);
1880 iwl_print_hex_dump(priv, IWL_DL_FW, tlv_data, tlv_len);
1881
1882 return -EINVAL;
Johannes Bergdd7a2502010-04-28 23:33:10 -07001883}
1884
Johannes Bergb08dfd02010-01-29 11:54:56 -08001885/**
1886 * iwl_ucode_callback - callback when firmware was loaded
1887 *
1888 * If loaded successfully, copies the firmware into buffers
1889 * for the card to fetch (via DMA).
1890 */
1891static void iwl_ucode_callback(const struct firmware *ucode_raw, void *context)
1892{
1893 struct iwl_priv *priv = context;
1894 struct iwl_ucode_header *ucode;
Johannes Berg0e9a44d2010-04-28 12:09:16 -07001895 int err;
1896 struct iwlagn_firmware_pieces pieces;
Reinette Chatrea0987a82008-12-02 12:14:06 -08001897 const unsigned int api_max = priv->cfg->ucode_api_max;
1898 const unsigned int api_min = priv->cfg->ucode_api_min;
Johannes Berg0e9a44d2010-04-28 12:09:16 -07001899 u32 api_ver;
Johannes Berg3e4de762010-04-28 12:09:12 -07001900 char buildstr[25];
Johannes Berg0e9a44d2010-04-28 12:09:16 -07001901 u32 build;
Johannes Bergdd7a2502010-04-28 23:33:10 -07001902 struct iwlagn_ucode_capabilities ucode_capa = {
1903 .max_probe_length = 200,
Wey-Yi Guy6a822d02010-07-13 17:13:15 -07001904 .standard_phy_calibration_size =
Shanyu Zhao642454c2010-09-21 12:06:18 -07001905 IWL_DEFAULT_STANDARD_PHY_CALIBRATE_TBL_SIZE,
Johannes Bergdd7a2502010-04-28 23:33:10 -07001906 };
Johannes Berg0e9a44d2010-04-28 12:09:16 -07001907
1908 memset(&pieces, 0, sizeof(pieces));
Zhu Yib481de92007-09-25 17:54:57 -07001909
Johannes Bergb08dfd02010-01-29 11:54:56 -08001910 if (!ucode_raw) {
Jay Sternberg39396082010-08-12 10:24:07 -07001911 if (priv->fw_index <= priv->cfg->ucode_api_max)
1912 IWL_ERR(priv,
1913 "request for firmware file '%s' failed.\n",
1914 priv->firmware_name);
Johannes Bergb08dfd02010-01-29 11:54:56 -08001915 goto try_again;
Zhu Yib481de92007-09-25 17:54:57 -07001916 }
1917
Johannes Bergb08dfd02010-01-29 11:54:56 -08001918 IWL_DEBUG_INFO(priv, "Loaded firmware file '%s' (%zd bytes).\n",
1919 priv->firmware_name, ucode_raw->size);
Zhu Yib481de92007-09-25 17:54:57 -07001920
Johannes Berg22adba22010-04-28 12:09:14 -07001921 /* Make sure that we got at least the API version number */
1922 if (ucode_raw->size < 4) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001923 IWL_ERR(priv, "File size way too small!\n");
Johannes Bergb08dfd02010-01-29 11:54:56 -08001924 goto try_again;
Zhu Yib481de92007-09-25 17:54:57 -07001925 }
1926
1927 /* Data from ucode file: header followed by uCode images */
Jay Sternbergcc0f5552009-07-17 09:30:16 -07001928 ucode = (struct iwl_ucode_header *)ucode_raw->data;
Zhu Yib481de92007-09-25 17:54:57 -07001929
Johannes Berg0e9a44d2010-04-28 12:09:16 -07001930 if (ucode->ver)
1931 err = iwlagn_load_legacy_firmware(priv, ucode_raw, &pieces);
1932 else
Johannes Bergdd7a2502010-04-28 23:33:10 -07001933 err = iwlagn_load_firmware(priv, ucode_raw, &pieces,
1934 &ucode_capa);
Johannes Berg0e9a44d2010-04-28 12:09:16 -07001935
1936 if (err)
1937 goto try_again;
1938
Reinette Chatrea0987a82008-12-02 12:14:06 -08001939 api_ver = IWL_UCODE_API(priv->ucode_ver);
Johannes Berg0e9a44d2010-04-28 12:09:16 -07001940 build = pieces.build;
Zhu Yib481de92007-09-25 17:54:57 -07001941
Johannes Berg0e9a44d2010-04-28 12:09:16 -07001942 /*
1943 * api_ver should match the api version forming part of the
Reinette Chatrea0987a82008-12-02 12:14:06 -08001944 * firmware filename ... but we don't check for that and only rely
Johannes Berg0e9a44d2010-04-28 12:09:16 -07001945 * on the API version read from firmware header from here on forward
1946 */
Wey-Yi Guy65cccfb2010-09-21 16:15:58 -07001947 /* no api version check required for experimental uCode */
1948 if (priv->fw_index != UCODE_EXPERIMENTAL_INDEX) {
1949 if (api_ver < api_min || api_ver > api_max) {
1950 IWL_ERR(priv,
1951 "Driver unable to support your firmware API. "
1952 "Driver supports v%u, firmware is v%u.\n",
1953 api_max, api_ver);
1954 goto try_again;
1955 }
Johannes Bergb08dfd02010-01-29 11:54:56 -08001956
Wey-Yi Guy65cccfb2010-09-21 16:15:58 -07001957 if (api_ver != api_max)
1958 IWL_ERR(priv,
1959 "Firmware has old API version. Expected v%u, "
1960 "got v%u. New firmware can be obtained "
1961 "from http://www.intellinuxwireless.org.\n",
1962 api_max, api_ver);
1963 }
Reinette Chatrea0987a82008-12-02 12:14:06 -08001964
Johannes Berg3e4de762010-04-28 12:09:12 -07001965 if (build)
Jay Sternberg39396082010-08-12 10:24:07 -07001966 sprintf(buildstr, " build %u%s", build,
1967 (priv->fw_index == UCODE_EXPERIMENTAL_INDEX)
1968 ? " (EXP)" : "");
Johannes Berg3e4de762010-04-28 12:09:12 -07001969 else
1970 buildstr[0] = '\0';
Reinette Chatrea0987a82008-12-02 12:14:06 -08001971
Johannes Berg3e4de762010-04-28 12:09:12 -07001972 IWL_INFO(priv, "loaded firmware version %u.%u.%u.%u%s\n",
Reinette Chatre5ebeb5a2009-10-30 14:36:04 -07001973 IWL_UCODE_MAJOR(priv->ucode_ver),
1974 IWL_UCODE_MINOR(priv->ucode_ver),
1975 IWL_UCODE_API(priv->ucode_ver),
Johannes Berg3e4de762010-04-28 12:09:12 -07001976 IWL_UCODE_SERIAL(priv->ucode_ver),
1977 buildstr);
Reinette Chatre5ebeb5a2009-10-30 14:36:04 -07001978
Johannes Berg3e4de762010-04-28 12:09:12 -07001979 snprintf(priv->hw->wiphy->fw_version,
1980 sizeof(priv->hw->wiphy->fw_version),
1981 "%u.%u.%u.%u%s",
1982 IWL_UCODE_MAJOR(priv->ucode_ver),
1983 IWL_UCODE_MINOR(priv->ucode_ver),
1984 IWL_UCODE_API(priv->ucode_ver),
1985 IWL_UCODE_SERIAL(priv->ucode_ver),
1986 buildstr);
Zhu Yib481de92007-09-25 17:54:57 -07001987
Johannes Bergb08dfd02010-01-29 11:54:56 -08001988 /*
1989 * For any of the failures below (before allocating pci memory)
1990 * we will try to load a version with a smaller API -- maybe the
1991 * user just got a corrupted version of the latest API.
1992 */
1993
Johannes Berg0e9a44d2010-04-28 12:09:16 -07001994 IWL_DEBUG_INFO(priv, "f/w package hdr ucode version raw = 0x%x\n",
1995 priv->ucode_ver);
1996 IWL_DEBUG_INFO(priv, "f/w package hdr runtime inst size = %Zd\n",
1997 pieces.inst_size);
1998 IWL_DEBUG_INFO(priv, "f/w package hdr runtime data size = %Zd\n",
1999 pieces.data_size);
2000 IWL_DEBUG_INFO(priv, "f/w package hdr init inst size = %Zd\n",
2001 pieces.init_size);
2002 IWL_DEBUG_INFO(priv, "f/w package hdr init data size = %Zd\n",
2003 pieces.init_data_size);
2004 IWL_DEBUG_INFO(priv, "f/w package hdr boot inst size = %Zd\n",
2005 pieces.boot_size);
Zhu Yib481de92007-09-25 17:54:57 -07002006
2007 /* Verify that uCode images will fit in card's SRAM */
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002008 if (pieces.inst_size > priv->hw_params.max_inst_size) {
2009 IWL_ERR(priv, "uCode instr len %Zd too large to fit in\n",
2010 pieces.inst_size);
Johannes Bergb08dfd02010-01-29 11:54:56 -08002011 goto try_again;
Zhu Yib481de92007-09-25 17:54:57 -07002012 }
2013
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002014 if (pieces.data_size > priv->hw_params.max_data_size) {
2015 IWL_ERR(priv, "uCode data len %Zd too large to fit in\n",
2016 pieces.data_size);
Johannes Bergb08dfd02010-01-29 11:54:56 -08002017 goto try_again;
Zhu Yib481de92007-09-25 17:54:57 -07002018 }
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002019
2020 if (pieces.init_size > priv->hw_params.max_inst_size) {
2021 IWL_ERR(priv, "uCode init instr len %Zd too large to fit in\n",
2022 pieces.init_size);
Johannes Bergb08dfd02010-01-29 11:54:56 -08002023 goto try_again;
Zhu Yib481de92007-09-25 17:54:57 -07002024 }
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002025
2026 if (pieces.init_data_size > priv->hw_params.max_data_size) {
2027 IWL_ERR(priv, "uCode init data len %Zd too large to fit in\n",
2028 pieces.init_data_size);
Johannes Bergb08dfd02010-01-29 11:54:56 -08002029 goto try_again;
Zhu Yib481de92007-09-25 17:54:57 -07002030 }
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002031
2032 if (pieces.boot_size > priv->hw_params.max_bsm_size) {
2033 IWL_ERR(priv, "uCode boot instr len %Zd too large to fit in\n",
2034 pieces.boot_size);
Johannes Bergb08dfd02010-01-29 11:54:56 -08002035 goto try_again;
Zhu Yib481de92007-09-25 17:54:57 -07002036 }
2037
2038 /* Allocate ucode buffers for card's bus-master loading ... */
2039
2040 /* Runtime instructions and 2 copies of data:
2041 * 1) unmodified from disk
2042 * 2) backup cache for save/restore during power-downs */
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002043 priv->ucode_code.len = pieces.inst_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002044 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_code);
Zhu Yib481de92007-09-25 17:54:57 -07002045
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002046 priv->ucode_data.len = pieces.data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002047 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data);
Zhu Yib481de92007-09-25 17:54:57 -07002048
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002049 priv->ucode_data_backup.len = pieces.data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002050 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
Zhu Yib481de92007-09-25 17:54:57 -07002051
Zhu, Yi1f304e42009-01-23 13:45:22 -08002052 if (!priv->ucode_code.v_addr || !priv->ucode_data.v_addr ||
2053 !priv->ucode_data_backup.v_addr)
2054 goto err_pci_alloc;
2055
Zhu Yib481de92007-09-25 17:54:57 -07002056 /* Initialization instructions and data */
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002057 if (pieces.init_size && pieces.init_data_size) {
2058 priv->ucode_init.len = pieces.init_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002059 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init);
Zhu Yib481de92007-09-25 17:54:57 -07002060
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002061 priv->ucode_init_data.len = pieces.init_data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002062 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init_data);
Tomas Winkler90e759d2007-11-29 11:09:41 +08002063
2064 if (!priv->ucode_init.v_addr || !priv->ucode_init_data.v_addr)
2065 goto err_pci_alloc;
2066 }
Zhu Yib481de92007-09-25 17:54:57 -07002067
2068 /* Bootstrap (instructions only, no data) */
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002069 if (pieces.boot_size) {
2070 priv->ucode_boot.len = pieces.boot_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002071 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_boot);
Zhu Yib481de92007-09-25 17:54:57 -07002072
Tomas Winkler90e759d2007-11-29 11:09:41 +08002073 if (!priv->ucode_boot.v_addr)
2074 goto err_pci_alloc;
2075 }
Zhu Yib481de92007-09-25 17:54:57 -07002076
Johannes Bergb2e640d2010-05-05 23:24:54 -07002077 /* Now that we can no longer fail, copy information */
2078
2079 /*
2080 * The (size - 16) / 12 formula is based on the information recorded
2081 * for each event, which is of mode 1 (including timestamp) for all
2082 * new microcodes that include this information.
2083 */
2084 priv->_agn.init_evtlog_ptr = pieces.init_evtlog_ptr;
2085 if (pieces.init_evtlog_size)
2086 priv->_agn.init_evtlog_size = (pieces.init_evtlog_size - 16)/12;
2087 else
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -07002088 priv->_agn.init_evtlog_size =
2089 priv->cfg->base_params->max_event_log_size;
Johannes Bergb2e640d2010-05-05 23:24:54 -07002090 priv->_agn.init_errlog_ptr = pieces.init_errlog_ptr;
2091 priv->_agn.inst_evtlog_ptr = pieces.inst_evtlog_ptr;
2092 if (pieces.inst_evtlog_size)
2093 priv->_agn.inst_evtlog_size = (pieces.inst_evtlog_size - 16)/12;
2094 else
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -07002095 priv->_agn.inst_evtlog_size =
2096 priv->cfg->base_params->max_event_log_size;
Johannes Bergb2e640d2010-05-05 23:24:54 -07002097 priv->_agn.inst_errlog_ptr = pieces.inst_errlog_ptr;
2098
Johannes Bergece9c4e2010-08-23 10:46:49 +02002099 if (ucode_capa.pan) {
2100 priv->valid_contexts |= BIT(IWL_RXON_CTX_PAN);
Johannes Bergc10afb62010-08-23 10:46:43 +02002101 priv->sta_key_max_num = STA_KEY_MAX_NUM_PAN;
Johannes Bergece9c4e2010-08-23 10:46:49 +02002102 } else
2103 priv->sta_key_max_num = STA_KEY_MAX_NUM;
Johannes Bergc10afb62010-08-23 10:46:43 +02002104
Zhu Yib481de92007-09-25 17:54:57 -07002105 /* Copy images into buffers for card's bus-master reads ... */
2106
2107 /* Runtime instructions (first block of data in file) */
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002108 IWL_DEBUG_INFO(priv, "Copying (but not loading) uCode instr len %Zd\n",
2109 pieces.inst_size);
2110 memcpy(priv->ucode_code.v_addr, pieces.inst, pieces.inst_size);
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002111
Tomas Winklere1623442009-01-27 14:27:56 -08002112 IWL_DEBUG_INFO(priv, "uCode instr buf vaddr = 0x%p, paddr = 0x%08x\n",
Zhu Yib481de92007-09-25 17:54:57 -07002113 priv->ucode_code.v_addr, (u32)priv->ucode_code.p_addr);
2114
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002115 /*
2116 * Runtime data
2117 * NOTE: Copy into backup buffer will be done in iwl_up()
2118 */
2119 IWL_DEBUG_INFO(priv, "Copying (but not loading) uCode data len %Zd\n",
2120 pieces.data_size);
2121 memcpy(priv->ucode_data.v_addr, pieces.data, pieces.data_size);
2122 memcpy(priv->ucode_data_backup.v_addr, pieces.data, pieces.data_size);
Zhu Yib481de92007-09-25 17:54:57 -07002123
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002124 /* Initialization instructions */
2125 if (pieces.init_size) {
Tomas Winklere1623442009-01-27 14:27:56 -08002126 IWL_DEBUG_INFO(priv, "Copying (but not loading) init instr len %Zd\n",
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002127 pieces.init_size);
2128 memcpy(priv->ucode_init.v_addr, pieces.init, pieces.init_size);
Zhu Yib481de92007-09-25 17:54:57 -07002129 }
2130
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002131 /* Initialization data */
2132 if (pieces.init_data_size) {
Tomas Winklere1623442009-01-27 14:27:56 -08002133 IWL_DEBUG_INFO(priv, "Copying (but not loading) init data len %Zd\n",
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002134 pieces.init_data_size);
2135 memcpy(priv->ucode_init_data.v_addr, pieces.init_data,
2136 pieces.init_data_size);
Zhu Yib481de92007-09-25 17:54:57 -07002137 }
2138
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002139 /* Bootstrap instructions */
2140 IWL_DEBUG_INFO(priv, "Copying (but not loading) boot instr len %Zd\n",
2141 pieces.boot_size);
2142 memcpy(priv->ucode_boot.v_addr, pieces.boot, pieces.boot_size);
Zhu Yib481de92007-09-25 17:54:57 -07002143
Wey-Yi Guy6a822d02010-07-13 17:13:15 -07002144 /*
2145 * figure out the offset of chain noise reset and gain commands
2146 * base on the size of standard phy calibration commands table size
2147 */
2148 if (ucode_capa.standard_phy_calibration_size >
2149 IWL_MAX_PHY_CALIBRATE_TBL_SIZE)
2150 ucode_capa.standard_phy_calibration_size =
2151 IWL_MAX_STANDARD_PHY_CALIBRATE_TBL_SIZE;
2152
2153 priv->_agn.phy_calib_chain_noise_reset_cmd =
2154 ucode_capa.standard_phy_calibration_size;
2155 priv->_agn.phy_calib_chain_noise_gain_cmd =
2156 ucode_capa.standard_phy_calibration_size + 1;
2157
Johannes Bergb08dfd02010-01-29 11:54:56 -08002158 /**************************************************
2159 * This is still part of probe() in a sense...
2160 *
2161 * 9. Setup and register with mac80211 and debugfs
2162 **************************************************/
Johannes Bergdd7a2502010-04-28 23:33:10 -07002163 err = iwl_mac_setup_register(priv, &ucode_capa);
Johannes Bergb08dfd02010-01-29 11:54:56 -08002164 if (err)
2165 goto out_unbind;
2166
2167 err = iwl_dbgfs_register(priv, DRV_NAME);
2168 if (err)
2169 IWL_ERR(priv, "failed to create debugfs files. Ignoring error: %d\n", err);
2170
Emmanuel Grumbach7d476182010-05-23 00:14:08 -07002171 err = sysfs_create_group(&priv->pci_dev->dev.kobj,
2172 &iwl_attribute_group);
2173 if (err) {
2174 IWL_ERR(priv, "failed to create sysfs device attributes\n");
2175 goto out_unbind;
2176 }
2177
Zhu Yib481de92007-09-25 17:54:57 -07002178 /* We have our copies now, allow OS release its copies */
2179 release_firmware(ucode_raw);
Reinette Chatrea15707d2010-05-10 15:08:11 -07002180 complete(&priv->_agn.firmware_loading_complete);
Johannes Bergb08dfd02010-01-29 11:54:56 -08002181 return;
2182
2183 try_again:
2184 /* try next, if any */
2185 if (iwl_request_firmware(priv, false))
2186 goto out_unbind;
2187 release_firmware(ucode_raw);
2188 return;
Zhu Yib481de92007-09-25 17:54:57 -07002189
2190 err_pci_alloc:
Winkler, Tomas15b16872008-12-19 10:37:33 +08002191 IWL_ERR(priv, "failed to allocate pci memory\n");
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002192 iwl_dealloc_ucode_pci(priv);
Johannes Bergb08dfd02010-01-29 11:54:56 -08002193 out_unbind:
Reinette Chatrea15707d2010-05-10 15:08:11 -07002194 complete(&priv->_agn.firmware_loading_complete);
Johannes Bergb08dfd02010-01-29 11:54:56 -08002195 device_release_driver(&priv->pci_dev->dev);
Zhu Yib481de92007-09-25 17:54:57 -07002196 release_firmware(ucode_raw);
Zhu Yib481de92007-09-25 17:54:57 -07002197}
2198
Reinette Chatreb7a79402009-09-25 14:24:23 -07002199static const char *desc_lookup_text[] = {
2200 "OK",
2201 "FAIL",
2202 "BAD_PARAM",
2203 "BAD_CHECKSUM",
2204 "NMI_INTERRUPT_WDG",
2205 "SYSASSERT",
2206 "FATAL_ERROR",
2207 "BAD_COMMAND",
2208 "HW_ERROR_TUNE_LOCK",
2209 "HW_ERROR_TEMPERATURE",
2210 "ILLEGAL_CHAN_FREQ",
2211 "VCC_NOT_STABLE",
2212 "FH_ERROR",
2213 "NMI_INTERRUPT_HOST",
2214 "NMI_INTERRUPT_ACTION_PT",
2215 "NMI_INTERRUPT_UNKNOWN",
2216 "UCODE_VERSION_MISMATCH",
2217 "HW_ERROR_ABS_LOCK",
2218 "HW_ERROR_CAL_LOCK_FAIL",
2219 "NMI_INTERRUPT_INST_ACTION_PT",
2220 "NMI_INTERRUPT_DATA_ACTION_PT",
2221 "NMI_TRM_HW_ER",
2222 "NMI_INTERRUPT_TRM",
2223 "NMI_INTERRUPT_BREAK_POINT"
2224 "DEBUG_0",
2225 "DEBUG_1",
2226 "DEBUG_2",
2227 "DEBUG_3",
Reinette Chatreb7a79402009-09-25 14:24:23 -07002228};
2229
Jay Sternberg4b586452010-07-02 15:49:10 -07002230static struct { char *name; u8 num; } advanced_lookup[] = {
2231 { "NMI_INTERRUPT_WDG", 0x34 },
2232 { "SYSASSERT", 0x35 },
2233 { "UCODE_VERSION_MISMATCH", 0x37 },
2234 { "BAD_COMMAND", 0x38 },
2235 { "NMI_INTERRUPT_DATA_ACTION_PT", 0x3C },
2236 { "FATAL_ERROR", 0x3D },
2237 { "NMI_TRM_HW_ERR", 0x46 },
2238 { "NMI_INTERRUPT_TRM", 0x4C },
2239 { "NMI_INTERRUPT_BREAK_POINT", 0x54 },
2240 { "NMI_INTERRUPT_WDG_RXF_FULL", 0x5C },
2241 { "NMI_INTERRUPT_WDG_NO_RBD_RXF_FULL", 0x64 },
2242 { "NMI_INTERRUPT_HOST", 0x66 },
2243 { "NMI_INTERRUPT_ACTION_PT", 0x7C },
2244 { "NMI_INTERRUPT_UNKNOWN", 0x84 },
2245 { "NMI_INTERRUPT_INST_ACTION_PT", 0x86 },
2246 { "ADVANCED_SYSASSERT", 0 },
2247};
2248
2249static const char *desc_lookup(u32 num)
Reinette Chatreb7a79402009-09-25 14:24:23 -07002250{
Jay Sternberg4b586452010-07-02 15:49:10 -07002251 int i;
2252 int max = ARRAY_SIZE(desc_lookup_text);
Reinette Chatreb7a79402009-09-25 14:24:23 -07002253
Jay Sternberg4b586452010-07-02 15:49:10 -07002254 if (num < max)
2255 return desc_lookup_text[num];
Reinette Chatreb7a79402009-09-25 14:24:23 -07002256
Jay Sternberg4b586452010-07-02 15:49:10 -07002257 max = ARRAY_SIZE(advanced_lookup) - 1;
2258 for (i = 0; i < max; i++) {
2259 if (advanced_lookup[i].num == num)
2260 break;;
2261 }
2262 return advanced_lookup[i].name;
Reinette Chatreb7a79402009-09-25 14:24:23 -07002263}
2264
2265#define ERROR_START_OFFSET (1 * sizeof(u32))
2266#define ERROR_ELEM_SIZE (7 * sizeof(u32))
2267
2268void iwl_dump_nic_error_log(struct iwl_priv *priv)
2269{
2270 u32 data2, line;
2271 u32 desc, time, count, base, data1;
2272 u32 blink1, blink2, ilink1, ilink2;
Wey-Yi Guy461ef382010-03-30 17:57:53 -07002273 u32 pc, hcmd;
Reinette Chatreb7a79402009-09-25 14:24:23 -07002274
Johannes Bergb2e640d2010-05-05 23:24:54 -07002275 if (priv->ucode_type == UCODE_INIT) {
Reinette Chatreb7a79402009-09-25 14:24:23 -07002276 base = le32_to_cpu(priv->card_alive_init.error_event_table_ptr);
Johannes Bergb2e640d2010-05-05 23:24:54 -07002277 if (!base)
2278 base = priv->_agn.init_errlog_ptr;
2279 } else {
Reinette Chatreb7a79402009-09-25 14:24:23 -07002280 base = le32_to_cpu(priv->card_alive.error_event_table_ptr);
Johannes Bergb2e640d2010-05-05 23:24:54 -07002281 if (!base)
2282 base = priv->_agn.inst_errlog_ptr;
2283 }
Reinette Chatreb7a79402009-09-25 14:24:23 -07002284
2285 if (!priv->cfg->ops->lib->is_valid_rtc_data_addr(base)) {
Wey-Yi Guy212fb572009-12-02 12:53:00 -08002286 IWL_ERR(priv,
2287 "Not valid error log pointer 0x%08X for %s uCode\n",
2288 base, (priv->ucode_type == UCODE_INIT) ? "Init" : "RT");
Reinette Chatreb7a79402009-09-25 14:24:23 -07002289 return;
2290 }
2291
2292 count = iwl_read_targ_mem(priv, base);
2293
2294 if (ERROR_START_OFFSET <= count * ERROR_ELEM_SIZE) {
2295 IWL_ERR(priv, "Start IWL Error Log Dump:\n");
2296 IWL_ERR(priv, "Status: 0x%08lX, count: %d\n",
2297 priv->status, count);
2298 }
2299
2300 desc = iwl_read_targ_mem(priv, base + 1 * sizeof(u32));
Wey-Yi Guy6e6ebf42010-08-27 10:41:37 -07002301 priv->isr_stats.err_code = desc;
Wey-Yi Guy461ef382010-03-30 17:57:53 -07002302 pc = iwl_read_targ_mem(priv, base + 2 * sizeof(u32));
Reinette Chatreb7a79402009-09-25 14:24:23 -07002303 blink1 = iwl_read_targ_mem(priv, base + 3 * sizeof(u32));
2304 blink2 = iwl_read_targ_mem(priv, base + 4 * sizeof(u32));
2305 ilink1 = iwl_read_targ_mem(priv, base + 5 * sizeof(u32));
2306 ilink2 = iwl_read_targ_mem(priv, base + 6 * sizeof(u32));
2307 data1 = iwl_read_targ_mem(priv, base + 7 * sizeof(u32));
2308 data2 = iwl_read_targ_mem(priv, base + 8 * sizeof(u32));
2309 line = iwl_read_targ_mem(priv, base + 9 * sizeof(u32));
2310 time = iwl_read_targ_mem(priv, base + 11 * sizeof(u32));
Wey-Yi Guy461ef382010-03-30 17:57:53 -07002311 hcmd = iwl_read_targ_mem(priv, base + 22 * sizeof(u32));
Reinette Chatreb7a79402009-09-25 14:24:23 -07002312
Johannes Bergbe1a71a2009-10-02 13:44:02 -07002313 trace_iwlwifi_dev_ucode_error(priv, desc, time, data1, data2, line,
2314 blink1, blink2, ilink1, ilink2);
2315
Jay Sternberg87563712010-06-14 14:40:40 -07002316 IWL_ERR(priv, "Desc Time "
Reinette Chatreb7a79402009-09-25 14:24:23 -07002317 "data1 data2 line\n");
Jay Sternberg87563712010-06-14 14:40:40 -07002318 IWL_ERR(priv, "%-28s (0x%04X) %010u 0x%08X 0x%08X %u\n",
Reinette Chatreb7a79402009-09-25 14:24:23 -07002319 desc_lookup(desc), desc, time, data1, data2, line);
Wey-Yi Guy461ef382010-03-30 17:57:53 -07002320 IWL_ERR(priv, "pc blink1 blink2 ilink1 ilink2 hcmd\n");
2321 IWL_ERR(priv, "0x%05X 0x%05X 0x%05X 0x%05X 0x%05X 0x%05X\n",
2322 pc, blink1, blink2, ilink1, ilink2, hcmd);
Reinette Chatreb7a79402009-09-25 14:24:23 -07002323}
2324
2325#define EVENT_START_OFFSET (4 * sizeof(u32))
2326
2327/**
2328 * iwl_print_event_log - Dump error event log to syslog
2329 *
2330 */
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002331static int iwl_print_event_log(struct iwl_priv *priv, u32 start_idx,
2332 u32 num_events, u32 mode,
2333 int pos, char **buf, size_t bufsz)
Reinette Chatreb7a79402009-09-25 14:24:23 -07002334{
2335 u32 i;
2336 u32 base; /* SRAM byte address of event log header */
2337 u32 event_size; /* 2 u32s, or 3 u32s if timestamp recorded */
2338 u32 ptr; /* SRAM byte address of log data */
2339 u32 ev, time, data; /* event log data */
Ben Cahille5854472009-11-06 14:52:58 -08002340 unsigned long reg_flags;
Reinette Chatreb7a79402009-09-25 14:24:23 -07002341
2342 if (num_events == 0)
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002343 return pos;
Johannes Bergb2e640d2010-05-05 23:24:54 -07002344
2345 if (priv->ucode_type == UCODE_INIT) {
Reinette Chatreb7a79402009-09-25 14:24:23 -07002346 base = le32_to_cpu(priv->card_alive_init.log_event_table_ptr);
Johannes Bergb2e640d2010-05-05 23:24:54 -07002347 if (!base)
2348 base = priv->_agn.init_evtlog_ptr;
2349 } else {
Reinette Chatreb7a79402009-09-25 14:24:23 -07002350 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
Johannes Bergb2e640d2010-05-05 23:24:54 -07002351 if (!base)
2352 base = priv->_agn.inst_evtlog_ptr;
2353 }
Reinette Chatreb7a79402009-09-25 14:24:23 -07002354
2355 if (mode == 0)
2356 event_size = 2 * sizeof(u32);
2357 else
2358 event_size = 3 * sizeof(u32);
2359
2360 ptr = base + EVENT_START_OFFSET + (start_idx * event_size);
2361
Ben Cahille5854472009-11-06 14:52:58 -08002362 /* Make sure device is powered up for SRAM reads */
2363 spin_lock_irqsave(&priv->reg_lock, reg_flags);
2364 iwl_grab_nic_access(priv);
2365
2366 /* Set starting address; reads will auto-increment */
2367 _iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR, ptr);
2368 rmb();
2369
Reinette Chatreb7a79402009-09-25 14:24:23 -07002370 /* "time" is actually "data" for mode 0 (no timestamp).
2371 * place event id # at far right for easier visual parsing. */
2372 for (i = 0; i < num_events; i++) {
Ben Cahille5854472009-11-06 14:52:58 -08002373 ev = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
2374 time = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Reinette Chatreb7a79402009-09-25 14:24:23 -07002375 if (mode == 0) {
2376 /* data, ev */
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002377 if (bufsz) {
2378 pos += scnprintf(*buf + pos, bufsz - pos,
2379 "EVT_LOG:0x%08x:%04u\n",
2380 time, ev);
2381 } else {
2382 trace_iwlwifi_dev_ucode_event(priv, 0,
2383 time, ev);
2384 IWL_ERR(priv, "EVT_LOG:0x%08x:%04u\n",
2385 time, ev);
2386 }
Reinette Chatreb7a79402009-09-25 14:24:23 -07002387 } else {
Ben Cahille5854472009-11-06 14:52:58 -08002388 data = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002389 if (bufsz) {
2390 pos += scnprintf(*buf + pos, bufsz - pos,
2391 "EVT_LOGT:%010u:0x%08x:%04u\n",
2392 time, data, ev);
2393 } else {
2394 IWL_ERR(priv, "EVT_LOGT:%010u:0x%08x:%04u\n",
Reinette Chatreb7a79402009-09-25 14:24:23 -07002395 time, data, ev);
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002396 trace_iwlwifi_dev_ucode_event(priv, time,
2397 data, ev);
2398 }
Reinette Chatreb7a79402009-09-25 14:24:23 -07002399 }
2400 }
Ben Cahille5854472009-11-06 14:52:58 -08002401
2402 /* Allow device to power down */
2403 iwl_release_nic_access(priv);
2404 spin_unlock_irqrestore(&priv->reg_lock, reg_flags);
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002405 return pos;
Reinette Chatreb7a79402009-09-25 14:24:23 -07002406}
2407
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002408/**
2409 * iwl_print_last_event_logs - Dump the newest # of event log to syslog
2410 */
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002411static int iwl_print_last_event_logs(struct iwl_priv *priv, u32 capacity,
2412 u32 num_wraps, u32 next_entry,
2413 u32 size, u32 mode,
2414 int pos, char **buf, size_t bufsz)
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002415{
2416 /*
2417 * display the newest DEFAULT_LOG_ENTRIES entries
2418 * i.e the entries just before the next ont that uCode would fill.
2419 */
2420 if (num_wraps) {
2421 if (next_entry < size) {
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002422 pos = iwl_print_event_log(priv,
2423 capacity - (size - next_entry),
2424 size - next_entry, mode,
2425 pos, buf, bufsz);
2426 pos = iwl_print_event_log(priv, 0,
2427 next_entry, mode,
2428 pos, buf, bufsz);
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002429 } else
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002430 pos = iwl_print_event_log(priv, next_entry - size,
2431 size, mode, pos, buf, bufsz);
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002432 } else {
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002433 if (next_entry < size) {
2434 pos = iwl_print_event_log(priv, 0, next_entry,
2435 mode, pos, buf, bufsz);
2436 } else {
2437 pos = iwl_print_event_log(priv, next_entry - size,
2438 size, mode, pos, buf, bufsz);
2439 }
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002440 }
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002441 return pos;
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002442}
2443
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002444#define DEFAULT_DUMP_EVENT_LOG_ENTRIES (20)
2445
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002446int iwl_dump_nic_event_log(struct iwl_priv *priv, bool full_log,
2447 char **buf, bool display)
Reinette Chatreb7a79402009-09-25 14:24:23 -07002448{
2449 u32 base; /* SRAM byte address of event log header */
2450 u32 capacity; /* event log capacity in # entries */
2451 u32 mode; /* 0 - no timestamp, 1 - timestamp recorded */
2452 u32 num_wraps; /* # times uCode wrapped to top of log */
2453 u32 next_entry; /* index of next entry to be written by uCode */
2454 u32 size; /* # entries that we'll print */
Johannes Bergb2e640d2010-05-05 23:24:54 -07002455 u32 logsize;
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002456 int pos = 0;
2457 size_t bufsz = 0;
Reinette Chatreb7a79402009-09-25 14:24:23 -07002458
Johannes Bergb2e640d2010-05-05 23:24:54 -07002459 if (priv->ucode_type == UCODE_INIT) {
Reinette Chatreb7a79402009-09-25 14:24:23 -07002460 base = le32_to_cpu(priv->card_alive_init.log_event_table_ptr);
Johannes Bergb2e640d2010-05-05 23:24:54 -07002461 logsize = priv->_agn.init_evtlog_size;
2462 if (!base)
2463 base = priv->_agn.init_evtlog_ptr;
2464 } else {
Reinette Chatreb7a79402009-09-25 14:24:23 -07002465 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
Johannes Bergb2e640d2010-05-05 23:24:54 -07002466 logsize = priv->_agn.inst_evtlog_size;
2467 if (!base)
2468 base = priv->_agn.inst_evtlog_ptr;
2469 }
Reinette Chatreb7a79402009-09-25 14:24:23 -07002470
2471 if (!priv->cfg->ops->lib->is_valid_rtc_data_addr(base)) {
Wey-Yi Guy212fb572009-12-02 12:53:00 -08002472 IWL_ERR(priv,
2473 "Invalid event log pointer 0x%08X for %s uCode\n",
2474 base, (priv->ucode_type == UCODE_INIT) ? "Init" : "RT");
Wey-Yi Guy937c3972010-01-15 13:43:36 -08002475 return -EINVAL;
Reinette Chatreb7a79402009-09-25 14:24:23 -07002476 }
2477
2478 /* event log header */
2479 capacity = iwl_read_targ_mem(priv, base);
2480 mode = iwl_read_targ_mem(priv, base + (1 * sizeof(u32)));
2481 num_wraps = iwl_read_targ_mem(priv, base + (2 * sizeof(u32)));
2482 next_entry = iwl_read_targ_mem(priv, base + (3 * sizeof(u32)));
2483
Johannes Bergb2e640d2010-05-05 23:24:54 -07002484 if (capacity > logsize) {
Ben Cahill84c40692009-11-06 14:52:57 -08002485 IWL_ERR(priv, "Log capacity %d is bogus, limit to %d entries\n",
Johannes Bergb2e640d2010-05-05 23:24:54 -07002486 capacity, logsize);
2487 capacity = logsize;
Ben Cahill84c40692009-11-06 14:52:57 -08002488 }
2489
Johannes Bergb2e640d2010-05-05 23:24:54 -07002490 if (next_entry > logsize) {
Ben Cahill84c40692009-11-06 14:52:57 -08002491 IWL_ERR(priv, "Log write index %d is bogus, limit to %d\n",
Johannes Bergb2e640d2010-05-05 23:24:54 -07002492 next_entry, logsize);
2493 next_entry = logsize;
Ben Cahill84c40692009-11-06 14:52:57 -08002494 }
2495
Reinette Chatreb7a79402009-09-25 14:24:23 -07002496 size = num_wraps ? capacity : next_entry;
2497
2498 /* bail out if nothing in log */
2499 if (size == 0) {
2500 IWL_ERR(priv, "Start IWL Event Log Dump: nothing in log\n");
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002501 return pos;
Reinette Chatreb7a79402009-09-25 14:24:23 -07002502 }
2503
Wey-Yi Guyf37837c2010-08-23 07:57:12 -07002504 /* enable/disable bt channel announcement */
2505 priv->bt_ch_announce = iwlagn_bt_ch_announce;
2506
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002507#ifdef CONFIG_IWLWIFI_DEBUG
Wey-Yi Guy521d9bc2009-12-10 14:37:23 -08002508 if (!(iwl_get_debug_level(priv) & IWL_DL_FW_ERRORS) && !full_log)
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002509 size = (size > DEFAULT_DUMP_EVENT_LOG_ENTRIES)
2510 ? DEFAULT_DUMP_EVENT_LOG_ENTRIES : size;
2511#else
2512 size = (size > DEFAULT_DUMP_EVENT_LOG_ENTRIES)
2513 ? DEFAULT_DUMP_EVENT_LOG_ENTRIES : size;
Reinette Chatreb7a79402009-09-25 14:24:23 -07002514#endif
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002515 IWL_ERR(priv, "Start IWL Event Log Dump: display last %u entries\n",
2516 size);
2517
2518#ifdef CONFIG_IWLWIFI_DEBUG
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002519 if (display) {
2520 if (full_log)
2521 bufsz = capacity * 48;
2522 else
2523 bufsz = size * 48;
2524 *buf = kmalloc(bufsz, GFP_KERNEL);
2525 if (!*buf)
Wey-Yi Guy937c3972010-01-15 13:43:36 -08002526 return -ENOMEM;
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002527 }
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002528 if ((iwl_get_debug_level(priv) & IWL_DL_FW_ERRORS) || full_log) {
2529 /*
2530 * if uCode has wrapped back to top of log,
2531 * start at the oldest entry,
2532 * i.e the next one that uCode would fill.
2533 */
2534 if (num_wraps)
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002535 pos = iwl_print_event_log(priv, next_entry,
2536 capacity - next_entry, mode,
2537 pos, buf, bufsz);
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002538 /* (then/else) start at top of log */
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002539 pos = iwl_print_event_log(priv, 0,
2540 next_entry, mode, pos, buf, bufsz);
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002541 } else
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002542 pos = iwl_print_last_event_logs(priv, capacity, num_wraps,
2543 next_entry, size, mode,
2544 pos, buf, bufsz);
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002545#else
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002546 pos = iwl_print_last_event_logs(priv, capacity, num_wraps,
2547 next_entry, size, mode,
2548 pos, buf, bufsz);
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002549#endif
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002550 return pos;
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002551}
Reinette Chatreb7a79402009-09-25 14:24:23 -07002552
Wey-Yi Guy0975cc82010-07-31 08:34:07 -07002553static void iwl_rf_kill_ct_config(struct iwl_priv *priv)
2554{
2555 struct iwl_ct_kill_config cmd;
2556 struct iwl_ct_kill_throttling_config adv_cmd;
2557 unsigned long flags;
2558 int ret = 0;
2559
2560 spin_lock_irqsave(&priv->lock, flags);
2561 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR,
2562 CSR_UCODE_DRV_GP1_REG_BIT_CT_KILL_EXIT);
2563 spin_unlock_irqrestore(&priv->lock, flags);
2564 priv->thermal_throttle.ct_kill_toggle = false;
2565
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -07002566 if (priv->cfg->base_params->support_ct_kill_exit) {
Wey-Yi Guy0975cc82010-07-31 08:34:07 -07002567 adv_cmd.critical_temperature_enter =
2568 cpu_to_le32(priv->hw_params.ct_kill_threshold);
2569 adv_cmd.critical_temperature_exit =
2570 cpu_to_le32(priv->hw_params.ct_kill_exit_threshold);
2571
2572 ret = iwl_send_cmd_pdu(priv, REPLY_CT_KILL_CONFIG_CMD,
2573 sizeof(adv_cmd), &adv_cmd);
2574 if (ret)
2575 IWL_ERR(priv, "REPLY_CT_KILL_CONFIG_CMD failed\n");
2576 else
2577 IWL_DEBUG_INFO(priv, "REPLY_CT_KILL_CONFIG_CMD "
2578 "succeeded, "
2579 "critical temperature enter is %d,"
2580 "exit is %d\n",
2581 priv->hw_params.ct_kill_threshold,
2582 priv->hw_params.ct_kill_exit_threshold);
2583 } else {
2584 cmd.critical_temperature_R =
2585 cpu_to_le32(priv->hw_params.ct_kill_threshold);
2586
2587 ret = iwl_send_cmd_pdu(priv, REPLY_CT_KILL_CONFIG_CMD,
2588 sizeof(cmd), &cmd);
2589 if (ret)
2590 IWL_ERR(priv, "REPLY_CT_KILL_CONFIG_CMD failed\n");
2591 else
2592 IWL_DEBUG_INFO(priv, "REPLY_CT_KILL_CONFIG_CMD "
2593 "succeeded, "
2594 "critical temperature is %d\n",
2595 priv->hw_params.ct_kill_threshold);
2596 }
2597}
2598
Shanyu Zhao6d6a1af2010-09-14 18:13:31 -07002599static int iwlagn_send_calib_cfg_rt(struct iwl_priv *priv, u32 cfg)
2600{
2601 struct iwl_calib_cfg_cmd calib_cfg_cmd;
2602 struct iwl_host_cmd cmd = {
2603 .id = CALIBRATION_CFG_CMD,
2604 .len = sizeof(struct iwl_calib_cfg_cmd),
2605 .data = &calib_cfg_cmd,
2606 };
2607
2608 memset(&calib_cfg_cmd, 0, sizeof(calib_cfg_cmd));
2609 calib_cfg_cmd.ucd_calib_cfg.once.is_enable = IWL_CALIB_INIT_CFG_ALL;
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -07002610 calib_cfg_cmd.ucd_calib_cfg.once.start = cpu_to_le32(cfg);
Shanyu Zhao6d6a1af2010-09-14 18:13:31 -07002611
2612 return iwl_send_cmd(priv, &cmd);
2613}
2614
2615
Zhu Yib481de92007-09-25 17:54:57 -07002616/**
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08002617 * iwl_alive_start - called after REPLY_ALIVE notification received
Zhu Yib481de92007-09-25 17:54:57 -07002618 * from protocol/runtime uCode (initialization uCode's
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08002619 * Alive gets handled by iwl_init_alive_start()).
Zhu Yib481de92007-09-25 17:54:57 -07002620 */
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08002621static void iwl_alive_start(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002622{
Tomas Winkler57aab752008-04-14 21:16:03 -07002623 int ret = 0;
Johannes Berg246ed352010-08-23 10:46:32 +02002624 struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS];
Zhu Yib481de92007-09-25 17:54:57 -07002625
Tomas Winklere1623442009-01-27 14:27:56 -08002626 IWL_DEBUG_INFO(priv, "Runtime Alive received.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002627
2628 if (priv->card_alive.is_valid != UCODE_VALID_OK) {
2629 /* We had an error bringing up the hardware, so take it
2630 * all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002631 IWL_DEBUG_INFO(priv, "Alive failed.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002632 goto restart;
2633 }
2634
2635 /* Initialize uCode has loaded Runtime uCode ... verify inst image.
2636 * This is a paranoid check, because we would not have gotten the
2637 * "runtime" alive if code weren't properly loaded. */
Emmanuel Grumbachb0692f22008-04-24 11:55:18 -07002638 if (iwl_verify_ucode(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002639 /* Runtime instruction load was bad;
2640 * take it all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002641 IWL_DEBUG_INFO(priv, "Bad runtime uCode load.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002642 goto restart;
2643 }
2644
Tomas Winkler57aab752008-04-14 21:16:03 -07002645 ret = priv->cfg->ops->lib->alive_notify(priv);
2646 if (ret) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002647 IWL_WARN(priv,
2648 "Could not complete ALIVE transition [ntf]: %d\n", ret);
Zhu Yib481de92007-09-25 17:54:57 -07002649 goto restart;
2650 }
2651
Shanyu Zhao6d6a1af2010-09-14 18:13:31 -07002652
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002653 /* After the ALIVE response, we can send host commands to the uCode */
Zhu Yib481de92007-09-25 17:54:57 -07002654 set_bit(STATUS_ALIVE, &priv->status);
2655
Wey-Yi Guyb74e31a2010-03-01 17:23:50 -08002656 if (priv->cfg->ops->lib->recover_from_tx_stall) {
2657 /* Enable timer to monitor the driver queues */
2658 mod_timer(&priv->monitor_recover,
2659 jiffies +
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -07002660 msecs_to_jiffies(
2661 priv->cfg->base_params->monitor_recover_period));
Wey-Yi Guyb74e31a2010-03-01 17:23:50 -08002662 }
2663
Tomas Winklerfee12472008-04-03 16:05:21 -07002664 if (iwl_is_rfkill(priv))
Zhu Yib481de92007-09-25 17:54:57 -07002665 return;
2666
Wey-Yi Guybc795df2010-10-11 14:24:05 -07002667 /* download priority table before any calibration request */
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -07002668 if (priv->cfg->bt_params &&
2669 priv->cfg->bt_params->advanced_bt_coexist) {
Wey-Yi Guyf7322f82010-08-23 15:24:49 -07002670 /* Configure Bluetooth device coexistence support */
2671 priv->bt_valid = IWLAGN_BT_ALL_VALID_MSK;
2672 priv->kill_ack_mask = IWLAGN_BT_KILL_ACK_MASK_DEFAULT;
2673 priv->kill_cts_mask = IWLAGN_BT_KILL_CTS_MASK_DEFAULT;
2674 priv->cfg->ops->hcmd->send_bt_config(priv);
2675 priv->bt_valid = IWLAGN_BT_VALID_ENABLE_FLAGS;
Wey-Yi Guya5901cb2010-09-23 09:56:51 -07002676 iwlagn_send_prio_tbl(priv);
Wey-Yi Guyf7322f82010-08-23 15:24:49 -07002677
2678 /* FIXME: w/a to force change uCode BT state machine */
2679 iwlagn_send_bt_env(priv, IWL_BT_COEX_ENV_OPEN,
2680 BT_COEX_PRIO_TBL_EVT_INIT_CALIB2);
2681 iwlagn_send_bt_env(priv, IWL_BT_COEX_ENV_CLOSE,
2682 BT_COEX_PRIO_TBL_EVT_INIT_CALIB2);
2683 }
Wey-Yi Guybc795df2010-10-11 14:24:05 -07002684 if (priv->hw_params.calib_rt_cfg)
2685 iwlagn_send_calib_cfg_rt(priv, priv->hw_params.calib_rt_cfg);
2686
Johannes Berg36d68252008-05-15 12:55:26 +02002687 ieee80211_wake_queues(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07002688
Johannes Berg470ab2d2010-01-21 11:23:30 -08002689 priv->active_rate = IWL_RATES_MASK;
Zhu Yib481de92007-09-25 17:54:57 -07002690
Wey-Yi Guy2f748de2009-09-17 10:43:51 -07002691 /* Configure Tx antenna selection based on H/W config */
2692 if (priv->cfg->ops->hcmd->set_tx_ant)
2693 priv->cfg->ops->hcmd->set_tx_ant(priv, priv->cfg->valid_tx_ant);
2694
Johannes Berg246ed352010-08-23 10:46:32 +02002695 if (iwl_is_associated_ctx(ctx)) {
Gregory Greenmanc1adf9f2008-05-15 13:53:59 +08002696 struct iwl_rxon_cmd *active_rxon =
Johannes Berg246ed352010-08-23 10:46:32 +02002697 (struct iwl_rxon_cmd *)&ctx->active;
Mohamed Abbas019fb972009-03-17 21:59:18 -07002698 /* apply any changes in staging */
Johannes Berg246ed352010-08-23 10:46:32 +02002699 ctx->staging.filter_flags |= RXON_FILTER_ASSOC_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07002700 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
2701 } else {
Johannes Bergd0fe4782010-08-23 10:46:58 +02002702 struct iwl_rxon_context *tmp;
Zhu Yib481de92007-09-25 17:54:57 -07002703 /* Initialize our rx_config data */
Johannes Bergd0fe4782010-08-23 10:46:58 +02002704 for_each_context(priv, tmp)
2705 iwl_connection_init_rx_config(priv, tmp);
Abhijeet Kolekar45823532009-04-08 11:26:44 -07002706
2707 if (priv->cfg->ops->hcmd->set_rxon_chain)
Johannes Berg246ed352010-08-23 10:46:32 +02002708 priv->cfg->ops->hcmd->set_rxon_chain(priv, ctx);
Zhu Yib481de92007-09-25 17:54:57 -07002709 }
2710
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -07002711 if (priv->cfg->bt_params &&
2712 !priv->cfg->bt_params->advanced_bt_coexist) {
Wey-Yi Guyaeb4a2e2010-08-23 07:57:05 -07002713 /* Configure Bluetooth device coexistence support */
2714 priv->cfg->ops->hcmd->send_bt_config(priv);
2715 }
Zhu Yib481de92007-09-25 17:54:57 -07002716
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08002717 iwl_reset_run_time_calib(priv);
2718
Zhu Yib481de92007-09-25 17:54:57 -07002719 /* Configure the adapter for unassociated operation */
Johannes Berg246ed352010-08-23 10:46:32 +02002720 iwlcore_commit_rxon(priv, ctx);
Zhu Yib481de92007-09-25 17:54:57 -07002721
2722 /* At this point, the NIC is initialized and operational */
Emmanuel Grumbach47f4a582008-06-12 09:47:13 +08002723 iwl_rf_kill_ct_config(priv);
Zhu Yi5a66926a2008-01-14 17:46:18 -08002724
Johannes Berge932a602009-10-02 13:44:03 -07002725 iwl_leds_init(priv);
Reinette Chatrefe00b5a2008-04-03 16:05:23 -07002726
Tomas Winklere1623442009-01-27 14:27:56 -08002727 IWL_DEBUG_INFO(priv, "ALIVE processing complete.\n");
Rick Farringtona9f46782008-03-18 14:57:49 -07002728 set_bit(STATUS_READY, &priv->status);
Zhu Yi5a66926a2008-01-14 17:46:18 -08002729 wake_up_interruptible(&priv->wait_command_queue);
Zhu Yib481de92007-09-25 17:54:57 -07002730
Johannes Berge312c242009-08-07 15:41:51 -07002731 iwl_power_update_mode(priv, true);
Reinette Chatre7e246192010-02-18 22:58:32 -08002732 IWL_DEBUG_INFO(priv, "Updated power mode\n");
2733
Assaf Kraussc46fbef2008-06-12 09:47:05 +08002734
Zhu Yib481de92007-09-25 17:54:57 -07002735 return;
2736
2737 restart:
2738 queue_work(priv->workqueue, &priv->restart);
2739}
2740
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08002741static void iwl_cancel_deferred_work(struct iwl_priv *priv);
Zhu Yib481de92007-09-25 17:54:57 -07002742
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002743static void __iwl_down(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002744{
2745 unsigned long flags;
2746 int exit_pending = test_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07002747
Tomas Winklere1623442009-01-27 14:27:56 -08002748 IWL_DEBUG_INFO(priv, DRV_NAME " is going down\n");
Zhu Yib481de92007-09-25 17:54:57 -07002749
Stanislaw Gruszkad745d472010-09-13 14:46:35 +02002750 iwl_scan_cancel_timeout(priv, 200);
2751
2752 exit_pending = test_and_set_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07002753
Stanislaw Gruszkab62177a2010-08-20 15:23:47 +02002754 /* Stop TX queues watchdog. We need to have STATUS_EXIT_PENDING bit set
2755 * to prevent rearm timer */
2756 if (priv->cfg->ops->lib->recover_from_tx_stall)
2757 del_timer_sync(&priv->monitor_recover);
2758
Johannes Bergdcef7322010-08-27 08:55:52 -07002759 iwl_clear_ucode_stations(priv, NULL);
Johannes Berga194e322010-08-27 08:53:46 -07002760 iwl_dealloc_bcast_stations(priv);
Johannes Bergdb125c72010-05-07 01:49:15 -07002761 iwl_clear_driver_stations(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002762
Johannes Berga1174132010-08-23 07:56:59 -07002763 /* reset BT coex data */
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07002764 priv->bt_status = 0;
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -07002765 if (priv->cfg->bt_params)
2766 priv->bt_traffic_load =
2767 priv->cfg->bt_params->bt_init_traffic_load;
2768 else
2769 priv->bt_traffic_load = 0;
Johannes Berga1174132010-08-23 07:56:59 -07002770 priv->bt_sco_active = false;
Wey-Yi Guybee008b2010-08-23 07:57:04 -07002771 priv->bt_full_concurrent = false;
2772 priv->bt_ci_compliance = 0;
Johannes Berga1174132010-08-23 07:56:59 -07002773
Zhu Yib481de92007-09-25 17:54:57 -07002774 /* Unblock any waiting calls */
2775 wake_up_interruptible_all(&priv->wait_command_queue);
2776
Zhu Yib481de92007-09-25 17:54:57 -07002777 /* Wipe out the EXIT_PENDING status bit if we are not actually
2778 * exiting the module */
2779 if (!exit_pending)
2780 clear_bit(STATUS_EXIT_PENDING, &priv->status);
2781
2782 /* stop and reset the on-board processor */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07002783 iwl_write32(priv, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET);
Zhu Yib481de92007-09-25 17:54:57 -07002784
2785 /* tell the device to stop sending interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07002786 spin_lock_irqsave(&priv->lock, flags);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002787 iwl_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07002788 spin_unlock_irqrestore(&priv->lock, flags);
2789 iwl_synchronize_irq(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002790
2791 if (priv->mac80211_registered)
2792 ieee80211_stop_queues(priv->hw);
2793
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002794 /* If we have not previously called iwl_init() then
Johannes Berga60e77e2009-06-04 18:26:06 +02002795 * clear all bits but the RF Kill bit and return */
Tomas Winklerfee12472008-04-03 16:05:21 -07002796 if (!iwl_is_init(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002797 priv->status = test_bit(STATUS_RF_KILL_HW, &priv->status) <<
2798 STATUS_RF_KILL_HW |
Reinette Chatre97888642008-02-06 11:20:38 -08002799 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
2800 STATUS_GEO_CONFIGURED |
Mohamed Abbas052ec3f2008-06-30 17:23:15 +08002801 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
2802 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07002803 goto exit;
2804 }
2805
Wey-Yi Guy6da3a132009-03-26 10:14:08 -07002806 /* ...otherwise clear out all the status bits but the RF Kill
Johannes Berga60e77e2009-06-04 18:26:06 +02002807 * bit and continue taking the NIC down. */
Zhu Yib481de92007-09-25 17:54:57 -07002808 priv->status &= test_bit(STATUS_RF_KILL_HW, &priv->status) <<
2809 STATUS_RF_KILL_HW |
Reinette Chatre97888642008-02-06 11:20:38 -08002810 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
2811 STATUS_GEO_CONFIGURED |
Zhu Yib481de92007-09-25 17:54:57 -07002812 test_bit(STATUS_FW_ERROR, &priv->status) <<
Mohamed Abbas052ec3f2008-06-30 17:23:15 +08002813 STATUS_FW_ERROR |
2814 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
2815 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07002816
Mohamed Abbasef850d72009-05-22 11:01:50 -07002817 /* device going down, Stop using ICT table */
2818 iwl_disable_ict(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002819
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07002820 iwlagn_txq_ctx_stop(priv);
Wey-Yi Guy54b81552010-03-17 13:34:35 -07002821 iwlagn_rxq_stop(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002822
Ben Cahill309e7312009-11-06 14:53:03 -08002823 /* Power-down device's busmaster DMA clocks */
2824 iwl_write_prph(priv, APMG_CLK_DIS_REG, APMG_CLK_VAL_DMA_CLK_RQT);
Zhu Yib481de92007-09-25 17:54:57 -07002825 udelay(5);
2826
Ben Cahill309e7312009-11-06 14:53:03 -08002827 /* Make sure (redundant) we've released our request to stay awake */
2828 iwl_clear_bit(priv, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
2829
Ben Cahill4d2ccdb2009-10-09 13:20:20 -07002830 /* Stop the device, and put it in low power state */
Johannes Berg14e8e4a2010-09-22 18:02:10 +02002831 iwl_apm_stop(priv);
Ben Cahill4d2ccdb2009-10-09 13:20:20 -07002832
Zhu Yib481de92007-09-25 17:54:57 -07002833 exit:
Tomas Winkler885ba202008-05-29 16:34:55 +08002834 memset(&priv->card_alive, 0, sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07002835
Johannes Berg77834542010-10-04 05:50:36 -07002836 dev_kfree_skb(priv->beacon_skb);
Johannes Berg12e934d2010-10-04 05:50:06 -07002837 priv->beacon_skb = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07002838
2839 /* clear out any free frames */
Tomas Winklerfcab4232008-05-15 13:54:01 +08002840 iwl_clear_free_frames(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002841}
2842
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002843static void iwl_down(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002844{
2845 mutex_lock(&priv->mutex);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002846 __iwl_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002847 mutex_unlock(&priv->mutex);
Zhu Yib24d22b2007-12-19 13:59:52 +08002848
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08002849 iwl_cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002850}
2851
Mohamed Abbas086ed112009-05-22 11:01:54 -07002852#define HW_READY_TIMEOUT (50)
2853
2854static int iwl_set_hw_ready(struct iwl_priv *priv)
2855{
2856 int ret = 0;
2857
2858 iwl_set_bit(priv, CSR_HW_IF_CONFIG_REG,
2859 CSR_HW_IF_CONFIG_REG_BIT_NIC_READY);
2860
2861 /* See if we got it */
2862 ret = iwl_poll_bit(priv, CSR_HW_IF_CONFIG_REG,
2863 CSR_HW_IF_CONFIG_REG_BIT_NIC_READY,
2864 CSR_HW_IF_CONFIG_REG_BIT_NIC_READY,
2865 HW_READY_TIMEOUT);
2866 if (ret != -ETIMEDOUT)
2867 priv->hw_ready = true;
2868 else
2869 priv->hw_ready = false;
2870
2871 IWL_DEBUG_INFO(priv, "hardware %s\n",
2872 (priv->hw_ready == 1) ? "ready" : "not ready");
2873 return ret;
2874}
2875
2876static int iwl_prepare_card_hw(struct iwl_priv *priv)
2877{
2878 int ret = 0;
2879
Frans Pop91dd6c22010-03-24 14:19:58 -07002880 IWL_DEBUG_INFO(priv, "iwl_prepare_card_hw enter\n");
Mohamed Abbas086ed112009-05-22 11:01:54 -07002881
Mohamed Abbas3354a0f2009-06-19 13:52:41 -07002882 ret = iwl_set_hw_ready(priv);
2883 if (priv->hw_ready)
2884 return ret;
2885
2886 /* If HW is not ready, prepare the conditions to check again */
Mohamed Abbas086ed112009-05-22 11:01:54 -07002887 iwl_set_bit(priv, CSR_HW_IF_CONFIG_REG,
2888 CSR_HW_IF_CONFIG_REG_PREPARE);
2889
2890 ret = iwl_poll_bit(priv, CSR_HW_IF_CONFIG_REG,
2891 ~CSR_HW_IF_CONFIG_REG_BIT_NIC_PREPARE_DONE,
2892 CSR_HW_IF_CONFIG_REG_BIT_NIC_PREPARE_DONE, 150000);
2893
Mohamed Abbas3354a0f2009-06-19 13:52:41 -07002894 /* HW should be ready by now, check again. */
Mohamed Abbas086ed112009-05-22 11:01:54 -07002895 if (ret != -ETIMEDOUT)
2896 iwl_set_hw_ready(priv);
2897
2898 return ret;
2899}
2900
Zhu Yib481de92007-09-25 17:54:57 -07002901#define MAX_HW_RESTARTS 5
2902
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002903static int __iwl_up(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002904{
Johannes Berga194e322010-08-27 08:53:46 -07002905 struct iwl_rxon_context *ctx;
Tomas Winkler57aab752008-04-14 21:16:03 -07002906 int i;
2907 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07002908
2909 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002910 IWL_WARN(priv, "Exit pending; will not bring the NIC up\n");
Zhu Yib481de92007-09-25 17:54:57 -07002911 return -EIO;
2912 }
2913
Reinette Chatree903fbd2008-01-30 22:05:15 -08002914 if (!priv->ucode_data_backup.v_addr || !priv->ucode_data.v_addr) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002915 IWL_ERR(priv, "ucode not available for device bringup\n");
Reinette Chatree903fbd2008-01-30 22:05:15 -08002916 return -EIO;
2917 }
2918
Johannes Berga194e322010-08-27 08:53:46 -07002919 for_each_context(priv, ctx) {
Johannes Berga30e3112010-09-22 18:02:01 +02002920 ret = iwlagn_alloc_bcast_station(priv, ctx);
Johannes Berga194e322010-08-27 08:53:46 -07002921 if (ret) {
2922 iwl_dealloc_bcast_stations(priv);
2923 return ret;
2924 }
2925 }
Johannes Berg2c810cc2010-04-29 00:53:29 -07002926
Mohamed Abbas086ed112009-05-22 11:01:54 -07002927 iwl_prepare_card_hw(priv);
2928
2929 if (!priv->hw_ready) {
2930 IWL_WARN(priv, "Exit HW not ready\n");
2931 return -EIO;
2932 }
2933
Zhu Yie655b9f2008-01-24 02:19:38 -08002934 /* If platform's RF_KILL switch is NOT set to KILL */
Tomas Winklerc1842d62008-08-04 16:00:43 +08002935 if (iwl_read32(priv, CSR_GP_CNTRL) & CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
Zhu Yie655b9f2008-01-24 02:19:38 -08002936 clear_bit(STATUS_RF_KILL_HW, &priv->status);
Emmanuel Grumbach3bff19c2008-06-30 17:23:19 +08002937 else
Zhu Yie655b9f2008-01-24 02:19:38 -08002938 set_bit(STATUS_RF_KILL_HW, &priv->status);
Emmanuel Grumbach3bff19c2008-06-30 17:23:19 +08002939
Tomas Winklerc1842d62008-08-04 16:00:43 +08002940 if (iwl_is_rfkill(priv)) {
Johannes Berga60e77e2009-06-04 18:26:06 +02002941 wiphy_rfkill_set_hw_state(priv->hw->wiphy, true);
2942
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002943 iwl_enable_interrupts(priv);
Johannes Berga60e77e2009-06-04 18:26:06 +02002944 IWL_WARN(priv, "Radio disabled by HW RF Kill switch\n");
Tomas Winklerc1842d62008-08-04 16:00:43 +08002945 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07002946 }
2947
Tomas Winkler3395f6e2008-03-25 16:33:37 -07002948 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
Zhu Yib481de92007-09-25 17:54:57 -07002949
Johannes Berg13bb9482010-08-23 10:46:33 +02002950 /* must be initialised before iwl_hw_nic_init */
Johannes Berg751ca302010-08-23 10:46:34 +02002951 if (priv->valid_contexts != BIT(IWL_RXON_CTX_BSS))
2952 priv->cmd_queue = IWL_IPAN_CMD_QUEUE_NUM;
2953 else
2954 priv->cmd_queue = IWL_DEFAULT_CMD_QUEUE_NUM;
Johannes Berg13bb9482010-08-23 10:46:33 +02002955
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07002956 ret = iwlagn_hw_nic_init(priv);
Tomas Winkler57aab752008-04-14 21:16:03 -07002957 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002958 IWL_ERR(priv, "Unable to init nic\n");
Tomas Winkler57aab752008-04-14 21:16:03 -07002959 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07002960 }
2961
2962 /* make sure rfkill handshake bits are cleared */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07002963 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
2964 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR,
Zhu Yib481de92007-09-25 17:54:57 -07002965 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
2966
2967 /* clear (again), then enable host interrupts */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07002968 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002969 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002970
2971 /* really make sure rfkill handshake bits are cleared */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07002972 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
2973 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
Zhu Yib481de92007-09-25 17:54:57 -07002974
2975 /* Copy original ucode data image from disk into backup cache.
2976 * This will be used to initialize the on-board processor's
2977 * data SRAM for a clean start when the runtime program first loads. */
2978 memcpy(priv->ucode_data_backup.v_addr, priv->ucode_data.v_addr,
Zhu Yi5a66926a2008-01-14 17:46:18 -08002979 priv->ucode_data.len);
Zhu Yib481de92007-09-25 17:54:57 -07002980
Zhu Yib481de92007-09-25 17:54:57 -07002981 for (i = 0; i < MAX_HW_RESTARTS; i++) {
2982
Zhu Yib481de92007-09-25 17:54:57 -07002983 /* load bootstrap state machine,
2984 * load bootstrap program into processor's memory,
2985 * prepare to load the "initialize" uCode */
Tomas Winkler57aab752008-04-14 21:16:03 -07002986 ret = priv->cfg->ops->lib->load_ucode(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002987
Tomas Winkler57aab752008-04-14 21:16:03 -07002988 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002989 IWL_ERR(priv, "Unable to set up bootstrap uCode: %d\n",
2990 ret);
Zhu Yib481de92007-09-25 17:54:57 -07002991 continue;
2992 }
2993
2994 /* start card; "initialize" will load runtime ucode */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002995 iwl_nic_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002996
Tomas Winklere1623442009-01-27 14:27:56 -08002997 IWL_DEBUG_INFO(priv, DRV_NAME " is coming up\n");
Zhu Yib481de92007-09-25 17:54:57 -07002998
2999 return 0;
3000 }
3001
3002 set_bit(STATUS_EXIT_PENDING, &priv->status);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003003 __iwl_down(priv);
Mohamed Abbas64e72c3e2008-06-12 09:47:03 +08003004 clear_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07003005
3006 /* tried to restart and config the device for as long as our
3007 * patience could withstand */
Winkler, Tomas15b16872008-12-19 10:37:33 +08003008 IWL_ERR(priv, "Unable to initialize device after %d attempts.\n", i);
Zhu Yib481de92007-09-25 17:54:57 -07003009 return -EIO;
3010}
3011
3012
3013/*****************************************************************************
3014 *
3015 * Workqueue callbacks
3016 *
3017 *****************************************************************************/
3018
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08003019static void iwl_bg_init_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07003020{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003021 struct iwl_priv *priv =
3022 container_of(data, struct iwl_priv, init_alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07003023
3024 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3025 return;
3026
3027 mutex_lock(&priv->mutex);
Emmanuel Grumbachf3ccc082008-05-05 10:22:45 +08003028 priv->cfg->ops->lib->init_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003029 mutex_unlock(&priv->mutex);
3030}
3031
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08003032static void iwl_bg_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07003033{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003034 struct iwl_priv *priv =
3035 container_of(data, struct iwl_priv, alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07003036
3037 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3038 return;
3039
Mohamed Abbas258c44a2009-06-03 11:44:10 -07003040 /* enable dram interrupt */
3041 iwl_reset_ict(priv);
3042
Zhu Yib481de92007-09-25 17:54:57 -07003043 mutex_lock(&priv->mutex);
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08003044 iwl_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003045 mutex_unlock(&priv->mutex);
3046}
3047
Emmanuel Grumbach16e727e2008-06-12 09:46:52 +08003048static void iwl_bg_run_time_calib_work(struct work_struct *work)
3049{
3050 struct iwl_priv *priv = container_of(work, struct iwl_priv,
3051 run_time_calib_work);
3052
3053 mutex_lock(&priv->mutex);
3054
3055 if (test_bit(STATUS_EXIT_PENDING, &priv->status) ||
3056 test_bit(STATUS_SCANNING, &priv->status)) {
3057 mutex_unlock(&priv->mutex);
3058 return;
3059 }
3060
3061 if (priv->start_calib) {
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -07003062 if (priv->cfg->bt_params &&
3063 priv->cfg->bt_params->bt_statistics) {
Wey-Yi Guy7980fba2010-07-14 08:08:57 -07003064 iwl_chain_noise_calibration(priv,
3065 (void *)&priv->_agn.statistics_bt);
3066 iwl_sensitivity_calibration(priv,
3067 (void *)&priv->_agn.statistics_bt);
3068 } else {
3069 iwl_chain_noise_calibration(priv,
3070 (void *)&priv->_agn.statistics);
3071 iwl_sensitivity_calibration(priv,
3072 (void *)&priv->_agn.statistics);
3073 }
Emmanuel Grumbach16e727e2008-06-12 09:46:52 +08003074 }
3075
3076 mutex_unlock(&priv->mutex);
Emmanuel Grumbach16e727e2008-06-12 09:46:52 +08003077}
3078
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003079static void iwl_bg_restart(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07003080{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003081 struct iwl_priv *priv = container_of(data, struct iwl_priv, restart);
Zhu Yib481de92007-09-25 17:54:57 -07003082
3083 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3084 return;
3085
Johannes Berg19cc1082009-05-08 13:44:36 -07003086 if (test_and_clear_bit(STATUS_FW_ERROR, &priv->status)) {
Johannes Berg8bd413e2010-08-23 10:46:40 +02003087 struct iwl_rxon_context *ctx;
Wey-Yi Guybee008b2010-08-23 07:57:04 -07003088 bool bt_sco, bt_full_concurrent;
3089 u8 bt_ci_compliance;
Johannes Berg511b0822010-08-23 07:57:01 -07003090 u8 bt_load;
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07003091 u8 bt_status;
Johannes Berg511b0822010-08-23 07:57:01 -07003092
Johannes Berg19cc1082009-05-08 13:44:36 -07003093 mutex_lock(&priv->mutex);
Johannes Berg8bd413e2010-08-23 10:46:40 +02003094 for_each_context(priv, ctx)
3095 ctx->vif = NULL;
Johannes Berg19cc1082009-05-08 13:44:36 -07003096 priv->is_open = 0;
Johannes Berg511b0822010-08-23 07:57:01 -07003097
3098 /*
3099 * __iwl_down() will clear the BT status variables,
3100 * which is correct, but when we restart we really
3101 * want to keep them so restore them afterwards.
3102 *
3103 * The restart process will later pick them up and
3104 * re-configure the hw when we reconfigure the BT
3105 * command.
3106 */
3107 bt_sco = priv->bt_sco_active;
Wey-Yi Guybee008b2010-08-23 07:57:04 -07003108 bt_full_concurrent = priv->bt_full_concurrent;
3109 bt_ci_compliance = priv->bt_ci_compliance;
Johannes Berg511b0822010-08-23 07:57:01 -07003110 bt_load = priv->bt_traffic_load;
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07003111 bt_status = priv->bt_status;
Johannes Berg511b0822010-08-23 07:57:01 -07003112
Johannes Berga1174132010-08-23 07:56:59 -07003113 __iwl_down(priv);
Johannes Berg511b0822010-08-23 07:57:01 -07003114
3115 priv->bt_sco_active = bt_sco;
Wey-Yi Guybee008b2010-08-23 07:57:04 -07003116 priv->bt_full_concurrent = bt_full_concurrent;
3117 priv->bt_ci_compliance = bt_ci_compliance;
Johannes Berg511b0822010-08-23 07:57:01 -07003118 priv->bt_traffic_load = bt_load;
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07003119 priv->bt_status = bt_status;
Johannes Berg511b0822010-08-23 07:57:01 -07003120
Johannes Berg19cc1082009-05-08 13:44:36 -07003121 mutex_unlock(&priv->mutex);
Johannes Berga1174132010-08-23 07:56:59 -07003122 iwl_cancel_deferred_work(priv);
Johannes Berg19cc1082009-05-08 13:44:36 -07003123 ieee80211_restart_hw(priv->hw);
3124 } else {
3125 iwl_down(priv);
Johannes Berg80676512010-01-21 06:07:17 -08003126
3127 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3128 return;
3129
3130 mutex_lock(&priv->mutex);
3131 __iwl_up(priv);
3132 mutex_unlock(&priv->mutex);
Johannes Berg19cc1082009-05-08 13:44:36 -07003133 }
Zhu Yib481de92007-09-25 17:54:57 -07003134}
3135
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003136static void iwl_bg_rx_replenish(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07003137{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003138 struct iwl_priv *priv =
3139 container_of(data, struct iwl_priv, rx_replenish);
Zhu Yib481de92007-09-25 17:54:57 -07003140
3141 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3142 return;
3143
3144 mutex_lock(&priv->mutex);
Wey-Yi Guy54b81552010-03-17 13:34:35 -07003145 iwlagn_rx_replenish(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003146 mutex_unlock(&priv->mutex);
3147}
3148
Zhu Yib481de92007-09-25 17:54:57 -07003149/*****************************************************************************
3150 *
3151 * mac80211 entry point functions
3152 *
3153 *****************************************************************************/
3154
Emmanuel Grumbach154b25c2008-06-30 17:23:24 +08003155#define UCODE_READY_TIMEOUT (4 * HZ)
Zhu Yi5a66926a2008-01-14 17:46:18 -08003156
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07003157/*
3158 * Not a mac80211 entry point function, but it fits in with all the
3159 * other mac80211 functions grouped here.
3160 */
Johannes Bergdd7a2502010-04-28 23:33:10 -07003161static int iwl_mac_setup_register(struct iwl_priv *priv,
3162 struct iwlagn_ucode_capabilities *capa)
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07003163{
3164 int ret;
3165 struct ieee80211_hw *hw = priv->hw;
Johannes Bergd0fe4782010-08-23 10:46:58 +02003166 struct iwl_rxon_context *ctx;
3167
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07003168 hw->rate_control_algorithm = "iwl-agn-rs";
3169
3170 /* Tell mac80211 our characteristics */
3171 hw->flags = IEEE80211_HW_SIGNAL_DBM |
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07003172 IEEE80211_HW_AMPDU_AGGREGATION |
Johannes Berg2491fa42010-08-23 10:46:52 +02003173 IEEE80211_HW_NEED_DTIM_PERIOD |
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07003174 IEEE80211_HW_SPECTRUM_MGMT;
3175
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -07003176 if (!priv->cfg->base_params->broken_powersave)
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07003177 hw->flags |= IEEE80211_HW_SUPPORTS_PS |
3178 IEEE80211_HW_SUPPORTS_DYNAMIC_PS;
3179
Johannes Bergba37a3d2009-12-10 14:37:27 -08003180 if (priv->cfg->sku & IWL_SKU_N)
3181 hw->flags |= IEEE80211_HW_SUPPORTS_DYNAMIC_SMPS |
3182 IEEE80211_HW_SUPPORTS_STATIC_SMPS;
3183
Reinette Chatre8d9698b2009-10-16 14:25:55 -07003184 hw->sta_data_size = sizeof(struct iwl_station_priv);
Johannes Bergfd1af152010-04-30 11:30:43 -07003185 hw->vif_data_size = sizeof(struct iwl_vif_priv);
3186
Johannes Bergd0fe4782010-08-23 10:46:58 +02003187 for_each_context(priv, ctx) {
3188 hw->wiphy->interface_modes |= ctx->interface_modes;
3189 hw->wiphy->interface_modes |= ctx->exclusive_interface_modes;
3190 }
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07003191
Reinette Chatref6c8f152010-03-12 11:13:26 -08003192 hw->wiphy->flags |= WIPHY_FLAG_CUSTOM_REGULATORY |
Johannes Berg5be83de2009-11-19 00:56:28 +01003193 WIPHY_FLAG_DISABLE_BEACON_HINTS;
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07003194
3195 /*
3196 * For now, disable PS by default because it affects
3197 * RX performance significantly.
3198 */
Johannes Berg5be83de2009-11-19 00:56:28 +01003199 hw->wiphy->flags &= ~WIPHY_FLAG_PS_ON_BY_DEFAULT;
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07003200
Reinette Chatre1382c712010-02-25 10:02:19 -08003201 hw->wiphy->max_scan_ssids = PROBE_OPTION_MAX;
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07003202 /* we create the 802.11 header and a zero-length SSID element */
Johannes Bergdd7a2502010-04-28 23:33:10 -07003203 hw->wiphy->max_scan_ie_len = capa->max_probe_length - 24 - 2;
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07003204
3205 /* Default value; 4 EDCA QOS priorities */
3206 hw->queues = 4;
3207
3208 hw->max_listen_interval = IWL_CONN_MAX_LISTEN_INTERVAL;
3209
3210 if (priv->bands[IEEE80211_BAND_2GHZ].n_channels)
3211 priv->hw->wiphy->bands[IEEE80211_BAND_2GHZ] =
3212 &priv->bands[IEEE80211_BAND_2GHZ];
3213 if (priv->bands[IEEE80211_BAND_5GHZ].n_channels)
3214 priv->hw->wiphy->bands[IEEE80211_BAND_5GHZ] =
3215 &priv->bands[IEEE80211_BAND_5GHZ];
3216
3217 ret = ieee80211_register_hw(priv->hw);
3218 if (ret) {
3219 IWL_ERR(priv, "Failed to register hw (error %d)\n", ret);
3220 return ret;
3221 }
3222 priv->mac80211_registered = 1;
3223
3224 return 0;
3225}
3226
3227
Johannes Berg2295c662010-10-23 09:15:41 -07003228int iwlagn_mac_start(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07003229{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003230 struct iwl_priv *priv = hw->priv;
Zhu Yi5a66926a2008-01-14 17:46:18 -08003231 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07003232
Tomas Winklere1623442009-01-27 14:27:56 -08003233 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07003234
3235 /* we should be verifying the device is ready to be opened */
3236 mutex_lock(&priv->mutex);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003237 ret = __iwl_up(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003238 mutex_unlock(&priv->mutex);
Zhu Yi5a66926a2008-01-14 17:46:18 -08003239
Zhu Yie655b9f2008-01-24 02:19:38 -08003240 if (ret)
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003241 return ret;
Zhu Yie655b9f2008-01-24 02:19:38 -08003242
Tomas Winklerc1842d62008-08-04 16:00:43 +08003243 if (iwl_is_rfkill(priv))
3244 goto out;
3245
Tomas Winklere1623442009-01-27 14:27:56 -08003246 IWL_DEBUG_INFO(priv, "Start UP work done.\n");
Zhu Yie655b9f2008-01-24 02:19:38 -08003247
Ron Rindjunskyfe9b6b72008-05-29 16:35:06 +08003248 /* Wait for START_ALIVE from Run Time ucode. Otherwise callbacks from
Zhu Yi5a66926a2008-01-14 17:46:18 -08003249 * mac80211 will not be run successfully. */
Emmanuel Grumbach154b25c2008-06-30 17:23:24 +08003250 ret = wait_event_interruptible_timeout(priv->wait_command_queue,
3251 test_bit(STATUS_READY, &priv->status),
3252 UCODE_READY_TIMEOUT);
3253 if (!ret) {
3254 if (!test_bit(STATUS_READY, &priv->status)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003255 IWL_ERR(priv, "START_ALIVE timeout after %dms.\n",
Emmanuel Grumbach154b25c2008-06-30 17:23:24 +08003256 jiffies_to_msecs(UCODE_READY_TIMEOUT));
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003257 return -ETIMEDOUT;
Zhu Yi5a66926a2008-01-14 17:46:18 -08003258 }
Ron Rindjunskyfe9b6b72008-05-29 16:35:06 +08003259 }
Tomas Winkler0a078ff2008-06-30 17:23:26 +08003260
Johannes Berge932a602009-10-02 13:44:03 -07003261 iwl_led_start(priv);
3262
Tomas Winklerc1842d62008-08-04 16:00:43 +08003263out:
Tomas Winkler0a078ff2008-06-30 17:23:26 +08003264 priv->is_open = 1;
Tomas Winklere1623442009-01-27 14:27:56 -08003265 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07003266 return 0;
3267}
3268
Johannes Berg2295c662010-10-23 09:15:41 -07003269void iwlagn_mac_stop(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07003270{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003271 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07003272
Tomas Winklere1623442009-01-27 14:27:56 -08003273 IWL_DEBUG_MAC80211(priv, "enter\n");
Mohamed Abbas948c1712007-10-25 17:15:45 +08003274
Johannes Berg19cc1082009-05-08 13:44:36 -07003275 if (!priv->is_open)
Zhu Yie655b9f2008-01-24 02:19:38 -08003276 return;
Zhu Yie655b9f2008-01-24 02:19:38 -08003277
Zhu Yib481de92007-09-25 17:54:57 -07003278 priv->is_open = 0;
Zhu Yi5a66926a2008-01-14 17:46:18 -08003279
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003280 iwl_down(priv);
Zhu Yi5a66926a2008-01-14 17:46:18 -08003281
3282 flush_workqueue(priv->workqueue);
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003283
3284 /* enable interrupts again in order to receive rfkill changes */
3285 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
3286 iwl_enable_interrupts(priv);
Mohamed Abbas948c1712007-10-25 17:15:45 +08003287
Tomas Winklere1623442009-01-27 14:27:56 -08003288 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07003289}
3290
Johannes Berg2295c662010-10-23 09:15:41 -07003291int iwlagn_mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07003292{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003293 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07003294
Tomas Winklere1623442009-01-27 14:27:56 -08003295 IWL_DEBUG_MACDUMP(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07003296
Tomas Winklere1623442009-01-27 14:27:56 -08003297 IWL_DEBUG_TX(priv, "dev->xmit(%d bytes) at rate 0x%02x\n", skb->len,
Johannes Berge039fa42008-05-15 12:55:29 +02003298 ieee80211_get_tx_rate(hw, IEEE80211_SKB_CB(skb))->bitrate);
Zhu Yib481de92007-09-25 17:54:57 -07003299
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07003300 if (iwlagn_tx_skb(priv, skb))
Zhu Yib481de92007-09-25 17:54:57 -07003301 dev_kfree_skb_any(skb);
3302
Tomas Winklere1623442009-01-27 14:27:56 -08003303 IWL_DEBUG_MACDUMP(priv, "leave\n");
Reinette Chatre637f8832009-01-19 15:30:32 -08003304 return NETDEV_TX_OK;
Zhu Yib481de92007-09-25 17:54:57 -07003305}
3306
Johannes Berg2295c662010-10-23 09:15:41 -07003307void iwlagn_mac_update_tkip_key(struct ieee80211_hw *hw,
3308 struct ieee80211_vif *vif,
3309 struct ieee80211_key_conf *keyconf,
3310 struct ieee80211_sta *sta,
3311 u32 iv32, u16 *phase1key)
Zhu Yib481de92007-09-25 17:54:57 -07003312{
Tomas Winkler9f586712008-11-12 13:14:05 -08003313 struct iwl_priv *priv = hw->priv;
Johannes Berga194e322010-08-27 08:53:46 -07003314 struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv;
3315
Tomas Winklere1623442009-01-27 14:27:56 -08003316 IWL_DEBUG_MAC80211(priv, "enter\n");
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02003317
Johannes Berga194e322010-08-27 08:53:46 -07003318 iwl_update_tkip_key(priv, vif_priv->ctx, keyconf, sta,
Johannes Bergb3fbdcf2010-01-21 11:40:47 +01003319 iv32, phase1key);
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02003320
Tomas Winklere1623442009-01-27 14:27:56 -08003321 IWL_DEBUG_MAC80211(priv, "leave\n");
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02003322}
3323
Johannes Berg2295c662010-10-23 09:15:41 -07003324int iwlagn_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
3325 struct ieee80211_vif *vif, struct ieee80211_sta *sta,
3326 struct ieee80211_key_conf *key)
Zhu Yib481de92007-09-25 17:54:57 -07003327{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003328 struct iwl_priv *priv = hw->priv;
Johannes Berga194e322010-08-27 08:53:46 -07003329 struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv;
Johannes Bergc10afb62010-08-23 10:46:43 +02003330 struct iwl_rxon_context *ctx = vif_priv->ctx;
Winkler, Tomas42986792009-01-19 15:30:22 -08003331 int ret;
3332 u8 sta_id;
3333 bool is_default_wep_key = false;
Zhu Yib481de92007-09-25 17:54:57 -07003334
Tomas Winklere1623442009-01-27 14:27:56 -08003335 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07003336
Tomas Winkler90e8e422009-06-19 13:52:42 -07003337 if (priv->cfg->mod_params->sw_crypto) {
Tomas Winklere1623442009-01-27 14:27:56 -08003338 IWL_DEBUG_MAC80211(priv, "leave - hwcrypto disabled\n");
Zhu Yib481de92007-09-25 17:54:57 -07003339 return -EOPNOTSUPP;
3340 }
Zhu Yib481de92007-09-25 17:54:57 -07003341
Johannes Berga194e322010-08-27 08:53:46 -07003342 sta_id = iwl_sta_id_or_broadcast(priv, vif_priv->ctx, sta);
Johannes Berg0af8bca2010-04-30 14:08:00 -07003343 if (sta_id == IWL_INVALID_STATION)
3344 return -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07003345
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07003346 mutex_lock(&priv->mutex);
Tomas Winkler2a421b92008-06-12 09:47:10 +08003347 iwl_scan_cancel_timeout(priv, 100);
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07003348
Johannes Berga90178fa2010-03-30 02:44:16 -07003349 /*
3350 * If we are getting WEP group key and we didn't receive any key mapping
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07003351 * so far, we are in legacy wep mode (group key only), otherwise we are
3352 * in 1X mode.
Johannes Berga90178fa2010-03-30 02:44:16 -07003353 * In legacy wep mode, we use another host command to the uCode.
3354 */
Johannes Berg97359d12010-08-10 09:46:38 +02003355 if ((key->cipher == WLAN_CIPHER_SUITE_WEP40 ||
3356 key->cipher == WLAN_CIPHER_SUITE_WEP104) &&
Johannes Berg54c80672010-08-18 09:35:21 -07003357 !sta) {
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07003358 if (cmd == SET_KEY)
Johannes Bergc10afb62010-08-23 10:46:43 +02003359 is_default_wep_key = !ctx->key_mapping_keys;
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07003360 else
Emmanuel Grumbachccc038a2008-05-15 13:54:09 +08003361 is_default_wep_key =
3362 (key->hw_key_idx == HW_KEY_DEFAULT);
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07003363 }
mabbas052c4b92007-10-25 17:15:43 +08003364
Zhu Yib481de92007-09-25 17:54:57 -07003365 switch (cmd) {
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07003366 case SET_KEY:
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07003367 if (is_default_wep_key)
Johannes Berg2995baf2010-08-23 10:46:42 +02003368 ret = iwl_set_default_wep_key(priv, vif_priv->ctx, key);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07003369 else
Johannes Berga194e322010-08-27 08:53:46 -07003370 ret = iwl_set_dynamic_key(priv, vif_priv->ctx,
3371 key, sta_id);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07003372
Tomas Winklere1623442009-01-27 14:27:56 -08003373 IWL_DEBUG_MAC80211(priv, "enable hwcrypto key\n");
Zhu Yib481de92007-09-25 17:54:57 -07003374 break;
3375 case DISABLE_KEY:
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07003376 if (is_default_wep_key)
Johannes Bergc10afb62010-08-23 10:46:43 +02003377 ret = iwl_remove_default_wep_key(priv, ctx, key);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07003378 else
Johannes Bergc10afb62010-08-23 10:46:43 +02003379 ret = iwl_remove_dynamic_key(priv, ctx, key, sta_id);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07003380
Tomas Winklere1623442009-01-27 14:27:56 -08003381 IWL_DEBUG_MAC80211(priv, "disable hwcrypto key\n");
Zhu Yib481de92007-09-25 17:54:57 -07003382 break;
3383 default:
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07003384 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07003385 }
3386
Johannes Berg72e15d72010-02-19 11:42:32 -08003387 mutex_unlock(&priv->mutex);
Tomas Winklere1623442009-01-27 14:27:56 -08003388 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07003389
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07003390 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07003391}
3392
Johannes Berg2295c662010-10-23 09:15:41 -07003393int iwlagn_mac_ampdu_action(struct ieee80211_hw *hw,
3394 struct ieee80211_vif *vif,
3395 enum ieee80211_ampdu_mlme_action action,
3396 struct ieee80211_sta *sta, u16 tid, u16 *ssn)
Tomas Winklerd783b062008-07-18 13:53:02 +08003397{
3398 struct iwl_priv *priv = hw->priv;
Johannes Berg4620fef2010-06-16 03:30:27 -07003399 int ret = -EINVAL;
Tomas Winklerd783b062008-07-18 13:53:02 +08003400
Tomas Winklere1623442009-01-27 14:27:56 -08003401 IWL_DEBUG_HT(priv, "A-MPDU action on addr %pM tid %d\n",
Johannes Berge1749612008-10-27 15:59:26 -07003402 sta->addr, tid);
Tomas Winklerd783b062008-07-18 13:53:02 +08003403
3404 if (!(priv->cfg->sku & IWL_SKU_N))
3405 return -EACCES;
3406
Johannes Berg4620fef2010-06-16 03:30:27 -07003407 mutex_lock(&priv->mutex);
3408
Tomas Winklerd783b062008-07-18 13:53:02 +08003409 switch (action) {
3410 case IEEE80211_AMPDU_RX_START:
Tomas Winklere1623442009-01-27 14:27:56 -08003411 IWL_DEBUG_HT(priv, "start Rx\n");
Johannes Berg4620fef2010-06-16 03:30:27 -07003412 ret = iwl_sta_rx_agg_start(priv, sta, tid, *ssn);
3413 break;
Tomas Winklerd783b062008-07-18 13:53:02 +08003414 case IEEE80211_AMPDU_RX_STOP:
Tomas Winklere1623442009-01-27 14:27:56 -08003415 IWL_DEBUG_HT(priv, "stop Rx\n");
Johannes Berg619753f2010-04-30 11:30:46 -07003416 ret = iwl_sta_rx_agg_stop(priv, sta, tid);
Wey-Yi Guy5c2207c2009-03-17 21:51:43 -07003417 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
Johannes Berg4620fef2010-06-16 03:30:27 -07003418 ret = 0;
3419 break;
Tomas Winklerd783b062008-07-18 13:53:02 +08003420 case IEEE80211_AMPDU_TX_START:
Tomas Winklere1623442009-01-27 14:27:56 -08003421 IWL_DEBUG_HT(priv, "start Tx\n");
Johannes Berg619753f2010-04-30 11:30:46 -07003422 ret = iwlagn_tx_agg_start(priv, vif, sta, tid, ssn);
Wey-Yi Guyd5a0ffa2010-03-04 13:38:59 -08003423 if (ret == 0) {
3424 priv->_agn.agg_tids_count++;
3425 IWL_DEBUG_HT(priv, "priv->_agn.agg_tids_count = %u\n",
3426 priv->_agn.agg_tids_count);
3427 }
Johannes Berg4620fef2010-06-16 03:30:27 -07003428 break;
Tomas Winklerd783b062008-07-18 13:53:02 +08003429 case IEEE80211_AMPDU_TX_STOP:
Tomas Winklere1623442009-01-27 14:27:56 -08003430 IWL_DEBUG_HT(priv, "stop Tx\n");
Johannes Berg619753f2010-04-30 11:30:46 -07003431 ret = iwlagn_tx_agg_stop(priv, vif, sta, tid);
Wey-Yi Guyd5a0ffa2010-03-04 13:38:59 -08003432 if ((ret == 0) && (priv->_agn.agg_tids_count > 0)) {
3433 priv->_agn.agg_tids_count--;
3434 IWL_DEBUG_HT(priv, "priv->_agn.agg_tids_count = %u\n",
3435 priv->_agn.agg_tids_count);
3436 }
Wey-Yi Guy5c2207c2009-03-17 21:51:43 -07003437 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
Johannes Berg4620fef2010-06-16 03:30:27 -07003438 ret = 0;
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -07003439 if (priv->cfg->ht_params &&
3440 priv->cfg->ht_params->use_rts_for_aggregation) {
Johannes Berg94597ab2010-08-09 10:57:02 -07003441 struct iwl_station_priv *sta_priv =
3442 (void *) sta->drv_priv;
3443 /*
3444 * switch off RTS/CTS if it was previously enabled
3445 */
3446
3447 sta_priv->lq_sta.lq.general_params.flags &=
3448 ~LINK_QUAL_FLAGS_SET_STA_TLC_RTS_MSK;
Johannes Berg7e6a5882010-08-23 10:46:46 +02003449 iwl_send_lq_cmd(priv, iwl_rxon_ctx_from_vif(vif),
3450 &sta_priv->lq_sta.lq, CMD_ASYNC, false);
Johannes Berg94597ab2010-08-09 10:57:02 -07003451 }
Johannes Berg4620fef2010-06-16 03:30:27 -07003452 break;
Wey-Yi Guyf0527972010-01-08 10:04:41 -08003453 case IEEE80211_AMPDU_TX_OPERATIONAL:
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -07003454 if (priv->cfg->ht_params &&
3455 priv->cfg->ht_params->use_rts_for_aggregation) {
Johannes Berg94597ab2010-08-09 10:57:02 -07003456 struct iwl_station_priv *sta_priv =
3457 (void *) sta->drv_priv;
3458
Wey-Yi Guycfecc6b2010-06-18 11:33:15 -07003459 /*
3460 * switch to RTS/CTS if it is the prefer protection
3461 * method for HT traffic
3462 */
Johannes Berg94597ab2010-08-09 10:57:02 -07003463
3464 sta_priv->lq_sta.lq.general_params.flags |=
3465 LINK_QUAL_FLAGS_SET_STA_TLC_RTS_MSK;
Johannes Berg7e6a5882010-08-23 10:46:46 +02003466 iwl_send_lq_cmd(priv, iwl_rxon_ctx_from_vif(vif),
3467 &sta_priv->lq_sta.lq, CMD_ASYNC, false);
Wey-Yi Guycfecc6b2010-06-18 11:33:15 -07003468 }
3469 ret = 0;
Tomas Winklerd783b062008-07-18 13:53:02 +08003470 break;
3471 }
Johannes Berg4620fef2010-06-16 03:30:27 -07003472 mutex_unlock(&priv->mutex);
3473
3474 return ret;
Tomas Winklerd783b062008-07-18 13:53:02 +08003475}
Tomas Winkler9f586712008-11-12 13:14:05 -08003476
Johannes Berg2295c662010-10-23 09:15:41 -07003477static void iwlagn_mac_sta_notify(struct ieee80211_hw *hw,
3478 struct ieee80211_vif *vif,
3479 enum sta_notify_cmd cmd,
3480 struct ieee80211_sta *sta)
Johannes Berg6ab10ff2009-11-13 11:56:37 -08003481{
3482 struct iwl_priv *priv = hw->priv;
3483 struct iwl_station_priv *sta_priv = (void *)sta->drv_priv;
3484 int sta_id;
3485
Johannes Berg6ab10ff2009-11-13 11:56:37 -08003486 switch (cmd) {
Johannes Berg6ab10ff2009-11-13 11:56:37 -08003487 case STA_NOTIFY_SLEEP:
3488 WARN_ON(!sta_priv->client);
3489 sta_priv->asleep = true;
3490 if (atomic_read(&sta_priv->pending_frames) > 0)
3491 ieee80211_sta_block_awake(hw, sta, true);
3492 break;
3493 case STA_NOTIFY_AWAKE:
3494 WARN_ON(!sta_priv->client);
Daniel Halperin49dcc812010-01-19 10:22:19 -08003495 if (!sta_priv->asleep)
3496 break;
Johannes Berg6ab10ff2009-11-13 11:56:37 -08003497 sta_priv->asleep = false;
Johannes Berg2a87c262010-04-30 11:30:45 -07003498 sta_id = iwl_sta_id(sta);
Johannes Berg6ab10ff2009-11-13 11:56:37 -08003499 if (sta_id != IWL_INVALID_STATION)
3500 iwl_sta_modify_ps_wake(priv, sta_id);
3501 break;
3502 default:
3503 break;
3504 }
3505}
3506
Johannes Berg2295c662010-10-23 09:15:41 -07003507int iwlagn_mac_sta_add(struct ieee80211_hw *hw,
3508 struct ieee80211_vif *vif,
3509 struct ieee80211_sta *sta)
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003510{
3511 struct iwl_priv *priv = hw->priv;
3512 struct iwl_station_priv *sta_priv = (void *)sta->drv_priv;
Johannes Berga194e322010-08-27 08:53:46 -07003513 struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv;
Johannes Bergeafdfbd32010-04-29 04:43:04 -07003514 bool is_ap = vif->type == NL80211_IFTYPE_STATION;
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003515 int ret;
3516 u8 sta_id;
3517
3518 IWL_DEBUG_INFO(priv, "received request to add station %pM\n",
3519 sta->addr);
Reinette Chatreda5ae1c2010-05-28 09:28:39 -07003520 mutex_lock(&priv->mutex);
3521 IWL_DEBUG_INFO(priv, "proceeding to add station %pM\n",
3522 sta->addr);
3523 sta_priv->common.sta_id = IWL_INVALID_STATION;
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003524
3525 atomic_set(&sta_priv->pending_frames, 0);
3526 if (vif->type == NL80211_IFTYPE_AP)
3527 sta_priv->client = true;
3528
Johannes Berga194e322010-08-27 08:53:46 -07003529 ret = iwl_add_station_common(priv, vif_priv->ctx, sta->addr,
Johannes Berg238d7812010-08-23 10:46:45 +02003530 is_ap, sta, &sta_id);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003531 if (ret) {
3532 IWL_ERR(priv, "Unable to add station %pM (%d)\n",
3533 sta->addr, ret);
3534 /* Should we return success if return code is EEXIST ? */
Reinette Chatreda5ae1c2010-05-28 09:28:39 -07003535 mutex_unlock(&priv->mutex);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003536 return ret;
3537 }
3538
Johannes Bergfd1af152010-04-30 11:30:43 -07003539 sta_priv->common.sta_id = sta_id;
3540
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003541 /* Initialize rate scaling */
Frans Pop91dd6c22010-03-24 14:19:58 -07003542 IWL_DEBUG_INFO(priv, "Initializing rate scaling for station %pM\n",
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003543 sta->addr);
3544 iwl_rs_rate_init(priv, sta, sta_id);
Reinette Chatreda5ae1c2010-05-28 09:28:39 -07003545 mutex_unlock(&priv->mutex);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003546
Johannes Bergfd1af152010-04-30 11:30:43 -07003547 return 0;
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003548}
3549
Johannes Berg2295c662010-10-23 09:15:41 -07003550void iwlagn_mac_channel_switch(struct ieee80211_hw *hw,
3551 struct ieee80211_channel_switch *ch_switch)
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003552{
3553 struct iwl_priv *priv = hw->priv;
3554 const struct iwl_channel_info *ch_info;
3555 struct ieee80211_conf *conf = &hw->conf;
Shanyu Zhaoaa2dc6b2010-07-28 13:40:39 -07003556 struct ieee80211_channel *channel = ch_switch->channel;
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003557 struct iwl_ht_config *ht_conf = &priv->current_ht_config;
Johannes Berg246ed352010-08-23 10:46:32 +02003558 /*
3559 * MULTI-FIXME
3560 * When we add support for multiple interfaces, we need to
3561 * revisit this. The channel switch command in the device
3562 * only affects the BSS context, but what does that really
3563 * mean? And what if we get a CSA on the second interface?
3564 * This needs a lot of work.
3565 */
3566 struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS];
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003567 u16 ch;
3568 unsigned long flags = 0;
3569
3570 IWL_DEBUG_MAC80211(priv, "enter\n");
3571
3572 if (iwl_is_rfkill(priv))
3573 goto out_exit;
3574
3575 if (test_bit(STATUS_EXIT_PENDING, &priv->status) ||
3576 test_bit(STATUS_SCANNING, &priv->status))
3577 goto out_exit;
3578
Johannes Berg246ed352010-08-23 10:46:32 +02003579 if (!iwl_is_associated_ctx(ctx))
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003580 goto out_exit;
3581
3582 /* channel switch in progress */
3583 if (priv->switch_rxon.switch_in_progress == true)
3584 goto out_exit;
3585
3586 mutex_lock(&priv->mutex);
3587 if (priv->cfg->ops->lib->set_channel_switch) {
3588
Shanyu Zhaoaa2dc6b2010-07-28 13:40:39 -07003589 ch = channel->hw_value;
Johannes Berg246ed352010-08-23 10:46:32 +02003590 if (le16_to_cpu(ctx->active.channel) != ch) {
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003591 ch_info = iwl_get_channel_info(priv,
Shanyu Zhaoaa2dc6b2010-07-28 13:40:39 -07003592 channel->band,
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003593 ch);
3594 if (!is_channel_valid(ch_info)) {
3595 IWL_DEBUG_MAC80211(priv, "invalid channel\n");
3596 goto out;
3597 }
3598 spin_lock_irqsave(&priv->lock, flags);
3599
3600 priv->current_ht_config.smps = conf->smps_mode;
3601
3602 /* Configure HT40 channels */
Johannes Berg7e6a5882010-08-23 10:46:46 +02003603 ctx->ht.enabled = conf_is_ht(conf);
3604 if (ctx->ht.enabled) {
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003605 if (conf_is_ht40_minus(conf)) {
Johannes Berg7e6a5882010-08-23 10:46:46 +02003606 ctx->ht.extension_chan_offset =
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003607 IEEE80211_HT_PARAM_CHA_SEC_BELOW;
Johannes Berg7e6a5882010-08-23 10:46:46 +02003608 ctx->ht.is_40mhz = true;
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003609 } else if (conf_is_ht40_plus(conf)) {
Johannes Berg7e6a5882010-08-23 10:46:46 +02003610 ctx->ht.extension_chan_offset =
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003611 IEEE80211_HT_PARAM_CHA_SEC_ABOVE;
Johannes Berg7e6a5882010-08-23 10:46:46 +02003612 ctx->ht.is_40mhz = true;
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003613 } else {
Johannes Berg7e6a5882010-08-23 10:46:46 +02003614 ctx->ht.extension_chan_offset =
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003615 IEEE80211_HT_PARAM_CHA_SEC_NONE;
Johannes Berg7e6a5882010-08-23 10:46:46 +02003616 ctx->ht.is_40mhz = false;
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003617 }
3618 } else
Johannes Berg7e6a5882010-08-23 10:46:46 +02003619 ctx->ht.is_40mhz = false;
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003620
Johannes Berg246ed352010-08-23 10:46:32 +02003621 if ((le16_to_cpu(ctx->staging.channel) != ch))
3622 ctx->staging.flags = 0;
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003623
Johannes Berg246ed352010-08-23 10:46:32 +02003624 iwl_set_rxon_channel(priv, channel, ctx);
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003625 iwl_set_rxon_ht(priv, ht_conf);
Johannes Berg246ed352010-08-23 10:46:32 +02003626 iwl_set_flags_for_band(priv, ctx, channel->band,
Johannes Berg8bd413e2010-08-23 10:46:40 +02003627 ctx->vif);
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003628 spin_unlock_irqrestore(&priv->lock, flags);
3629
3630 iwl_set_rate(priv);
3631 /*
3632 * at this point, staging_rxon has the
3633 * configuration for channel switch
3634 */
3635 if (priv->cfg->ops->lib->set_channel_switch(priv,
3636 ch_switch))
3637 priv->switch_rxon.switch_in_progress = false;
3638 }
3639 }
3640out:
3641 mutex_unlock(&priv->mutex);
3642out_exit:
3643 if (!priv->switch_rxon.switch_in_progress)
Johannes Berg8bd413e2010-08-23 10:46:40 +02003644 ieee80211_chswitch_done(ctx->vif, false);
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003645 IWL_DEBUG_MAC80211(priv, "leave\n");
3646}
3647
Johannes Berg2295c662010-10-23 09:15:41 -07003648void iwlagn_configure_filter(struct ieee80211_hw *hw,
3649 unsigned int changed_flags,
3650 unsigned int *total_flags,
3651 u64 multicast)
Johannes Berg8b8ab9d2010-08-17 11:24:01 +02003652{
3653 struct iwl_priv *priv = hw->priv;
3654 __le32 filter_or = 0, filter_nand = 0;
Johannes Berg246ed352010-08-23 10:46:32 +02003655 struct iwl_rxon_context *ctx;
Johannes Berg8b8ab9d2010-08-17 11:24:01 +02003656
3657#define CHK(test, flag) do { \
3658 if (*total_flags & (test)) \
3659 filter_or |= (flag); \
3660 else \
3661 filter_nand |= (flag); \
3662 } while (0)
3663
3664 IWL_DEBUG_MAC80211(priv, "Enter: changed: 0x%x, total: 0x%x\n",
3665 changed_flags, *total_flags);
3666
3667 CHK(FIF_OTHER_BSS | FIF_PROMISC_IN_BSS, RXON_FILTER_PROMISC_MSK);
3668 CHK(FIF_CONTROL, RXON_FILTER_CTL2HOST_MSK);
3669 CHK(FIF_BCN_PRBRESP_PROMISC, RXON_FILTER_BCON_AWARE_MSK);
3670
3671#undef CHK
3672
3673 mutex_lock(&priv->mutex);
3674
Johannes Berg246ed352010-08-23 10:46:32 +02003675 for_each_context(priv, ctx) {
3676 ctx->staging.filter_flags &= ~filter_nand;
3677 ctx->staging.filter_flags |= filter_or;
Stanislaw Gruszka749ff4ef2010-10-22 17:04:27 +02003678
3679 /*
3680 * Not committing directly because hardware can perform a scan,
3681 * but we'll eventually commit the filter flags change anyway.
3682 */
Johannes Berg246ed352010-08-23 10:46:32 +02003683 }
Johannes Berg8b8ab9d2010-08-17 11:24:01 +02003684
3685 mutex_unlock(&priv->mutex);
3686
3687 /*
3688 * Receiving all multicast frames is always enabled by the
3689 * default flags setup in iwl_connection_init_rx_config()
3690 * since we currently do not support programming multicast
3691 * filters into the device.
3692 */
3693 *total_flags &= FIF_OTHER_BSS | FIF_ALLMULTI | FIF_PROMISC_IN_BSS |
3694 FIF_BCN_PRBRESP_PROMISC | FIF_CONTROL;
3695}
3696
Johannes Berg2295c662010-10-23 09:15:41 -07003697void iwlagn_mac_flush(struct ieee80211_hw *hw, bool drop)
Wey-Yi Guy716c74b2010-06-24 13:22:36 -07003698{
3699 struct iwl_priv *priv = hw->priv;
3700
3701 mutex_lock(&priv->mutex);
3702 IWL_DEBUG_MAC80211(priv, "enter\n");
3703
3704 /* do not support "flush" */
3705 if (!priv->cfg->ops->lib->txfifo_flush)
3706 goto done;
3707
3708 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
3709 IWL_DEBUG_TX(priv, "Aborting flush due to device shutdown\n");
3710 goto done;
3711 }
3712 if (iwl_is_rfkill(priv)) {
3713 IWL_DEBUG_TX(priv, "Aborting flush due to RF Kill\n");
3714 goto done;
3715 }
3716
3717 /*
3718 * mac80211 will not push any more frames for transmit
3719 * until the flush is completed
3720 */
3721 if (drop) {
3722 IWL_DEBUG_MAC80211(priv, "send flush command\n");
3723 if (priv->cfg->ops->lib->txfifo_flush(priv, IWL_DROP_ALL)) {
3724 IWL_ERR(priv, "flush request fail\n");
3725 goto done;
3726 }
3727 }
3728 IWL_DEBUG_MAC80211(priv, "wait transmit/flush all frames\n");
3729 iwlagn_wait_tx_queue_empty(priv);
3730done:
3731 mutex_unlock(&priv->mutex);
3732 IWL_DEBUG_MAC80211(priv, "leave\n");
3733}
3734
Zhu Yib481de92007-09-25 17:54:57 -07003735/*****************************************************************************
3736 *
Zhu Yib481de92007-09-25 17:54:57 -07003737 * driver setup and teardown
3738 *
3739 *****************************************************************************/
3740
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08003741static void iwl_setup_deferred_work(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003742{
Reinette Chatred21050c2009-02-13 11:51:18 -08003743 priv->workqueue = create_singlethread_workqueue(DRV_NAME);
Zhu Yib481de92007-09-25 17:54:57 -07003744
3745 init_waitqueue_head(&priv->wait_command_queue);
3746
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003747 INIT_WORK(&priv->restart, iwl_bg_restart);
3748 INIT_WORK(&priv->rx_replenish, iwl_bg_rx_replenish);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003749 INIT_WORK(&priv->beacon_update, iwl_bg_beacon_update);
Emmanuel Grumbach16e727e2008-06-12 09:46:52 +08003750 INIT_WORK(&priv->run_time_calib_work, iwl_bg_run_time_calib_work);
Wey-Yi Guy65550632010-06-24 13:18:35 -07003751 INIT_WORK(&priv->tx_flush, iwl_bg_tx_flush);
Wey-Yi Guybee008b2010-08-23 07:57:04 -07003752 INIT_WORK(&priv->bt_full_concurrency, iwl_bg_bt_full_concurrency);
Wey-Yi Guyfbba9412010-08-23 07:57:10 -07003753 INIT_WORK(&priv->bt_runtime_config, iwl_bg_bt_runtime_config);
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08003754 INIT_DELAYED_WORK(&priv->init_alive_start, iwl_bg_init_alive_start);
3755 INIT_DELAYED_WORK(&priv->alive_start, iwl_bg_alive_start);
Tomas Winkler2a421b92008-06-12 09:47:10 +08003756
Tomas Winkler2a421b92008-06-12 09:47:10 +08003757 iwl_setup_scan_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003758
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08003759 if (priv->cfg->ops->lib->setup_deferred_work)
3760 priv->cfg->ops->lib->setup_deferred_work(priv);
3761
3762 init_timer(&priv->statistics_periodic);
3763 priv->statistics_periodic.data = (unsigned long)priv;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003764 priv->statistics_periodic.function = iwl_bg_statistics_periodic;
Zhu Yib481de92007-09-25 17:54:57 -07003765
Wey-Yi Guya9e1cb62009-12-10 14:37:26 -08003766 init_timer(&priv->ucode_trace);
3767 priv->ucode_trace.data = (unsigned long)priv;
3768 priv->ucode_trace.function = iwl_bg_ucode_trace;
3769
Wey-Yi Guyb74e31a2010-03-01 17:23:50 -08003770 if (priv->cfg->ops->lib->recover_from_tx_stall) {
3771 init_timer(&priv->monitor_recover);
3772 priv->monitor_recover.data = (unsigned long)priv;
3773 priv->monitor_recover.function =
3774 priv->cfg->ops->lib->recover_from_tx_stall;
3775 }
3776
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -07003777 if (!priv->cfg->base_params->use_isr_legacy)
Mohamed Abbasef850d72009-05-22 11:01:50 -07003778 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
3779 iwl_irq_tasklet, (unsigned long)priv);
3780 else
3781 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
3782 iwl_irq_tasklet_legacy, (unsigned long)priv);
Zhu Yib481de92007-09-25 17:54:57 -07003783}
3784
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08003785static void iwl_cancel_deferred_work(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003786{
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08003787 if (priv->cfg->ops->lib->cancel_deferred_work)
3788 priv->cfg->ops->lib->cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003789
Joonwoo Park3ae6a052007-11-29 10:43:16 +09003790 cancel_delayed_work_sync(&priv->init_alive_start);
Zhu Yib481de92007-09-25 17:54:57 -07003791 cancel_delayed_work(&priv->alive_start);
Wey-Yi Guy815e6292010-06-03 10:14:01 -07003792 cancel_work_sync(&priv->run_time_calib_work);
Zhu Yib481de92007-09-25 17:54:57 -07003793 cancel_work_sync(&priv->beacon_update);
Stanislaw Gruszkae7e16b92010-09-13 14:46:41 +02003794
3795 iwl_cancel_scan_deferred_work(priv);
3796
Wey-Yi Guybee008b2010-08-23 07:57:04 -07003797 cancel_work_sync(&priv->bt_full_concurrency);
Wey-Yi Guyfbba9412010-08-23 07:57:10 -07003798 cancel_work_sync(&priv->bt_runtime_config);
Stanislaw Gruszkae7e16b92010-09-13 14:46:41 +02003799
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08003800 del_timer_sync(&priv->statistics_periodic);
Wey-Yi Guya9e1cb62009-12-10 14:37:26 -08003801 del_timer_sync(&priv->ucode_trace);
Zhu Yib481de92007-09-25 17:54:57 -07003802}
3803
Reinette Chatre89f186a2009-10-30 14:36:11 -07003804static void iwl_init_hw_rates(struct iwl_priv *priv,
3805 struct ieee80211_rate *rates)
3806{
3807 int i;
3808
3809 for (i = 0; i < IWL_RATE_COUNT_LEGACY; i++) {
3810 rates[i].bitrate = iwl_rates[i].ieee * 5;
3811 rates[i].hw_value = i; /* Rate scaling will work on indexes */
3812 rates[i].hw_value_short = i;
3813 rates[i].flags = 0;
3814 if ((i >= IWL_FIRST_CCK_RATE) && (i <= IWL_LAST_CCK_RATE)) {
3815 /*
3816 * If CCK != 1M then set short preamble rate flag.
3817 */
3818 rates[i].flags |=
3819 (iwl_rates[i].plcp == IWL_RATE_1M_PLCP) ?
3820 0 : IEEE80211_RATE_SHORT_PREAMBLE;
3821 }
3822 }
3823}
3824
3825static int iwl_init_drv(struct iwl_priv *priv)
3826{
3827 int ret;
3828
Reinette Chatre89f186a2009-10-30 14:36:11 -07003829 spin_lock_init(&priv->sta_lock);
3830 spin_lock_init(&priv->hcmd_lock);
3831
3832 INIT_LIST_HEAD(&priv->free_frames);
3833
3834 mutex_init(&priv->mutex);
Reinette Chatred2dfe6d2010-02-18 22:03:04 -08003835 mutex_init(&priv->sync_cmd_mutex);
Reinette Chatre89f186a2009-10-30 14:36:11 -07003836
Reinette Chatre89f186a2009-10-30 14:36:11 -07003837 priv->ieee_channels = NULL;
3838 priv->ieee_rates = NULL;
3839 priv->band = IEEE80211_BAND_2GHZ;
3840
3841 priv->iw_mode = NL80211_IFTYPE_STATION;
Johannes Bergba37a3d2009-12-10 14:37:27 -08003842 priv->current_ht_config.smps = IEEE80211_SMPS_STATIC;
Wey-Yi Guya13d2762010-01-22 14:22:42 -08003843 priv->missed_beacon_threshold = IWL_MISSED_BEACON_THRESHOLD_DEF;
Wey-Yi Guyd5a0ffa2010-03-04 13:38:59 -08003844 priv->_agn.agg_tids_count = 0;
Reinette Chatre89f186a2009-10-30 14:36:11 -07003845
Wey-Yi Guy8a472da2010-02-18 22:03:06 -08003846 /* initialize force reset */
3847 priv->force_reset[IWL_RF_RESET].reset_duration =
3848 IWL_DELAY_NEXT_FORCE_RF_RESET;
3849 priv->force_reset[IWL_FW_RESET].reset_duration =
3850 IWL_DELAY_NEXT_FORCE_FW_RELOAD;
Reinette Chatre89f186a2009-10-30 14:36:11 -07003851
3852 /* Choose which receivers/antennas to use */
3853 if (priv->cfg->ops->hcmd->set_rxon_chain)
Johannes Berg246ed352010-08-23 10:46:32 +02003854 priv->cfg->ops->hcmd->set_rxon_chain(priv,
3855 &priv->contexts[IWL_RXON_CTX_BSS]);
Reinette Chatre89f186a2009-10-30 14:36:11 -07003856
3857 iwl_init_scan_params(priv);
3858
Wey-Yi Guy22bf59a2010-08-23 07:57:11 -07003859 /* init bt coex */
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -07003860 if (priv->cfg->bt_params &&
3861 priv->cfg->bt_params->advanced_bt_coexist) {
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -07003862 priv->kill_ack_mask = IWLAGN_BT_KILL_ACK_MASK_DEFAULT;
3863 priv->kill_cts_mask = IWLAGN_BT_KILL_CTS_MASK_DEFAULT;
3864 priv->bt_valid = IWLAGN_BT_ALL_VALID_MSK;
Wey-Yi Guy22bf59a2010-08-23 07:57:11 -07003865 priv->bt_on_thresh = BT_ON_THRESHOLD_DEF;
3866 priv->bt_duration = BT_DURATION_LIMIT_DEF;
3867 priv->dynamic_frag_thresh = BT_FRAG_THRESHOLD_DEF;
3868 priv->dynamic_agg_thresh = BT_AGG_THRESHOLD_DEF;
3869 }
3870
Reinette Chatre89f186a2009-10-30 14:36:11 -07003871 /* Set the tx_power_user_lmt to the lowest power level
3872 * this value will get overwritten by channel max power avg
3873 * from eeprom */
Wey-Yi Guyb744cb72010-03-23 11:37:59 -07003874 priv->tx_power_user_lmt = IWLAGN_TX_POWER_TARGET_POWER_MIN;
Stanislaw Gruszkaa25a66a2010-10-22 17:04:26 +02003875 priv->tx_power_next = IWLAGN_TX_POWER_TARGET_POWER_MIN;
Reinette Chatre89f186a2009-10-30 14:36:11 -07003876
3877 ret = iwl_init_channel_map(priv);
3878 if (ret) {
3879 IWL_ERR(priv, "initializing regulatory failed: %d\n", ret);
3880 goto err;
3881 }
3882
3883 ret = iwlcore_init_geos(priv);
3884 if (ret) {
3885 IWL_ERR(priv, "initializing geos failed: %d\n", ret);
3886 goto err_free_channel_map;
3887 }
3888 iwl_init_hw_rates(priv, priv->ieee_rates);
3889
3890 return 0;
3891
3892err_free_channel_map:
3893 iwl_free_channel_map(priv);
3894err:
3895 return ret;
3896}
3897
3898static void iwl_uninit_drv(struct iwl_priv *priv)
3899{
3900 iwl_calib_free_results(priv);
3901 iwlcore_free_geos(priv);
3902 iwl_free_channel_map(priv);
Johannes Berg811ecc92010-04-06 04:12:41 -07003903 kfree(priv->scan_cmd);
Reinette Chatre89f186a2009-10-30 14:36:11 -07003904}
3905
Johannes Bergdc21b542010-10-23 09:15:39 -07003906struct ieee80211_ops iwlagn_hw_ops = {
Johannes Berg2295c662010-10-23 09:15:41 -07003907 .tx = iwlagn_mac_tx,
3908 .start = iwlagn_mac_start,
3909 .stop = iwlagn_mac_stop,
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003910 .add_interface = iwl_mac_add_interface,
3911 .remove_interface = iwl_mac_remove_interface,
Johannes Berg2295c662010-10-23 09:15:41 -07003912 .config = iwlagn_mac_config,
Johannes Berg8b8ab9d2010-08-17 11:24:01 +02003913 .configure_filter = iwlagn_configure_filter,
Johannes Berg2295c662010-10-23 09:15:41 -07003914 .set_key = iwlagn_mac_set_key,
3915 .update_tkip_key = iwlagn_mac_update_tkip_key,
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003916 .conf_tx = iwl_mac_conf_tx,
Johannes Berg2295c662010-10-23 09:15:41 -07003917 .bss_info_changed = iwlagn_bss_info_changed,
3918 .ampdu_action = iwlagn_mac_ampdu_action,
Johannes Berg6ab10ff2009-11-13 11:56:37 -08003919 .hw_scan = iwl_mac_hw_scan,
Johannes Berg2295c662010-10-23 09:15:41 -07003920 .sta_notify = iwlagn_mac_sta_notify,
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003921 .sta_add = iwlagn_mac_sta_add,
3922 .sta_remove = iwl_mac_sta_remove,
Johannes Berg2295c662010-10-23 09:15:41 -07003923 .channel_switch = iwlagn_mac_channel_switch,
3924 .flush = iwlagn_mac_flush,
Johannes Berga85d7cc2010-07-31 08:34:10 -07003925 .tx_last_beacon = iwl_mac_tx_last_beacon,
Zhu Yib481de92007-09-25 17:54:57 -07003926};
3927
Wey-Yi Guy3867fe02010-07-31 08:34:05 -07003928static void iwl_hw_detect(struct iwl_priv *priv)
3929{
3930 priv->hw_rev = _iwl_read32(priv, CSR_HW_REV);
3931 priv->hw_wa_rev = _iwl_read32(priv, CSR_HW_REV_WA_REG);
3932 pci_read_config_byte(priv->pci_dev, PCI_REVISION_ID, &priv->rev_id);
Wey-Yi Guy49ded762010-07-31 08:34:06 -07003933 IWL_DEBUG_INFO(priv, "HW Revision ID = 0x%X\n", priv->rev_id);
Wey-Yi Guy3867fe02010-07-31 08:34:05 -07003934}
3935
Wey-Yi Guy07d4f1a2010-07-31 08:34:08 -07003936static int iwl_set_hw_params(struct iwl_priv *priv)
3937{
3938 priv->hw_params.max_rxq_size = RX_QUEUE_SIZE;
3939 priv->hw_params.max_rxq_log = RX_QUEUE_SIZE_LOG;
3940 if (priv->cfg->mod_params->amsdu_size_8K)
3941 priv->hw_params.rx_page_order = get_order(IWL_RX_BUF_SIZE_8K);
3942 else
3943 priv->hw_params.rx_page_order = get_order(IWL_RX_BUF_SIZE_4K);
3944
3945 priv->hw_params.max_beacon_itrvl = IWL_MAX_UCODE_BEACON_INTERVAL;
3946
3947 if (priv->cfg->mod_params->disable_11n)
3948 priv->cfg->sku &= ~IWL_SKU_N;
3949
3950 /* Device-specific setup */
3951 return priv->cfg->ops->lib->set_hw_params(priv);
3952}
3953
Johannes Berge72f3682010-08-23 10:46:51 +02003954static const u8 iwlagn_bss_ac_to_fifo[] = {
3955 IWL_TX_FIFO_VO,
3956 IWL_TX_FIFO_VI,
3957 IWL_TX_FIFO_BE,
3958 IWL_TX_FIFO_BK,
3959};
3960
3961static const u8 iwlagn_bss_ac_to_queue[] = {
3962 0, 1, 2, 3,
3963};
3964
3965static const u8 iwlagn_pan_ac_to_fifo[] = {
3966 IWL_TX_FIFO_VO_IPAN,
3967 IWL_TX_FIFO_VI_IPAN,
3968 IWL_TX_FIFO_BE_IPAN,
3969 IWL_TX_FIFO_BK_IPAN,
3970};
3971
3972static const u8 iwlagn_pan_ac_to_queue[] = {
3973 7, 6, 5, 4,
3974};
3975
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003976static int iwl_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
Zhu Yib481de92007-09-25 17:54:57 -07003977{
Johannes Berg246ed352010-08-23 10:46:32 +02003978 int err = 0, i;
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003979 struct iwl_priv *priv;
Zhu Yib481de92007-09-25 17:54:57 -07003980 struct ieee80211_hw *hw;
Tomas Winkler82b9a122008-03-04 18:09:30 -08003981 struct iwl_cfg *cfg = (struct iwl_cfg *)(ent->driver_data);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003982 unsigned long flags;
Wey-Yi Guyc6fa17e2010-07-15 05:58:30 -07003983 u16 pci_cmd, num_mac;
Zhu Yib481de92007-09-25 17:54:57 -07003984
Assaf Krauss316c30d2008-03-14 10:38:46 -07003985 /************************
3986 * 1. Allocating HW data
3987 ************************/
3988
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003989 /* Disabling hardware scan means that mac80211 will perform scans
3990 * "the hard way", rather than using device's scan. */
Assaf Krauss1ea87392008-03-18 14:57:50 -07003991 if (cfg->mod_params->disable_hw_scan) {
Wey-Yi Guy72645ef2010-10-06 07:42:43 -07003992 dev_printk(KERN_DEBUG, &(pdev->dev),
3993 "sw scan support is deprecated\n");
Johannes Bergdc21b542010-10-23 09:15:39 -07003994 iwlagn_hw_ops.hw_scan = NULL;
Johannes Berg2295c662010-10-23 09:15:41 -07003995#ifdef CONFIG_IWL4965
3996 iwl4965_hw_ops.hw_scan = NULL;
3997#endif
Zhu Yib481de92007-09-25 17:54:57 -07003998 }
3999
Johannes Bergdc21b542010-10-23 09:15:39 -07004000 hw = iwl_alloc_all(cfg);
Assaf Krauss1d0a0822008-03-14 10:38:48 -07004001 if (!hw) {
Zhu Yib481de92007-09-25 17:54:57 -07004002 err = -ENOMEM;
4003 goto out;
4004 }
Assaf Krauss1d0a0822008-03-14 10:38:48 -07004005 priv = hw->priv;
4006 /* At this point both hw and priv are allocated. */
4007
Johannes Berg246ed352010-08-23 10:46:32 +02004008 /*
4009 * The default context is always valid,
4010 * more may be discovered when firmware
4011 * is loaded.
4012 */
4013 priv->valid_contexts = BIT(IWL_RXON_CTX_BSS);
4014
4015 for (i = 0; i < NUM_IWL_RXON_CTX; i++)
4016 priv->contexts[i].ctxid = i;
4017
Johannes Berg763cc3b2010-09-03 06:32:21 -07004018 priv->contexts[IWL_RXON_CTX_BSS].always_active = true;
4019 priv->contexts[IWL_RXON_CTX_BSS].is_active = true;
Johannes Berg8f2d3d22010-08-23 10:46:37 +02004020 priv->contexts[IWL_RXON_CTX_BSS].rxon_cmd = REPLY_RXON;
4021 priv->contexts[IWL_RXON_CTX_BSS].rxon_timing_cmd = REPLY_RXON_TIMING;
4022 priv->contexts[IWL_RXON_CTX_BSS].rxon_assoc_cmd = REPLY_RXON_ASSOC;
Johannes Berg8dfdb9d2010-08-23 10:46:38 +02004023 priv->contexts[IWL_RXON_CTX_BSS].qos_cmd = REPLY_QOS_PARAM;
Johannes Berg2995baf2010-08-23 10:46:42 +02004024 priv->contexts[IWL_RXON_CTX_BSS].ap_sta_id = IWL_AP_ID;
Johannes Bergc10afb62010-08-23 10:46:43 +02004025 priv->contexts[IWL_RXON_CTX_BSS].wep_key_cmd = REPLY_WEPKEY;
Johannes Berge72f3682010-08-23 10:46:51 +02004026 priv->contexts[IWL_RXON_CTX_BSS].ac_to_fifo = iwlagn_bss_ac_to_fifo;
4027 priv->contexts[IWL_RXON_CTX_BSS].ac_to_queue = iwlagn_bss_ac_to_queue;
Johannes Bergd0fe4782010-08-23 10:46:58 +02004028 priv->contexts[IWL_RXON_CTX_BSS].exclusive_interface_modes =
4029 BIT(NL80211_IFTYPE_ADHOC);
4030 priv->contexts[IWL_RXON_CTX_BSS].interface_modes =
4031 BIT(NL80211_IFTYPE_STATION);
Johannes Berg2295c662010-10-23 09:15:41 -07004032 priv->contexts[IWL_RXON_CTX_BSS].ap_devtype = RXON_DEV_TYPE_AP;
Johannes Bergd0fe4782010-08-23 10:46:58 +02004033 priv->contexts[IWL_RXON_CTX_BSS].ibss_devtype = RXON_DEV_TYPE_IBSS;
4034 priv->contexts[IWL_RXON_CTX_BSS].station_devtype = RXON_DEV_TYPE_ESS;
4035 priv->contexts[IWL_RXON_CTX_BSS].unused_devtype = RXON_DEV_TYPE_ESS;
Johannes Bergece9c4e2010-08-23 10:46:49 +02004036
4037 priv->contexts[IWL_RXON_CTX_PAN].rxon_cmd = REPLY_WIPAN_RXON;
4038 priv->contexts[IWL_RXON_CTX_PAN].rxon_timing_cmd = REPLY_WIPAN_RXON_TIMING;
4039 priv->contexts[IWL_RXON_CTX_PAN].rxon_assoc_cmd = REPLY_WIPAN_RXON_ASSOC;
4040 priv->contexts[IWL_RXON_CTX_PAN].qos_cmd = REPLY_WIPAN_QOS_PARAM;
4041 priv->contexts[IWL_RXON_CTX_PAN].ap_sta_id = IWL_AP_ID_PAN;
4042 priv->contexts[IWL_RXON_CTX_PAN].wep_key_cmd = REPLY_WIPAN_WEPKEY;
4043 priv->contexts[IWL_RXON_CTX_PAN].bcast_sta_id = IWLAGN_PAN_BCAST_ID;
4044 priv->contexts[IWL_RXON_CTX_PAN].station_flags = STA_FLG_PAN_STATION;
Johannes Berge72f3682010-08-23 10:46:51 +02004045 priv->contexts[IWL_RXON_CTX_PAN].ac_to_fifo = iwlagn_pan_ac_to_fifo;
4046 priv->contexts[IWL_RXON_CTX_PAN].ac_to_queue = iwlagn_pan_ac_to_queue;
4047 priv->contexts[IWL_RXON_CTX_PAN].mcast_queue = IWL_IPAN_MCAST_QUEUE;
Johannes Bergd0fe4782010-08-23 10:46:58 +02004048 priv->contexts[IWL_RXON_CTX_PAN].interface_modes =
4049 BIT(NL80211_IFTYPE_STATION) | BIT(NL80211_IFTYPE_AP);
4050 priv->contexts[IWL_RXON_CTX_PAN].ap_devtype = RXON_DEV_TYPE_CP;
4051 priv->contexts[IWL_RXON_CTX_PAN].station_devtype = RXON_DEV_TYPE_2STA;
4052 priv->contexts[IWL_RXON_CTX_PAN].unused_devtype = RXON_DEV_TYPE_P2P;
Johannes Bergece9c4e2010-08-23 10:46:49 +02004053
4054 BUILD_BUG_ON(NUM_IWL_RXON_CTX != 2);
Johannes Berg8f2d3d22010-08-23 10:46:37 +02004055
Zhu Yib481de92007-09-25 17:54:57 -07004056 SET_IEEE80211_DEV(hw, &pdev->dev);
4057
Tomas Winklere1623442009-01-27 14:27:56 -08004058 IWL_DEBUG_INFO(priv, "*** LOAD DRIVER ***\n");
Tomas Winkler82b9a122008-03-04 18:09:30 -08004059 priv->cfg = cfg;
Zhu Yib481de92007-09-25 17:54:57 -07004060 priv->pci_dev = pdev;
Mohamed Abbas40cefda2009-05-22 11:01:52 -07004061 priv->inta_mask = CSR_INI_SET_MASK;
Assaf Krauss316c30d2008-03-14 10:38:46 -07004062
Wey-Yi Guybee008b2010-08-23 07:57:04 -07004063 /* is antenna coupling more than 35dB ? */
4064 priv->bt_ant_couple_ok =
4065 (iwlagn_ant_coupling > IWL_BT_ANTENNA_COUPLING_THRESHOLD) ?
4066 true : false;
4067
Wey-Yi Guyf37837c2010-08-23 07:57:12 -07004068 /* enable/disable bt channel announcement */
4069 priv->bt_ch_announce = iwlagn_bt_ch_announce;
4070
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07004071 if (iwl_alloc_traffic_mem(priv))
4072 IWL_ERR(priv, "Not enough memory to generate traffic log\n");
Zhu Yib481de92007-09-25 17:54:57 -07004073
Assaf Krauss316c30d2008-03-14 10:38:46 -07004074 /**************************
4075 * 2. Initializing PCI bus
4076 **************************/
John W. Linville1a7123c2010-08-05 14:39:31 -04004077 pci_disable_link_state(pdev, PCIE_LINK_STATE_L0S | PCIE_LINK_STATE_L1 |
4078 PCIE_LINK_STATE_CLKPM);
4079
Assaf Krauss316c30d2008-03-14 10:38:46 -07004080 if (pci_enable_device(pdev)) {
4081 err = -ENODEV;
4082 goto out_ieee80211_free_hw;
4083 }
4084
4085 pci_set_master(pdev);
4086
Winkler, Tomas093d874c2008-09-26 15:09:34 +08004087 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(36));
Assaf Krauss316c30d2008-03-14 10:38:46 -07004088 if (!err)
Winkler, Tomas093d874c2008-09-26 15:09:34 +08004089 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(36));
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07004090 if (err) {
Winkler, Tomas093d874c2008-09-26 15:09:34 +08004091 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07004092 if (!err)
Winkler, Tomas093d874c2008-09-26 15:09:34 +08004093 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07004094 /* both attempts failed: */
Assaf Krauss316c30d2008-03-14 10:38:46 -07004095 if (err) {
Tomas Winkler978785a2008-12-19 10:37:31 +08004096 IWL_WARN(priv, "No suitable DMA available.\n");
Assaf Krauss316c30d2008-03-14 10:38:46 -07004097 goto out_pci_disable_device;
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07004098 }
Assaf Krauss316c30d2008-03-14 10:38:46 -07004099 }
4100
4101 err = pci_request_regions(pdev, DRV_NAME);
4102 if (err)
4103 goto out_pci_disable_device;
4104
4105 pci_set_drvdata(pdev, priv);
4106
Assaf Krauss316c30d2008-03-14 10:38:46 -07004107
4108 /***********************
4109 * 3. Read REV register
4110 ***********************/
4111 priv->hw_base = pci_iomap(pdev, 0, 0);
4112 if (!priv->hw_base) {
4113 err = -ENODEV;
4114 goto out_pci_release_regions;
4115 }
4116
Tomas Winklere1623442009-01-27 14:27:56 -08004117 IWL_DEBUG_INFO(priv, "pci_resource_len = 0x%08llx\n",
Assaf Krauss316c30d2008-03-14 10:38:46 -07004118 (unsigned long long) pci_resource_len(pdev, 0));
Tomas Winklere1623442009-01-27 14:27:56 -08004119 IWL_DEBUG_INFO(priv, "pci_resource_base = %p\n", priv->hw_base);
Assaf Krauss316c30d2008-03-14 10:38:46 -07004120
Reinette Chatre731a29b2009-12-14 14:12:11 -08004121 /* these spin locks will be used in apm_ops.init and EEPROM access
Mohamed Abbasa8b50a02009-05-22 11:01:47 -07004122 * we should init now
4123 */
4124 spin_lock_init(&priv->reg_lock);
Reinette Chatre731a29b2009-12-14 14:12:11 -08004125 spin_lock_init(&priv->lock);
Reinette Chatre4843b5a2010-02-03 09:38:59 -08004126
4127 /*
4128 * stop and reset the on-board processor just in case it is in a
4129 * strange state ... like being left stranded by a primary kernel
4130 * and this is now the kdump kernel trying to start up
4131 */
4132 iwl_write32(priv, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET);
4133
Tomas Winklerb661c812008-04-23 17:14:54 -07004134 iwl_hw_detect(priv);
Shanyu Zhaoc11362c2010-03-05 17:05:20 -08004135 IWL_INFO(priv, "Detected %s, REV=0x%X\n",
Tomas Winklerb661c812008-04-23 17:14:54 -07004136 priv->cfg->name, priv->hw_rev);
Assaf Krauss316c30d2008-03-14 10:38:46 -07004137
Tomas Winklere7b63582008-09-03 11:26:49 +08004138 /* We disable the RETRY_TIMEOUT register (0x41) to keep
4139 * PCI Tx retries from interfering with C3 CPU state */
4140 pci_write_config_byte(pdev, PCI_CFG_RETRY_TIMEOUT, 0x00);
4141
Mohamed Abbas086ed112009-05-22 11:01:54 -07004142 iwl_prepare_card_hw(priv);
4143 if (!priv->hw_ready) {
4144 IWL_WARN(priv, "Failed, HW not ready\n");
4145 goto out_iounmap;
4146 }
4147
Assaf Krauss316c30d2008-03-14 10:38:46 -07004148 /*****************
4149 * 4. Read EEPROM
4150 *****************/
Assaf Krauss316c30d2008-03-14 10:38:46 -07004151 /* Read the EEPROM */
4152 err = iwl_eeprom_init(priv);
4153 if (err) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08004154 IWL_ERR(priv, "Unable to init EEPROM\n");
Assaf Krauss316c30d2008-03-14 10:38:46 -07004155 goto out_iounmap;
4156 }
Tomas Winkler8614f362008-04-23 17:14:55 -07004157 err = iwl_eeprom_check_version(priv);
4158 if (err)
Reinette Chatrec8f16132009-02-27 16:21:22 -08004159 goto out_free_eeprom;
Tomas Winkler8614f362008-04-23 17:14:55 -07004160
Ron Rindjunsky02883012008-05-15 13:53:53 +08004161 /* extract MAC Address */
Wey-Yi Guyc6fa17e2010-07-15 05:58:30 -07004162 iwl_eeprom_get_mac(priv, priv->addresses[0].addr);
4163 IWL_DEBUG_INFO(priv, "MAC address: %pM\n", priv->addresses[0].addr);
4164 priv->hw->wiphy->addresses = priv->addresses;
4165 priv->hw->wiphy->n_addresses = 1;
4166 num_mac = iwl_eeprom_query16(priv, EEPROM_NUM_MAC_ADDRESS);
4167 if (num_mac > 1) {
4168 memcpy(priv->addresses[1].addr, priv->addresses[0].addr,
4169 ETH_ALEN);
4170 priv->addresses[1].addr[5]++;
4171 priv->hw->wiphy->n_addresses++;
4172 }
Assaf Krauss316c30d2008-03-14 10:38:46 -07004173
4174 /************************
4175 * 5. Setup HW constants
4176 ************************/
Ron Rindjunskyda154e302008-06-30 17:23:20 +08004177 if (iwl_set_hw_params(priv)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08004178 IWL_ERR(priv, "failed to set hw parameters\n");
Tomas Winkler073d3f52008-04-21 15:41:52 -07004179 goto out_free_eeprom;
Assaf Krauss316c30d2008-03-14 10:38:46 -07004180 }
4181
4182 /*******************
Tomas Winkler6ba87952008-05-15 13:54:17 +08004183 * 6. Setup priv
Assaf Krauss316c30d2008-03-14 10:38:46 -07004184 *******************/
Zhu Yib481de92007-09-25 17:54:57 -07004185
Tomas Winkler6ba87952008-05-15 13:54:17 +08004186 err = iwl_init_drv(priv);
Assaf Kraussbf85ea42008-03-14 10:38:49 -07004187 if (err)
Ron Rindjunsky399f4902008-04-23 17:14:56 -07004188 goto out_free_eeprom;
Assaf Kraussbf85ea42008-03-14 10:38:49 -07004189 /* At this point both hw and priv are initialized. */
Assaf Krauss316c30d2008-03-14 10:38:46 -07004190
Assaf Krauss316c30d2008-03-14 10:38:46 -07004191 /********************
Abhijeet Kolekar09f9bf72009-04-20 14:37:03 -07004192 * 7. Setup services
Assaf Krauss316c30d2008-03-14 10:38:46 -07004193 ********************/
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004194 spin_lock_irqsave(&priv->lock, flags);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004195 iwl_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004196 spin_unlock_irqrestore(&priv->lock, flags);
Assaf Krauss316c30d2008-03-14 10:38:46 -07004197
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01004198 pci_enable_msi(priv->pci_dev);
4199
Mohamed Abbasef850d72009-05-22 11:01:50 -07004200 iwl_alloc_isr_ict(priv);
4201 err = request_irq(priv->pci_dev->irq, priv->cfg->ops->lib->isr,
4202 IRQF_SHARED, DRV_NAME, priv);
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01004203 if (err) {
4204 IWL_ERR(priv, "Error allocating IRQ %d\n", priv->pci_dev->irq);
4205 goto out_disable_msi;
4206 }
Assaf Krauss316c30d2008-03-14 10:38:46 -07004207
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08004208 iwl_setup_deferred_work(priv);
Emmanuel Grumbach653fa4a2008-06-30 17:23:11 +08004209 iwl_setup_rx_handlers(priv);
Assaf Krauss316c30d2008-03-14 10:38:46 -07004210
Johannes Berg158bea02010-01-22 14:22:53 -08004211 /*********************************************
4212 * 8. Enable interrupts and read RFKILL state
4213 *********************************************/
Tomas Winkler6ba87952008-05-15 13:54:17 +08004214
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01004215 /* enable interrupts if needed: hw bug w/a */
4216 pci_read_config_word(priv->pci_dev, PCI_COMMAND, &pci_cmd);
4217 if (pci_cmd & PCI_COMMAND_INTX_DISABLE) {
4218 pci_cmd &= ~PCI_COMMAND_INTX_DISABLE;
4219 pci_write_config_word(priv->pci_dev, PCI_COMMAND, pci_cmd);
4220 }
4221
4222 iwl_enable_interrupts(priv);
4223
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01004224 /* If platform's RF_KILL switch is NOT set to KILL */
4225 if (iwl_read32(priv, CSR_GP_CNTRL) & CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
4226 clear_bit(STATUS_RF_KILL_HW, &priv->status);
4227 else
4228 set_bit(STATUS_RF_KILL_HW, &priv->status);
Tomas Winkler6ba87952008-05-15 13:54:17 +08004229
Johannes Berga60e77e2009-06-04 18:26:06 +02004230 wiphy_rfkill_set_hw_state(priv->hw->wiphy,
4231 test_bit(STATUS_RF_KILL_HW, &priv->status));
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01004232
Emmanuel Grumbach58d0f362008-06-12 09:47:19 +08004233 iwl_power_initialize(priv);
Wey-Yi Guy39b73fb12009-07-24 11:13:02 -07004234 iwl_tt_initialize(priv);
Johannes Berg158bea02010-01-22 14:22:53 -08004235
Reinette Chatrea15707d2010-05-10 15:08:11 -07004236 init_completion(&priv->_agn.firmware_loading_complete);
Johannes Berg562db532010-04-29 07:41:53 -07004237
Johannes Bergb08dfd02010-01-29 11:54:56 -08004238 err = iwl_request_firmware(priv, true);
Johannes Berg158bea02010-01-22 14:22:53 -08004239 if (err)
Emmanuel Grumbach7d476182010-05-23 00:14:08 -07004240 goto out_destroy_workqueue;
Johannes Berg158bea02010-01-22 14:22:53 -08004241
Zhu Yib481de92007-09-25 17:54:57 -07004242 return 0;
4243
Emmanuel Grumbach7d476182010-05-23 00:14:08 -07004244 out_destroy_workqueue:
Reinette Chatrec8f16132009-02-27 16:21:22 -08004245 destroy_workqueue(priv->workqueue);
4246 priv->workqueue = NULL;
Helmut Schaa795cc0a2009-02-12 18:51:03 +01004247 free_irq(priv->pci_dev->irq, priv);
Mohamed Abbasef850d72009-05-22 11:01:50 -07004248 iwl_free_isr_ict(priv);
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01004249 out_disable_msi:
4250 pci_disable_msi(priv->pci_dev);
Tomas Winkler6ba87952008-05-15 13:54:17 +08004251 iwl_uninit_drv(priv);
Tomas Winkler073d3f52008-04-21 15:41:52 -07004252 out_free_eeprom:
4253 iwl_eeprom_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004254 out_iounmap:
4255 pci_iounmap(pdev, priv->hw_base);
4256 out_pci_release_regions:
Assaf Krauss316c30d2008-03-14 10:38:46 -07004257 pci_set_drvdata(pdev, NULL);
Reinette Chatre623d5632009-03-03 11:37:04 -08004258 pci_release_regions(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07004259 out_pci_disable_device:
4260 pci_disable_device(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07004261 out_ieee80211_free_hw:
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07004262 iwl_free_traffic_mem(priv);
Wey-Yi Guyd7c76f42009-10-09 13:20:17 -07004263 ieee80211_free_hw(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07004264 out:
4265 return err;
4266}
4267
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004268static void __devexit iwl_pci_remove(struct pci_dev *pdev)
Zhu Yib481de92007-09-25 17:54:57 -07004269{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004270 struct iwl_priv *priv = pci_get_drvdata(pdev);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004271 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07004272
4273 if (!priv)
4274 return;
4275
Reinette Chatrea15707d2010-05-10 15:08:11 -07004276 wait_for_completion(&priv->_agn.firmware_loading_complete);
Johannes Berg562db532010-04-29 07:41:53 -07004277
Tomas Winklere1623442009-01-27 14:27:56 -08004278 IWL_DEBUG_INFO(priv, "*** UNLOAD DRIVER ***\n");
Zhu Yib481de92007-09-25 17:54:57 -07004279
Emmanuel Grumbach67249622008-05-29 16:35:26 +08004280 iwl_dbgfs_unregister(priv);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004281 sysfs_remove_group(&pdev->dev.kobj, &iwl_attribute_group);
Emmanuel Grumbach67249622008-05-29 16:35:26 +08004282
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004283 /* ieee80211_unregister_hw call wil cause iwl_mac_stop to
4284 * to be called and iwl_down since we are removing the device
Gregory Greenman0b124c32008-09-03 11:18:50 +08004285 * we need to set STATUS_EXIT_PENDING bit.
4286 */
4287 set_bit(STATUS_EXIT_PENDING, &priv->status);
Ron Rindjunskyc4f55232008-03-28 16:21:10 -07004288 if (priv->mac80211_registered) {
4289 ieee80211_unregister_hw(priv->hw);
4290 priv->mac80211_registered = 0;
Gregory Greenman0b124c32008-09-03 11:18:50 +08004291 } else {
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004292 iwl_down(priv);
Ron Rindjunskyc4f55232008-03-28 16:21:10 -07004293 }
4294
Ben Cahillc166b252009-10-23 13:42:35 -07004295 /*
4296 * Make sure device is reset to low power before unloading driver.
4297 * This may be redundant with iwl_down(), but there are paths to
4298 * run iwl_down() without calling apm_ops.stop(), and there are
4299 * paths to avoid running iwl_down() at all before leaving driver.
4300 * This (inexpensive) call *makes sure* device is reset.
4301 */
Johannes Berg14e8e4a2010-09-22 18:02:10 +02004302 iwl_apm_stop(priv);
Ben Cahillc166b252009-10-23 13:42:35 -07004303
Wey-Yi Guy39b73fb12009-07-24 11:13:02 -07004304 iwl_tt_exit(priv);
4305
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004306 /* make sure we flush any pending irq or
4307 * tasklet for the driver
4308 */
4309 spin_lock_irqsave(&priv->lock, flags);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004310 iwl_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004311 spin_unlock_irqrestore(&priv->lock, flags);
4312
4313 iwl_synchronize_irq(priv);
4314
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004315 iwl_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004316
4317 if (priv->rxq.bd)
Wey-Yi Guy54b81552010-03-17 13:34:35 -07004318 iwlagn_rx_queue_free(priv, &priv->rxq);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07004319 iwlagn_hw_txq_ctx_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004320
Tomas Winkler073d3f52008-04-21 15:41:52 -07004321 iwl_eeprom_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004322
Zhu Yib481de92007-09-25 17:54:57 -07004323
Mohamed Abbas948c1712007-10-25 17:15:45 +08004324 /*netif_stop_queue(dev); */
4325 flush_workqueue(priv->workqueue);
4326
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004327 /* ieee80211_unregister_hw calls iwl_mac_stop, which flushes
Zhu Yib481de92007-09-25 17:54:57 -07004328 * priv->workqueue... so we can't take down the workqueue
4329 * until now... */
4330 destroy_workqueue(priv->workqueue);
4331 priv->workqueue = NULL;
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07004332 iwl_free_traffic_mem(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004333
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01004334 free_irq(priv->pci_dev->irq, priv);
4335 pci_disable_msi(priv->pci_dev);
Zhu Yib481de92007-09-25 17:54:57 -07004336 pci_iounmap(pdev, priv->hw_base);
4337 pci_release_regions(pdev);
4338 pci_disable_device(pdev);
4339 pci_set_drvdata(pdev, NULL);
4340
Tomas Winkler6ba87952008-05-15 13:54:17 +08004341 iwl_uninit_drv(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004342
Mohamed Abbasef850d72009-05-22 11:01:50 -07004343 iwl_free_isr_ict(priv);
4344
Johannes Berg77834542010-10-04 05:50:36 -07004345 dev_kfree_skb(priv->beacon_skb);
Zhu Yib481de92007-09-25 17:54:57 -07004346
4347 ieee80211_free_hw(priv->hw);
4348}
4349
Zhu Yib481de92007-09-25 17:54:57 -07004350
4351/*****************************************************************************
4352 *
4353 * driver and module entry point
4354 *
4355 *****************************************************************************/
4356
Ron Rindjunskyfed90172008-04-15 16:01:41 -07004357/* Hardware specific file defines the PCI IDs table for that hardware module */
Alexey Dobriyana3aa1882010-01-07 11:58:11 +00004358static DEFINE_PCI_DEVICE_TABLE(iwl_hw_card_ids) = {
Tomas Winkler4fc22b22008-07-21 18:54:42 +03004359#ifdef CONFIG_IWL4965
Ron Rindjunskyfed90172008-04-15 16:01:41 -07004360 {IWL_PCI_DEVICE(0x4229, PCI_ANY_ID, iwl4965_agn_cfg)},
4361 {IWL_PCI_DEVICE(0x4230, PCI_ANY_ID, iwl4965_agn_cfg)},
Tomas Winkler4fc22b22008-07-21 18:54:42 +03004362#endif /* CONFIG_IWL4965 */
Tomas Winkler5a6a2562008-04-24 11:55:23 -07004363#ifdef CONFIG_IWL5000
Wey-Yi Guyac592572009-11-20 12:05:03 -08004364/* 5100 Series WiFi */
4365 {IWL_PCI_DEVICE(0x4232, 0x1201, iwl5100_agn_cfg)}, /* Mini Card */
4366 {IWL_PCI_DEVICE(0x4232, 0x1301, iwl5100_agn_cfg)}, /* Half Mini Card */
4367 {IWL_PCI_DEVICE(0x4232, 0x1204, iwl5100_agn_cfg)}, /* Mini Card */
4368 {IWL_PCI_DEVICE(0x4232, 0x1304, iwl5100_agn_cfg)}, /* Half Mini Card */
4369 {IWL_PCI_DEVICE(0x4232, 0x1205, iwl5100_bgn_cfg)}, /* Mini Card */
4370 {IWL_PCI_DEVICE(0x4232, 0x1305, iwl5100_bgn_cfg)}, /* Half Mini Card */
4371 {IWL_PCI_DEVICE(0x4232, 0x1206, iwl5100_abg_cfg)}, /* Mini Card */
4372 {IWL_PCI_DEVICE(0x4232, 0x1306, iwl5100_abg_cfg)}, /* Half Mini Card */
4373 {IWL_PCI_DEVICE(0x4232, 0x1221, iwl5100_agn_cfg)}, /* Mini Card */
4374 {IWL_PCI_DEVICE(0x4232, 0x1321, iwl5100_agn_cfg)}, /* Half Mini Card */
4375 {IWL_PCI_DEVICE(0x4232, 0x1224, iwl5100_agn_cfg)}, /* Mini Card */
4376 {IWL_PCI_DEVICE(0x4232, 0x1324, iwl5100_agn_cfg)}, /* Half Mini Card */
4377 {IWL_PCI_DEVICE(0x4232, 0x1225, iwl5100_bgn_cfg)}, /* Mini Card */
4378 {IWL_PCI_DEVICE(0x4232, 0x1325, iwl5100_bgn_cfg)}, /* Half Mini Card */
4379 {IWL_PCI_DEVICE(0x4232, 0x1226, iwl5100_abg_cfg)}, /* Mini Card */
4380 {IWL_PCI_DEVICE(0x4232, 0x1326, iwl5100_abg_cfg)}, /* Half Mini Card */
4381 {IWL_PCI_DEVICE(0x4237, 0x1211, iwl5100_agn_cfg)}, /* Mini Card */
4382 {IWL_PCI_DEVICE(0x4237, 0x1311, iwl5100_agn_cfg)}, /* Half Mini Card */
4383 {IWL_PCI_DEVICE(0x4237, 0x1214, iwl5100_agn_cfg)}, /* Mini Card */
4384 {IWL_PCI_DEVICE(0x4237, 0x1314, iwl5100_agn_cfg)}, /* Half Mini Card */
4385 {IWL_PCI_DEVICE(0x4237, 0x1215, iwl5100_bgn_cfg)}, /* Mini Card */
4386 {IWL_PCI_DEVICE(0x4237, 0x1315, iwl5100_bgn_cfg)}, /* Half Mini Card */
4387 {IWL_PCI_DEVICE(0x4237, 0x1216, iwl5100_abg_cfg)}, /* Mini Card */
4388 {IWL_PCI_DEVICE(0x4237, 0x1316, iwl5100_abg_cfg)}, /* Half Mini Card */
4389
4390/* 5300 Series WiFi */
4391 {IWL_PCI_DEVICE(0x4235, 0x1021, iwl5300_agn_cfg)}, /* Mini Card */
4392 {IWL_PCI_DEVICE(0x4235, 0x1121, iwl5300_agn_cfg)}, /* Half Mini Card */
4393 {IWL_PCI_DEVICE(0x4235, 0x1024, iwl5300_agn_cfg)}, /* Mini Card */
4394 {IWL_PCI_DEVICE(0x4235, 0x1124, iwl5300_agn_cfg)}, /* Half Mini Card */
4395 {IWL_PCI_DEVICE(0x4235, 0x1001, iwl5300_agn_cfg)}, /* Mini Card */
4396 {IWL_PCI_DEVICE(0x4235, 0x1101, iwl5300_agn_cfg)}, /* Half Mini Card */
4397 {IWL_PCI_DEVICE(0x4235, 0x1004, iwl5300_agn_cfg)}, /* Mini Card */
4398 {IWL_PCI_DEVICE(0x4235, 0x1104, iwl5300_agn_cfg)}, /* Half Mini Card */
4399 {IWL_PCI_DEVICE(0x4236, 0x1011, iwl5300_agn_cfg)}, /* Mini Card */
4400 {IWL_PCI_DEVICE(0x4236, 0x1111, iwl5300_agn_cfg)}, /* Half Mini Card */
4401 {IWL_PCI_DEVICE(0x4236, 0x1014, iwl5300_agn_cfg)}, /* Mini Card */
4402 {IWL_PCI_DEVICE(0x4236, 0x1114, iwl5300_agn_cfg)}, /* Half Mini Card */
4403
4404/* 5350 Series WiFi/WiMax */
4405 {IWL_PCI_DEVICE(0x423A, 0x1001, iwl5350_agn_cfg)}, /* Mini Card */
4406 {IWL_PCI_DEVICE(0x423A, 0x1021, iwl5350_agn_cfg)}, /* Mini Card */
4407 {IWL_PCI_DEVICE(0x423B, 0x1011, iwl5350_agn_cfg)}, /* Mini Card */
4408
4409/* 5150 Series Wifi/WiMax */
4410 {IWL_PCI_DEVICE(0x423C, 0x1201, iwl5150_agn_cfg)}, /* Mini Card */
4411 {IWL_PCI_DEVICE(0x423C, 0x1301, iwl5150_agn_cfg)}, /* Half Mini Card */
4412 {IWL_PCI_DEVICE(0x423C, 0x1206, iwl5150_abg_cfg)}, /* Mini Card */
4413 {IWL_PCI_DEVICE(0x423C, 0x1306, iwl5150_abg_cfg)}, /* Half Mini Card */
4414 {IWL_PCI_DEVICE(0x423C, 0x1221, iwl5150_agn_cfg)}, /* Mini Card */
4415 {IWL_PCI_DEVICE(0x423C, 0x1321, iwl5150_agn_cfg)}, /* Half Mini Card */
4416
4417 {IWL_PCI_DEVICE(0x423D, 0x1211, iwl5150_agn_cfg)}, /* Mini Card */
4418 {IWL_PCI_DEVICE(0x423D, 0x1311, iwl5150_agn_cfg)}, /* Half Mini Card */
4419 {IWL_PCI_DEVICE(0x423D, 0x1216, iwl5150_abg_cfg)}, /* Mini Card */
4420 {IWL_PCI_DEVICE(0x423D, 0x1316, iwl5150_abg_cfg)}, /* Half Mini Card */
Wey-Yi Guy5953a622009-09-17 10:43:53 -07004421
4422/* 6x00 Series */
Wey-Yi Guy5953a622009-09-17 10:43:53 -07004423 {IWL_PCI_DEVICE(0x422B, 0x1101, iwl6000_3agn_cfg)},
4424 {IWL_PCI_DEVICE(0x422B, 0x1121, iwl6000_3agn_cfg)},
4425 {IWL_PCI_DEVICE(0x422C, 0x1301, iwl6000i_2agn_cfg)},
4426 {IWL_PCI_DEVICE(0x422C, 0x1306, iwl6000i_2abg_cfg)},
4427 {IWL_PCI_DEVICE(0x422C, 0x1307, iwl6000i_2bg_cfg)},
4428 {IWL_PCI_DEVICE(0x422C, 0x1321, iwl6000i_2agn_cfg)},
4429 {IWL_PCI_DEVICE(0x422C, 0x1326, iwl6000i_2abg_cfg)},
4430 {IWL_PCI_DEVICE(0x4238, 0x1111, iwl6000_3agn_cfg)},
4431 {IWL_PCI_DEVICE(0x4239, 0x1311, iwl6000i_2agn_cfg)},
4432 {IWL_PCI_DEVICE(0x4239, 0x1316, iwl6000i_2abg_cfg)},
Shanyu Zhao4b3e8062010-04-07 18:06:36 -07004433
Shanyu Zhao95b13012010-04-21 11:46:33 -07004434/* 6x00 Series Gen2a */
4435 {IWL_PCI_DEVICE(0x0082, 0x1201, iwl6000g2a_2agn_cfg)},
4436 {IWL_PCI_DEVICE(0x0085, 0x1211, iwl6000g2a_2agn_cfg)},
4437 {IWL_PCI_DEVICE(0x0082, 0x1221, iwl6000g2a_2agn_cfg)},
Shanyu Zhao18089722010-05-06 10:15:21 -07004438 {IWL_PCI_DEVICE(0x0082, 0x1206, iwl6000g2a_2abg_cfg)},
4439 {IWL_PCI_DEVICE(0x0085, 0x1216, iwl6000g2a_2abg_cfg)},
4440 {IWL_PCI_DEVICE(0x0082, 0x1226, iwl6000g2a_2abg_cfg)},
4441 {IWL_PCI_DEVICE(0x0082, 0x1207, iwl6000g2a_2bg_cfg)},
Shanyu Zhao9f6e1ba2010-05-11 15:21:54 -07004442 {IWL_PCI_DEVICE(0x0082, 0x1301, iwl6000g2a_2agn_cfg)},
4443 {IWL_PCI_DEVICE(0x0082, 0x1306, iwl6000g2a_2abg_cfg)},
4444 {IWL_PCI_DEVICE(0x0082, 0x1307, iwl6000g2a_2bg_cfg)},
4445 {IWL_PCI_DEVICE(0x0082, 0x1321, iwl6000g2a_2agn_cfg)},
4446 {IWL_PCI_DEVICE(0x0082, 0x1326, iwl6000g2a_2abg_cfg)},
4447 {IWL_PCI_DEVICE(0x0085, 0x1311, iwl6000g2a_2agn_cfg)},
4448 {IWL_PCI_DEVICE(0x0085, 0x1316, iwl6000g2a_2abg_cfg)},
Shanyu Zhao18089722010-05-06 10:15:21 -07004449
4450/* 6x00 Series Gen2b */
4451 {IWL_PCI_DEVICE(0x008F, 0x5105, iwl6000g2b_bgn_cfg)},
4452 {IWL_PCI_DEVICE(0x0090, 0x5115, iwl6000g2b_bgn_cfg)},
4453 {IWL_PCI_DEVICE(0x008F, 0x5125, iwl6000g2b_bgn_cfg)},
4454 {IWL_PCI_DEVICE(0x008F, 0x5107, iwl6000g2b_bg_cfg)},
4455 {IWL_PCI_DEVICE(0x008F, 0x5201, iwl6000g2b_2agn_cfg)},
4456 {IWL_PCI_DEVICE(0x0090, 0x5211, iwl6000g2b_2agn_cfg)},
4457 {IWL_PCI_DEVICE(0x008F, 0x5221, iwl6000g2b_2agn_cfg)},
4458 {IWL_PCI_DEVICE(0x008F, 0x5206, iwl6000g2b_2abg_cfg)},
4459 {IWL_PCI_DEVICE(0x0090, 0x5216, iwl6000g2b_2abg_cfg)},
4460 {IWL_PCI_DEVICE(0x008F, 0x5226, iwl6000g2b_2abg_cfg)},
4461 {IWL_PCI_DEVICE(0x008F, 0x5207, iwl6000g2b_2bg_cfg)},
Shanyu Zhao9f6e1ba2010-05-11 15:21:54 -07004462 {IWL_PCI_DEVICE(0x008A, 0x5301, iwl6000g2b_bgn_cfg)},
4463 {IWL_PCI_DEVICE(0x008A, 0x5305, iwl6000g2b_bgn_cfg)},
4464 {IWL_PCI_DEVICE(0x008A, 0x5307, iwl6000g2b_bg_cfg)},
4465 {IWL_PCI_DEVICE(0x008A, 0x5321, iwl6000g2b_bgn_cfg)},
4466 {IWL_PCI_DEVICE(0x008A, 0x5325, iwl6000g2b_bgn_cfg)},
4467 {IWL_PCI_DEVICE(0x008B, 0x5311, iwl6000g2b_bgn_cfg)},
4468 {IWL_PCI_DEVICE(0x008B, 0x5315, iwl6000g2b_bgn_cfg)},
4469 {IWL_PCI_DEVICE(0x0090, 0x5211, iwl6000g2b_2agn_cfg)},
4470 {IWL_PCI_DEVICE(0x0090, 0x5215, iwl6000g2b_2bgn_cfg)},
4471 {IWL_PCI_DEVICE(0x0090, 0x5216, iwl6000g2b_2abg_cfg)},
4472 {IWL_PCI_DEVICE(0x0091, 0x5201, iwl6000g2b_2agn_cfg)},
4473 {IWL_PCI_DEVICE(0x0091, 0x5205, iwl6000g2b_2bgn_cfg)},
4474 {IWL_PCI_DEVICE(0x0091, 0x5206, iwl6000g2b_2abg_cfg)},
4475 {IWL_PCI_DEVICE(0x0091, 0x5207, iwl6000g2b_2bg_cfg)},
4476 {IWL_PCI_DEVICE(0x0091, 0x5221, iwl6000g2b_2agn_cfg)},
4477 {IWL_PCI_DEVICE(0x0091, 0x5225, iwl6000g2b_2bgn_cfg)},
4478 {IWL_PCI_DEVICE(0x0091, 0x5226, iwl6000g2b_2abg_cfg)},
Wey-Yi Guy5953a622009-09-17 10:43:53 -07004479
4480/* 6x50 WiFi/WiMax Series */
Wey-Yi Guy5953a622009-09-17 10:43:53 -07004481 {IWL_PCI_DEVICE(0x0087, 0x1301, iwl6050_2agn_cfg)},
4482 {IWL_PCI_DEVICE(0x0087, 0x1306, iwl6050_2abg_cfg)},
4483 {IWL_PCI_DEVICE(0x0087, 0x1321, iwl6050_2agn_cfg)},
4484 {IWL_PCI_DEVICE(0x0087, 0x1326, iwl6050_2abg_cfg)},
Wey-Yi Guy5953a622009-09-17 10:43:53 -07004485 {IWL_PCI_DEVICE(0x0089, 0x1311, iwl6050_2agn_cfg)},
4486 {IWL_PCI_DEVICE(0x0089, 0x1316, iwl6050_2abg_cfg)},
4487
Shanyu Zhao03264332010-06-29 17:27:27 -07004488/* 6x50 WiFi/WiMax Series Gen2 */
4489 {IWL_PCI_DEVICE(0x0885, 0x1305, iwl6050g2_bgn_cfg)},
4490 {IWL_PCI_DEVICE(0x0885, 0x1306, iwl6050g2_bgn_cfg)},
4491 {IWL_PCI_DEVICE(0x0885, 0x1325, iwl6050g2_bgn_cfg)},
4492 {IWL_PCI_DEVICE(0x0885, 0x1326, iwl6050g2_bgn_cfg)},
4493 {IWL_PCI_DEVICE(0x0886, 0x1315, iwl6050g2_bgn_cfg)},
4494 {IWL_PCI_DEVICE(0x0886, 0x1316, iwl6050g2_bgn_cfg)},
4495
Jay Sternberg77dcb6a2009-03-06 13:52:55 -08004496/* 1000 Series WiFi */
Wey-Yi Guy4bd0914f2009-09-17 10:43:52 -07004497 {IWL_PCI_DEVICE(0x0083, 0x1205, iwl1000_bgn_cfg)},
4498 {IWL_PCI_DEVICE(0x0083, 0x1305, iwl1000_bgn_cfg)},
4499 {IWL_PCI_DEVICE(0x0083, 0x1225, iwl1000_bgn_cfg)},
4500 {IWL_PCI_DEVICE(0x0083, 0x1325, iwl1000_bgn_cfg)},
4501 {IWL_PCI_DEVICE(0x0084, 0x1215, iwl1000_bgn_cfg)},
4502 {IWL_PCI_DEVICE(0x0084, 0x1315, iwl1000_bgn_cfg)},
4503 {IWL_PCI_DEVICE(0x0083, 0x1206, iwl1000_bg_cfg)},
4504 {IWL_PCI_DEVICE(0x0083, 0x1306, iwl1000_bg_cfg)},
4505 {IWL_PCI_DEVICE(0x0083, 0x1226, iwl1000_bg_cfg)},
4506 {IWL_PCI_DEVICE(0x0083, 0x1326, iwl1000_bg_cfg)},
4507 {IWL_PCI_DEVICE(0x0084, 0x1216, iwl1000_bg_cfg)},
4508 {IWL_PCI_DEVICE(0x0084, 0x1316, iwl1000_bg_cfg)},
Jay Sternberg1de19ec2010-09-14 15:21:20 -07004509
Wey-Yi Guy58a39092010-10-06 08:14:21 -07004510/* 100 Series WiFi */
Jay Sternberg1de19ec2010-09-14 15:21:20 -07004511 {IWL_PCI_DEVICE(0x08AE, 0x1005, iwl100_bgn_cfg)},
4512 {IWL_PCI_DEVICE(0x08AF, 0x1015, iwl100_bgn_cfg)},
4513 {IWL_PCI_DEVICE(0x08AE, 0x1025, iwl100_bgn_cfg)},
4514 {IWL_PCI_DEVICE(0x08AE, 0x1007, iwl100_bg_cfg)},
4515 {IWL_PCI_DEVICE(0x08AE, 0x1017, iwl100_bg_cfg)},
Wey-Yi Guy58a39092010-10-06 08:14:21 -07004516
4517/* 130 Series WiFi */
4518 {IWL_PCI_DEVICE(0x0896, 0x5005, iwl130_bgn_cfg)},
4519 {IWL_PCI_DEVICE(0x0896, 0x5007, iwl130_bg_cfg)},
4520 {IWL_PCI_DEVICE(0x0897, 0x5015, iwl130_bgn_cfg)},
4521 {IWL_PCI_DEVICE(0x0897, 0x5017, iwl130_bg_cfg)},
4522 {IWL_PCI_DEVICE(0x0896, 0x5025, iwl130_bgn_cfg)},
4523 {IWL_PCI_DEVICE(0x0896, 0x5027, iwl130_bg_cfg)},
4524
Tomas Winkler5a6a2562008-04-24 11:55:23 -07004525#endif /* CONFIG_IWL5000 */
Tomas Winkler7100e922008-12-01 16:32:18 -08004526
Ron Rindjunskyfed90172008-04-15 16:01:41 -07004527 {0}
4528};
4529MODULE_DEVICE_TABLE(pci, iwl_hw_card_ids);
4530
4531static struct pci_driver iwl_driver = {
Zhu Yib481de92007-09-25 17:54:57 -07004532 .name = DRV_NAME,
Ron Rindjunskyfed90172008-04-15 16:01:41 -07004533 .id_table = iwl_hw_card_ids,
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004534 .probe = iwl_pci_probe,
4535 .remove = __devexit_p(iwl_pci_remove),
John W. Linvillef60dc012010-10-25 16:12:37 -04004536 .driver.pm = IWL_PM_OPS,
Zhu Yib481de92007-09-25 17:54:57 -07004537};
4538
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004539static int __init iwl_init(void)
Zhu Yib481de92007-09-25 17:54:57 -07004540{
4541
4542 int ret;
Joe Perchesc96c31e2010-07-26 14:39:58 -07004543 pr_info(DRV_DESCRIPTION ", " DRV_VERSION "\n");
4544 pr_info(DRV_COPYRIGHT "\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004545
Tomas Winklere227cea2008-07-18 13:53:05 +08004546 ret = iwlagn_rate_control_register();
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004547 if (ret) {
Joe Perchesc96c31e2010-07-26 14:39:58 -07004548 pr_err("Unable to register rate control algorithm: %d\n", ret);
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004549 return ret;
4550 }
4551
Ron Rindjunskyfed90172008-04-15 16:01:41 -07004552 ret = pci_register_driver(&iwl_driver);
Zhu Yib481de92007-09-25 17:54:57 -07004553 if (ret) {
Joe Perchesc96c31e2010-07-26 14:39:58 -07004554 pr_err("Unable to initialize PCI module\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004555 goto error_register;
Zhu Yib481de92007-09-25 17:54:57 -07004556 }
Zhu Yib481de92007-09-25 17:54:57 -07004557
4558 return ret;
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004559
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004560error_register:
Tomas Winklere227cea2008-07-18 13:53:05 +08004561 iwlagn_rate_control_unregister();
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004562 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07004563}
4564
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004565static void __exit iwl_exit(void)
Zhu Yib481de92007-09-25 17:54:57 -07004566{
Ron Rindjunskyfed90172008-04-15 16:01:41 -07004567 pci_unregister_driver(&iwl_driver);
Tomas Winklere227cea2008-07-18 13:53:05 +08004568 iwlagn_rate_control_unregister();
Zhu Yib481de92007-09-25 17:54:57 -07004569}
4570
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004571module_exit(iwl_exit);
4572module_init(iwl_init);
Reinette Chatrea562a9d2009-07-17 09:30:24 -07004573
4574#ifdef CONFIG_IWLWIFI_DEBUG
Wey-Yi Guy4e30cb62009-09-17 10:43:47 -07004575module_param_named(debug50, iwl_debug_level, uint, S_IRUGO);
Reinette Chatrea562a9d2009-07-17 09:30:24 -07004576MODULE_PARM_DESC(debug50, "50XX debug output mask (deprecated)");
Wey-Yi Guy4e30cb62009-09-17 10:43:47 -07004577module_param_named(debug, iwl_debug_level, uint, S_IRUGO | S_IWUSR);
Reinette Chatrea562a9d2009-07-17 09:30:24 -07004578MODULE_PARM_DESC(debug, "debug output mask");
4579#endif
4580
Wey-Yi Guy2b068612010-03-22 09:17:39 -07004581module_param_named(swcrypto50, iwlagn_mod_params.sw_crypto, bool, S_IRUGO);
4582MODULE_PARM_DESC(swcrypto50,
4583 "using crypto in software (default 0 [hardware]) (deprecated)");
4584module_param_named(swcrypto, iwlagn_mod_params.sw_crypto, int, S_IRUGO);
4585MODULE_PARM_DESC(swcrypto, "using crypto in software (default 0 [hardware])");
4586module_param_named(queues_num50,
4587 iwlagn_mod_params.num_of_queues, int, S_IRUGO);
4588MODULE_PARM_DESC(queues_num50,
4589 "number of hw queues in 50xx series (deprecated)");
4590module_param_named(queues_num, iwlagn_mod_params.num_of_queues, int, S_IRUGO);
4591MODULE_PARM_DESC(queues_num, "number of hw queues.");
4592module_param_named(11n_disable50, iwlagn_mod_params.disable_11n, int, S_IRUGO);
4593MODULE_PARM_DESC(11n_disable50, "disable 50XX 11n functionality (deprecated)");
4594module_param_named(11n_disable, iwlagn_mod_params.disable_11n, int, S_IRUGO);
4595MODULE_PARM_DESC(11n_disable, "disable 11n functionality");
4596module_param_named(amsdu_size_8K50, iwlagn_mod_params.amsdu_size_8K,
4597 int, S_IRUGO);
4598MODULE_PARM_DESC(amsdu_size_8K50,
4599 "enable 8K amsdu size in 50XX series (deprecated)");
4600module_param_named(amsdu_size_8K, iwlagn_mod_params.amsdu_size_8K,
4601 int, S_IRUGO);
4602MODULE_PARM_DESC(amsdu_size_8K, "enable 8K amsdu size");
4603module_param_named(fw_restart50, iwlagn_mod_params.restart_fw, int, S_IRUGO);
4604MODULE_PARM_DESC(fw_restart50,
4605 "restart firmware in case of error (deprecated)");
4606module_param_named(fw_restart, iwlagn_mod_params.restart_fw, int, S_IRUGO);
4607MODULE_PARM_DESC(fw_restart, "restart firmware in case of error");
4608module_param_named(
4609 disable_hw_scan, iwlagn_mod_params.disable_hw_scan, int, S_IRUGO);
Wey-Yi Guy72645ef2010-10-06 07:42:43 -07004610MODULE_PARM_DESC(disable_hw_scan,
4611 "disable hardware scanning (default 0) (deprecated)");
Johannes Bergdd7a2502010-04-28 23:33:10 -07004612
4613module_param_named(ucode_alternative, iwlagn_wanted_ucode_alternative, int,
4614 S_IRUGO);
4615MODULE_PARM_DESC(ucode_alternative,
4616 "specify ucode alternative to use from ucode file");
Wey-Yi Guybee008b2010-08-23 07:57:04 -07004617
4618module_param_named(antenna_coupling, iwlagn_ant_coupling, int, S_IRUGO);
4619MODULE_PARM_DESC(antenna_coupling,
4620 "specify antenna coupling in dB (defualt: 0 dB)");
Wey-Yi Guyf37837c2010-08-23 07:57:12 -07004621
4622module_param_named(bt_ch_announce, iwlagn_bt_ch_announce, bool, S_IRUGO);
4623MODULE_PARM_DESC(bt_ch_announce,
4624 "Enable BT channel announcement mode (default: enable)");