iwlwifi: Legacy isr only used by legacy devices
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / net / wireless / iwlwifi / iwl-agn.c
blob573017474610c3519977b7d97d45f99da53f2f58
1 /******************************************************************************
3 * Copyright(c) 2003 - 2010 Intel Corporation. All rights reserved.
5 * Portions of this file are derived from the ipw3945 project, as well
6 * as portions of the ieee80211 subsystem header files.
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.
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.
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
21 * The full GNU General Public License is included in this distribution in the
22 * file called LICENSE.
24 * Contact Information:
25 * Intel Linux Wireless <ilw@linux.intel.com>
26 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
28 *****************************************************************************/
30 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
32 #include <linux/kernel.h>
33 #include <linux/module.h>
34 #include <linux/init.h>
35 #include <linux/pci.h>
36 #include <linux/pci-aspm.h>
37 #include <linux/slab.h>
38 #include <linux/dma-mapping.h>
39 #include <linux/delay.h>
40 #include <linux/sched.h>
41 #include <linux/skbuff.h>
42 #include <linux/netdevice.h>
43 #include <linux/wireless.h>
44 #include <linux/firmware.h>
45 #include <linux/etherdevice.h>
46 #include <linux/if_arp.h>
48 #include <net/mac80211.h>
50 #include <asm/div64.h>
52 #define DRV_NAME "iwlagn"
54 #include "iwl-eeprom.h"
55 #include "iwl-dev.h"
56 #include "iwl-core.h"
57 #include "iwl-io.h"
58 #include "iwl-helpers.h"
59 #include "iwl-sta.h"
60 #include "iwl-agn-calib.h"
61 #include "iwl-agn.h"
64 /******************************************************************************
66 * module boiler plate
68 ******************************************************************************/
71 * module name, copyright, version, etc.
73 #define DRV_DESCRIPTION "Intel(R) Wireless WiFi Link AGN driver for Linux"
75 #ifdef CONFIG_IWLWIFI_DEBUG
76 #define VD "d"
77 #else
78 #define VD
79 #endif
81 #define DRV_VERSION IWLWIFI_VERSION VD
84 MODULE_DESCRIPTION(DRV_DESCRIPTION);
85 MODULE_VERSION(DRV_VERSION);
86 MODULE_AUTHOR(DRV_COPYRIGHT " " DRV_AUTHOR);
87 MODULE_LICENSE("GPL");
88 MODULE_ALIAS("iwl4965");
90 static int iwlagn_ant_coupling;
91 static bool iwlagn_bt_ch_announce = 1;
93 void iwl_update_chain_flags(struct iwl_priv *priv)
95 struct iwl_rxon_context *ctx;
97 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);
105 static void iwl_clear_free_frames(struct iwl_priv *priv)
107 struct list_head *element;
109 IWL_DEBUG_INFO(priv, "%d frames on pre-allocated heap on clear.\n",
110 priv->frames_count);
112 while (!list_empty(&priv->free_frames)) {
113 element = priv->free_frames.next;
114 list_del(element);
115 kfree(list_entry(element, struct iwl_frame, list));
116 priv->frames_count--;
119 if (priv->frames_count) {
120 IWL_WARN(priv, "%d frames still in use. Did we lose one?\n",
121 priv->frames_count);
122 priv->frames_count = 0;
126 static struct iwl_frame *iwl_get_free_frame(struct iwl_priv *priv)
128 struct iwl_frame *frame;
129 struct list_head *element;
130 if (list_empty(&priv->free_frames)) {
131 frame = kzalloc(sizeof(*frame), GFP_KERNEL);
132 if (!frame) {
133 IWL_ERR(priv, "Could not allocate frame!\n");
134 return NULL;
137 priv->frames_count++;
138 return frame;
141 element = priv->free_frames.next;
142 list_del(element);
143 return list_entry(element, struct iwl_frame, list);
146 static void iwl_free_frame(struct iwl_priv *priv, struct iwl_frame *frame)
148 memset(frame, 0, sizeof(*frame));
149 list_add(&frame->list, &priv->free_frames);
152 static u32 iwl_fill_beacon_frame(struct iwl_priv *priv,
153 struct ieee80211_hdr *hdr,
154 int left)
156 lockdep_assert_held(&priv->mutex);
158 if (!priv->beacon_skb)
159 return 0;
161 if (priv->beacon_skb->len > left)
162 return 0;
164 memcpy(hdr, priv->beacon_skb->data, priv->beacon_skb->len);
166 return priv->beacon_skb->len;
169 /* Parse the beacon frame to find the TIM element and set tim_idx & tim_size */
170 static void iwl_set_beacon_tim(struct iwl_priv *priv,
171 struct iwl_tx_beacon_cmd *tx_beacon_cmd,
172 u8 *beacon, u32 frame_size)
174 u16 tim_idx;
175 struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *)beacon;
178 * The index is relative to frame start but we start looking at the
179 * variable-length part of the beacon.
181 tim_idx = mgmt->u.beacon.variable - beacon;
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;
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");
196 static unsigned int iwl_hw_get_beacon_cmd(struct iwl_priv *priv,
197 struct iwl_frame *frame)
199 struct iwl_tx_beacon_cmd *tx_beacon_cmd;
200 u32 frame_size;
201 u32 rate_flags;
202 u32 rate;
204 * We have to set up the TX command, the TX Beacon command, and the
205 * beacon contents.
208 lockdep_assert_held(&priv->mutex);
210 if (!priv->beacon_ctx) {
211 IWL_ERR(priv, "trying to build beacon w/o beacon context!\n");
212 return 0;
215 /* Initialize memory */
216 tx_beacon_cmd = &frame->u.beacon;
217 memset(tx_beacon_cmd, 0, sizeof(*tx_beacon_cmd));
219 /* Set up TX beacon contents */
220 frame_size = iwl_fill_beacon_frame(priv, tx_beacon_cmd->frame,
221 sizeof(frame->u) - sizeof(*tx_beacon_cmd));
222 if (WARN_ON_ONCE(frame_size > MAX_MPDU_SIZE))
223 return 0;
224 if (!frame_size)
225 return 0;
227 /* Set up TX command fields */
228 tx_beacon_cmd->tx.len = cpu_to_le16((u16)frame_size);
229 tx_beacon_cmd->tx.sta_id = priv->beacon_ctx->bcast_sta_id;
230 tx_beacon_cmd->tx.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
231 tx_beacon_cmd->tx.tx_flags = TX_CMD_FLG_SEQ_CTL_MSK |
232 TX_CMD_FLG_TSF_MSK | TX_CMD_FLG_STA_RATE_MSK;
234 /* Set up TX beacon command fields */
235 iwl_set_beacon_tim(priv, tx_beacon_cmd, (u8 *)tx_beacon_cmd->frame,
236 frame_size);
238 /* Set up packet rate and flags */
239 rate = iwl_rate_get_lowest_plcp(priv, priv->beacon_ctx);
240 priv->mgmt_tx_ant = iwl_toggle_tx_ant(priv, priv->mgmt_tx_ant,
241 priv->hw_params.valid_tx_ant);
242 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);
248 return sizeof(*tx_beacon_cmd) + frame_size;
251 int iwlagn_send_beacon_cmd(struct iwl_priv *priv)
253 struct iwl_frame *frame;
254 unsigned int frame_size;
255 int rc;
257 frame = iwl_get_free_frame(priv);
258 if (!frame) {
259 IWL_ERR(priv, "Could not obtain free frame buffer for beacon "
260 "command.\n");
261 return -ENOMEM;
264 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;
271 rc = iwl_send_cmd_pdu(priv, REPLY_TX_BEACON, frame_size,
272 &frame->u.cmd[0]);
274 iwl_free_frame(priv, frame);
276 return rc;
279 static inline dma_addr_t iwl_tfd_tb_get_addr(struct iwl_tfd *tfd, u8 idx)
281 struct iwl_tfd_tb *tb = &tfd->tbs[idx];
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;
288 return addr;
291 static inline u16 iwl_tfd_tb_get_len(struct iwl_tfd *tfd, u8 idx)
293 struct iwl_tfd_tb *tb = &tfd->tbs[idx];
295 return le16_to_cpu(tb->hi_n_len) >> 4;
298 static inline void iwl_tfd_set_tb(struct iwl_tfd *tfd, u8 idx,
299 dma_addr_t addr, u16 len)
301 struct iwl_tfd_tb *tb = &tfd->tbs[idx];
302 u16 hi_n_len = len << 4;
304 put_unaligned_le32(addr, &tb->lo);
305 if (sizeof(dma_addr_t) > sizeof(u32))
306 hi_n_len |= ((addr >> 16) >> 16) & 0xF;
308 tb->hi_n_len = cpu_to_le16(hi_n_len);
310 tfd->num_tbs = idx + 1;
313 static inline u8 iwl_tfd_get_num_tbs(struct iwl_tfd *tfd)
315 return tfd->num_tbs & 0x1f;
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
323 * Does NOT advance any TFD circular buffer read/write indexes
324 * Does NOT free the TFD itself (which is within circular buffer)
326 void iwl_hw_txq_free_tfd(struct iwl_priv *priv, struct iwl_tx_queue *txq)
328 struct iwl_tfd *tfd_tmp = (struct iwl_tfd *)txq->tfds;
329 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;
335 tfd = &tfd_tmp[index];
337 /* Sanity check on number of chunks */
338 num_tbs = iwl_tfd_get_num_tbs(tfd);
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;
346 /* Unmap tx_cmd */
347 if (num_tbs)
348 pci_unmap_single(dev,
349 dma_unmap_addr(&txq->meta[index], mapping),
350 dma_unmap_len(&txq->meta[index], len),
351 PCI_DMA_BIDIRECTIONAL);
353 /* Unmap chunks, if any. */
354 for (i = 1; i < num_tbs; i++)
355 pci_unmap_single(dev, iwl_tfd_tb_get_addr(tfd, i),
356 iwl_tfd_tb_get_len(tfd, i), PCI_DMA_TODEVICE);
358 /* free SKB */
359 if (txq->txb) {
360 struct sk_buff *skb;
362 skb = txq->txb[txq->q.read_ptr].skb;
364 /* 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;
372 int 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)
377 struct iwl_queue *q;
378 struct iwl_tfd *tfd, *tfd_tmp;
379 u32 num_tbs;
381 q = &txq->q;
382 tfd_tmp = (struct iwl_tfd *)txq->tfds;
383 tfd = &tfd_tmp[q->write_ptr];
385 if (reset)
386 memset(tfd, 0, sizeof(*tfd));
388 num_tbs = iwl_tfd_get_num_tbs(tfd);
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;
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);
402 iwl_tfd_set_tb(tfd, num_tbs, addr, len);
404 return 0;
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.
411 * 4965 supports up to 16 Tx queues in DRAM, mapped to up to 8 Tx DMA
412 * channels supported in hardware.
414 int iwl_hw_tx_queue_init(struct iwl_priv *priv,
415 struct iwl_tx_queue *txq)
417 int txq_id = txq->q.id;
419 /* 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);
423 return 0;
426 /******************************************************************************
428 * Generic RX handler implementations
430 ******************************************************************************/
431 static void iwl_rx_reply_alive(struct iwl_priv *priv,
432 struct iwl_rx_mem_buffer *rxb)
434 struct iwl_rx_packet *pkt = rxb_addr(rxb);
435 struct iwl_alive_resp *palive;
436 struct delayed_work *pwork;
438 palive = &pkt->u.alive_frame;
440 IWL_DEBUG_INFO(priv, "Alive ucode status 0x%08X revision "
441 "0x%01X 0x%01X\n",
442 palive->is_valid, palive->ver_type,
443 palive->ver_subtype);
445 if (palive->ver_subtype == INITIALIZE_SUBTYPE) {
446 IWL_DEBUG_INFO(priv, "Initialization Alive received.\n");
447 memcpy(&priv->card_alive_init,
448 &pkt->u.alive_frame,
449 sizeof(struct iwl_init_alive_resp));
450 pwork = &priv->init_alive_start;
451 } else {
452 IWL_DEBUG_INFO(priv, "Runtime Alive received.\n");
453 memcpy(&priv->card_alive, &pkt->u.alive_frame,
454 sizeof(struct iwl_alive_resp));
455 pwork = &priv->alive_start;
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
464 IWL_WARN(priv, "uCode did not respond OK.\n");
467 static void iwl_bg_beacon_update(struct work_struct *work)
469 struct iwl_priv *priv =
470 container_of(work, struct iwl_priv, beacon_update);
471 struct sk_buff *beacon;
473 mutex_lock(&priv->mutex);
474 if (!priv->beacon_ctx) {
475 IWL_ERR(priv, "updating beacon w/o beacon context!\n");
476 goto out;
479 if (priv->beacon_ctx->vif->type != NL80211_IFTYPE_AP) {
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.
486 goto out;
489 /* 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) {
492 IWL_ERR(priv, "update beacon failed -- keeping old\n");
493 goto out;
496 /* new beacon skb is allocated every time; dispose previous.*/
497 dev_kfree_skb(priv->beacon_skb);
499 priv->beacon_skb = beacon;
501 iwlagn_send_beacon_cmd(priv);
502 out:
503 mutex_unlock(&priv->mutex);
506 static void iwl_bg_bt_runtime_config(struct work_struct *work)
508 struct iwl_priv *priv =
509 container_of(work, struct iwl_priv, bt_runtime_config);
511 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
512 return;
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);
520 static void iwl_bg_bt_full_concurrency(struct work_struct *work)
522 struct iwl_priv *priv =
523 container_of(work, struct iwl_priv, bt_full_concurrency);
524 struct iwl_rxon_context *ctx;
526 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
527 return;
529 /* dont send host command if rf-kill is on */
530 if (!iwl_is_ready_rf(priv))
531 return;
533 IWL_DEBUG_INFO(priv, "BT coex in %s mode\n",
534 priv->bt_full_concurrent ?
535 "full concurrency" : "3-wire");
538 * LQ & RXON updated cmds must be sent before BT Config cmd
539 * to avoid 3-wire collisions
541 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);
547 mutex_unlock(&priv->mutex);
549 priv->cfg->ops->hcmd->send_bt_config(priv);
553 * iwl_bg_statistics_periodic - Timer callback to queue statistics
555 * This callback is provided in order to send a statistics request.
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.
562 static void iwl_bg_statistics_periodic(unsigned long data)
564 struct iwl_priv *priv = (struct iwl_priv *)data;
566 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
567 return;
569 /* dont send host command if rf-kill is on */
570 if (!iwl_is_ready_rf(priv))
571 return;
573 iwl_send_statistics_request(priv, CMD_ASYNC, false);
577 static void iwl_print_cont_event_trace(struct iwl_priv *priv, u32 base,
578 u32 start_idx, u32 num_events,
579 u32 mode)
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;
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));
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;
598 /* Set starting address; reads will auto-increment */
599 _iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR, ptr);
600 rmb();
603 * "time" is actually "data" for mode 0 (no timestamp).
604 * place event id # at far right for easier visual parsing.
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);
618 /* Allow device to power down */
619 iwl_release_nic_access(priv);
620 spin_unlock_irqrestore(&priv->reg_lock, reg_flags);
623 static void iwl_continuous_event_trace(struct iwl_priv *priv)
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 */
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;
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);
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);
670 iwl_print_cont_event_trace(priv, base, 0,
671 next_entry, mode);
674 priv->event_log.num_wraps = num_wraps;
675 priv->event_log.next_entry = next_entry;
679 * iwl_bg_ucode_trace - Timer callback to log ucode event
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
686 static void iwl_bg_ucode_trace(unsigned long data)
688 struct iwl_priv *priv = (struct iwl_priv *)data;
690 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
691 return;
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));
701 static void iwl_rx_beacon_notif(struct iwl_priv *priv,
702 struct iwl_rx_mem_buffer *rxb)
704 struct iwl_rx_packet *pkt = rxb_addr(rxb);
705 struct iwl4965_beacon_notif *beacon =
706 (struct iwl4965_beacon_notif *)pkt->u.raw;
707 #ifdef CONFIG_IWLWIFI_DEBUG
708 u8 rate = iwl_hw_get_rate(beacon->beacon_notify_hdr.rate_n_flags);
710 IWL_DEBUG_RX(priv, "beacon status %x retries %d iss %d "
711 "tsf %d %d rate %d\n",
712 le32_to_cpu(beacon->beacon_notify_hdr.u.status) & TX_STATUS_MSK,
713 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
719 priv->ibss_manager = le32_to_cpu(beacon->ibss_mgr_status);
721 if (!test_bit(STATUS_EXIT_PENDING, &priv->status))
722 queue_work(priv->workqueue, &priv->beacon_update);
725 /* Handle notification from uCode that card's power state is changing
726 * due to software, hardware, or critical temperature RFKILL */
727 static void iwl_rx_card_state_notif(struct iwl_priv *priv,
728 struct iwl_rx_mem_buffer *rxb)
730 struct iwl_rx_packet *pkt = rxb_addr(rxb);
731 u32 flags = le32_to_cpu(pkt->u.card_state_notif.flags);
732 unsigned long status = priv->status;
734 IWL_DEBUG_RF_KILL(priv, "Card state received: HW:%s SW:%s CT:%s\n",
735 (flags & HW_CARD_DISABLED) ? "Kill" : "On",
736 (flags & SW_CARD_DISABLED) ? "Kill" : "On",
737 (flags & CT_CARD_DISABLED) ?
738 "Reached" : "Not reached");
740 if (flags & (SW_CARD_DISABLED | HW_CARD_DISABLED |
741 CT_CARD_DISABLED)) {
743 iwl_write32(priv, CSR_UCODE_DRV_GP1_SET,
744 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
746 iwl_write_direct32(priv, HBUS_TARG_MBX_C,
747 HBUS_TARG_MBX_C_REG_BIT_CMD_BLOCKED);
749 if (!(flags & RXON_CARD_DISABLED)) {
750 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR,
751 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
752 iwl_write_direct32(priv, HBUS_TARG_MBX_C,
753 HBUS_TARG_MBX_C_REG_BIT_CMD_BLOCKED);
755 if (flags & CT_CARD_DISABLED)
756 iwl_tt_enter_ct_kill(priv);
758 if (!(flags & CT_CARD_DISABLED))
759 iwl_tt_exit_ct_kill(priv);
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);
767 if (!(flags & RXON_CARD_DISABLED))
768 iwl_scan_cancel(priv);
770 if ((test_bit(STATUS_RF_KILL_HW, &status) !=
771 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));
774 else
775 wake_up_interruptible(&priv->wait_command_queue);
778 static void iwl_bg_tx_flush(struct work_struct *work)
780 struct iwl_priv *priv =
781 container_of(work, struct iwl_priv, tx_flush);
783 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
784 return;
786 /* do nothing if rf-kill is on */
787 if (!iwl_is_ready_rf(priv))
788 return;
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);
797 * iwl_setup_rx_handlers - Initialize Rx handler callbacks
799 * Setup the RX handlers for each of the reply types sent from the uCode
800 * to the host.
802 * This function chains into the hardware specific files for them to setup
803 * any hardware specific handlers as well.
805 static void iwl_setup_rx_handlers(struct iwl_priv *priv)
807 priv->rx_handlers[REPLY_ALIVE] = iwl_rx_reply_alive;
808 priv->rx_handlers[REPLY_ERROR] = iwl_rx_reply_error;
809 priv->rx_handlers[CHANNEL_SWITCH_NOTIFICATION] = iwl_rx_csa;
810 priv->rx_handlers[SPECTRUM_MEASURE_NOTIFICATION] =
811 iwl_rx_spectrum_measure_notif;
812 priv->rx_handlers[PM_SLEEP_NOTIFICATION] = iwl_rx_pm_sleep_notif;
813 priv->rx_handlers[PM_DEBUG_STATISTIC_NOTIFIC] =
814 iwl_rx_pm_debug_statistics_notif;
815 priv->rx_handlers[BEACON_NOTIFICATION] = iwl_rx_beacon_notif;
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.
822 priv->rx_handlers[REPLY_STATISTICS_CMD] = iwl_reply_statistics;
823 priv->rx_handlers[STATISTICS_NOTIFICATION] = iwl_rx_statistics;
825 iwl_setup_rx_scan_handlers(priv);
827 /* status change handler */
828 priv->rx_handlers[CARD_STATE_NOTIFICATION] = iwl_rx_card_state_notif;
830 priv->rx_handlers[MISSED_BEACONS_NOTIFICATION] =
831 iwl_rx_missed_beacon_notif;
832 /* Rx handlers */
833 priv->rx_handlers[REPLY_RX_PHY_CMD] = iwlagn_rx_reply_rx_phy;
834 priv->rx_handlers[REPLY_RX_MPDU_CMD] = iwlagn_rx_reply_rx;
835 /* block ack */
836 priv->rx_handlers[REPLY_COMPRESSED_BA] = iwlagn_rx_reply_compressed_ba;
837 /* Set up hardware specific Rx handlers */
838 priv->cfg->ops->lib->rx_handler_setup(priv);
842 * iwl_rx_handle - Main entry function for receiving responses from uCode
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.
848 void iwl_rx_handle(struct iwl_priv *priv)
850 struct iwl_rx_mem_buffer *rxb;
851 struct iwl_rx_packet *pkt;
852 struct iwl_rx_queue *rxq = &priv->rxq;
853 u32 r, i;
854 int reclaim;
855 unsigned long flags;
856 u8 fill_rx = 0;
857 u32 count = 8;
858 int total_empty;
860 /* uCode's read index (stored in shared DRAM) indicates the last Rx
861 * buffer that the driver may process (last buffer filled by ucode). */
862 r = le16_to_cpu(rxq->rb_stts->closed_rb_num) & 0x0FFF;
863 i = rxq->read;
865 /* Rx interrupt, but nothing sent from uCode */
866 if (i == r)
867 IWL_DEBUG_RX(priv, "r = %d, i = %d\n", r, i);
869 /* calculate total frames need to be restock after handling RX */
870 total_empty = r - rxq->write_actual;
871 if (total_empty < 0)
872 total_empty += RX_QUEUE_SIZE;
874 if (total_empty > (RX_QUEUE_SIZE / 2))
875 fill_rx = 1;
877 while (i != r) {
878 int len;
880 rxb = rxq->queue[i];
882 /* If an RXB doesn't have a Rx queue slot associated with it,
883 * then a bug has been introduced in the queue refilling
884 * routines -- catch it here */
885 BUG_ON(rxb == NULL);
887 rxq->queue[i] = NULL;
889 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);
894 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);
898 /* 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) &&
906 (pkt->hdr.cmd != REPLY_RX) &&
907 (pkt->hdr.cmd != REPLY_RX_MPDU_CMD) &&
908 (pkt->hdr.cmd != REPLY_COMPRESSED_BA) &&
909 (pkt->hdr.cmd != STATISTICS_NOTIFICATION) &&
910 (pkt->hdr.cmd != REPLY_TX);
912 /* Based on type of command response or notification,
913 * handle those that need handling via function in
914 * rx_handlers table. See iwl_setup_rx_handlers() */
915 if (priv->rx_handlers[pkt->hdr.cmd]) {
916 IWL_DEBUG_RX(priv, "r = %d, i = %d, %s, 0x%02x\n", r,
917 i, get_cmd_string(pkt->hdr.cmd), pkt->hdr.cmd);
918 priv->isr_stats.rx_handlers[pkt->hdr.cmd]++;
919 priv->rx_handlers[pkt->hdr.cmd] (priv, rxb);
920 } else {
921 /* No handling needed */
922 IWL_DEBUG_RX(priv,
923 "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);
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.
935 if (reclaim) {
936 /* Invoke any callbacks, transfer the buffer to caller,
937 * and fire off the (possibly) blocking iwl_send_cmd()
938 * as we reclaim the driver command queue */
939 if (rxb->page)
940 iwl_tx_cmd_complete(priv, rxb);
941 else
942 IWL_WARN(priv, "Claim null rxb?\n");
945 /* 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. */
948 spin_lock_irqsave(&rxq->lock, flags);
949 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);
958 spin_unlock_irqrestore(&rxq->lock, flags);
960 i = (i + 1) & RX_QUEUE_MASK;
961 /* 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) {
966 rxq->read = i;
967 iwlagn_rx_replenish_now(priv);
968 count = 0;
973 /* Backtrack one entry */
974 rxq->read = i;
975 if (fill_rx)
976 iwlagn_rx_replenish_now(priv);
977 else
978 iwlagn_rx_queue_restock(priv);
981 /* call this function to flush any scheduled tasklet */
982 static inline void iwl_synchronize_irq(struct iwl_priv *priv)
984 /* wait to make sure we flush pending tasklet*/
985 synchronize_irq(priv->pci_dev->irq);
986 tasklet_kill(&priv->irq_tasklet);
989 static void iwl_irq_tasklet_legacy(struct iwl_priv *priv)
991 u32 inta, handled = 0;
992 u32 inta_fh;
993 unsigned long flags;
994 u32 i;
995 #ifdef CONFIG_IWLWIFI_DEBUG
996 u32 inta_mask;
997 #endif
999 spin_lock_irqsave(&priv->lock, flags);
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. */
1004 inta = iwl_read32(priv, CSR_INT);
1005 iwl_write32(priv, CSR_INT, inta);
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. */
1010 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
1011 iwl_write32(priv, CSR_FH_INT_STATUS, inta_fh);
1013 #ifdef CONFIG_IWLWIFI_DEBUG
1014 if (iwl_get_debug_level(priv) & IWL_DL_ISR) {
1015 /* just for debug */
1016 inta_mask = iwl_read32(priv, CSR_INT_MASK);
1017 IWL_DEBUG_ISR(priv, "inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
1018 inta, inta_mask, inta_fh);
1020 #endif
1022 spin_unlock_irqrestore(&priv->lock, flags);
1024 /* 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. */
1028 if (inta_fh & CSR49_FH_INT_RX_MASK)
1029 inta |= CSR_INT_BIT_FH_RX;
1030 if (inta_fh & CSR49_FH_INT_TX_MASK)
1031 inta |= CSR_INT_BIT_FH_TX;
1033 /* Now service all interrupt bits discovered above. */
1034 if (inta & CSR_INT_BIT_HW_ERR) {
1035 IWL_ERR(priv, "Hardware error detected. Restarting.\n");
1037 /* Tell the device to stop sending interrupts */
1038 iwl_disable_interrupts(priv);
1040 priv->isr_stats.hw++;
1041 iwl_irq_handle_error(priv);
1043 handled |= CSR_INT_BIT_HW_ERR;
1045 return;
1048 #ifdef CONFIG_IWLWIFI_DEBUG
1049 if (iwl_get_debug_level(priv) & (IWL_DL_ISR)) {
1050 /* NIC fires this, but we don't use it, redundant with WAKEUP */
1051 if (inta & CSR_INT_BIT_SCD) {
1052 IWL_DEBUG_ISR(priv, "Scheduler finished to transmit "
1053 "the frame/frames.\n");
1054 priv->isr_stats.sch++;
1057 /* Alive notification via Rx interrupt will do the real work */
1058 if (inta & CSR_INT_BIT_ALIVE) {
1059 IWL_DEBUG_ISR(priv, "Alive interrupt\n");
1060 priv->isr_stats.alive++;
1063 #endif
1064 /* Safely ignore these bits for debug checks below */
1065 inta &= ~(CSR_INT_BIT_SCD | CSR_INT_BIT_ALIVE);
1067 /* HW RF KILL switch toggled */
1068 if (inta & CSR_INT_BIT_RF_KILL) {
1069 int hw_rf_kill = 0;
1070 if (!(iwl_read32(priv, CSR_GP_CNTRL) &
1071 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW))
1072 hw_rf_kill = 1;
1074 IWL_WARN(priv, "RF_KILL bit toggled to %s.\n",
1075 hw_rf_kill ? "disable radio" : "enable radio");
1077 priv->isr_stats.rfkill++;
1079 /* driver only loads ucode once setting the interface up.
1080 * 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.
1084 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);
1089 wiphy_rfkill_set_hw_state(priv->hw->wiphy, hw_rf_kill);
1092 handled |= CSR_INT_BIT_RF_KILL;
1095 /* Chip got too hot and stopped itself */
1096 if (inta & CSR_INT_BIT_CT_KILL) {
1097 IWL_ERR(priv, "Microcode CT kill error detected.\n");
1098 priv->isr_stats.ctkill++;
1099 handled |= CSR_INT_BIT_CT_KILL;
1102 /* Error detected by uCode */
1103 if (inta & CSR_INT_BIT_SW_ERR) {
1104 IWL_ERR(priv, "Microcode SW error detected. "
1105 " Restarting 0x%X.\n", inta);
1106 priv->isr_stats.sw++;
1107 iwl_irq_handle_error(priv);
1108 handled |= CSR_INT_BIT_SW_ERR;
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.
1116 if (inta & CSR_INT_BIT_WAKEUP) {
1117 IWL_DEBUG_ISR(priv, "Wakeup interrupt\n");
1118 iwl_rx_queue_update_write_ptr(priv, &priv->rxq);
1119 for (i = 0; i < priv->hw_params.max_txq_num; i++)
1120 iwl_txq_update_write_ptr(priv, &priv->txq[i]);
1121 priv->isr_stats.wakeup++;
1122 handled |= CSR_INT_BIT_WAKEUP;
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)) {
1129 iwl_rx_handle(priv);
1130 priv->isr_stats.rx++;
1131 handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX);
1134 /* This "Tx" DMA channel is used only for loading uCode */
1135 if (inta & CSR_INT_BIT_FH_TX) {
1136 IWL_DEBUG_ISR(priv, "uCode load interrupt\n");
1137 priv->isr_stats.tx++;
1138 handled |= CSR_INT_BIT_FH_TX;
1139 /* Wake up uCode load routine, now that load is complete */
1140 priv->ucode_write_complete = 1;
1141 wake_up_interruptible(&priv->wait_command_queue);
1144 if (inta & ~handled) {
1145 IWL_ERR(priv, "Unhandled INTA bits 0x%08x\n", inta & ~handled);
1146 priv->isr_stats.unhandled++;
1149 if (inta & ~(priv->inta_mask)) {
1150 IWL_WARN(priv, "Disabled INTA bits 0x%08x were pending\n",
1151 inta & ~priv->inta_mask);
1152 IWL_WARN(priv, " with FH_INT = 0x%08x\n", inta_fh);
1155 /* Re-enable all interrupts */
1156 /* only Re-enable if diabled by irq */
1157 if (test_bit(STATUS_INT_ENABLED, &priv->status))
1158 iwl_enable_interrupts(priv);
1160 #ifdef CONFIG_IWLWIFI_DEBUG
1161 if (iwl_get_debug_level(priv) & (IWL_DL_ISR)) {
1162 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);
1165 IWL_DEBUG_ISR(priv, "End inta 0x%08x, enabled 0x%08x, fh 0x%08x, "
1166 "flags 0x%08lx\n", inta, inta_mask, inta_fh, flags);
1168 #endif
1171 /* tasklet for iwlagn interrupt */
1172 static void iwl_irq_tasklet(struct iwl_priv *priv)
1174 u32 inta = 0;
1175 u32 handled = 0;
1176 unsigned long flags;
1177 u32 i;
1178 #ifdef CONFIG_IWLWIFI_DEBUG
1179 u32 inta_mask;
1180 #endif
1182 spin_lock_irqsave(&priv->lock, flags);
1184 /* Ack/clear/reset pending uCode interrupts.
1185 * Note: Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS,
1187 /* 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.
1195 iwl_write32(priv, CSR_INT, priv->_agn.inta | ~priv->inta_mask);
1197 inta = priv->_agn.inta;
1199 #ifdef CONFIG_IWLWIFI_DEBUG
1200 if (iwl_get_debug_level(priv) & IWL_DL_ISR) {
1201 /* 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);
1206 #endif
1208 spin_unlock_irqrestore(&priv->lock, flags);
1210 /* saved interrupt in inta variable now we can reset priv->_agn.inta */
1211 priv->_agn.inta = 0;
1213 /* Now service all interrupt bits discovered above. */
1214 if (inta & CSR_INT_BIT_HW_ERR) {
1215 IWL_ERR(priv, "Hardware error detected. Restarting.\n");
1217 /* Tell the device to stop sending interrupts */
1218 iwl_disable_interrupts(priv);
1220 priv->isr_stats.hw++;
1221 iwl_irq_handle_error(priv);
1223 handled |= CSR_INT_BIT_HW_ERR;
1225 return;
1228 #ifdef CONFIG_IWLWIFI_DEBUG
1229 if (iwl_get_debug_level(priv) & (IWL_DL_ISR)) {
1230 /* 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++;
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++;
1243 #endif
1244 /* Safely ignore these bits for debug checks below */
1245 inta &= ~(CSR_INT_BIT_SCD | CSR_INT_BIT_ALIVE);
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;
1254 IWL_WARN(priv, "RF_KILL bit toggled to %s.\n",
1255 hw_rf_kill ? "disable radio" : "enable radio");
1257 priv->isr_stats.rfkill++;
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.
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);
1269 wiphy_rfkill_set_hw_state(priv->hw->wiphy, hw_rf_kill);
1272 handled |= CSR_INT_BIT_RF_KILL;
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;
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++;
1287 iwl_irq_handle_error(priv);
1288 handled |= CSR_INT_BIT_SW_ERR;
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);
1295 for (i = 0; i < priv->hw_params.max_txq_num; i++)
1296 iwl_txq_update_write_ptr(priv, &priv->txq[i]);
1298 priv->isr_stats.wakeup++;
1300 handled |= CSR_INT_BIT_WAKEUP;
1303 /* All uCode command responses, including Tx command responses,
1304 * Rx "responses" (frame-received notification), and other
1305 * notifications from uCode come through here*/
1306 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX |
1307 CSR_INT_BIT_RX_PERIODIC)) {
1308 IWL_DEBUG_ISR(priv, "Rx interrupt\n");
1309 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);
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);
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
1325 * but the shared data changes does not reflect this;
1326 * periodic interrupt will detect any dangling Rx activity.
1329 /* Disable periodic interrupt; we use it as just a one-shot. */
1330 iwl_write8(priv, CSR_INT_PERIODIC_REG,
1331 CSR_INT_PERIODIC_DIS);
1332 iwl_rx_handle(priv);
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.
1341 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX))
1342 iwl_write8(priv, CSR_INT_PERIODIC_REG,
1343 CSR_INT_PERIODIC_ENA);
1345 priv->isr_stats.rx++;
1348 /* This "Tx" DMA channel is used only for loading uCode */
1349 if (inta & CSR_INT_BIT_FH_TX) {
1350 iwl_write32(priv, CSR_FH_INT_STATUS, CSR49_FH_INT_TX_MASK);
1351 IWL_DEBUG_ISR(priv, "uCode load interrupt\n");
1352 priv->isr_stats.tx++;
1353 handled |= CSR_INT_BIT_FH_TX;
1354 /* Wake up uCode load routine, now that load is complete */
1355 priv->ucode_write_complete = 1;
1356 wake_up_interruptible(&priv->wait_command_queue);
1359 if (inta & ~handled) {
1360 IWL_ERR(priv, "Unhandled INTA bits 0x%08x\n", inta & ~handled);
1361 priv->isr_stats.unhandled++;
1364 if (inta & ~(priv->inta_mask)) {
1365 IWL_WARN(priv, "Disabled INTA bits 0x%08x were pending\n",
1366 inta & ~priv->inta_mask);
1369 /* 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);
1375 /* 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)
1381 * iwl_good_ack_health - checks for ACK count ratios, BA timeout retries.
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.
1387 bool iwl_good_ack_health(struct iwl_priv *priv,
1388 struct iwl_rx_packet *pkt)
1390 bool rc = true;
1391 int actual_ack_cnt_delta, expected_ack_cnt_delta;
1392 int ba_timeout_delta;
1394 actual_ack_cnt_delta =
1395 le32_to_cpu(pkt->u.stats.tx.actual_ack_cnt) -
1396 le32_to_cpu(priv->_agn.statistics.tx.actual_ack_cnt);
1397 expected_ack_cnt_delta =
1398 le32_to_cpu(pkt->u.stats.tx.expected_ack_cnt) -
1399 le32_to_cpu(priv->_agn.statistics.tx.expected_ack_cnt);
1400 ba_timeout_delta =
1401 le32_to_cpu(pkt->u.stats.tx.agg.ba_timeout) -
1402 le32_to_cpu(priv->_agn.statistics.tx.agg.ba_timeout);
1403 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);
1412 #ifdef CONFIG_IWLWIFI_DEBUGFS
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.
1418 IWL_DEBUG_RADIO(priv, "rx_detected_cnt delta = %d\n",
1419 priv->_agn.delta_statistics.tx.rx_detected_cnt);
1420 IWL_DEBUG_RADIO(priv,
1421 "ack_or_ba_timeout_collision delta = %d\n",
1422 priv->_agn.delta_statistics.tx.
1423 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;
1431 return rc;
1435 /*****************************************************************************
1437 * sysfs attributes
1439 *****************************************************************************/
1441 #ifdef CONFIG_IWLWIFI_DEBUG
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.
1448 * See the level definitions in iwl for details.
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.
1454 static ssize_t show_debug_level(struct device *d,
1455 struct device_attribute *attr, char *buf)
1457 struct iwl_priv *priv = dev_get_drvdata(d);
1458 return sprintf(buf, "0x%08X\n", iwl_get_debug_level(priv));
1460 static ssize_t store_debug_level(struct device *d,
1461 struct device_attribute *attr,
1462 const char *buf, size_t count)
1464 struct iwl_priv *priv = dev_get_drvdata(d);
1465 unsigned long val;
1466 int ret;
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");
1477 return strnlen(buf, count);
1480 static DEVICE_ATTR(debug_level, S_IWUSR | S_IRUGO,
1481 show_debug_level, store_debug_level);
1484 #endif /* CONFIG_IWLWIFI_DEBUG */
1487 static ssize_t show_temperature(struct device *d,
1488 struct device_attribute *attr, char *buf)
1490 struct iwl_priv *priv = dev_get_drvdata(d);
1492 if (!iwl_is_alive(priv))
1493 return -EAGAIN;
1495 return sprintf(buf, "%d\n", priv->temperature);
1498 static DEVICE_ATTR(temperature, S_IRUGO, show_temperature, NULL);
1500 static ssize_t show_tx_power(struct device *d,
1501 struct device_attribute *attr, char *buf)
1503 struct iwl_priv *priv = dev_get_drvdata(d);
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);
1511 static ssize_t store_tx_power(struct device *d,
1512 struct device_attribute *attr,
1513 const char *buf, size_t count)
1515 struct iwl_priv *priv = dev_get_drvdata(d);
1516 unsigned long val;
1517 int ret;
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;
1530 return ret;
1533 static DEVICE_ATTR(tx_power, S_IWUSR | S_IRUGO, show_tx_power, store_tx_power);
1535 static struct attribute *iwl_sysfs_entries[] = {
1536 &dev_attr_temperature.attr,
1537 &dev_attr_tx_power.attr,
1538 #ifdef CONFIG_IWLWIFI_DEBUG
1539 &dev_attr_debug_level.attr,
1540 #endif
1541 NULL
1544 static struct attribute_group iwl_attribute_group = {
1545 .name = NULL, /* put in device directory */
1546 .attrs = iwl_sysfs_entries,
1549 /******************************************************************************
1551 * uCode download functions
1553 ******************************************************************************/
1555 static void iwl_dealloc_ucode_pci(struct iwl_priv *priv)
1557 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);
1565 static void iwl_nic_start(struct iwl_priv *priv)
1567 /* Remove all resets to allow NIC to operate */
1568 iwl_write32(priv, CSR_RESET, 0);
1571 struct iwlagn_ucode_capabilities {
1572 u32 max_probe_length;
1573 u32 standard_phy_calibration_size;
1574 bool pan;
1577 static void iwl_ucode_callback(const struct firmware *ucode_raw, void *context);
1578 static int iwl_mac_setup_register(struct iwl_priv *priv,
1579 struct iwlagn_ucode_capabilities *capa);
1581 #define UCODE_EXPERIMENTAL_INDEX 100
1582 #define UCODE_EXPERIMENTAL_TAG "exp"
1584 static int __must_check iwl_request_firmware(struct iwl_priv *priv, bool first)
1586 const char *name_pre = priv->cfg->fw_name_pre;
1587 char tag[8];
1589 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
1595 priv->fw_index = priv->cfg->ucode_api_max;
1596 sprintf(tag, "%d", priv->fw_index);
1597 } else {
1598 priv->fw_index--;
1599 sprintf(tag, "%d", priv->fw_index);
1602 if (priv->fw_index < priv->cfg->ucode_api_min) {
1603 IWL_ERR(priv, "no suitable firmware found!\n");
1604 return -ENOENT;
1607 sprintf(priv->firmware_name, "%s%s%s", name_pre, tag, ".ucode");
1609 IWL_DEBUG_INFO(priv, "attempting to load firmware %s'%s'\n",
1610 (priv->fw_index == UCODE_EXPERIMENTAL_INDEX)
1611 ? "EXPERIMENTAL " : "",
1612 priv->firmware_name);
1614 return request_firmware_nowait(THIS_MODULE, 1, priv->firmware_name,
1615 &priv->pci_dev->dev, GFP_KERNEL, priv,
1616 iwl_ucode_callback);
1619 struct 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;
1623 u32 build;
1625 u32 init_evtlog_ptr, init_evtlog_size, init_errlog_ptr;
1626 u32 inst_evtlog_ptr, inst_evtlog_size, inst_errlog_ptr;
1629 static int iwlagn_load_legacy_firmware(struct iwl_priv *priv,
1630 const struct firmware *ucode_raw,
1631 struct iwlagn_firmware_pieces *pieces)
1633 struct iwl_ucode_header *ucode = (void *)ucode_raw->data;
1634 u32 api_ver, hdr_size;
1635 const u8 *src;
1637 priv->ucode_ver = le32_to_cpu(ucode->ver);
1638 api_ver = IWL_UCODE_API(priv->ucode_ver);
1640 switch (api_ver) {
1641 default:
1643 * 4965 doesn't revision the firmware file format
1644 * along with the API version, it always uses v1
1645 * file format.
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;
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;
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;
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;
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) {
1687 IWL_ERR(priv,
1688 "uCode file size %d does not match expected size\n",
1689 (int)ucode_raw->size);
1690 return -EINVAL;
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;
1704 return 0;
1707 static int iwlagn_wanted_ucode_alternative = 1;
1709 static 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)
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;
1720 u32 tlv_len;
1721 enum iwl_ucode_tlv_type tlv_type;
1722 const u8 *tlv_data;
1724 if (len < sizeof(*ucode)) {
1725 IWL_ERR(priv, "uCode has invalid length: %zd\n", len);
1726 return -EINVAL;
1729 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));
1732 return -EINVAL;
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.
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);
1752 priv->ucode_ver = le32_to_cpu(ucode->ver);
1753 pieces->build = le32_to_cpu(ucode->build);
1754 data = ucode->data;
1756 len -= sizeof(*ucode);
1758 while (len >= sizeof(*tlv)) {
1759 u16 tlv_alt;
1761 len -= sizeof(*tlv);
1762 tlv = (void *)data;
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;
1769 if (len < tlv_len) {
1770 IWL_ERR(priv, "invalid TLV len: %zd/%u\n",
1771 len, tlv_len);
1772 return -EINVAL;
1774 len -= ALIGN(tlv_len, 4);
1775 data += sizeof(*tlv) + ALIGN(tlv_len, 4);
1778 * Alternative 0 is always valid.
1780 * Skip alternative TLVs that are not selected.
1782 if (tlv_alt != 0 && tlv_alt != wanted_alternative)
1783 continue;
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:
1807 if (tlv_len != sizeof(u32))
1808 goto invalid_tlv_len;
1809 capa->max_probe_length =
1810 le32_to_cpup((__le32 *)tlv_data);
1811 break;
1812 case IWL_UCODE_TLV_PAN:
1813 if (tlv_len)
1814 goto invalid_tlv_len;
1815 capa->pan = true;
1816 break;
1817 case IWL_UCODE_TLV_INIT_EVTLOG_PTR:
1818 if (tlv_len != sizeof(u32))
1819 goto invalid_tlv_len;
1820 pieces->init_evtlog_ptr =
1821 le32_to_cpup((__le32 *)tlv_data);
1822 break;
1823 case IWL_UCODE_TLV_INIT_EVTLOG_SIZE:
1824 if (tlv_len != sizeof(u32))
1825 goto invalid_tlv_len;
1826 pieces->init_evtlog_size =
1827 le32_to_cpup((__le32 *)tlv_data);
1828 break;
1829 case IWL_UCODE_TLV_INIT_ERRLOG_PTR:
1830 if (tlv_len != sizeof(u32))
1831 goto invalid_tlv_len;
1832 pieces->init_errlog_ptr =
1833 le32_to_cpup((__le32 *)tlv_data);
1834 break;
1835 case IWL_UCODE_TLV_RUNT_EVTLOG_PTR:
1836 if (tlv_len != sizeof(u32))
1837 goto invalid_tlv_len;
1838 pieces->inst_evtlog_ptr =
1839 le32_to_cpup((__le32 *)tlv_data);
1840 break;
1841 case IWL_UCODE_TLV_RUNT_EVTLOG_SIZE:
1842 if (tlv_len != sizeof(u32))
1843 goto invalid_tlv_len;
1844 pieces->inst_evtlog_size =
1845 le32_to_cpup((__le32 *)tlv_data);
1846 break;
1847 case IWL_UCODE_TLV_RUNT_ERRLOG_PTR:
1848 if (tlv_len != sizeof(u32))
1849 goto invalid_tlv_len;
1850 pieces->inst_errlog_ptr =
1851 le32_to_cpup((__le32 *)tlv_data);
1852 break;
1853 case IWL_UCODE_TLV_ENHANCE_SENS_TBL:
1854 if (tlv_len)
1855 goto invalid_tlv_len;
1856 priv->enhance_sensitivity_table = true;
1857 break;
1858 case IWL_UCODE_TLV_PHY_CALIBRATION_SIZE:
1859 if (tlv_len != sizeof(u32))
1860 goto invalid_tlv_len;
1861 capa->standard_phy_calibration_size =
1862 le32_to_cpup((__le32 *)tlv_data);
1863 break;
1864 default:
1865 IWL_WARN(priv, "unknown TLV: %d\n", tlv_type);
1866 break;
1870 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);
1873 return -EINVAL;
1876 return 0;
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);
1882 return -EINVAL;
1886 * iwl_ucode_callback - callback when firmware was loaded
1888 * If loaded successfully, copies the firmware into buffers
1889 * for the card to fetch (via DMA).
1891 static void iwl_ucode_callback(const struct firmware *ucode_raw, void *context)
1893 struct iwl_priv *priv = context;
1894 struct iwl_ucode_header *ucode;
1895 int err;
1896 struct iwlagn_firmware_pieces pieces;
1897 const unsigned int api_max = priv->cfg->ucode_api_max;
1898 const unsigned int api_min = priv->cfg->ucode_api_min;
1899 u32 api_ver;
1900 char buildstr[25];
1901 u32 build;
1902 struct iwlagn_ucode_capabilities ucode_capa = {
1903 .max_probe_length = 200,
1904 .standard_phy_calibration_size =
1905 IWL_DEFAULT_STANDARD_PHY_CALIBRATE_TBL_SIZE,
1908 memset(&pieces, 0, sizeof(pieces));
1910 if (!ucode_raw) {
1911 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);
1915 goto try_again;
1918 IWL_DEBUG_INFO(priv, "Loaded firmware file '%s' (%zd bytes).\n",
1919 priv->firmware_name, ucode_raw->size);
1921 /* Make sure that we got at least the API version number */
1922 if (ucode_raw->size < 4) {
1923 IWL_ERR(priv, "File size way too small!\n");
1924 goto try_again;
1927 /* Data from ucode file: header followed by uCode images */
1928 ucode = (struct iwl_ucode_header *)ucode_raw->data;
1930 if (ucode->ver)
1931 err = iwlagn_load_legacy_firmware(priv, ucode_raw, &pieces);
1932 else
1933 err = iwlagn_load_firmware(priv, ucode_raw, &pieces,
1934 &ucode_capa);
1936 if (err)
1937 goto try_again;
1939 api_ver = IWL_UCODE_API(priv->ucode_ver);
1940 build = pieces.build;
1943 * api_ver should match the api version forming part of the
1944 * firmware filename ... but we don't check for that and only rely
1945 * on the API version read from firmware header from here on forward
1947 /* 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;
1957 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);
1965 if (build)
1966 sprintf(buildstr, " build %u%s", build,
1967 (priv->fw_index == UCODE_EXPERIMENTAL_INDEX)
1968 ? " (EXP)" : "");
1969 else
1970 buildstr[0] = '\0';
1972 IWL_INFO(priv, "loaded firmware version %u.%u.%u.%u%s\n",
1973 IWL_UCODE_MAJOR(priv->ucode_ver),
1974 IWL_UCODE_MINOR(priv->ucode_ver),
1975 IWL_UCODE_API(priv->ucode_ver),
1976 IWL_UCODE_SERIAL(priv->ucode_ver),
1977 buildstr);
1979 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);
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.
1994 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);
2007 /* Verify that uCode images will fit in card's SRAM */
2008 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);
2011 goto try_again;
2014 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);
2017 goto try_again;
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);
2023 goto try_again;
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);
2029 goto try_again;
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);
2035 goto try_again;
2038 /* Allocate ucode buffers for card's bus-master loading ... */
2040 /* Runtime instructions and 2 copies of data:
2041 * 1) unmodified from disk
2042 * 2) backup cache for save/restore during power-downs */
2043 priv->ucode_code.len = pieces.inst_size;
2044 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_code);
2046 priv->ucode_data.len = pieces.data_size;
2047 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data);
2049 priv->ucode_data_backup.len = pieces.data_size;
2050 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
2052 if (!priv->ucode_code.v_addr || !priv->ucode_data.v_addr ||
2053 !priv->ucode_data_backup.v_addr)
2054 goto err_pci_alloc;
2056 /* Initialization instructions and data */
2057 if (pieces.init_size && pieces.init_data_size) {
2058 priv->ucode_init.len = pieces.init_size;
2059 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init);
2061 priv->ucode_init_data.len = pieces.init_data_size;
2062 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init_data);
2064 if (!priv->ucode_init.v_addr || !priv->ucode_init_data.v_addr)
2065 goto err_pci_alloc;
2068 /* Bootstrap (instructions only, no data) */
2069 if (pieces.boot_size) {
2070 priv->ucode_boot.len = pieces.boot_size;
2071 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_boot);
2073 if (!priv->ucode_boot.v_addr)
2074 goto err_pci_alloc;
2077 /* Now that we can no longer fail, copy information */
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.
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
2088 priv->_agn.init_evtlog_size =
2089 priv->cfg->base_params->max_event_log_size;
2090 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
2095 priv->_agn.inst_evtlog_size =
2096 priv->cfg->base_params->max_event_log_size;
2097 priv->_agn.inst_errlog_ptr = pieces.inst_errlog_ptr;
2099 if (ucode_capa.pan) {
2100 priv->valid_contexts |= BIT(IWL_RXON_CTX_PAN);
2101 priv->sta_key_max_num = STA_KEY_MAX_NUM_PAN;
2102 } else
2103 priv->sta_key_max_num = STA_KEY_MAX_NUM;
2105 /* Copy images into buffers for card's bus-master reads ... */
2107 /* Runtime instructions (first block of data in file) */
2108 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);
2112 IWL_DEBUG_INFO(priv, "uCode instr buf vaddr = 0x%p, paddr = 0x%08x\n",
2113 priv->ucode_code.v_addr, (u32)priv->ucode_code.p_addr);
2116 * Runtime data
2117 * NOTE: Copy into backup buffer will be done in iwl_up()
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);
2124 /* Initialization instructions */
2125 if (pieces.init_size) {
2126 IWL_DEBUG_INFO(priv, "Copying (but not loading) init instr len %Zd\n",
2127 pieces.init_size);
2128 memcpy(priv->ucode_init.v_addr, pieces.init, pieces.init_size);
2131 /* Initialization data */
2132 if (pieces.init_data_size) {
2133 IWL_DEBUG_INFO(priv, "Copying (but not loading) init data len %Zd\n",
2134 pieces.init_data_size);
2135 memcpy(priv->ucode_init_data.v_addr, pieces.init_data,
2136 pieces.init_data_size);
2139 /* 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);
2145 * figure out the offset of chain noise reset and gain commands
2146 * base on the size of standard phy calibration commands table size
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;
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;
2158 /**************************************************
2159 * This is still part of probe() in a sense...
2161 * 9. Setup and register with mac80211 and debugfs
2162 **************************************************/
2163 err = iwl_mac_setup_register(priv, &ucode_capa);
2164 if (err)
2165 goto out_unbind;
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);
2171 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;
2178 /* We have our copies now, allow OS release its copies */
2179 release_firmware(ucode_raw);
2180 complete(&priv->_agn.firmware_loading_complete);
2181 return;
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;
2190 err_pci_alloc:
2191 IWL_ERR(priv, "failed to allocate pci memory\n");
2192 iwl_dealloc_ucode_pci(priv);
2193 out_unbind:
2194 complete(&priv->_agn.firmware_loading_complete);
2195 device_release_driver(&priv->pci_dev->dev);
2196 release_firmware(ucode_raw);
2199 static 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",
2230 static 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 },
2249 static const char *desc_lookup(u32 num)
2251 int i;
2252 int max = ARRAY_SIZE(desc_lookup_text);
2254 if (num < max)
2255 return desc_lookup_text[num];
2257 max = ARRAY_SIZE(advanced_lookup) - 1;
2258 for (i = 0; i < max; i++) {
2259 if (advanced_lookup[i].num == num)
2260 break;;
2262 return advanced_lookup[i].name;
2265 #define ERROR_START_OFFSET (1 * sizeof(u32))
2266 #define ERROR_ELEM_SIZE (7 * sizeof(u32))
2268 void iwl_dump_nic_error_log(struct iwl_priv *priv)
2270 u32 data2, line;
2271 u32 desc, time, count, base, data1;
2272 u32 blink1, blink2, ilink1, ilink2;
2273 u32 pc, hcmd;
2275 if (priv->ucode_type == UCODE_INIT) {
2276 base = le32_to_cpu(priv->card_alive_init.error_event_table_ptr);
2277 if (!base)
2278 base = priv->_agn.init_errlog_ptr;
2279 } else {
2280 base = le32_to_cpu(priv->card_alive.error_event_table_ptr);
2281 if (!base)
2282 base = priv->_agn.inst_errlog_ptr;
2285 if (!priv->cfg->ops->lib->is_valid_rtc_data_addr(base)) {
2286 IWL_ERR(priv,
2287 "Not valid error log pointer 0x%08X for %s uCode\n",
2288 base, (priv->ucode_type == UCODE_INIT) ? "Init" : "RT");
2289 return;
2292 count = iwl_read_targ_mem(priv, base);
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);
2300 desc = iwl_read_targ_mem(priv, base + 1 * sizeof(u32));
2301 priv->isr_stats.err_code = desc;
2302 pc = iwl_read_targ_mem(priv, base + 2 * sizeof(u32));
2303 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));
2311 hcmd = iwl_read_targ_mem(priv, base + 22 * sizeof(u32));
2313 trace_iwlwifi_dev_ucode_error(priv, desc, time, data1, data2, line,
2314 blink1, blink2, ilink1, ilink2);
2316 IWL_ERR(priv, "Desc Time "
2317 "data1 data2 line\n");
2318 IWL_ERR(priv, "%-28s (0x%04X) %010u 0x%08X 0x%08X %u\n",
2319 desc_lookup(desc), desc, time, data1, data2, line);
2320 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);
2325 #define EVENT_START_OFFSET (4 * sizeof(u32))
2328 * iwl_print_event_log - Dump error event log to syslog
2331 static 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)
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 */
2340 unsigned long reg_flags;
2342 if (num_events == 0)
2343 return pos;
2345 if (priv->ucode_type == UCODE_INIT) {
2346 base = le32_to_cpu(priv->card_alive_init.log_event_table_ptr);
2347 if (!base)
2348 base = priv->_agn.init_evtlog_ptr;
2349 } else {
2350 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
2351 if (!base)
2352 base = priv->_agn.inst_evtlog_ptr;
2355 if (mode == 0)
2356 event_size = 2 * sizeof(u32);
2357 else
2358 event_size = 3 * sizeof(u32);
2360 ptr = base + EVENT_START_OFFSET + (start_idx * event_size);
2362 /* Make sure device is powered up for SRAM reads */
2363 spin_lock_irqsave(&priv->reg_lock, reg_flags);
2364 iwl_grab_nic_access(priv);
2366 /* Set starting address; reads will auto-increment */
2367 _iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR, ptr);
2368 rmb();
2370 /* "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++) {
2373 ev = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
2374 time = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
2375 if (mode == 0) {
2376 /* data, ev */
2377 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);
2387 } else {
2388 data = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
2389 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",
2395 time, data, ev);
2396 trace_iwlwifi_dev_ucode_event(priv, time,
2397 data, ev);
2402 /* Allow device to power down */
2403 iwl_release_nic_access(priv);
2404 spin_unlock_irqrestore(&priv->reg_lock, reg_flags);
2405 return pos;
2409 * iwl_print_last_event_logs - Dump the newest # of event log to syslog
2411 static 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)
2417 * display the newest DEFAULT_LOG_ENTRIES entries
2418 * i.e the entries just before the next ont that uCode would fill.
2420 if (num_wraps) {
2421 if (next_entry < size) {
2422 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);
2429 } else
2430 pos = iwl_print_event_log(priv, next_entry - size,
2431 size, mode, pos, buf, bufsz);
2432 } else {
2433 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);
2441 return pos;
2444 #define DEFAULT_DUMP_EVENT_LOG_ENTRIES (20)
2446 int iwl_dump_nic_event_log(struct iwl_priv *priv, bool full_log,
2447 char **buf, bool display)
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 */
2455 u32 logsize;
2456 int pos = 0;
2457 size_t bufsz = 0;
2459 if (priv->ucode_type == UCODE_INIT) {
2460 base = le32_to_cpu(priv->card_alive_init.log_event_table_ptr);
2461 logsize = priv->_agn.init_evtlog_size;
2462 if (!base)
2463 base = priv->_agn.init_evtlog_ptr;
2464 } else {
2465 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
2466 logsize = priv->_agn.inst_evtlog_size;
2467 if (!base)
2468 base = priv->_agn.inst_evtlog_ptr;
2471 if (!priv->cfg->ops->lib->is_valid_rtc_data_addr(base)) {
2472 IWL_ERR(priv,
2473 "Invalid event log pointer 0x%08X for %s uCode\n",
2474 base, (priv->ucode_type == UCODE_INIT) ? "Init" : "RT");
2475 return -EINVAL;
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)));
2484 if (capacity > logsize) {
2485 IWL_ERR(priv, "Log capacity %d is bogus, limit to %d entries\n",
2486 capacity, logsize);
2487 capacity = logsize;
2490 if (next_entry > logsize) {
2491 IWL_ERR(priv, "Log write index %d is bogus, limit to %d\n",
2492 next_entry, logsize);
2493 next_entry = logsize;
2496 size = num_wraps ? capacity : next_entry;
2498 /* bail out if nothing in log */
2499 if (size == 0) {
2500 IWL_ERR(priv, "Start IWL Event Log Dump: nothing in log\n");
2501 return pos;
2504 /* enable/disable bt channel announcement */
2505 priv->bt_ch_announce = iwlagn_bt_ch_announce;
2507 #ifdef CONFIG_IWLWIFI_DEBUG
2508 if (!(iwl_get_debug_level(priv) & IWL_DL_FW_ERRORS) && !full_log)
2509 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;
2514 #endif
2515 IWL_ERR(priv, "Start IWL Event Log Dump: display last %u entries\n",
2516 size);
2518 #ifdef CONFIG_IWLWIFI_DEBUG
2519 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)
2526 return -ENOMEM;
2528 if ((iwl_get_debug_level(priv) & IWL_DL_FW_ERRORS) || full_log) {
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.
2534 if (num_wraps)
2535 pos = iwl_print_event_log(priv, next_entry,
2536 capacity - next_entry, mode,
2537 pos, buf, bufsz);
2538 /* (then/else) start at top of log */
2539 pos = iwl_print_event_log(priv, 0,
2540 next_entry, mode, pos, buf, bufsz);
2541 } else
2542 pos = iwl_print_last_event_logs(priv, capacity, num_wraps,
2543 next_entry, size, mode,
2544 pos, buf, bufsz);
2545 #else
2546 pos = iwl_print_last_event_logs(priv, capacity, num_wraps,
2547 next_entry, size, mode,
2548 pos, buf, bufsz);
2549 #endif
2550 return pos;
2553 static void iwl_rf_kill_ct_config(struct iwl_priv *priv)
2555 struct iwl_ct_kill_config cmd;
2556 struct iwl_ct_kill_throttling_config adv_cmd;
2557 unsigned long flags;
2558 int ret = 0;
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;
2566 if (priv->cfg->base_params->support_ct_kill_exit) {
2567 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);
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);
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);
2599 static int iwlagn_send_calib_cfg_rt(struct iwl_priv *priv, u32 cfg)
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,
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;
2610 calib_cfg_cmd.ucd_calib_cfg.once.start = cpu_to_le32(cfg);
2612 return iwl_send_cmd(priv, &cmd);
2617 * iwl_alive_start - called after REPLY_ALIVE notification received
2618 * from protocol/runtime uCode (initialization uCode's
2619 * Alive gets handled by iwl_init_alive_start()).
2621 static void iwl_alive_start(struct iwl_priv *priv)
2623 int ret = 0;
2624 struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS];
2626 IWL_DEBUG_INFO(priv, "Runtime Alive received.\n");
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 */
2631 IWL_DEBUG_INFO(priv, "Alive failed.\n");
2632 goto restart;
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. */
2638 if (iwl_verify_ucode(priv)) {
2639 /* Runtime instruction load was bad;
2640 * take it all the way back down so we can try again */
2641 IWL_DEBUG_INFO(priv, "Bad runtime uCode load.\n");
2642 goto restart;
2645 ret = priv->cfg->ops->lib->alive_notify(priv);
2646 if (ret) {
2647 IWL_WARN(priv,
2648 "Could not complete ALIVE transition [ntf]: %d\n", ret);
2649 goto restart;
2653 /* After the ALIVE response, we can send host commands to the uCode */
2654 set_bit(STATUS_ALIVE, &priv->status);
2656 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 +
2660 msecs_to_jiffies(
2661 priv->cfg->base_params->monitor_recover_period));
2664 if (iwl_is_rfkill(priv))
2665 return;
2667 /* download priority table before any calibration request */
2668 if (priv->cfg->bt_params &&
2669 priv->cfg->bt_params->advanced_bt_coexist) {
2670 /* 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;
2676 iwlagn_send_prio_tbl(priv);
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);
2684 if (priv->hw_params.calib_rt_cfg)
2685 iwlagn_send_calib_cfg_rt(priv, priv->hw_params.calib_rt_cfg);
2687 ieee80211_wake_queues(priv->hw);
2689 priv->active_rate = IWL_RATES_MASK;
2691 /* 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);
2695 if (iwl_is_associated_ctx(ctx)) {
2696 struct iwl_rxon_cmd *active_rxon =
2697 (struct iwl_rxon_cmd *)&ctx->active;
2698 /* apply any changes in staging */
2699 ctx->staging.filter_flags |= RXON_FILTER_ASSOC_MSK;
2700 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
2701 } else {
2702 struct iwl_rxon_context *tmp;
2703 /* Initialize our rx_config data */
2704 for_each_context(priv, tmp)
2705 iwl_connection_init_rx_config(priv, tmp);
2707 if (priv->cfg->ops->hcmd->set_rxon_chain)
2708 priv->cfg->ops->hcmd->set_rxon_chain(priv, ctx);
2711 if (priv->cfg->bt_params &&
2712 !priv->cfg->bt_params->advanced_bt_coexist) {
2713 /* Configure Bluetooth device coexistence support */
2714 priv->cfg->ops->hcmd->send_bt_config(priv);
2717 iwl_reset_run_time_calib(priv);
2719 /* Configure the adapter for unassociated operation */
2720 iwlcore_commit_rxon(priv, ctx);
2722 /* At this point, the NIC is initialized and operational */
2723 iwl_rf_kill_ct_config(priv);
2725 iwl_leds_init(priv);
2727 IWL_DEBUG_INFO(priv, "ALIVE processing complete.\n");
2728 set_bit(STATUS_READY, &priv->status);
2729 wake_up_interruptible(&priv->wait_command_queue);
2731 iwl_power_update_mode(priv, true);
2732 IWL_DEBUG_INFO(priv, "Updated power mode\n");
2735 return;
2737 restart:
2738 queue_work(priv->workqueue, &priv->restart);
2741 static void iwl_cancel_deferred_work(struct iwl_priv *priv);
2743 static void __iwl_down(struct iwl_priv *priv)
2745 unsigned long flags;
2746 int exit_pending = test_bit(STATUS_EXIT_PENDING, &priv->status);
2748 IWL_DEBUG_INFO(priv, DRV_NAME " is going down\n");
2750 iwl_scan_cancel_timeout(priv, 200);
2752 exit_pending = test_and_set_bit(STATUS_EXIT_PENDING, &priv->status);
2754 /* 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);
2759 iwl_clear_ucode_stations(priv, NULL);
2760 iwl_dealloc_bcast_stations(priv);
2761 iwl_clear_driver_stations(priv);
2763 /* reset BT coex data */
2764 priv->bt_status = 0;
2765 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;
2770 priv->bt_sco_active = false;
2771 priv->bt_full_concurrent = false;
2772 priv->bt_ci_compliance = 0;
2774 /* Unblock any waiting calls */
2775 wake_up_interruptible_all(&priv->wait_command_queue);
2777 /* 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);
2782 /* stop and reset the on-board processor */
2783 iwl_write32(priv, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET);
2785 /* tell the device to stop sending interrupts */
2786 spin_lock_irqsave(&priv->lock, flags);
2787 iwl_disable_interrupts(priv);
2788 spin_unlock_irqrestore(&priv->lock, flags);
2789 iwl_synchronize_irq(priv);
2791 if (priv->mac80211_registered)
2792 ieee80211_stop_queues(priv->hw);
2794 /* If we have not previously called iwl_init() then
2795 * clear all bits but the RF Kill bit and return */
2796 if (!iwl_is_init(priv)) {
2797 priv->status = test_bit(STATUS_RF_KILL_HW, &priv->status) <<
2798 STATUS_RF_KILL_HW |
2799 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
2800 STATUS_GEO_CONFIGURED |
2801 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
2802 STATUS_EXIT_PENDING;
2803 goto exit;
2806 /* ...otherwise clear out all the status bits but the RF Kill
2807 * bit and continue taking the NIC down. */
2808 priv->status &= test_bit(STATUS_RF_KILL_HW, &priv->status) <<
2809 STATUS_RF_KILL_HW |
2810 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
2811 STATUS_GEO_CONFIGURED |
2812 test_bit(STATUS_FW_ERROR, &priv->status) <<
2813 STATUS_FW_ERROR |
2814 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
2815 STATUS_EXIT_PENDING;
2817 /* device going down, Stop using ICT table */
2818 iwl_disable_ict(priv);
2820 iwlagn_txq_ctx_stop(priv);
2821 iwlagn_rxq_stop(priv);
2823 /* Power-down device's busmaster DMA clocks */
2824 iwl_write_prph(priv, APMG_CLK_DIS_REG, APMG_CLK_VAL_DMA_CLK_RQT);
2825 udelay(5);
2827 /* 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);
2830 /* Stop the device, and put it in low power state */
2831 iwl_apm_stop(priv);
2833 exit:
2834 memset(&priv->card_alive, 0, sizeof(struct iwl_alive_resp));
2836 dev_kfree_skb(priv->beacon_skb);
2837 priv->beacon_skb = NULL;
2839 /* clear out any free frames */
2840 iwl_clear_free_frames(priv);
2843 static void iwl_down(struct iwl_priv *priv)
2845 mutex_lock(&priv->mutex);
2846 __iwl_down(priv);
2847 mutex_unlock(&priv->mutex);
2849 iwl_cancel_deferred_work(priv);
2852 #define HW_READY_TIMEOUT (50)
2854 static int iwl_set_hw_ready(struct iwl_priv *priv)
2856 int ret = 0;
2858 iwl_set_bit(priv, CSR_HW_IF_CONFIG_REG,
2859 CSR_HW_IF_CONFIG_REG_BIT_NIC_READY);
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;
2871 IWL_DEBUG_INFO(priv, "hardware %s\n",
2872 (priv->hw_ready == 1) ? "ready" : "not ready");
2873 return ret;
2876 static int iwl_prepare_card_hw(struct iwl_priv *priv)
2878 int ret = 0;
2880 IWL_DEBUG_INFO(priv, "iwl_prepare_card_hw enter\n");
2882 ret = iwl_set_hw_ready(priv);
2883 if (priv->hw_ready)
2884 return ret;
2886 /* If HW is not ready, prepare the conditions to check again */
2887 iwl_set_bit(priv, CSR_HW_IF_CONFIG_REG,
2888 CSR_HW_IF_CONFIG_REG_PREPARE);
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);
2894 /* HW should be ready by now, check again. */
2895 if (ret != -ETIMEDOUT)
2896 iwl_set_hw_ready(priv);
2898 return ret;
2901 #define MAX_HW_RESTARTS 5
2903 static int __iwl_up(struct iwl_priv *priv)
2905 struct iwl_rxon_context *ctx;
2906 int i;
2907 int ret;
2909 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
2910 IWL_WARN(priv, "Exit pending; will not bring the NIC up\n");
2911 return -EIO;
2914 if (!priv->ucode_data_backup.v_addr || !priv->ucode_data.v_addr) {
2915 IWL_ERR(priv, "ucode not available for device bringup\n");
2916 return -EIO;
2919 for_each_context(priv, ctx) {
2920 ret = iwlagn_alloc_bcast_station(priv, ctx);
2921 if (ret) {
2922 iwl_dealloc_bcast_stations(priv);
2923 return ret;
2927 iwl_prepare_card_hw(priv);
2929 if (!priv->hw_ready) {
2930 IWL_WARN(priv, "Exit HW not ready\n");
2931 return -EIO;
2934 /* If platform's RF_KILL switch is NOT set to KILL */
2935 if (iwl_read32(priv, CSR_GP_CNTRL) & CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
2936 clear_bit(STATUS_RF_KILL_HW, &priv->status);
2937 else
2938 set_bit(STATUS_RF_KILL_HW, &priv->status);
2940 if (iwl_is_rfkill(priv)) {
2941 wiphy_rfkill_set_hw_state(priv->hw->wiphy, true);
2943 iwl_enable_interrupts(priv);
2944 IWL_WARN(priv, "Radio disabled by HW RF Kill switch\n");
2945 return 0;
2948 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
2950 /* must be initialised before iwl_hw_nic_init */
2951 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;
2956 ret = iwlagn_hw_nic_init(priv);
2957 if (ret) {
2958 IWL_ERR(priv, "Unable to init nic\n");
2959 return ret;
2962 /* make sure rfkill handshake bits are cleared */
2963 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
2964 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR,
2965 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
2967 /* clear (again), then enable host interrupts */
2968 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
2969 iwl_enable_interrupts(priv);
2971 /* really make sure rfkill handshake bits are cleared */
2972 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);
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,
2979 priv->ucode_data.len);
2981 for (i = 0; i < MAX_HW_RESTARTS; i++) {
2983 /* load bootstrap state machine,
2984 * load bootstrap program into processor's memory,
2985 * prepare to load the "initialize" uCode */
2986 ret = priv->cfg->ops->lib->load_ucode(priv);
2988 if (ret) {
2989 IWL_ERR(priv, "Unable to set up bootstrap uCode: %d\n",
2990 ret);
2991 continue;
2994 /* start card; "initialize" will load runtime ucode */
2995 iwl_nic_start(priv);
2997 IWL_DEBUG_INFO(priv, DRV_NAME " is coming up\n");
2999 return 0;
3002 set_bit(STATUS_EXIT_PENDING, &priv->status);
3003 __iwl_down(priv);
3004 clear_bit(STATUS_EXIT_PENDING, &priv->status);
3006 /* tried to restart and config the device for as long as our
3007 * patience could withstand */
3008 IWL_ERR(priv, "Unable to initialize device after %d attempts.\n", i);
3009 return -EIO;
3013 /*****************************************************************************
3015 * Workqueue callbacks
3017 *****************************************************************************/
3019 static void iwl_bg_init_alive_start(struct work_struct *data)
3021 struct iwl_priv *priv =
3022 container_of(data, struct iwl_priv, init_alive_start.work);
3024 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3025 return;
3027 mutex_lock(&priv->mutex);
3028 priv->cfg->ops->lib->init_alive_start(priv);
3029 mutex_unlock(&priv->mutex);
3032 static void iwl_bg_alive_start(struct work_struct *data)
3034 struct iwl_priv *priv =
3035 container_of(data, struct iwl_priv, alive_start.work);
3037 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3038 return;
3040 /* enable dram interrupt */
3041 iwl_reset_ict(priv);
3043 mutex_lock(&priv->mutex);
3044 iwl_alive_start(priv);
3045 mutex_unlock(&priv->mutex);
3048 static void iwl_bg_run_time_calib_work(struct work_struct *work)
3050 struct iwl_priv *priv = container_of(work, struct iwl_priv,
3051 run_time_calib_work);
3053 mutex_lock(&priv->mutex);
3055 if (test_bit(STATUS_EXIT_PENDING, &priv->status) ||
3056 test_bit(STATUS_SCANNING, &priv->status)) {
3057 mutex_unlock(&priv->mutex);
3058 return;
3061 if (priv->start_calib) {
3062 if (priv->cfg->bt_params &&
3063 priv->cfg->bt_params->bt_statistics) {
3064 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);
3076 mutex_unlock(&priv->mutex);
3079 static void iwl_bg_restart(struct work_struct *data)
3081 struct iwl_priv *priv = container_of(data, struct iwl_priv, restart);
3083 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3084 return;
3086 if (test_and_clear_bit(STATUS_FW_ERROR, &priv->status)) {
3087 struct iwl_rxon_context *ctx;
3088 bool bt_sco, bt_full_concurrent;
3089 u8 bt_ci_compliance;
3090 u8 bt_load;
3091 u8 bt_status;
3093 mutex_lock(&priv->mutex);
3094 for_each_context(priv, ctx)
3095 ctx->vif = NULL;
3096 priv->is_open = 0;
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.
3103 * The restart process will later pick them up and
3104 * re-configure the hw when we reconfigure the BT
3105 * command.
3107 bt_sco = priv->bt_sco_active;
3108 bt_full_concurrent = priv->bt_full_concurrent;
3109 bt_ci_compliance = priv->bt_ci_compliance;
3110 bt_load = priv->bt_traffic_load;
3111 bt_status = priv->bt_status;
3113 __iwl_down(priv);
3115 priv->bt_sco_active = bt_sco;
3116 priv->bt_full_concurrent = bt_full_concurrent;
3117 priv->bt_ci_compliance = bt_ci_compliance;
3118 priv->bt_traffic_load = bt_load;
3119 priv->bt_status = bt_status;
3121 mutex_unlock(&priv->mutex);
3122 iwl_cancel_deferred_work(priv);
3123 ieee80211_restart_hw(priv->hw);
3124 } else {
3125 iwl_down(priv);
3127 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3128 return;
3130 mutex_lock(&priv->mutex);
3131 __iwl_up(priv);
3132 mutex_unlock(&priv->mutex);
3136 static void iwl_bg_rx_replenish(struct work_struct *data)
3138 struct iwl_priv *priv =
3139 container_of(data, struct iwl_priv, rx_replenish);
3141 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3142 return;
3144 mutex_lock(&priv->mutex);
3145 iwlagn_rx_replenish(priv);
3146 mutex_unlock(&priv->mutex);
3149 /*****************************************************************************
3151 * mac80211 entry point functions
3153 *****************************************************************************/
3155 #define UCODE_READY_TIMEOUT (4 * HZ)
3158 * Not a mac80211 entry point function, but it fits in with all the
3159 * other mac80211 functions grouped here.
3161 static int iwl_mac_setup_register(struct iwl_priv *priv,
3162 struct iwlagn_ucode_capabilities *capa)
3164 int ret;
3165 struct ieee80211_hw *hw = priv->hw;
3166 struct iwl_rxon_context *ctx;
3168 hw->rate_control_algorithm = "iwl-agn-rs";
3170 /* Tell mac80211 our characteristics */
3171 hw->flags = IEEE80211_HW_SIGNAL_DBM |
3172 IEEE80211_HW_AMPDU_AGGREGATION |
3173 IEEE80211_HW_NEED_DTIM_PERIOD |
3174 IEEE80211_HW_SPECTRUM_MGMT;
3176 if (!priv->cfg->base_params->broken_powersave)
3177 hw->flags |= IEEE80211_HW_SUPPORTS_PS |
3178 IEEE80211_HW_SUPPORTS_DYNAMIC_PS;
3180 if (priv->cfg->sku & IWL_SKU_N)
3181 hw->flags |= IEEE80211_HW_SUPPORTS_DYNAMIC_SMPS |
3182 IEEE80211_HW_SUPPORTS_STATIC_SMPS;
3184 hw->sta_data_size = sizeof(struct iwl_station_priv);
3185 hw->vif_data_size = sizeof(struct iwl_vif_priv);
3187 for_each_context(priv, ctx) {
3188 hw->wiphy->interface_modes |= ctx->interface_modes;
3189 hw->wiphy->interface_modes |= ctx->exclusive_interface_modes;
3192 hw->wiphy->flags |= WIPHY_FLAG_CUSTOM_REGULATORY |
3193 WIPHY_FLAG_DISABLE_BEACON_HINTS;
3196 * For now, disable PS by default because it affects
3197 * RX performance significantly.
3199 hw->wiphy->flags &= ~WIPHY_FLAG_PS_ON_BY_DEFAULT;
3201 hw->wiphy->max_scan_ssids = PROBE_OPTION_MAX;
3202 /* we create the 802.11 header and a zero-length SSID element */
3203 hw->wiphy->max_scan_ie_len = capa->max_probe_length - 24 - 2;
3205 /* Default value; 4 EDCA QOS priorities */
3206 hw->queues = 4;
3208 hw->max_listen_interval = IWL_CONN_MAX_LISTEN_INTERVAL;
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];
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;
3222 priv->mac80211_registered = 1;
3224 return 0;
3228 int iwlagn_mac_start(struct ieee80211_hw *hw)
3230 struct iwl_priv *priv = hw->priv;
3231 int ret;
3233 IWL_DEBUG_MAC80211(priv, "enter\n");
3235 /* we should be verifying the device is ready to be opened */
3236 mutex_lock(&priv->mutex);
3237 ret = __iwl_up(priv);
3238 mutex_unlock(&priv->mutex);
3240 if (ret)
3241 return ret;
3243 if (iwl_is_rfkill(priv))
3244 goto out;
3246 IWL_DEBUG_INFO(priv, "Start UP work done.\n");
3248 /* Wait for START_ALIVE from Run Time ucode. Otherwise callbacks from
3249 * mac80211 will not be run successfully. */
3250 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)) {
3255 IWL_ERR(priv, "START_ALIVE timeout after %dms.\n",
3256 jiffies_to_msecs(UCODE_READY_TIMEOUT));
3257 return -ETIMEDOUT;
3261 iwl_led_start(priv);
3263 out:
3264 priv->is_open = 1;
3265 IWL_DEBUG_MAC80211(priv, "leave\n");
3266 return 0;
3269 void iwlagn_mac_stop(struct ieee80211_hw *hw)
3271 struct iwl_priv *priv = hw->priv;
3273 IWL_DEBUG_MAC80211(priv, "enter\n");
3275 if (!priv->is_open)
3276 return;
3278 priv->is_open = 0;
3280 iwl_down(priv);
3282 flush_workqueue(priv->workqueue);
3284 /* enable interrupts again in order to receive rfkill changes */
3285 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
3286 iwl_enable_interrupts(priv);
3288 IWL_DEBUG_MAC80211(priv, "leave\n");
3291 int iwlagn_mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
3293 struct iwl_priv *priv = hw->priv;
3295 IWL_DEBUG_MACDUMP(priv, "enter\n");
3297 IWL_DEBUG_TX(priv, "dev->xmit(%d bytes) at rate 0x%02x\n", skb->len,
3298 ieee80211_get_tx_rate(hw, IEEE80211_SKB_CB(skb))->bitrate);
3300 if (iwlagn_tx_skb(priv, skb))
3301 dev_kfree_skb_any(skb);
3303 IWL_DEBUG_MACDUMP(priv, "leave\n");
3304 return NETDEV_TX_OK;
3307 void 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)
3313 struct iwl_priv *priv = hw->priv;
3314 struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv;
3316 IWL_DEBUG_MAC80211(priv, "enter\n");
3318 iwl_update_tkip_key(priv, vif_priv->ctx, keyconf, sta,
3319 iv32, phase1key);
3321 IWL_DEBUG_MAC80211(priv, "leave\n");
3324 int 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)
3328 struct iwl_priv *priv = hw->priv;
3329 struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv;
3330 struct iwl_rxon_context *ctx = vif_priv->ctx;
3331 int ret;
3332 u8 sta_id;
3333 bool is_default_wep_key = false;
3335 IWL_DEBUG_MAC80211(priv, "enter\n");
3337 if (priv->cfg->mod_params->sw_crypto) {
3338 IWL_DEBUG_MAC80211(priv, "leave - hwcrypto disabled\n");
3339 return -EOPNOTSUPP;
3342 sta_id = iwl_sta_id_or_broadcast(priv, vif_priv->ctx, sta);
3343 if (sta_id == IWL_INVALID_STATION)
3344 return -EINVAL;
3346 mutex_lock(&priv->mutex);
3347 iwl_scan_cancel_timeout(priv, 100);
3350 * If we are getting WEP group key and we didn't receive any key mapping
3351 * so far, we are in legacy wep mode (group key only), otherwise we are
3352 * in 1X mode.
3353 * In legacy wep mode, we use another host command to the uCode.
3355 if ((key->cipher == WLAN_CIPHER_SUITE_WEP40 ||
3356 key->cipher == WLAN_CIPHER_SUITE_WEP104) &&
3357 !sta) {
3358 if (cmd == SET_KEY)
3359 is_default_wep_key = !ctx->key_mapping_keys;
3360 else
3361 is_default_wep_key =
3362 (key->hw_key_idx == HW_KEY_DEFAULT);
3365 switch (cmd) {
3366 case SET_KEY:
3367 if (is_default_wep_key)
3368 ret = iwl_set_default_wep_key(priv, vif_priv->ctx, key);
3369 else
3370 ret = iwl_set_dynamic_key(priv, vif_priv->ctx,
3371 key, sta_id);
3373 IWL_DEBUG_MAC80211(priv, "enable hwcrypto key\n");
3374 break;
3375 case DISABLE_KEY:
3376 if (is_default_wep_key)
3377 ret = iwl_remove_default_wep_key(priv, ctx, key);
3378 else
3379 ret = iwl_remove_dynamic_key(priv, ctx, key, sta_id);
3381 IWL_DEBUG_MAC80211(priv, "disable hwcrypto key\n");
3382 break;
3383 default:
3384 ret = -EINVAL;
3387 mutex_unlock(&priv->mutex);
3388 IWL_DEBUG_MAC80211(priv, "leave\n");
3390 return ret;
3393 int 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)
3398 struct iwl_priv *priv = hw->priv;
3399 int ret = -EINVAL;
3401 IWL_DEBUG_HT(priv, "A-MPDU action on addr %pM tid %d\n",
3402 sta->addr, tid);
3404 if (!(priv->cfg->sku & IWL_SKU_N))
3405 return -EACCES;
3407 mutex_lock(&priv->mutex);
3409 switch (action) {
3410 case IEEE80211_AMPDU_RX_START:
3411 IWL_DEBUG_HT(priv, "start Rx\n");
3412 ret = iwl_sta_rx_agg_start(priv, sta, tid, *ssn);
3413 break;
3414 case IEEE80211_AMPDU_RX_STOP:
3415 IWL_DEBUG_HT(priv, "stop Rx\n");
3416 ret = iwl_sta_rx_agg_stop(priv, sta, tid);
3417 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3418 ret = 0;
3419 break;
3420 case IEEE80211_AMPDU_TX_START:
3421 IWL_DEBUG_HT(priv, "start Tx\n");
3422 ret = iwlagn_tx_agg_start(priv, vif, sta, tid, ssn);
3423 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);
3428 break;
3429 case IEEE80211_AMPDU_TX_STOP:
3430 IWL_DEBUG_HT(priv, "stop Tx\n");
3431 ret = iwlagn_tx_agg_stop(priv, vif, sta, tid);
3432 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);
3437 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3438 ret = 0;
3439 if (priv->cfg->ht_params &&
3440 priv->cfg->ht_params->use_rts_for_aggregation) {
3441 struct iwl_station_priv *sta_priv =
3442 (void *) sta->drv_priv;
3444 * switch off RTS/CTS if it was previously enabled
3447 sta_priv->lq_sta.lq.general_params.flags &=
3448 ~LINK_QUAL_FLAGS_SET_STA_TLC_RTS_MSK;
3449 iwl_send_lq_cmd(priv, iwl_rxon_ctx_from_vif(vif),
3450 &sta_priv->lq_sta.lq, CMD_ASYNC, false);
3452 break;
3453 case IEEE80211_AMPDU_TX_OPERATIONAL:
3454 if (priv->cfg->ht_params &&
3455 priv->cfg->ht_params->use_rts_for_aggregation) {
3456 struct iwl_station_priv *sta_priv =
3457 (void *) sta->drv_priv;
3460 * switch to RTS/CTS if it is the prefer protection
3461 * method for HT traffic
3464 sta_priv->lq_sta.lq.general_params.flags |=
3465 LINK_QUAL_FLAGS_SET_STA_TLC_RTS_MSK;
3466 iwl_send_lq_cmd(priv, iwl_rxon_ctx_from_vif(vif),
3467 &sta_priv->lq_sta.lq, CMD_ASYNC, false);
3469 ret = 0;
3470 break;
3472 mutex_unlock(&priv->mutex);
3474 return ret;
3477 int iwlagn_mac_sta_add(struct ieee80211_hw *hw,
3478 struct ieee80211_vif *vif,
3479 struct ieee80211_sta *sta)
3481 struct iwl_priv *priv = hw->priv;
3482 struct iwl_station_priv *sta_priv = (void *)sta->drv_priv;
3483 struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv;
3484 bool is_ap = vif->type == NL80211_IFTYPE_STATION;
3485 int ret;
3486 u8 sta_id;
3488 IWL_DEBUG_INFO(priv, "received request to add station %pM\n",
3489 sta->addr);
3490 mutex_lock(&priv->mutex);
3491 IWL_DEBUG_INFO(priv, "proceeding to add station %pM\n",
3492 sta->addr);
3493 sta_priv->common.sta_id = IWL_INVALID_STATION;
3495 atomic_set(&sta_priv->pending_frames, 0);
3496 if (vif->type == NL80211_IFTYPE_AP)
3497 sta_priv->client = true;
3499 ret = iwl_add_station_common(priv, vif_priv->ctx, sta->addr,
3500 is_ap, sta, &sta_id);
3501 if (ret) {
3502 IWL_ERR(priv, "Unable to add station %pM (%d)\n",
3503 sta->addr, ret);
3504 /* Should we return success if return code is EEXIST ? */
3505 mutex_unlock(&priv->mutex);
3506 return ret;
3509 sta_priv->common.sta_id = sta_id;
3511 /* Initialize rate scaling */
3512 IWL_DEBUG_INFO(priv, "Initializing rate scaling for station %pM\n",
3513 sta->addr);
3514 iwl_rs_rate_init(priv, sta, sta_id);
3515 mutex_unlock(&priv->mutex);
3517 return 0;
3520 void iwlagn_mac_channel_switch(struct ieee80211_hw *hw,
3521 struct ieee80211_channel_switch *ch_switch)
3523 struct iwl_priv *priv = hw->priv;
3524 const struct iwl_channel_info *ch_info;
3525 struct ieee80211_conf *conf = &hw->conf;
3526 struct ieee80211_channel *channel = ch_switch->channel;
3527 struct iwl_ht_config *ht_conf = &priv->current_ht_config;
3529 * MULTI-FIXME
3530 * When we add support for multiple interfaces, we need to
3531 * revisit this. The channel switch command in the device
3532 * only affects the BSS context, but what does that really
3533 * mean? And what if we get a CSA on the second interface?
3534 * This needs a lot of work.
3536 struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS];
3537 u16 ch;
3538 unsigned long flags = 0;
3540 IWL_DEBUG_MAC80211(priv, "enter\n");
3542 if (iwl_is_rfkill(priv))
3543 goto out_exit;
3545 if (test_bit(STATUS_EXIT_PENDING, &priv->status) ||
3546 test_bit(STATUS_SCANNING, &priv->status))
3547 goto out_exit;
3549 if (!iwl_is_associated_ctx(ctx))
3550 goto out_exit;
3552 /* channel switch in progress */
3553 if (priv->switch_rxon.switch_in_progress == true)
3554 goto out_exit;
3556 mutex_lock(&priv->mutex);
3557 if (priv->cfg->ops->lib->set_channel_switch) {
3559 ch = channel->hw_value;
3560 if (le16_to_cpu(ctx->active.channel) != ch) {
3561 ch_info = iwl_get_channel_info(priv,
3562 channel->band,
3563 ch);
3564 if (!is_channel_valid(ch_info)) {
3565 IWL_DEBUG_MAC80211(priv, "invalid channel\n");
3566 goto out;
3568 spin_lock_irqsave(&priv->lock, flags);
3570 priv->current_ht_config.smps = conf->smps_mode;
3572 /* Configure HT40 channels */
3573 ctx->ht.enabled = conf_is_ht(conf);
3574 if (ctx->ht.enabled) {
3575 if (conf_is_ht40_minus(conf)) {
3576 ctx->ht.extension_chan_offset =
3577 IEEE80211_HT_PARAM_CHA_SEC_BELOW;
3578 ctx->ht.is_40mhz = true;
3579 } else if (conf_is_ht40_plus(conf)) {
3580 ctx->ht.extension_chan_offset =
3581 IEEE80211_HT_PARAM_CHA_SEC_ABOVE;
3582 ctx->ht.is_40mhz = true;
3583 } else {
3584 ctx->ht.extension_chan_offset =
3585 IEEE80211_HT_PARAM_CHA_SEC_NONE;
3586 ctx->ht.is_40mhz = false;
3588 } else
3589 ctx->ht.is_40mhz = false;
3591 if ((le16_to_cpu(ctx->staging.channel) != ch))
3592 ctx->staging.flags = 0;
3594 iwl_set_rxon_channel(priv, channel, ctx);
3595 iwl_set_rxon_ht(priv, ht_conf);
3596 iwl_set_flags_for_band(priv, ctx, channel->band,
3597 ctx->vif);
3598 spin_unlock_irqrestore(&priv->lock, flags);
3600 iwl_set_rate(priv);
3602 * at this point, staging_rxon has the
3603 * configuration for channel switch
3605 if (priv->cfg->ops->lib->set_channel_switch(priv,
3606 ch_switch))
3607 priv->switch_rxon.switch_in_progress = false;
3610 out:
3611 mutex_unlock(&priv->mutex);
3612 out_exit:
3613 if (!priv->switch_rxon.switch_in_progress)
3614 ieee80211_chswitch_done(ctx->vif, false);
3615 IWL_DEBUG_MAC80211(priv, "leave\n");
3618 void iwlagn_configure_filter(struct ieee80211_hw *hw,
3619 unsigned int changed_flags,
3620 unsigned int *total_flags,
3621 u64 multicast)
3623 struct iwl_priv *priv = hw->priv;
3624 __le32 filter_or = 0, filter_nand = 0;
3625 struct iwl_rxon_context *ctx;
3627 #define CHK(test, flag) do { \
3628 if (*total_flags & (test)) \
3629 filter_or |= (flag); \
3630 else \
3631 filter_nand |= (flag); \
3632 } while (0)
3634 IWL_DEBUG_MAC80211(priv, "Enter: changed: 0x%x, total: 0x%x\n",
3635 changed_flags, *total_flags);
3637 CHK(FIF_OTHER_BSS | FIF_PROMISC_IN_BSS, RXON_FILTER_PROMISC_MSK);
3638 CHK(FIF_CONTROL, RXON_FILTER_CTL2HOST_MSK);
3639 CHK(FIF_BCN_PRBRESP_PROMISC, RXON_FILTER_BCON_AWARE_MSK);
3641 #undef CHK
3643 mutex_lock(&priv->mutex);
3645 for_each_context(priv, ctx) {
3646 ctx->staging.filter_flags &= ~filter_nand;
3647 ctx->staging.filter_flags |= filter_or;
3650 * Not committing directly because hardware can perform a scan,
3651 * but we'll eventually commit the filter flags change anyway.
3655 mutex_unlock(&priv->mutex);
3658 * Receiving all multicast frames is always enabled by the
3659 * default flags setup in iwl_connection_init_rx_config()
3660 * since we currently do not support programming multicast
3661 * filters into the device.
3663 *total_flags &= FIF_OTHER_BSS | FIF_ALLMULTI | FIF_PROMISC_IN_BSS |
3664 FIF_BCN_PRBRESP_PROMISC | FIF_CONTROL;
3667 void iwlagn_mac_flush(struct ieee80211_hw *hw, bool drop)
3669 struct iwl_priv *priv = hw->priv;
3671 mutex_lock(&priv->mutex);
3672 IWL_DEBUG_MAC80211(priv, "enter\n");
3674 /* do not support "flush" */
3675 if (!priv->cfg->ops->lib->txfifo_flush)
3676 goto done;
3678 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
3679 IWL_DEBUG_TX(priv, "Aborting flush due to device shutdown\n");
3680 goto done;
3682 if (iwl_is_rfkill(priv)) {
3683 IWL_DEBUG_TX(priv, "Aborting flush due to RF Kill\n");
3684 goto done;
3688 * mac80211 will not push any more frames for transmit
3689 * until the flush is completed
3691 if (drop) {
3692 IWL_DEBUG_MAC80211(priv, "send flush command\n");
3693 if (priv->cfg->ops->lib->txfifo_flush(priv, IWL_DROP_ALL)) {
3694 IWL_ERR(priv, "flush request fail\n");
3695 goto done;
3698 IWL_DEBUG_MAC80211(priv, "wait transmit/flush all frames\n");
3699 iwlagn_wait_tx_queue_empty(priv);
3700 done:
3701 mutex_unlock(&priv->mutex);
3702 IWL_DEBUG_MAC80211(priv, "leave\n");
3705 /*****************************************************************************
3707 * driver setup and teardown
3709 *****************************************************************************/
3711 static void iwl_setup_deferred_work(struct iwl_priv *priv)
3713 priv->workqueue = create_singlethread_workqueue(DRV_NAME);
3715 init_waitqueue_head(&priv->wait_command_queue);
3717 INIT_WORK(&priv->restart, iwl_bg_restart);
3718 INIT_WORK(&priv->rx_replenish, iwl_bg_rx_replenish);
3719 INIT_WORK(&priv->beacon_update, iwl_bg_beacon_update);
3720 INIT_WORK(&priv->run_time_calib_work, iwl_bg_run_time_calib_work);
3721 INIT_WORK(&priv->tx_flush, iwl_bg_tx_flush);
3722 INIT_WORK(&priv->bt_full_concurrency, iwl_bg_bt_full_concurrency);
3723 INIT_WORK(&priv->bt_runtime_config, iwl_bg_bt_runtime_config);
3724 INIT_DELAYED_WORK(&priv->init_alive_start, iwl_bg_init_alive_start);
3725 INIT_DELAYED_WORK(&priv->alive_start, iwl_bg_alive_start);
3727 iwl_setup_scan_deferred_work(priv);
3729 if (priv->cfg->ops->lib->setup_deferred_work)
3730 priv->cfg->ops->lib->setup_deferred_work(priv);
3732 init_timer(&priv->statistics_periodic);
3733 priv->statistics_periodic.data = (unsigned long)priv;
3734 priv->statistics_periodic.function = iwl_bg_statistics_periodic;
3736 init_timer(&priv->ucode_trace);
3737 priv->ucode_trace.data = (unsigned long)priv;
3738 priv->ucode_trace.function = iwl_bg_ucode_trace;
3740 if (priv->cfg->ops->lib->recover_from_tx_stall) {
3741 init_timer(&priv->monitor_recover);
3742 priv->monitor_recover.data = (unsigned long)priv;
3743 priv->monitor_recover.function =
3744 priv->cfg->ops->lib->recover_from_tx_stall;
3747 if (!priv->cfg->base_params->use_isr_legacy)
3748 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
3749 iwl_irq_tasklet, (unsigned long)priv);
3750 else
3751 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
3752 iwl_irq_tasklet_legacy, (unsigned long)priv);
3755 static void iwl_cancel_deferred_work(struct iwl_priv *priv)
3757 if (priv->cfg->ops->lib->cancel_deferred_work)
3758 priv->cfg->ops->lib->cancel_deferred_work(priv);
3760 cancel_delayed_work_sync(&priv->init_alive_start);
3761 cancel_delayed_work(&priv->alive_start);
3762 cancel_work_sync(&priv->run_time_calib_work);
3763 cancel_work_sync(&priv->beacon_update);
3765 iwl_cancel_scan_deferred_work(priv);
3767 cancel_work_sync(&priv->bt_full_concurrency);
3768 cancel_work_sync(&priv->bt_runtime_config);
3770 del_timer_sync(&priv->statistics_periodic);
3771 del_timer_sync(&priv->ucode_trace);
3774 static void iwl_init_hw_rates(struct iwl_priv *priv,
3775 struct ieee80211_rate *rates)
3777 int i;
3779 for (i = 0; i < IWL_RATE_COUNT_LEGACY; i++) {
3780 rates[i].bitrate = iwl_rates[i].ieee * 5;
3781 rates[i].hw_value = i; /* Rate scaling will work on indexes */
3782 rates[i].hw_value_short = i;
3783 rates[i].flags = 0;
3784 if ((i >= IWL_FIRST_CCK_RATE) && (i <= IWL_LAST_CCK_RATE)) {
3786 * If CCK != 1M then set short preamble rate flag.
3788 rates[i].flags |=
3789 (iwl_rates[i].plcp == IWL_RATE_1M_PLCP) ?
3790 0 : IEEE80211_RATE_SHORT_PREAMBLE;
3795 static int iwl_init_drv(struct iwl_priv *priv)
3797 int ret;
3799 spin_lock_init(&priv->sta_lock);
3800 spin_lock_init(&priv->hcmd_lock);
3802 INIT_LIST_HEAD(&priv->free_frames);
3804 mutex_init(&priv->mutex);
3805 mutex_init(&priv->sync_cmd_mutex);
3807 priv->ieee_channels = NULL;
3808 priv->ieee_rates = NULL;
3809 priv->band = IEEE80211_BAND_2GHZ;
3811 priv->iw_mode = NL80211_IFTYPE_STATION;
3812 priv->current_ht_config.smps = IEEE80211_SMPS_STATIC;
3813 priv->missed_beacon_threshold = IWL_MISSED_BEACON_THRESHOLD_DEF;
3814 priv->_agn.agg_tids_count = 0;
3816 /* initialize force reset */
3817 priv->force_reset[IWL_RF_RESET].reset_duration =
3818 IWL_DELAY_NEXT_FORCE_RF_RESET;
3819 priv->force_reset[IWL_FW_RESET].reset_duration =
3820 IWL_DELAY_NEXT_FORCE_FW_RELOAD;
3822 /* Choose which receivers/antennas to use */
3823 if (priv->cfg->ops->hcmd->set_rxon_chain)
3824 priv->cfg->ops->hcmd->set_rxon_chain(priv,
3825 &priv->contexts[IWL_RXON_CTX_BSS]);
3827 iwl_init_scan_params(priv);
3829 /* init bt coex */
3830 if (priv->cfg->bt_params &&
3831 priv->cfg->bt_params->advanced_bt_coexist) {
3832 priv->kill_ack_mask = IWLAGN_BT_KILL_ACK_MASK_DEFAULT;
3833 priv->kill_cts_mask = IWLAGN_BT_KILL_CTS_MASK_DEFAULT;
3834 priv->bt_valid = IWLAGN_BT_ALL_VALID_MSK;
3835 priv->bt_on_thresh = BT_ON_THRESHOLD_DEF;
3836 priv->bt_duration = BT_DURATION_LIMIT_DEF;
3837 priv->dynamic_frag_thresh = BT_FRAG_THRESHOLD_DEF;
3838 priv->dynamic_agg_thresh = BT_AGG_THRESHOLD_DEF;
3841 /* Set the tx_power_user_lmt to the lowest power level
3842 * this value will get overwritten by channel max power avg
3843 * from eeprom */
3844 priv->tx_power_user_lmt = IWLAGN_TX_POWER_TARGET_POWER_MIN;
3845 priv->tx_power_next = IWLAGN_TX_POWER_TARGET_POWER_MIN;
3847 ret = iwl_init_channel_map(priv);
3848 if (ret) {
3849 IWL_ERR(priv, "initializing regulatory failed: %d\n", ret);
3850 goto err;
3853 ret = iwlcore_init_geos(priv);
3854 if (ret) {
3855 IWL_ERR(priv, "initializing geos failed: %d\n", ret);
3856 goto err_free_channel_map;
3858 iwl_init_hw_rates(priv, priv->ieee_rates);
3860 return 0;
3862 err_free_channel_map:
3863 iwl_free_channel_map(priv);
3864 err:
3865 return ret;
3868 static void iwl_uninit_drv(struct iwl_priv *priv)
3870 iwl_calib_free_results(priv);
3871 iwlcore_free_geos(priv);
3872 iwl_free_channel_map(priv);
3873 kfree(priv->scan_cmd);
3876 #ifdef CONFIG_IWL5000
3877 struct ieee80211_ops iwlagn_hw_ops = {
3878 .tx = iwlagn_mac_tx,
3879 .start = iwlagn_mac_start,
3880 .stop = iwlagn_mac_stop,
3881 .add_interface = iwl_mac_add_interface,
3882 .remove_interface = iwl_mac_remove_interface,
3883 .change_interface = iwl_mac_change_interface,
3884 .config = iwlagn_mac_config,
3885 .configure_filter = iwlagn_configure_filter,
3886 .set_key = iwlagn_mac_set_key,
3887 .update_tkip_key = iwlagn_mac_update_tkip_key,
3888 .conf_tx = iwl_mac_conf_tx,
3889 .bss_info_changed = iwlagn_bss_info_changed,
3890 .ampdu_action = iwlagn_mac_ampdu_action,
3891 .hw_scan = iwl_mac_hw_scan,
3892 .sta_notify = iwlagn_mac_sta_notify,
3893 .sta_add = iwlagn_mac_sta_add,
3894 .sta_remove = iwl_mac_sta_remove,
3895 .channel_switch = iwlagn_mac_channel_switch,
3896 .flush = iwlagn_mac_flush,
3897 .tx_last_beacon = iwl_mac_tx_last_beacon,
3899 #endif
3901 static void iwl_hw_detect(struct iwl_priv *priv)
3903 priv->hw_rev = _iwl_read32(priv, CSR_HW_REV);
3904 priv->hw_wa_rev = _iwl_read32(priv, CSR_HW_REV_WA_REG);
3905 pci_read_config_byte(priv->pci_dev, PCI_REVISION_ID, &priv->rev_id);
3906 IWL_DEBUG_INFO(priv, "HW Revision ID = 0x%X\n", priv->rev_id);
3909 static int iwl_set_hw_params(struct iwl_priv *priv)
3911 priv->hw_params.max_rxq_size = RX_QUEUE_SIZE;
3912 priv->hw_params.max_rxq_log = RX_QUEUE_SIZE_LOG;
3913 if (priv->cfg->mod_params->amsdu_size_8K)
3914 priv->hw_params.rx_page_order = get_order(IWL_RX_BUF_SIZE_8K);
3915 else
3916 priv->hw_params.rx_page_order = get_order(IWL_RX_BUF_SIZE_4K);
3918 priv->hw_params.max_beacon_itrvl = IWL_MAX_UCODE_BEACON_INTERVAL;
3920 if (priv->cfg->mod_params->disable_11n)
3921 priv->cfg->sku &= ~IWL_SKU_N;
3923 /* Device-specific setup */
3924 return priv->cfg->ops->lib->set_hw_params(priv);
3927 static const u8 iwlagn_bss_ac_to_fifo[] = {
3928 IWL_TX_FIFO_VO,
3929 IWL_TX_FIFO_VI,
3930 IWL_TX_FIFO_BE,
3931 IWL_TX_FIFO_BK,
3934 static const u8 iwlagn_bss_ac_to_queue[] = {
3935 0, 1, 2, 3,
3938 static const u8 iwlagn_pan_ac_to_fifo[] = {
3939 IWL_TX_FIFO_VO_IPAN,
3940 IWL_TX_FIFO_VI_IPAN,
3941 IWL_TX_FIFO_BE_IPAN,
3942 IWL_TX_FIFO_BK_IPAN,
3945 static const u8 iwlagn_pan_ac_to_queue[] = {
3946 7, 6, 5, 4,
3949 static int iwl_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
3951 int err = 0, i;
3952 struct iwl_priv *priv;
3953 struct ieee80211_hw *hw;
3954 struct iwl_cfg *cfg = (struct iwl_cfg *)(ent->driver_data);
3955 unsigned long flags;
3956 u16 pci_cmd, num_mac;
3958 /************************
3959 * 1. Allocating HW data
3960 ************************/
3962 /* Disabling hardware scan means that mac80211 will perform scans
3963 * "the hard way", rather than using device's scan. */
3964 if (cfg->mod_params->disable_hw_scan) {
3965 dev_printk(KERN_DEBUG, &(pdev->dev),
3966 "sw scan support is deprecated\n");
3967 #ifdef CONFIG_IWL5000
3968 iwlagn_hw_ops.hw_scan = NULL;
3969 #endif
3970 #ifdef CONFIG_IWL4965
3971 iwl4965_hw_ops.hw_scan = NULL;
3972 #endif
3975 hw = iwl_alloc_all(cfg);
3976 if (!hw) {
3977 err = -ENOMEM;
3978 goto out;
3980 priv = hw->priv;
3981 /* At this point both hw and priv are allocated. */
3984 * The default context is always valid,
3985 * more may be discovered when firmware
3986 * is loaded.
3988 priv->valid_contexts = BIT(IWL_RXON_CTX_BSS);
3990 for (i = 0; i < NUM_IWL_RXON_CTX; i++)
3991 priv->contexts[i].ctxid = i;
3993 priv->contexts[IWL_RXON_CTX_BSS].always_active = true;
3994 priv->contexts[IWL_RXON_CTX_BSS].is_active = true;
3995 priv->contexts[IWL_RXON_CTX_BSS].rxon_cmd = REPLY_RXON;
3996 priv->contexts[IWL_RXON_CTX_BSS].rxon_timing_cmd = REPLY_RXON_TIMING;
3997 priv->contexts[IWL_RXON_CTX_BSS].rxon_assoc_cmd = REPLY_RXON_ASSOC;
3998 priv->contexts[IWL_RXON_CTX_BSS].qos_cmd = REPLY_QOS_PARAM;
3999 priv->contexts[IWL_RXON_CTX_BSS].ap_sta_id = IWL_AP_ID;
4000 priv->contexts[IWL_RXON_CTX_BSS].wep_key_cmd = REPLY_WEPKEY;
4001 priv->contexts[IWL_RXON_CTX_BSS].ac_to_fifo = iwlagn_bss_ac_to_fifo;
4002 priv->contexts[IWL_RXON_CTX_BSS].ac_to_queue = iwlagn_bss_ac_to_queue;
4003 priv->contexts[IWL_RXON_CTX_BSS].exclusive_interface_modes =
4004 BIT(NL80211_IFTYPE_ADHOC);
4005 priv->contexts[IWL_RXON_CTX_BSS].interface_modes =
4006 BIT(NL80211_IFTYPE_STATION);
4007 priv->contexts[IWL_RXON_CTX_BSS].ap_devtype = RXON_DEV_TYPE_AP;
4008 priv->contexts[IWL_RXON_CTX_BSS].ibss_devtype = RXON_DEV_TYPE_IBSS;
4009 priv->contexts[IWL_RXON_CTX_BSS].station_devtype = RXON_DEV_TYPE_ESS;
4010 priv->contexts[IWL_RXON_CTX_BSS].unused_devtype = RXON_DEV_TYPE_ESS;
4012 priv->contexts[IWL_RXON_CTX_PAN].rxon_cmd = REPLY_WIPAN_RXON;
4013 priv->contexts[IWL_RXON_CTX_PAN].rxon_timing_cmd = REPLY_WIPAN_RXON_TIMING;
4014 priv->contexts[IWL_RXON_CTX_PAN].rxon_assoc_cmd = REPLY_WIPAN_RXON_ASSOC;
4015 priv->contexts[IWL_RXON_CTX_PAN].qos_cmd = REPLY_WIPAN_QOS_PARAM;
4016 priv->contexts[IWL_RXON_CTX_PAN].ap_sta_id = IWL_AP_ID_PAN;
4017 priv->contexts[IWL_RXON_CTX_PAN].wep_key_cmd = REPLY_WIPAN_WEPKEY;
4018 priv->contexts[IWL_RXON_CTX_PAN].bcast_sta_id = IWLAGN_PAN_BCAST_ID;
4019 priv->contexts[IWL_RXON_CTX_PAN].station_flags = STA_FLG_PAN_STATION;
4020 priv->contexts[IWL_RXON_CTX_PAN].ac_to_fifo = iwlagn_pan_ac_to_fifo;
4021 priv->contexts[IWL_RXON_CTX_PAN].ac_to_queue = iwlagn_pan_ac_to_queue;
4022 priv->contexts[IWL_RXON_CTX_PAN].mcast_queue = IWL_IPAN_MCAST_QUEUE;
4023 priv->contexts[IWL_RXON_CTX_PAN].interface_modes =
4024 BIT(NL80211_IFTYPE_STATION) | BIT(NL80211_IFTYPE_AP);
4025 priv->contexts[IWL_RXON_CTX_PAN].ap_devtype = RXON_DEV_TYPE_CP;
4026 priv->contexts[IWL_RXON_CTX_PAN].station_devtype = RXON_DEV_TYPE_2STA;
4027 priv->contexts[IWL_RXON_CTX_PAN].unused_devtype = RXON_DEV_TYPE_P2P;
4029 BUILD_BUG_ON(NUM_IWL_RXON_CTX != 2);
4031 SET_IEEE80211_DEV(hw, &pdev->dev);
4033 IWL_DEBUG_INFO(priv, "*** LOAD DRIVER ***\n");
4034 priv->cfg = cfg;
4035 priv->pci_dev = pdev;
4036 priv->inta_mask = CSR_INI_SET_MASK;
4038 /* is antenna coupling more than 35dB ? */
4039 priv->bt_ant_couple_ok =
4040 (iwlagn_ant_coupling > IWL_BT_ANTENNA_COUPLING_THRESHOLD) ?
4041 true : false;
4043 /* enable/disable bt channel announcement */
4044 priv->bt_ch_announce = iwlagn_bt_ch_announce;
4046 if (iwl_alloc_traffic_mem(priv))
4047 IWL_ERR(priv, "Not enough memory to generate traffic log\n");
4049 /**************************
4050 * 2. Initializing PCI bus
4051 **************************/
4052 pci_disable_link_state(pdev, PCIE_LINK_STATE_L0S | PCIE_LINK_STATE_L1 |
4053 PCIE_LINK_STATE_CLKPM);
4055 if (pci_enable_device(pdev)) {
4056 err = -ENODEV;
4057 goto out_ieee80211_free_hw;
4060 pci_set_master(pdev);
4062 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(36));
4063 if (!err)
4064 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(36));
4065 if (err) {
4066 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
4067 if (!err)
4068 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
4069 /* both attempts failed: */
4070 if (err) {
4071 IWL_WARN(priv, "No suitable DMA available.\n");
4072 goto out_pci_disable_device;
4076 err = pci_request_regions(pdev, DRV_NAME);
4077 if (err)
4078 goto out_pci_disable_device;
4080 pci_set_drvdata(pdev, priv);
4083 /***********************
4084 * 3. Read REV register
4085 ***********************/
4086 priv->hw_base = pci_iomap(pdev, 0, 0);
4087 if (!priv->hw_base) {
4088 err = -ENODEV;
4089 goto out_pci_release_regions;
4092 IWL_DEBUG_INFO(priv, "pci_resource_len = 0x%08llx\n",
4093 (unsigned long long) pci_resource_len(pdev, 0));
4094 IWL_DEBUG_INFO(priv, "pci_resource_base = %p\n", priv->hw_base);
4096 /* these spin locks will be used in apm_ops.init and EEPROM access
4097 * we should init now
4099 spin_lock_init(&priv->reg_lock);
4100 spin_lock_init(&priv->lock);
4103 * stop and reset the on-board processor just in case it is in a
4104 * strange state ... like being left stranded by a primary kernel
4105 * and this is now the kdump kernel trying to start up
4107 iwl_write32(priv, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET);
4109 iwl_hw_detect(priv);
4110 IWL_INFO(priv, "Detected %s, REV=0x%X\n",
4111 priv->cfg->name, priv->hw_rev);
4113 /* We disable the RETRY_TIMEOUT register (0x41) to keep
4114 * PCI Tx retries from interfering with C3 CPU state */
4115 pci_write_config_byte(pdev, PCI_CFG_RETRY_TIMEOUT, 0x00);
4117 iwl_prepare_card_hw(priv);
4118 if (!priv->hw_ready) {
4119 IWL_WARN(priv, "Failed, HW not ready\n");
4120 goto out_iounmap;
4123 /*****************
4124 * 4. Read EEPROM
4125 *****************/
4126 /* Read the EEPROM */
4127 err = iwl_eeprom_init(priv);
4128 if (err) {
4129 IWL_ERR(priv, "Unable to init EEPROM\n");
4130 goto out_iounmap;
4132 err = iwl_eeprom_check_version(priv);
4133 if (err)
4134 goto out_free_eeprom;
4136 /* extract MAC Address */
4137 iwl_eeprom_get_mac(priv, priv->addresses[0].addr);
4138 IWL_DEBUG_INFO(priv, "MAC address: %pM\n", priv->addresses[0].addr);
4139 priv->hw->wiphy->addresses = priv->addresses;
4140 priv->hw->wiphy->n_addresses = 1;
4141 num_mac = iwl_eeprom_query16(priv, EEPROM_NUM_MAC_ADDRESS);
4142 if (num_mac > 1) {
4143 memcpy(priv->addresses[1].addr, priv->addresses[0].addr,
4144 ETH_ALEN);
4145 priv->addresses[1].addr[5]++;
4146 priv->hw->wiphy->n_addresses++;
4149 /************************
4150 * 5. Setup HW constants
4151 ************************/
4152 if (iwl_set_hw_params(priv)) {
4153 IWL_ERR(priv, "failed to set hw parameters\n");
4154 goto out_free_eeprom;
4157 /*******************
4158 * 6. Setup priv
4159 *******************/
4161 err = iwl_init_drv(priv);
4162 if (err)
4163 goto out_free_eeprom;
4164 /* At this point both hw and priv are initialized. */
4166 /********************
4167 * 7. Setup services
4168 ********************/
4169 spin_lock_irqsave(&priv->lock, flags);
4170 iwl_disable_interrupts(priv);
4171 spin_unlock_irqrestore(&priv->lock, flags);
4173 pci_enable_msi(priv->pci_dev);
4175 iwl_alloc_isr_ict(priv);
4176 err = request_irq(priv->pci_dev->irq, priv->cfg->ops->lib->isr,
4177 IRQF_SHARED, DRV_NAME, priv);
4178 if (err) {
4179 IWL_ERR(priv, "Error allocating IRQ %d\n", priv->pci_dev->irq);
4180 goto out_disable_msi;
4183 iwl_setup_deferred_work(priv);
4184 iwl_setup_rx_handlers(priv);
4186 /*********************************************
4187 * 8. Enable interrupts and read RFKILL state
4188 *********************************************/
4190 /* enable interrupts if needed: hw bug w/a */
4191 pci_read_config_word(priv->pci_dev, PCI_COMMAND, &pci_cmd);
4192 if (pci_cmd & PCI_COMMAND_INTX_DISABLE) {
4193 pci_cmd &= ~PCI_COMMAND_INTX_DISABLE;
4194 pci_write_config_word(priv->pci_dev, PCI_COMMAND, pci_cmd);
4197 iwl_enable_interrupts(priv);
4199 /* If platform's RF_KILL switch is NOT set to KILL */
4200 if (iwl_read32(priv, CSR_GP_CNTRL) & CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
4201 clear_bit(STATUS_RF_KILL_HW, &priv->status);
4202 else
4203 set_bit(STATUS_RF_KILL_HW, &priv->status);
4205 wiphy_rfkill_set_hw_state(priv->hw->wiphy,
4206 test_bit(STATUS_RF_KILL_HW, &priv->status));
4208 iwl_power_initialize(priv);
4209 iwl_tt_initialize(priv);
4211 init_completion(&priv->_agn.firmware_loading_complete);
4213 err = iwl_request_firmware(priv, true);
4214 if (err)
4215 goto out_destroy_workqueue;
4217 return 0;
4219 out_destroy_workqueue:
4220 destroy_workqueue(priv->workqueue);
4221 priv->workqueue = NULL;
4222 free_irq(priv->pci_dev->irq, priv);
4223 iwl_free_isr_ict(priv);
4224 out_disable_msi:
4225 pci_disable_msi(priv->pci_dev);
4226 iwl_uninit_drv(priv);
4227 out_free_eeprom:
4228 iwl_eeprom_free(priv);
4229 out_iounmap:
4230 pci_iounmap(pdev, priv->hw_base);
4231 out_pci_release_regions:
4232 pci_set_drvdata(pdev, NULL);
4233 pci_release_regions(pdev);
4234 out_pci_disable_device:
4235 pci_disable_device(pdev);
4236 out_ieee80211_free_hw:
4237 iwl_free_traffic_mem(priv);
4238 ieee80211_free_hw(priv->hw);
4239 out:
4240 return err;
4243 static void __devexit iwl_pci_remove(struct pci_dev *pdev)
4245 struct iwl_priv *priv = pci_get_drvdata(pdev);
4246 unsigned long flags;
4248 if (!priv)
4249 return;
4251 wait_for_completion(&priv->_agn.firmware_loading_complete);
4253 IWL_DEBUG_INFO(priv, "*** UNLOAD DRIVER ***\n");
4255 iwl_dbgfs_unregister(priv);
4256 sysfs_remove_group(&pdev->dev.kobj, &iwl_attribute_group);
4258 /* ieee80211_unregister_hw call wil cause iwl_mac_stop to
4259 * to be called and iwl_down since we are removing the device
4260 * we need to set STATUS_EXIT_PENDING bit.
4262 set_bit(STATUS_EXIT_PENDING, &priv->status);
4263 if (priv->mac80211_registered) {
4264 ieee80211_unregister_hw(priv->hw);
4265 priv->mac80211_registered = 0;
4266 } else {
4267 iwl_down(priv);
4271 * Make sure device is reset to low power before unloading driver.
4272 * This may be redundant with iwl_down(), but there are paths to
4273 * run iwl_down() without calling apm_ops.stop(), and there are
4274 * paths to avoid running iwl_down() at all before leaving driver.
4275 * This (inexpensive) call *makes sure* device is reset.
4277 iwl_apm_stop(priv);
4279 iwl_tt_exit(priv);
4281 /* make sure we flush any pending irq or
4282 * tasklet for the driver
4284 spin_lock_irqsave(&priv->lock, flags);
4285 iwl_disable_interrupts(priv);
4286 spin_unlock_irqrestore(&priv->lock, flags);
4288 iwl_synchronize_irq(priv);
4290 iwl_dealloc_ucode_pci(priv);
4292 if (priv->rxq.bd)
4293 iwlagn_rx_queue_free(priv, &priv->rxq);
4294 iwlagn_hw_txq_ctx_free(priv);
4296 iwl_eeprom_free(priv);
4299 /*netif_stop_queue(dev); */
4300 flush_workqueue(priv->workqueue);
4302 /* ieee80211_unregister_hw calls iwl_mac_stop, which flushes
4303 * priv->workqueue... so we can't take down the workqueue
4304 * until now... */
4305 destroy_workqueue(priv->workqueue);
4306 priv->workqueue = NULL;
4307 iwl_free_traffic_mem(priv);
4309 free_irq(priv->pci_dev->irq, priv);
4310 pci_disable_msi(priv->pci_dev);
4311 pci_iounmap(pdev, priv->hw_base);
4312 pci_release_regions(pdev);
4313 pci_disable_device(pdev);
4314 pci_set_drvdata(pdev, NULL);
4316 iwl_uninit_drv(priv);
4318 iwl_free_isr_ict(priv);
4320 dev_kfree_skb(priv->beacon_skb);
4322 ieee80211_free_hw(priv->hw);
4326 /*****************************************************************************
4328 * driver and module entry point
4330 *****************************************************************************/
4332 /* Hardware specific file defines the PCI IDs table for that hardware module */
4333 static DEFINE_PCI_DEVICE_TABLE(iwl_hw_card_ids) = {
4334 #ifdef CONFIG_IWL4965
4335 {IWL_PCI_DEVICE(0x4229, PCI_ANY_ID, iwl4965_agn_cfg)},
4336 {IWL_PCI_DEVICE(0x4230, PCI_ANY_ID, iwl4965_agn_cfg)},
4337 #endif /* CONFIG_IWL4965 */
4338 #ifdef CONFIG_IWL5000
4339 /* 5100 Series WiFi */
4340 {IWL_PCI_DEVICE(0x4232, 0x1201, iwl5100_agn_cfg)}, /* Mini Card */
4341 {IWL_PCI_DEVICE(0x4232, 0x1301, iwl5100_agn_cfg)}, /* Half Mini Card */
4342 {IWL_PCI_DEVICE(0x4232, 0x1204, iwl5100_agn_cfg)}, /* Mini Card */
4343 {IWL_PCI_DEVICE(0x4232, 0x1304, iwl5100_agn_cfg)}, /* Half Mini Card */
4344 {IWL_PCI_DEVICE(0x4232, 0x1205, iwl5100_bgn_cfg)}, /* Mini Card */
4345 {IWL_PCI_DEVICE(0x4232, 0x1305, iwl5100_bgn_cfg)}, /* Half Mini Card */
4346 {IWL_PCI_DEVICE(0x4232, 0x1206, iwl5100_abg_cfg)}, /* Mini Card */
4347 {IWL_PCI_DEVICE(0x4232, 0x1306, iwl5100_abg_cfg)}, /* Half Mini Card */
4348 {IWL_PCI_DEVICE(0x4232, 0x1221, iwl5100_agn_cfg)}, /* Mini Card */
4349 {IWL_PCI_DEVICE(0x4232, 0x1321, iwl5100_agn_cfg)}, /* Half Mini Card */
4350 {IWL_PCI_DEVICE(0x4232, 0x1224, iwl5100_agn_cfg)}, /* Mini Card */
4351 {IWL_PCI_DEVICE(0x4232, 0x1324, iwl5100_agn_cfg)}, /* Half Mini Card */
4352 {IWL_PCI_DEVICE(0x4232, 0x1225, iwl5100_bgn_cfg)}, /* Mini Card */
4353 {IWL_PCI_DEVICE(0x4232, 0x1325, iwl5100_bgn_cfg)}, /* Half Mini Card */
4354 {IWL_PCI_DEVICE(0x4232, 0x1226, iwl5100_abg_cfg)}, /* Mini Card */
4355 {IWL_PCI_DEVICE(0x4232, 0x1326, iwl5100_abg_cfg)}, /* Half Mini Card */
4356 {IWL_PCI_DEVICE(0x4237, 0x1211, iwl5100_agn_cfg)}, /* Mini Card */
4357 {IWL_PCI_DEVICE(0x4237, 0x1311, iwl5100_agn_cfg)}, /* Half Mini Card */
4358 {IWL_PCI_DEVICE(0x4237, 0x1214, iwl5100_agn_cfg)}, /* Mini Card */
4359 {IWL_PCI_DEVICE(0x4237, 0x1314, iwl5100_agn_cfg)}, /* Half Mini Card */
4360 {IWL_PCI_DEVICE(0x4237, 0x1215, iwl5100_bgn_cfg)}, /* Mini Card */
4361 {IWL_PCI_DEVICE(0x4237, 0x1315, iwl5100_bgn_cfg)}, /* Half Mini Card */
4362 {IWL_PCI_DEVICE(0x4237, 0x1216, iwl5100_abg_cfg)}, /* Mini Card */
4363 {IWL_PCI_DEVICE(0x4237, 0x1316, iwl5100_abg_cfg)}, /* Half Mini Card */
4365 /* 5300 Series WiFi */
4366 {IWL_PCI_DEVICE(0x4235, 0x1021, iwl5300_agn_cfg)}, /* Mini Card */
4367 {IWL_PCI_DEVICE(0x4235, 0x1121, iwl5300_agn_cfg)}, /* Half Mini Card */
4368 {IWL_PCI_DEVICE(0x4235, 0x1024, iwl5300_agn_cfg)}, /* Mini Card */
4369 {IWL_PCI_DEVICE(0x4235, 0x1124, iwl5300_agn_cfg)}, /* Half Mini Card */
4370 {IWL_PCI_DEVICE(0x4235, 0x1001, iwl5300_agn_cfg)}, /* Mini Card */
4371 {IWL_PCI_DEVICE(0x4235, 0x1101, iwl5300_agn_cfg)}, /* Half Mini Card */
4372 {IWL_PCI_DEVICE(0x4235, 0x1004, iwl5300_agn_cfg)}, /* Mini Card */
4373 {IWL_PCI_DEVICE(0x4235, 0x1104, iwl5300_agn_cfg)}, /* Half Mini Card */
4374 {IWL_PCI_DEVICE(0x4236, 0x1011, iwl5300_agn_cfg)}, /* Mini Card */
4375 {IWL_PCI_DEVICE(0x4236, 0x1111, iwl5300_agn_cfg)}, /* Half Mini Card */
4376 {IWL_PCI_DEVICE(0x4236, 0x1014, iwl5300_agn_cfg)}, /* Mini Card */
4377 {IWL_PCI_DEVICE(0x4236, 0x1114, iwl5300_agn_cfg)}, /* Half Mini Card */
4379 /* 5350 Series WiFi/WiMax */
4380 {IWL_PCI_DEVICE(0x423A, 0x1001, iwl5350_agn_cfg)}, /* Mini Card */
4381 {IWL_PCI_DEVICE(0x423A, 0x1021, iwl5350_agn_cfg)}, /* Mini Card */
4382 {IWL_PCI_DEVICE(0x423B, 0x1011, iwl5350_agn_cfg)}, /* Mini Card */
4384 /* 5150 Series Wifi/WiMax */
4385 {IWL_PCI_DEVICE(0x423C, 0x1201, iwl5150_agn_cfg)}, /* Mini Card */
4386 {IWL_PCI_DEVICE(0x423C, 0x1301, iwl5150_agn_cfg)}, /* Half Mini Card */
4387 {IWL_PCI_DEVICE(0x423C, 0x1206, iwl5150_abg_cfg)}, /* Mini Card */
4388 {IWL_PCI_DEVICE(0x423C, 0x1306, iwl5150_abg_cfg)}, /* Half Mini Card */
4389 {IWL_PCI_DEVICE(0x423C, 0x1221, iwl5150_agn_cfg)}, /* Mini Card */
4390 {IWL_PCI_DEVICE(0x423C, 0x1321, iwl5150_agn_cfg)}, /* Half Mini Card */
4392 {IWL_PCI_DEVICE(0x423D, 0x1211, iwl5150_agn_cfg)}, /* Mini Card */
4393 {IWL_PCI_DEVICE(0x423D, 0x1311, iwl5150_agn_cfg)}, /* Half Mini Card */
4394 {IWL_PCI_DEVICE(0x423D, 0x1216, iwl5150_abg_cfg)}, /* Mini Card */
4395 {IWL_PCI_DEVICE(0x423D, 0x1316, iwl5150_abg_cfg)}, /* Half Mini Card */
4397 /* 6x00 Series */
4398 {IWL_PCI_DEVICE(0x422B, 0x1101, iwl6000_3agn_cfg)},
4399 {IWL_PCI_DEVICE(0x422B, 0x1121, iwl6000_3agn_cfg)},
4400 {IWL_PCI_DEVICE(0x422C, 0x1301, iwl6000i_2agn_cfg)},
4401 {IWL_PCI_DEVICE(0x422C, 0x1306, iwl6000i_2abg_cfg)},
4402 {IWL_PCI_DEVICE(0x422C, 0x1307, iwl6000i_2bg_cfg)},
4403 {IWL_PCI_DEVICE(0x422C, 0x1321, iwl6000i_2agn_cfg)},
4404 {IWL_PCI_DEVICE(0x422C, 0x1326, iwl6000i_2abg_cfg)},
4405 {IWL_PCI_DEVICE(0x4238, 0x1111, iwl6000_3agn_cfg)},
4406 {IWL_PCI_DEVICE(0x4239, 0x1311, iwl6000i_2agn_cfg)},
4407 {IWL_PCI_DEVICE(0x4239, 0x1316, iwl6000i_2abg_cfg)},
4409 /* 6x00 Series Gen2a */
4410 {IWL_PCI_DEVICE(0x0082, 0x1301, iwl6000g2a_2agn_cfg)},
4411 {IWL_PCI_DEVICE(0x0082, 0x1306, iwl6000g2a_2abg_cfg)},
4412 {IWL_PCI_DEVICE(0x0082, 0x1307, iwl6000g2a_2bg_cfg)},
4413 {IWL_PCI_DEVICE(0x0082, 0x1321, iwl6000g2a_2agn_cfg)},
4414 {IWL_PCI_DEVICE(0x0082, 0x1326, iwl6000g2a_2abg_cfg)},
4415 {IWL_PCI_DEVICE(0x0085, 0x1311, iwl6000g2a_2agn_cfg)},
4416 {IWL_PCI_DEVICE(0x0085, 0x1316, iwl6000g2a_2abg_cfg)},
4418 /* 6x00 Series Gen2b */
4419 {IWL_PCI_DEVICE(0x008A, 0x5305, iwl6000g2b_bgn_cfg)},
4420 {IWL_PCI_DEVICE(0x008A, 0x5307, iwl6000g2b_bg_cfg)},
4421 {IWL_PCI_DEVICE(0x008A, 0x5325, iwl6000g2b_bgn_cfg)},
4422 {IWL_PCI_DEVICE(0x008A, 0x5327, iwl6000g2b_bg_cfg)},
4423 {IWL_PCI_DEVICE(0x008B, 0x5315, iwl6000g2b_bgn_cfg)},
4424 {IWL_PCI_DEVICE(0x008B, 0x5317, iwl6000g2b_bg_cfg)},
4425 {IWL_PCI_DEVICE(0x0090, 0x5211, iwl6000g2b_2agn_cfg)},
4426 {IWL_PCI_DEVICE(0x0090, 0x5215, iwl6000g2b_2bgn_cfg)},
4427 {IWL_PCI_DEVICE(0x0090, 0x5216, iwl6000g2b_2abg_cfg)},
4428 {IWL_PCI_DEVICE(0x0091, 0x5201, iwl6000g2b_2agn_cfg)},
4429 {IWL_PCI_DEVICE(0x0091, 0x5205, iwl6000g2b_2bgn_cfg)},
4430 {IWL_PCI_DEVICE(0x0091, 0x5206, iwl6000g2b_2abg_cfg)},
4431 {IWL_PCI_DEVICE(0x0091, 0x5207, iwl6000g2b_2bg_cfg)},
4432 {IWL_PCI_DEVICE(0x0091, 0x5221, iwl6000g2b_2agn_cfg)},
4433 {IWL_PCI_DEVICE(0x0091, 0x5225, iwl6000g2b_2bgn_cfg)},
4434 {IWL_PCI_DEVICE(0x0091, 0x5226, iwl6000g2b_2abg_cfg)},
4436 /* 6x50 WiFi/WiMax Series */
4437 {IWL_PCI_DEVICE(0x0087, 0x1301, iwl6050_2agn_cfg)},
4438 {IWL_PCI_DEVICE(0x0087, 0x1306, iwl6050_2abg_cfg)},
4439 {IWL_PCI_DEVICE(0x0087, 0x1321, iwl6050_2agn_cfg)},
4440 {IWL_PCI_DEVICE(0x0087, 0x1326, iwl6050_2abg_cfg)},
4441 {IWL_PCI_DEVICE(0x0089, 0x1311, iwl6050_2agn_cfg)},
4442 {IWL_PCI_DEVICE(0x0089, 0x1316, iwl6050_2abg_cfg)},
4444 /* 6x50 WiFi/WiMax Series Gen2 */
4445 {IWL_PCI_DEVICE(0x0885, 0x1305, iwl6050g2_bgn_cfg)},
4446 {IWL_PCI_DEVICE(0x0885, 0x1306, iwl6050g2_bgn_cfg)},
4447 {IWL_PCI_DEVICE(0x0885, 0x1325, iwl6050g2_bgn_cfg)},
4448 {IWL_PCI_DEVICE(0x0885, 0x1326, iwl6050g2_bgn_cfg)},
4449 {IWL_PCI_DEVICE(0x0886, 0x1315, iwl6050g2_bgn_cfg)},
4450 {IWL_PCI_DEVICE(0x0886, 0x1316, iwl6050g2_bgn_cfg)},
4452 /* 1000 Series WiFi */
4453 {IWL_PCI_DEVICE(0x0083, 0x1205, iwl1000_bgn_cfg)},
4454 {IWL_PCI_DEVICE(0x0083, 0x1305, iwl1000_bgn_cfg)},
4455 {IWL_PCI_DEVICE(0x0083, 0x1225, iwl1000_bgn_cfg)},
4456 {IWL_PCI_DEVICE(0x0083, 0x1325, iwl1000_bgn_cfg)},
4457 {IWL_PCI_DEVICE(0x0084, 0x1215, iwl1000_bgn_cfg)},
4458 {IWL_PCI_DEVICE(0x0084, 0x1315, iwl1000_bgn_cfg)},
4459 {IWL_PCI_DEVICE(0x0083, 0x1206, iwl1000_bg_cfg)},
4460 {IWL_PCI_DEVICE(0x0083, 0x1306, iwl1000_bg_cfg)},
4461 {IWL_PCI_DEVICE(0x0083, 0x1226, iwl1000_bg_cfg)},
4462 {IWL_PCI_DEVICE(0x0083, 0x1326, iwl1000_bg_cfg)},
4463 {IWL_PCI_DEVICE(0x0084, 0x1216, iwl1000_bg_cfg)},
4464 {IWL_PCI_DEVICE(0x0084, 0x1316, iwl1000_bg_cfg)},
4466 /* 100 Series WiFi */
4467 {IWL_PCI_DEVICE(0x08AE, 0x1005, iwl100_bgn_cfg)},
4468 {IWL_PCI_DEVICE(0x08AE, 0x1007, iwl100_bg_cfg)},
4469 {IWL_PCI_DEVICE(0x08AF, 0x1015, iwl100_bgn_cfg)},
4470 {IWL_PCI_DEVICE(0x08AF, 0x1017, iwl100_bg_cfg)},
4471 {IWL_PCI_DEVICE(0x08AE, 0x1025, iwl100_bgn_cfg)},
4472 {IWL_PCI_DEVICE(0x08AE, 0x1027, iwl100_bg_cfg)},
4474 /* 130 Series WiFi */
4475 {IWL_PCI_DEVICE(0x0896, 0x5005, iwl130_bgn_cfg)},
4476 {IWL_PCI_DEVICE(0x0896, 0x5007, iwl130_bg_cfg)},
4477 {IWL_PCI_DEVICE(0x0897, 0x5015, iwl130_bgn_cfg)},
4478 {IWL_PCI_DEVICE(0x0897, 0x5017, iwl130_bg_cfg)},
4479 {IWL_PCI_DEVICE(0x0896, 0x5025, iwl130_bgn_cfg)},
4480 {IWL_PCI_DEVICE(0x0896, 0x5027, iwl130_bg_cfg)},
4482 #endif /* CONFIG_IWL5000 */
4486 MODULE_DEVICE_TABLE(pci, iwl_hw_card_ids);
4488 static struct pci_driver iwl_driver = {
4489 .name = DRV_NAME,
4490 .id_table = iwl_hw_card_ids,
4491 .probe = iwl_pci_probe,
4492 .remove = __devexit_p(iwl_pci_remove),
4493 .driver.pm = IWL_PM_OPS,
4496 static int __init iwl_init(void)
4499 int ret;
4500 pr_info(DRV_DESCRIPTION ", " DRV_VERSION "\n");
4501 pr_info(DRV_COPYRIGHT "\n");
4503 ret = iwlagn_rate_control_register();
4504 if (ret) {
4505 pr_err("Unable to register rate control algorithm: %d\n", ret);
4506 return ret;
4509 ret = pci_register_driver(&iwl_driver);
4510 if (ret) {
4511 pr_err("Unable to initialize PCI module\n");
4512 goto error_register;
4515 return ret;
4517 error_register:
4518 iwlagn_rate_control_unregister();
4519 return ret;
4522 static void __exit iwl_exit(void)
4524 pci_unregister_driver(&iwl_driver);
4525 iwlagn_rate_control_unregister();
4528 module_exit(iwl_exit);
4529 module_init(iwl_init);
4531 #ifdef CONFIG_IWLWIFI_DEBUG
4532 module_param_named(debug50, iwl_debug_level, uint, S_IRUGO);
4533 MODULE_PARM_DESC(debug50, "50XX debug output mask (deprecated)");
4534 module_param_named(debug, iwl_debug_level, uint, S_IRUGO | S_IWUSR);
4535 MODULE_PARM_DESC(debug, "debug output mask");
4536 #endif
4538 module_param_named(swcrypto50, iwlagn_mod_params.sw_crypto, bool, S_IRUGO);
4539 MODULE_PARM_DESC(swcrypto50,
4540 "using crypto in software (default 0 [hardware]) (deprecated)");
4541 module_param_named(swcrypto, iwlagn_mod_params.sw_crypto, int, S_IRUGO);
4542 MODULE_PARM_DESC(swcrypto, "using crypto in software (default 0 [hardware])");
4543 module_param_named(queues_num50,
4544 iwlagn_mod_params.num_of_queues, int, S_IRUGO);
4545 MODULE_PARM_DESC(queues_num50,
4546 "number of hw queues in 50xx series (deprecated)");
4547 module_param_named(queues_num, iwlagn_mod_params.num_of_queues, int, S_IRUGO);
4548 MODULE_PARM_DESC(queues_num, "number of hw queues.");
4549 module_param_named(11n_disable50, iwlagn_mod_params.disable_11n, int, S_IRUGO);
4550 MODULE_PARM_DESC(11n_disable50, "disable 50XX 11n functionality (deprecated)");
4551 module_param_named(11n_disable, iwlagn_mod_params.disable_11n, int, S_IRUGO);
4552 MODULE_PARM_DESC(11n_disable, "disable 11n functionality");
4553 module_param_named(amsdu_size_8K50, iwlagn_mod_params.amsdu_size_8K,
4554 int, S_IRUGO);
4555 MODULE_PARM_DESC(amsdu_size_8K50,
4556 "enable 8K amsdu size in 50XX series (deprecated)");
4557 module_param_named(amsdu_size_8K, iwlagn_mod_params.amsdu_size_8K,
4558 int, S_IRUGO);
4559 MODULE_PARM_DESC(amsdu_size_8K, "enable 8K amsdu size");
4560 module_param_named(fw_restart50, iwlagn_mod_params.restart_fw, int, S_IRUGO);
4561 MODULE_PARM_DESC(fw_restart50,
4562 "restart firmware in case of error (deprecated)");
4563 module_param_named(fw_restart, iwlagn_mod_params.restart_fw, int, S_IRUGO);
4564 MODULE_PARM_DESC(fw_restart, "restart firmware in case of error");
4565 module_param_named(
4566 disable_hw_scan, iwlagn_mod_params.disable_hw_scan, int, S_IRUGO);
4567 MODULE_PARM_DESC(disable_hw_scan,
4568 "disable hardware scanning (default 0) (deprecated)");
4570 module_param_named(ucode_alternative, iwlagn_wanted_ucode_alternative, int,
4571 S_IRUGO);
4572 MODULE_PARM_DESC(ucode_alternative,
4573 "specify ucode alternative to use from ucode file");
4575 module_param_named(antenna_coupling, iwlagn_ant_coupling, int, S_IRUGO);
4576 MODULE_PARM_DESC(antenna_coupling,
4577 "specify antenna coupling in dB (defualt: 0 dB)");
4579 module_param_named(bt_ch_announce, iwlagn_bt_ch_announce, bool, S_IRUGO);
4580 MODULE_PARM_DESC(bt_ch_announce,
4581 "Enable BT channel announcement mode (default: enable)");