iwl3945: use iwl_rx_reply_error notification
[safe/jmp/linux-2.6] / drivers / net / wireless / iwlwifi / iwl-agn.c
1 /******************************************************************************
2  *
3  * Copyright(c) 2003 - 2009 Intel Corporation. All rights reserved.
4  *
5  * Portions of this file are derived from the ipw3945 project, as well
6  * as portions of the ieee80211 subsystem header files.
7  *
8  * This program is free software; you can redistribute it and/or modify it
9  * under the terms of version 2 of the GNU General Public License as
10  * published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but WITHOUT
13  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
15  * more details.
16  *
17  * You should have received a copy of the GNU General Public License along with
18  * this program; if not, write to the Free Software Foundation, Inc.,
19  * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
20  *
21  * The full GNU General Public License is included in this distribution in the
22  * file called LICENSE.
23  *
24  * Contact Information:
25  *  Intel Linux Wireless <ilw@linux.intel.com>
26  * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
27  *
28  *****************************************************************************/
29
30 #include <linux/kernel.h>
31 #include <linux/module.h>
32 #include <linux/init.h>
33 #include <linux/pci.h>
34 #include <linux/dma-mapping.h>
35 #include <linux/delay.h>
36 #include <linux/skbuff.h>
37 #include <linux/netdevice.h>
38 #include <linux/wireless.h>
39 #include <linux/firmware.h>
40 #include <linux/etherdevice.h>
41 #include <linux/if_arp.h>
42
43 #include <net/mac80211.h>
44
45 #include <asm/div64.h>
46
47 #define DRV_NAME        "iwlagn"
48
49 #include "iwl-eeprom.h"
50 #include "iwl-dev.h"
51 #include "iwl-core.h"
52 #include "iwl-io.h"
53 #include "iwl-helpers.h"
54 #include "iwl-sta.h"
55 #include "iwl-calib.h"
56
57
58 /******************************************************************************
59  *
60  * module boiler plate
61  *
62  ******************************************************************************/
63
64 /*
65  * module name, copyright, version, etc.
66  */
67 #define DRV_DESCRIPTION "Intel(R) Wireless WiFi Link AGN driver for Linux"
68
69 #ifdef CONFIG_IWLWIFI_DEBUG
70 #define VD "d"
71 #else
72 #define VD
73 #endif
74
75 #ifdef CONFIG_IWLWIFI_SPECTRUM_MEASUREMENT
76 #define VS "s"
77 #else
78 #define VS
79 #endif
80
81 #define DRV_VERSION     IWLWIFI_VERSION VD VS
82
83
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");
89
90 /*************** STATION TABLE MANAGEMENT ****
91  * mac80211 should be examined to determine if sta_info is duplicating
92  * the functionality provided here
93  */
94
95 /**************************************************************/
96
97 /**
98  * iwl_commit_rxon - commit staging_rxon to hardware
99  *
100  * The RXON command in staging_rxon is committed to the hardware and
101  * the active_rxon structure is updated with the new data.  This
102  * function correctly transitions out of the RXON_ASSOC_MSK state if
103  * a HW tune is required based on the RXON structure changes.
104  */
105 static int iwl_commit_rxon(struct iwl_priv *priv)
106 {
107         /* cast away the const for active_rxon in this function */
108         struct iwl_rxon_cmd *active_rxon = (void *)&priv->active_rxon;
109         int ret;
110         bool new_assoc =
111                 !!(priv->staging_rxon.filter_flags & RXON_FILTER_ASSOC_MSK);
112
113         if (!iwl_is_alive(priv))
114                 return -EBUSY;
115
116         /* always get timestamp with Rx frame */
117         priv->staging_rxon.flags |= RXON_FLG_TSF2HOST_MSK;
118         /* allow CTS-to-self if possible. this is relevant only for
119          * 5000, but will not damage 4965 */
120         priv->staging_rxon.flags |= RXON_FLG_SELF_CTS_EN;
121
122         ret = iwl_check_rxon_cmd(priv);
123         if (ret) {
124                 IWL_ERR(priv, "Invalid RXON configuration.  Not committing.\n");
125                 return -EINVAL;
126         }
127
128         /* If we don't need to send a full RXON, we can use
129          * iwl_rxon_assoc_cmd which is used to reconfigure filter
130          * and other flags for the current radio configuration. */
131         if (!iwl_full_rxon_required(priv)) {
132                 ret = iwl_send_rxon_assoc(priv);
133                 if (ret) {
134                         IWL_ERR(priv, "Error setting RXON_ASSOC (%d)\n", ret);
135                         return ret;
136                 }
137
138                 memcpy(active_rxon, &priv->staging_rxon, sizeof(*active_rxon));
139                 return 0;
140         }
141
142         /* station table will be cleared */
143         priv->assoc_station_added = 0;
144
145         /* If we are currently associated and the new config requires
146          * an RXON_ASSOC and the new config wants the associated mask enabled,
147          * we must clear the associated from the active configuration
148          * before we apply the new config */
149         if (iwl_is_associated(priv) && new_assoc) {
150                 IWL_DEBUG_INFO(priv, "Toggling associated bit on current RXON\n");
151                 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
152
153                 ret = iwl_send_cmd_pdu(priv, REPLY_RXON,
154                                       sizeof(struct iwl_rxon_cmd),
155                                       &priv->active_rxon);
156
157                 /* If the mask clearing failed then we set
158                  * active_rxon back to what it was previously */
159                 if (ret) {
160                         active_rxon->filter_flags |= RXON_FILTER_ASSOC_MSK;
161                         IWL_ERR(priv, "Error clearing ASSOC_MSK (%d)\n", ret);
162                         return ret;
163                 }
164         }
165
166         IWL_DEBUG_INFO(priv, "Sending RXON\n"
167                        "* with%s RXON_FILTER_ASSOC_MSK\n"
168                        "* channel = %d\n"
169                        "* bssid = %pM\n",
170                        (new_assoc ? "" : "out"),
171                        le16_to_cpu(priv->staging_rxon.channel),
172                        priv->staging_rxon.bssid_addr);
173
174         iwl_set_rxon_hwcrypto(priv, !priv->hw_params.sw_crypto);
175
176         /* Apply the new configuration
177          * RXON unassoc clears the station table in uCode, send it before
178          * we add the bcast station. If assoc bit is set, we will send RXON
179          * after having added the bcast and bssid station.
180          */
181         if (!new_assoc) {
182                 ret = iwl_send_cmd_pdu(priv, REPLY_RXON,
183                               sizeof(struct iwl_rxon_cmd), &priv->staging_rxon);
184                 if (ret) {
185                         IWL_ERR(priv, "Error setting new RXON (%d)\n", ret);
186                         return ret;
187                 }
188                 memcpy(active_rxon, &priv->staging_rxon, sizeof(*active_rxon));
189         }
190
191         iwl_clear_stations_table(priv);
192
193         if (!priv->error_recovering)
194                 priv->start_calib = 0;
195
196         /* Add the broadcast address so we can send broadcast frames */
197         if (iwl_rxon_add_station(priv, iwl_bcast_addr, 0) ==
198                                                 IWL_INVALID_STATION) {
199                 IWL_ERR(priv, "Error adding BROADCAST address for transmit.\n");
200                 return -EIO;
201         }
202
203         /* If we have set the ASSOC_MSK and we are in BSS mode then
204          * add the IWL_AP_ID to the station rate table */
205         if (new_assoc) {
206                 if (priv->iw_mode == NL80211_IFTYPE_STATION) {
207                         ret = iwl_rxon_add_station(priv,
208                                            priv->active_rxon.bssid_addr, 1);
209                         if (ret == IWL_INVALID_STATION) {
210                                 IWL_ERR(priv,
211                                         "Error adding AP address for TX.\n");
212                                 return -EIO;
213                         }
214                         priv->assoc_station_added = 1;
215                         if (priv->default_wep_key &&
216                             iwl_send_static_wepkey_cmd(priv, 0))
217                                 IWL_ERR(priv,
218                                         "Could not send WEP static key.\n");
219                 }
220
221                 /* Apply the new configuration
222                  * RXON assoc doesn't clear the station table in uCode,
223                  */
224                 ret = iwl_send_cmd_pdu(priv, REPLY_RXON,
225                               sizeof(struct iwl_rxon_cmd), &priv->staging_rxon);
226                 if (ret) {
227                         IWL_ERR(priv, "Error setting new RXON (%d)\n", ret);
228                         return ret;
229                 }
230                 memcpy(active_rxon, &priv->staging_rxon, sizeof(*active_rxon));
231         }
232
233         iwl_init_sensitivity(priv);
234
235         /* If we issue a new RXON command which required a tune then we must
236          * send a new TXPOWER command or we won't be able to Tx any frames */
237         ret = iwl_set_tx_power(priv, priv->tx_power_user_lmt, true);
238         if (ret) {
239                 IWL_ERR(priv, "Error sending TX power (%d)\n", ret);
240                 return ret;
241         }
242
243         return 0;
244 }
245
246 void iwl_update_chain_flags(struct iwl_priv *priv)
247 {
248
249         iwl_set_rxon_chain(priv);
250         iwl_commit_rxon(priv);
251 }
252
253 static void iwl_clear_free_frames(struct iwl_priv *priv)
254 {
255         struct list_head *element;
256
257         IWL_DEBUG_INFO(priv, "%d frames on pre-allocated heap on clear.\n",
258                        priv->frames_count);
259
260         while (!list_empty(&priv->free_frames)) {
261                 element = priv->free_frames.next;
262                 list_del(element);
263                 kfree(list_entry(element, struct iwl_frame, list));
264                 priv->frames_count--;
265         }
266
267         if (priv->frames_count) {
268                 IWL_WARN(priv, "%d frames still in use.  Did we lose one?\n",
269                             priv->frames_count);
270                 priv->frames_count = 0;
271         }
272 }
273
274 static struct iwl_frame *iwl_get_free_frame(struct iwl_priv *priv)
275 {
276         struct iwl_frame *frame;
277         struct list_head *element;
278         if (list_empty(&priv->free_frames)) {
279                 frame = kzalloc(sizeof(*frame), GFP_KERNEL);
280                 if (!frame) {
281                         IWL_ERR(priv, "Could not allocate frame!\n");
282                         return NULL;
283                 }
284
285                 priv->frames_count++;
286                 return frame;
287         }
288
289         element = priv->free_frames.next;
290         list_del(element);
291         return list_entry(element, struct iwl_frame, list);
292 }
293
294 static void iwl_free_frame(struct iwl_priv *priv, struct iwl_frame *frame)
295 {
296         memset(frame, 0, sizeof(*frame));
297         list_add(&frame->list, &priv->free_frames);
298 }
299
300 static unsigned int iwl_fill_beacon_frame(struct iwl_priv *priv,
301                                           struct ieee80211_hdr *hdr,
302                                           int left)
303 {
304         if (!iwl_is_associated(priv) || !priv->ibss_beacon ||
305             ((priv->iw_mode != NL80211_IFTYPE_ADHOC) &&
306              (priv->iw_mode != NL80211_IFTYPE_AP)))
307                 return 0;
308
309         if (priv->ibss_beacon->len > left)
310                 return 0;
311
312         memcpy(hdr, priv->ibss_beacon->data, priv->ibss_beacon->len);
313
314         return priv->ibss_beacon->len;
315 }
316
317 static unsigned int iwl_hw_get_beacon_cmd(struct iwl_priv *priv,
318                                        struct iwl_frame *frame, u8 rate)
319 {
320         struct iwl_tx_beacon_cmd *tx_beacon_cmd;
321         unsigned int frame_size;
322
323         tx_beacon_cmd = &frame->u.beacon;
324         memset(tx_beacon_cmd, 0, sizeof(*tx_beacon_cmd));
325
326         tx_beacon_cmd->tx.sta_id = priv->hw_params.bcast_sta_id;
327         tx_beacon_cmd->tx.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
328
329         frame_size = iwl_fill_beacon_frame(priv, tx_beacon_cmd->frame,
330                                 sizeof(frame->u) - sizeof(*tx_beacon_cmd));
331
332         BUG_ON(frame_size > MAX_MPDU_SIZE);
333         tx_beacon_cmd->tx.len = cpu_to_le16((u16)frame_size);
334
335         if ((rate == IWL_RATE_1M_PLCP) || (rate >= IWL_RATE_2M_PLCP))
336                 tx_beacon_cmd->tx.rate_n_flags =
337                         iwl_hw_set_rate_n_flags(rate, RATE_MCS_CCK_MSK);
338         else
339                 tx_beacon_cmd->tx.rate_n_flags =
340                         iwl_hw_set_rate_n_flags(rate, 0);
341
342         tx_beacon_cmd->tx.tx_flags = TX_CMD_FLG_SEQ_CTL_MSK |
343                                      TX_CMD_FLG_TSF_MSK |
344                                      TX_CMD_FLG_STA_RATE_MSK;
345
346         return sizeof(*tx_beacon_cmd) + frame_size;
347 }
348 static int iwl_send_beacon_cmd(struct iwl_priv *priv)
349 {
350         struct iwl_frame *frame;
351         unsigned int frame_size;
352         int rc;
353         u8 rate;
354
355         frame = iwl_get_free_frame(priv);
356
357         if (!frame) {
358                 IWL_ERR(priv, "Could not obtain free frame buffer for beacon "
359                           "command.\n");
360                 return -ENOMEM;
361         }
362
363         rate = iwl_rate_get_lowest_plcp(priv);
364
365         frame_size = iwl_hw_get_beacon_cmd(priv, frame, rate);
366
367         rc = iwl_send_cmd_pdu(priv, REPLY_TX_BEACON, frame_size,
368                               &frame->u.cmd[0]);
369
370         iwl_free_frame(priv, frame);
371
372         return rc;
373 }
374
375 static inline dma_addr_t iwl_tfd_tb_get_addr(struct iwl_tfd *tfd, u8 idx)
376 {
377         struct iwl_tfd_tb *tb = &tfd->tbs[idx];
378
379         dma_addr_t addr = get_unaligned_le32(&tb->lo);
380         if (sizeof(dma_addr_t) > sizeof(u32))
381                 addr |=
382                 ((dma_addr_t)(le16_to_cpu(tb->hi_n_len) & 0xF) << 16) << 16;
383
384         return addr;
385 }
386
387 static inline u16 iwl_tfd_tb_get_len(struct iwl_tfd *tfd, u8 idx)
388 {
389         struct iwl_tfd_tb *tb = &tfd->tbs[idx];
390
391         return le16_to_cpu(tb->hi_n_len) >> 4;
392 }
393
394 static inline void iwl_tfd_set_tb(struct iwl_tfd *tfd, u8 idx,
395                                   dma_addr_t addr, u16 len)
396 {
397         struct iwl_tfd_tb *tb = &tfd->tbs[idx];
398         u16 hi_n_len = len << 4;
399
400         put_unaligned_le32(addr, &tb->lo);
401         if (sizeof(dma_addr_t) > sizeof(u32))
402                 hi_n_len |= ((addr >> 16) >> 16) & 0xF;
403
404         tb->hi_n_len = cpu_to_le16(hi_n_len);
405
406         tfd->num_tbs = idx + 1;
407 }
408
409 static inline u8 iwl_tfd_get_num_tbs(struct iwl_tfd *tfd)
410 {
411         return tfd->num_tbs & 0x1f;
412 }
413
414 /**
415  * iwl_hw_txq_free_tfd - Free all chunks referenced by TFD [txq->q.read_ptr]
416  * @priv - driver private data
417  * @txq - tx queue
418  *
419  * Does NOT advance any TFD circular buffer read/write indexes
420  * Does NOT free the TFD itself (which is within circular buffer)
421  */
422 void iwl_hw_txq_free_tfd(struct iwl_priv *priv, struct iwl_tx_queue *txq)
423 {
424         struct iwl_tfd *tfd_tmp = (struct iwl_tfd *)txq->tfds;
425         struct iwl_tfd *tfd;
426         struct pci_dev *dev = priv->pci_dev;
427         int index = txq->q.read_ptr;
428         int i;
429         int num_tbs;
430
431         tfd = &tfd_tmp[index];
432
433         /* Sanity check on number of chunks */
434         num_tbs = iwl_tfd_get_num_tbs(tfd);
435
436         if (num_tbs >= IWL_NUM_OF_TBS) {
437                 IWL_ERR(priv, "Too many chunks: %i\n", num_tbs);
438                 /* @todo issue fatal error, it is quite serious situation */
439                 return;
440         }
441
442         /* Unmap tx_cmd */
443         if (num_tbs)
444                 pci_unmap_single(dev,
445                                 pci_unmap_addr(&txq->cmd[index]->meta, mapping),
446                                 pci_unmap_len(&txq->cmd[index]->meta, len),
447                                 PCI_DMA_TODEVICE);
448
449         /* Unmap chunks, if any. */
450         for (i = 1; i < num_tbs; i++) {
451                 pci_unmap_single(dev, iwl_tfd_tb_get_addr(tfd, i),
452                                 iwl_tfd_tb_get_len(tfd, i), PCI_DMA_TODEVICE);
453
454                 if (txq->txb) {
455                         dev_kfree_skb(txq->txb[txq->q.read_ptr].skb[i - 1]);
456                         txq->txb[txq->q.read_ptr].skb[i - 1] = NULL;
457                 }
458         }
459 }
460
461 int iwl_hw_txq_attach_buf_to_tfd(struct iwl_priv *priv,
462                                  struct iwl_tx_queue *txq,
463                                  dma_addr_t addr, u16 len,
464                                  u8 reset, u8 pad)
465 {
466         struct iwl_queue *q;
467         struct iwl_tfd *tfd, *tfd_tmp;
468         u32 num_tbs;
469
470         q = &txq->q;
471         tfd_tmp = (struct iwl_tfd *)txq->tfds;
472         tfd = &tfd_tmp[q->write_ptr];
473
474         if (reset)
475                 memset(tfd, 0, sizeof(*tfd));
476
477         num_tbs = iwl_tfd_get_num_tbs(tfd);
478
479         /* Each TFD can point to a maximum 20 Tx buffers */
480         if (num_tbs >= IWL_NUM_OF_TBS) {
481                 IWL_ERR(priv, "Error can not send more than %d chunks\n",
482                           IWL_NUM_OF_TBS);
483                 return -EINVAL;
484         }
485
486         BUG_ON(addr & ~DMA_BIT_MASK(36));
487         if (unlikely(addr & ~IWL_TX_DMA_MASK))
488                 IWL_ERR(priv, "Unaligned address = %llx\n",
489                           (unsigned long long)addr);
490
491         iwl_tfd_set_tb(tfd, num_tbs, addr, len);
492
493         return 0;
494 }
495
496 /*
497  * Tell nic where to find circular buffer of Tx Frame Descriptors for
498  * given Tx queue, and enable the DMA channel used for that queue.
499  *
500  * 4965 supports up to 16 Tx queues in DRAM, mapped to up to 8 Tx DMA
501  * channels supported in hardware.
502  */
503 int iwl_hw_tx_queue_init(struct iwl_priv *priv,
504                          struct iwl_tx_queue *txq)
505 {
506         int ret;
507         unsigned long flags;
508         int txq_id = txq->q.id;
509
510         spin_lock_irqsave(&priv->lock, flags);
511         ret = iwl_grab_nic_access(priv);
512         if (ret) {
513                 spin_unlock_irqrestore(&priv->lock, flags);
514                 return ret;
515         }
516
517         /* Circular buffer (TFD queue in DRAM) physical base address */
518         iwl_write_direct32(priv, FH_MEM_CBBC_QUEUE(txq_id),
519                              txq->q.dma_addr >> 8);
520
521         iwl_release_nic_access(priv);
522         spin_unlock_irqrestore(&priv->lock, flags);
523
524         return 0;
525 }
526
527
528 /******************************************************************************
529  *
530  * Misc. internal state and helper functions
531  *
532  ******************************************************************************/
533
534 static void iwl_ht_conf(struct iwl_priv *priv,
535                             struct ieee80211_bss_conf *bss_conf)
536 {
537         struct ieee80211_sta_ht_cap *ht_conf;
538         struct iwl_ht_info *iwl_conf = &priv->current_ht_config;
539         struct ieee80211_sta *sta;
540
541         IWL_DEBUG_MAC80211(priv, "enter: \n");
542
543         if (!iwl_conf->is_ht)
544                 return;
545
546
547         /*
548          * It is totally wrong to base global information on something
549          * that is valid only when associated, alas, this driver works
550          * that way and I don't know how to fix it.
551          */
552
553         rcu_read_lock();
554         sta = ieee80211_find_sta(priv->hw, priv->bssid);
555         if (!sta) {
556                 rcu_read_unlock();
557                 return;
558         }
559         ht_conf = &sta->ht_cap;
560
561         if (ht_conf->cap & IEEE80211_HT_CAP_SGI_20)
562                 iwl_conf->sgf |= HT_SHORT_GI_20MHZ;
563         if (ht_conf->cap & IEEE80211_HT_CAP_SGI_40)
564                 iwl_conf->sgf |= HT_SHORT_GI_40MHZ;
565
566         iwl_conf->is_green_field = !!(ht_conf->cap & IEEE80211_HT_CAP_GRN_FLD);
567         iwl_conf->max_amsdu_size =
568                 !!(ht_conf->cap & IEEE80211_HT_CAP_MAX_AMSDU);
569
570         iwl_conf->supported_chan_width =
571                 !!(ht_conf->cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40);
572
573         /*
574          * XXX: The HT configuration needs to be moved into iwl_mac_config()
575          *      to be done there correctly.
576          */
577
578         iwl_conf->extension_chan_offset = IEEE80211_HT_PARAM_CHA_SEC_NONE;
579         if (conf_is_ht40_minus(&priv->hw->conf))
580                 iwl_conf->extension_chan_offset = IEEE80211_HT_PARAM_CHA_SEC_BELOW;
581         else if (conf_is_ht40_plus(&priv->hw->conf))
582                 iwl_conf->extension_chan_offset = IEEE80211_HT_PARAM_CHA_SEC_ABOVE;
583
584         /* If no above or below channel supplied disable FAT channel */
585         if (iwl_conf->extension_chan_offset != IEEE80211_HT_PARAM_CHA_SEC_ABOVE &&
586             iwl_conf->extension_chan_offset != IEEE80211_HT_PARAM_CHA_SEC_BELOW)
587                 iwl_conf->supported_chan_width = 0;
588
589         iwl_conf->sm_ps = (u8)((ht_conf->cap & IEEE80211_HT_CAP_SM_PS) >> 2);
590
591         memcpy(&iwl_conf->mcs, &ht_conf->mcs, 16);
592
593         iwl_conf->tx_chan_width = iwl_conf->supported_chan_width != 0;
594         iwl_conf->ht_protection =
595                 bss_conf->ht.operation_mode & IEEE80211_HT_OP_MODE_PROTECTION;
596         iwl_conf->non_GF_STA_present =
597                 !!(bss_conf->ht.operation_mode & IEEE80211_HT_OP_MODE_NON_GF_STA_PRSNT);
598
599         rcu_read_unlock();
600
601         IWL_DEBUG_MAC80211(priv, "leave\n");
602 }
603
604 /*
605  * QoS  support
606 */
607 static void iwl_activate_qos(struct iwl_priv *priv, u8 force)
608 {
609         if (test_bit(STATUS_EXIT_PENDING, &priv->status))
610                 return;
611
612         priv->qos_data.def_qos_parm.qos_flags = 0;
613
614         if (priv->qos_data.qos_cap.q_AP.queue_request &&
615             !priv->qos_data.qos_cap.q_AP.txop_request)
616                 priv->qos_data.def_qos_parm.qos_flags |=
617                         QOS_PARAM_FLG_TXOP_TYPE_MSK;
618         if (priv->qos_data.qos_active)
619                 priv->qos_data.def_qos_parm.qos_flags |=
620                         QOS_PARAM_FLG_UPDATE_EDCA_MSK;
621
622         if (priv->current_ht_config.is_ht)
623                 priv->qos_data.def_qos_parm.qos_flags |= QOS_PARAM_FLG_TGN_MSK;
624
625         if (force || iwl_is_associated(priv)) {
626                 IWL_DEBUG_QOS(priv, "send QoS cmd with Qos active=%d FLAGS=0x%X\n",
627                                 priv->qos_data.qos_active,
628                                 priv->qos_data.def_qos_parm.qos_flags);
629
630                 iwl_send_cmd_pdu_async(priv, REPLY_QOS_PARAM,
631                                        sizeof(struct iwl_qosparam_cmd),
632                                        &priv->qos_data.def_qos_parm, NULL);
633         }
634 }
635
636 #define MAX_UCODE_BEACON_INTERVAL       4096
637
638 static u16 iwl_adjust_beacon_interval(u16 beacon_val)
639 {
640         u16 new_val = 0;
641         u16 beacon_factor = 0;
642
643         beacon_factor = (beacon_val + MAX_UCODE_BEACON_INTERVAL)
644                                         / MAX_UCODE_BEACON_INTERVAL;
645         new_val = beacon_val / beacon_factor;
646
647         if (!new_val)
648                 new_val = MAX_UCODE_BEACON_INTERVAL;
649
650         return new_val;
651 }
652
653 static void iwl_setup_rxon_timing(struct iwl_priv *priv)
654 {
655         u64 tsf;
656         s32 interval_tm, rem;
657         unsigned long flags;
658         struct ieee80211_conf *conf = NULL;
659         u16 beacon_int = 0;
660
661         conf = ieee80211_get_hw_conf(priv->hw);
662
663         spin_lock_irqsave(&priv->lock, flags);
664         priv->rxon_timing.timestamp = cpu_to_le64(priv->timestamp);
665         priv->rxon_timing.listen_interval = cpu_to_le16(conf->listen_interval);
666
667         if (priv->iw_mode == NL80211_IFTYPE_STATION) {
668                 beacon_int = iwl_adjust_beacon_interval(priv->beacon_int);
669                 priv->rxon_timing.atim_window = 0;
670         } else {
671                 beacon_int = iwl_adjust_beacon_interval(conf->beacon_int);
672
673                 /* TODO: we need to get atim_window from upper stack
674                  * for now we set to 0 */
675                 priv->rxon_timing.atim_window = 0;
676         }
677
678         priv->rxon_timing.beacon_interval = cpu_to_le16(beacon_int);
679
680         tsf = priv->timestamp; /* tsf is modifed by do_div: copy it */
681         interval_tm = beacon_int * 1024;
682         rem = do_div(tsf, interval_tm);
683         priv->rxon_timing.beacon_init_val = cpu_to_le32(interval_tm - rem);
684
685         spin_unlock_irqrestore(&priv->lock, flags);
686         IWL_DEBUG_ASSOC(priv, "beacon interval %d beacon timer %d beacon tim %d\n",
687                         le16_to_cpu(priv->rxon_timing.beacon_interval),
688                         le32_to_cpu(priv->rxon_timing.beacon_init_val),
689                         le16_to_cpu(priv->rxon_timing.atim_window));
690 }
691
692 static int iwl_set_mode(struct iwl_priv *priv, int mode)
693 {
694         iwl_connection_init_rx_config(priv, mode);
695         iwl_set_rxon_chain(priv);
696         memcpy(priv->staging_rxon.node_addr, priv->mac_addr, ETH_ALEN);
697
698         iwl_clear_stations_table(priv);
699
700         /* dont commit rxon if rf-kill is on*/
701         if (!iwl_is_ready_rf(priv))
702                 return -EAGAIN;
703
704         cancel_delayed_work(&priv->scan_check);
705         if (iwl_scan_cancel_timeout(priv, 100)) {
706                 IWL_WARN(priv, "Aborted scan still in progress after 100ms\n");
707                 IWL_DEBUG_MAC80211(priv, "leaving - scan abort failed.\n");
708                 return -EAGAIN;
709         }
710
711         iwl_commit_rxon(priv);
712
713         return 0;
714 }
715
716 /******************************************************************************
717  *
718  * Generic RX handler implementations
719  *
720  ******************************************************************************/
721 static void iwl_rx_reply_alive(struct iwl_priv *priv,
722                                 struct iwl_rx_mem_buffer *rxb)
723 {
724         struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
725         struct iwl_alive_resp *palive;
726         struct delayed_work *pwork;
727
728         palive = &pkt->u.alive_frame;
729
730         IWL_DEBUG_INFO(priv, "Alive ucode status 0x%08X revision "
731                        "0x%01X 0x%01X\n",
732                        palive->is_valid, palive->ver_type,
733                        palive->ver_subtype);
734
735         if (palive->ver_subtype == INITIALIZE_SUBTYPE) {
736                 IWL_DEBUG_INFO(priv, "Initialization Alive received.\n");
737                 memcpy(&priv->card_alive_init,
738                        &pkt->u.alive_frame,
739                        sizeof(struct iwl_init_alive_resp));
740                 pwork = &priv->init_alive_start;
741         } else {
742                 IWL_DEBUG_INFO(priv, "Runtime Alive received.\n");
743                 memcpy(&priv->card_alive, &pkt->u.alive_frame,
744                        sizeof(struct iwl_alive_resp));
745                 pwork = &priv->alive_start;
746         }
747
748         /* We delay the ALIVE response by 5ms to
749          * give the HW RF Kill time to activate... */
750         if (palive->is_valid == UCODE_VALID_OK)
751                 queue_delayed_work(priv->workqueue, pwork,
752                                    msecs_to_jiffies(5));
753         else
754                 IWL_WARN(priv, "uCode did not respond OK.\n");
755 }
756
757 static void iwl_bg_beacon_update(struct work_struct *work)
758 {
759         struct iwl_priv *priv =
760                 container_of(work, struct iwl_priv, beacon_update);
761         struct sk_buff *beacon;
762
763         /* Pull updated AP beacon from mac80211. will fail if not in AP mode */
764         beacon = ieee80211_beacon_get(priv->hw, priv->vif);
765
766         if (!beacon) {
767                 IWL_ERR(priv, "update beacon failed\n");
768                 return;
769         }
770
771         mutex_lock(&priv->mutex);
772         /* new beacon skb is allocated every time; dispose previous.*/
773         if (priv->ibss_beacon)
774                 dev_kfree_skb(priv->ibss_beacon);
775
776         priv->ibss_beacon = beacon;
777         mutex_unlock(&priv->mutex);
778
779         iwl_send_beacon_cmd(priv);
780 }
781
782 /**
783  * iwl_bg_statistics_periodic - Timer callback to queue statistics
784  *
785  * This callback is provided in order to send a statistics request.
786  *
787  * This timer function is continually reset to execute within
788  * REG_RECALIB_PERIOD seconds since the last STATISTICS_NOTIFICATION
789  * was received.  We need to ensure we receive the statistics in order
790  * to update the temperature used for calibrating the TXPOWER.
791  */
792 static void iwl_bg_statistics_periodic(unsigned long data)
793 {
794         struct iwl_priv *priv = (struct iwl_priv *)data;
795
796         if (test_bit(STATUS_EXIT_PENDING, &priv->status))
797                 return;
798
799         /* dont send host command if rf-kill is on */
800         if (!iwl_is_ready_rf(priv))
801                 return;
802
803         iwl_send_statistics_request(priv, CMD_ASYNC);
804 }
805
806 static void iwl_rx_beacon_notif(struct iwl_priv *priv,
807                                 struct iwl_rx_mem_buffer *rxb)
808 {
809 #ifdef CONFIG_IWLWIFI_DEBUG
810         struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
811         struct iwl4965_beacon_notif *beacon =
812                 (struct iwl4965_beacon_notif *)pkt->u.raw;
813         u8 rate = iwl_hw_get_rate(beacon->beacon_notify_hdr.rate_n_flags);
814
815         IWL_DEBUG_RX(priv, "beacon status %x retries %d iss %d "
816                 "tsf %d %d rate %d\n",
817                 le32_to_cpu(beacon->beacon_notify_hdr.u.status) & TX_STATUS_MSK,
818                 beacon->beacon_notify_hdr.failure_frame,
819                 le32_to_cpu(beacon->ibss_mgr_status),
820                 le32_to_cpu(beacon->high_tsf),
821                 le32_to_cpu(beacon->low_tsf), rate);
822 #endif
823
824         if ((priv->iw_mode == NL80211_IFTYPE_AP) &&
825             (!test_bit(STATUS_EXIT_PENDING, &priv->status)))
826                 queue_work(priv->workqueue, &priv->beacon_update);
827 }
828
829 /* Handle notification from uCode that card's power state is changing
830  * due to software, hardware, or critical temperature RFKILL */
831 static void iwl_rx_card_state_notif(struct iwl_priv *priv,
832                                     struct iwl_rx_mem_buffer *rxb)
833 {
834         struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
835         u32 flags = le32_to_cpu(pkt->u.card_state_notif.flags);
836         unsigned long status = priv->status;
837
838         IWL_DEBUG_RF_KILL(priv, "Card state received: HW:%s SW:%s\n",
839                           (flags & HW_CARD_DISABLED) ? "Kill" : "On",
840                           (flags & SW_CARD_DISABLED) ? "Kill" : "On");
841
842         if (flags & (SW_CARD_DISABLED | HW_CARD_DISABLED |
843                      RF_CARD_DISABLED)) {
844
845                 iwl_write32(priv, CSR_UCODE_DRV_GP1_SET,
846                             CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
847
848                 if (!iwl_grab_nic_access(priv)) {
849                         iwl_write_direct32(
850                                 priv, HBUS_TARG_MBX_C,
851                                 HBUS_TARG_MBX_C_REG_BIT_CMD_BLOCKED);
852
853                         iwl_release_nic_access(priv);
854                 }
855
856                 if (!(flags & RXON_CARD_DISABLED)) {
857                         iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR,
858                                     CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
859                         if (!iwl_grab_nic_access(priv)) {
860                                 iwl_write_direct32(
861                                         priv, HBUS_TARG_MBX_C,
862                                         HBUS_TARG_MBX_C_REG_BIT_CMD_BLOCKED);
863
864                                 iwl_release_nic_access(priv);
865                         }
866                 }
867
868                 if (flags & RF_CARD_DISABLED) {
869                         iwl_write32(priv, CSR_UCODE_DRV_GP1_SET,
870                                     CSR_UCODE_DRV_GP1_REG_BIT_CT_KILL_EXIT);
871                         iwl_read32(priv, CSR_UCODE_DRV_GP1);
872                         if (!iwl_grab_nic_access(priv))
873                                 iwl_release_nic_access(priv);
874                 }
875         }
876
877         if (flags & HW_CARD_DISABLED)
878                 set_bit(STATUS_RF_KILL_HW, &priv->status);
879         else
880                 clear_bit(STATUS_RF_KILL_HW, &priv->status);
881
882
883         if (flags & SW_CARD_DISABLED)
884                 set_bit(STATUS_RF_KILL_SW, &priv->status);
885         else
886                 clear_bit(STATUS_RF_KILL_SW, &priv->status);
887
888         if (!(flags & RXON_CARD_DISABLED))
889                 iwl_scan_cancel(priv);
890
891         if ((test_bit(STATUS_RF_KILL_HW, &status) !=
892              test_bit(STATUS_RF_KILL_HW, &priv->status)) ||
893             (test_bit(STATUS_RF_KILL_SW, &status) !=
894              test_bit(STATUS_RF_KILL_SW, &priv->status)))
895                 queue_work(priv->workqueue, &priv->rf_kill);
896         else
897                 wake_up_interruptible(&priv->wait_command_queue);
898 }
899
900 int iwl_set_pwr_src(struct iwl_priv *priv, enum iwl_pwr_src src)
901 {
902         int ret;
903         unsigned long flags;
904
905         spin_lock_irqsave(&priv->lock, flags);
906         ret = iwl_grab_nic_access(priv);
907         if (ret)
908                 goto err;
909
910         if (src == IWL_PWR_SRC_VAUX) {
911                 if (pci_pme_capable(priv->pci_dev, PCI_D3cold))
912                         iwl_set_bits_mask_prph(priv, APMG_PS_CTRL_REG,
913                                                APMG_PS_CTRL_VAL_PWR_SRC_VAUX,
914                                                ~APMG_PS_CTRL_MSK_PWR_SRC);
915         } else {
916                 iwl_set_bits_mask_prph(priv, APMG_PS_CTRL_REG,
917                                        APMG_PS_CTRL_VAL_PWR_SRC_VMAIN,
918                                        ~APMG_PS_CTRL_MSK_PWR_SRC);
919         }
920
921         iwl_release_nic_access(priv);
922 err:
923         spin_unlock_irqrestore(&priv->lock, flags);
924         return ret;
925 }
926
927 /**
928  * iwl_setup_rx_handlers - Initialize Rx handler callbacks
929  *
930  * Setup the RX handlers for each of the reply types sent from the uCode
931  * to the host.
932  *
933  * This function chains into the hardware specific files for them to setup
934  * any hardware specific handlers as well.
935  */
936 static void iwl_setup_rx_handlers(struct iwl_priv *priv)
937 {
938         priv->rx_handlers[REPLY_ALIVE] = iwl_rx_reply_alive;
939         priv->rx_handlers[REPLY_ERROR] = iwl_rx_reply_error;
940         priv->rx_handlers[CHANNEL_SWITCH_NOTIFICATION] = iwl_rx_csa;
941         priv->rx_handlers[PM_SLEEP_NOTIFICATION] = iwl_rx_pm_sleep_notif;
942         priv->rx_handlers[PM_DEBUG_STATISTIC_NOTIFIC] =
943             iwl_rx_pm_debug_statistics_notif;
944         priv->rx_handlers[BEACON_NOTIFICATION] = iwl_rx_beacon_notif;
945
946         /*
947          * The same handler is used for both the REPLY to a discrete
948          * statistics request from the host as well as for the periodic
949          * statistics notifications (after received beacons) from the uCode.
950          */
951         priv->rx_handlers[REPLY_STATISTICS_CMD] = iwl_rx_statistics;
952         priv->rx_handlers[STATISTICS_NOTIFICATION] = iwl_rx_statistics;
953
954         iwl_setup_spectrum_handlers(priv);
955         iwl_setup_rx_scan_handlers(priv);
956
957         /* status change handler */
958         priv->rx_handlers[CARD_STATE_NOTIFICATION] = iwl_rx_card_state_notif;
959
960         priv->rx_handlers[MISSED_BEACONS_NOTIFICATION] =
961             iwl_rx_missed_beacon_notif;
962         /* Rx handlers */
963         priv->rx_handlers[REPLY_RX_PHY_CMD] = iwl_rx_reply_rx_phy;
964         priv->rx_handlers[REPLY_RX_MPDU_CMD] = iwl_rx_reply_rx;
965         /* block ack */
966         priv->rx_handlers[REPLY_COMPRESSED_BA] = iwl_rx_reply_compressed_ba;
967         /* Set up hardware specific Rx handlers */
968         priv->cfg->ops->lib->rx_handler_setup(priv);
969 }
970
971 /**
972  * iwl_rx_handle - Main entry function for receiving responses from uCode
973  *
974  * Uses the priv->rx_handlers callback function array to invoke
975  * the appropriate handlers, including command responses,
976  * frame-received notifications, and other notifications.
977  */
978 void iwl_rx_handle(struct iwl_priv *priv)
979 {
980         struct iwl_rx_mem_buffer *rxb;
981         struct iwl_rx_packet *pkt;
982         struct iwl_rx_queue *rxq = &priv->rxq;
983         u32 r, i;
984         int reclaim;
985         unsigned long flags;
986         u8 fill_rx = 0;
987         u32 count = 8;
988
989         /* uCode's read index (stored in shared DRAM) indicates the last Rx
990          * buffer that the driver may process (last buffer filled by ucode). */
991         r = le16_to_cpu(rxq->rb_stts->closed_rb_num) &  0x0FFF;
992         i = rxq->read;
993
994         /* Rx interrupt, but nothing sent from uCode */
995         if (i == r)
996                 IWL_DEBUG_RX(priv, "r = %d, i = %d\n", r, i);
997
998         if (iwl_rx_queue_space(rxq) > (RX_QUEUE_SIZE / 2))
999                 fill_rx = 1;
1000
1001         while (i != r) {
1002                 rxb = rxq->queue[i];
1003
1004                 /* If an RXB doesn't have a Rx queue slot associated with it,
1005                  * then a bug has been introduced in the queue refilling
1006                  * routines -- catch it here */
1007                 BUG_ON(rxb == NULL);
1008
1009                 rxq->queue[i] = NULL;
1010
1011                 dma_sync_single_range_for_cpu(
1012                                 &priv->pci_dev->dev, rxb->real_dma_addr,
1013                                 rxb->aligned_dma_addr - rxb->real_dma_addr,
1014                                 priv->hw_params.rx_buf_size,
1015                                 PCI_DMA_FROMDEVICE);
1016                 pkt = (struct iwl_rx_packet *)rxb->skb->data;
1017
1018                 /* Reclaim a command buffer only if this packet is a response
1019                  *   to a (driver-originated) command.
1020                  * If the packet (e.g. Rx frame) originated from uCode,
1021                  *   there is no command buffer to reclaim.
1022                  * Ucode should set SEQ_RX_FRAME bit if ucode-originated,
1023                  *   but apparently a few don't get set; catch them here. */
1024                 reclaim = !(pkt->hdr.sequence & SEQ_RX_FRAME) &&
1025                         (pkt->hdr.cmd != REPLY_RX_PHY_CMD) &&
1026                         (pkt->hdr.cmd != REPLY_RX) &&
1027                         (pkt->hdr.cmd != REPLY_RX_MPDU_CMD) &&
1028                         (pkt->hdr.cmd != REPLY_COMPRESSED_BA) &&
1029                         (pkt->hdr.cmd != STATISTICS_NOTIFICATION) &&
1030                         (pkt->hdr.cmd != REPLY_TX);
1031
1032                 /* Based on type of command response or notification,
1033                  *   handle those that need handling via function in
1034                  *   rx_handlers table.  See iwl_setup_rx_handlers() */
1035                 if (priv->rx_handlers[pkt->hdr.cmd]) {
1036                         IWL_DEBUG_RX(priv, "r = %d, i = %d, %s, 0x%02x\n", r,
1037                                 i, get_cmd_string(pkt->hdr.cmd), pkt->hdr.cmd);
1038                         priv->rx_handlers[pkt->hdr.cmd] (priv, rxb);
1039                 } else {
1040                         /* No handling needed */
1041                         IWL_DEBUG_RX(priv,
1042                                 "r %d i %d No handler needed for %s, 0x%02x\n",
1043                                 r, i, get_cmd_string(pkt->hdr.cmd),
1044                                 pkt->hdr.cmd);
1045                 }
1046
1047                 if (reclaim) {
1048                         /* Invoke any callbacks, transfer the skb to caller, and
1049                          * fire off the (possibly) blocking iwl_send_cmd()
1050                          * as we reclaim the driver command queue */
1051                         if (rxb && rxb->skb)
1052                                 iwl_tx_cmd_complete(priv, rxb);
1053                         else
1054                                 IWL_WARN(priv, "Claim null rxb?\n");
1055                 }
1056
1057                 /* For now we just don't re-use anything.  We can tweak this
1058                  * later to try and re-use notification packets and SKBs that
1059                  * fail to Rx correctly */
1060                 if (rxb->skb != NULL) {
1061                         priv->alloc_rxb_skb--;
1062                         dev_kfree_skb_any(rxb->skb);
1063                         rxb->skb = NULL;
1064                 }
1065
1066                 pci_unmap_single(priv->pci_dev, rxb->real_dma_addr,
1067                                  priv->hw_params.rx_buf_size + 256,
1068                                  PCI_DMA_FROMDEVICE);
1069                 spin_lock_irqsave(&rxq->lock, flags);
1070                 list_add_tail(&rxb->list, &priv->rxq.rx_used);
1071                 spin_unlock_irqrestore(&rxq->lock, flags);
1072                 i = (i + 1) & RX_QUEUE_MASK;
1073                 /* If there are a lot of unused frames,
1074                  * restock the Rx queue so ucode wont assert. */
1075                 if (fill_rx) {
1076                         count++;
1077                         if (count >= 8) {
1078                                 priv->rxq.read = i;
1079                                 iwl_rx_queue_restock(priv);
1080                                 count = 0;
1081                         }
1082                 }
1083         }
1084
1085         /* Backtrack one entry */
1086         priv->rxq.read = i;
1087         iwl_rx_queue_restock(priv);
1088 }
1089
1090 /* call this function to flush any scheduled tasklet */
1091 static inline void iwl_synchronize_irq(struct iwl_priv *priv)
1092 {
1093         /* wait to make sure we flush pending tasklet*/
1094         synchronize_irq(priv->pci_dev->irq);
1095         tasklet_kill(&priv->irq_tasklet);
1096 }
1097
1098 static void iwl_error_recovery(struct iwl_priv *priv)
1099 {
1100         unsigned long flags;
1101
1102         memcpy(&priv->staging_rxon, &priv->recovery_rxon,
1103                sizeof(priv->staging_rxon));
1104         priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
1105         iwl_commit_rxon(priv);
1106
1107         iwl_rxon_add_station(priv, priv->bssid, 1);
1108
1109         spin_lock_irqsave(&priv->lock, flags);
1110         priv->assoc_id = le16_to_cpu(priv->staging_rxon.assoc_id);
1111         priv->error_recovering = 0;
1112         spin_unlock_irqrestore(&priv->lock, flags);
1113 }
1114
1115 static void iwl_irq_tasklet(struct iwl_priv *priv)
1116 {
1117         u32 inta, handled = 0;
1118         u32 inta_fh;
1119         unsigned long flags;
1120 #ifdef CONFIG_IWLWIFI_DEBUG
1121         u32 inta_mask;
1122 #endif
1123
1124         spin_lock_irqsave(&priv->lock, flags);
1125
1126         /* Ack/clear/reset pending uCode interrupts.
1127          * Note:  Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS,
1128          *  and will clear only when CSR_FH_INT_STATUS gets cleared. */
1129         inta = iwl_read32(priv, CSR_INT);
1130         iwl_write32(priv, CSR_INT, inta);
1131
1132         /* Ack/clear/reset pending flow-handler (DMA) interrupts.
1133          * Any new interrupts that happen after this, either while we're
1134          * in this tasklet, or later, will show up in next ISR/tasklet. */
1135         inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
1136         iwl_write32(priv, CSR_FH_INT_STATUS, inta_fh);
1137
1138 #ifdef CONFIG_IWLWIFI_DEBUG
1139         if (priv->debug_level & IWL_DL_ISR) {
1140                 /* just for debug */
1141                 inta_mask = iwl_read32(priv, CSR_INT_MASK);
1142                 IWL_DEBUG_ISR(priv, "inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
1143                               inta, inta_mask, inta_fh);
1144         }
1145 #endif
1146
1147         /* Since CSR_INT and CSR_FH_INT_STATUS reads and clears are not
1148          * atomic, make sure that inta covers all the interrupts that
1149          * we've discovered, even if FH interrupt came in just after
1150          * reading CSR_INT. */
1151         if (inta_fh & CSR49_FH_INT_RX_MASK)
1152                 inta |= CSR_INT_BIT_FH_RX;
1153         if (inta_fh & CSR49_FH_INT_TX_MASK)
1154                 inta |= CSR_INT_BIT_FH_TX;
1155
1156         /* Now service all interrupt bits discovered above. */
1157         if (inta & CSR_INT_BIT_HW_ERR) {
1158                 IWL_ERR(priv, "Microcode HW error detected.  Restarting.\n");
1159
1160                 /* Tell the device to stop sending interrupts */
1161                 iwl_disable_interrupts(priv);
1162
1163                 iwl_irq_handle_error(priv);
1164
1165                 handled |= CSR_INT_BIT_HW_ERR;
1166
1167                 spin_unlock_irqrestore(&priv->lock, flags);
1168
1169                 return;
1170         }
1171
1172 #ifdef CONFIG_IWLWIFI_DEBUG
1173         if (priv->debug_level & (IWL_DL_ISR)) {
1174                 /* NIC fires this, but we don't use it, redundant with WAKEUP */
1175                 if (inta & CSR_INT_BIT_SCD)
1176                         IWL_DEBUG_ISR(priv, "Scheduler finished to transmit "
1177                                       "the frame/frames.\n");
1178
1179                 /* Alive notification via Rx interrupt will do the real work */
1180                 if (inta & CSR_INT_BIT_ALIVE)
1181                         IWL_DEBUG_ISR(priv, "Alive interrupt\n");
1182         }
1183 #endif
1184         /* Safely ignore these bits for debug checks below */
1185         inta &= ~(CSR_INT_BIT_SCD | CSR_INT_BIT_ALIVE);
1186
1187         /* HW RF KILL switch toggled */
1188         if (inta & CSR_INT_BIT_RF_KILL) {
1189                 int hw_rf_kill = 0;
1190                 if (!(iwl_read32(priv, CSR_GP_CNTRL) &
1191                                 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW))
1192                         hw_rf_kill = 1;
1193
1194                 IWL_DEBUG_RF_KILL(priv, "RF_KILL bit toggled to %s.\n",
1195                                 hw_rf_kill ? "disable radio" : "enable radio");
1196
1197                 /* driver only loads ucode once setting the interface up.
1198                  * the driver allows loading the ucode even if the radio
1199                  * is killed. Hence update the killswitch state here. The
1200                  * rfkill handler will care about restarting if needed.
1201                  */
1202                 if (!test_bit(STATUS_ALIVE, &priv->status)) {
1203                         if (hw_rf_kill)
1204                                 set_bit(STATUS_RF_KILL_HW, &priv->status);
1205                         else
1206                                 clear_bit(STATUS_RF_KILL_HW, &priv->status);
1207                         queue_work(priv->workqueue, &priv->rf_kill);
1208                 }
1209
1210                 handled |= CSR_INT_BIT_RF_KILL;
1211         }
1212
1213         /* Chip got too hot and stopped itself */
1214         if (inta & CSR_INT_BIT_CT_KILL) {
1215                 IWL_ERR(priv, "Microcode CT kill error detected.\n");
1216                 handled |= CSR_INT_BIT_CT_KILL;
1217         }
1218
1219         /* Error detected by uCode */
1220         if (inta & CSR_INT_BIT_SW_ERR) {
1221                 IWL_ERR(priv, "Microcode SW error detected. "
1222                         " Restarting 0x%X.\n", inta);
1223                 iwl_irq_handle_error(priv);
1224                 handled |= CSR_INT_BIT_SW_ERR;
1225         }
1226
1227         /* uCode wakes up after power-down sleep */
1228         if (inta & CSR_INT_BIT_WAKEUP) {
1229                 IWL_DEBUG_ISR(priv, "Wakeup interrupt\n");
1230                 iwl_rx_queue_update_write_ptr(priv, &priv->rxq);
1231                 iwl_txq_update_write_ptr(priv, &priv->txq[0]);
1232                 iwl_txq_update_write_ptr(priv, &priv->txq[1]);
1233                 iwl_txq_update_write_ptr(priv, &priv->txq[2]);
1234                 iwl_txq_update_write_ptr(priv, &priv->txq[3]);
1235                 iwl_txq_update_write_ptr(priv, &priv->txq[4]);
1236                 iwl_txq_update_write_ptr(priv, &priv->txq[5]);
1237
1238                 handled |= CSR_INT_BIT_WAKEUP;
1239         }
1240
1241         /* All uCode command responses, including Tx command responses,
1242          * Rx "responses" (frame-received notification), and other
1243          * notifications from uCode come through here*/
1244         if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) {
1245                 iwl_rx_handle(priv);
1246                 handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX);
1247         }
1248
1249         if (inta & CSR_INT_BIT_FH_TX) {
1250                 IWL_DEBUG_ISR(priv, "Tx interrupt\n");
1251                 handled |= CSR_INT_BIT_FH_TX;
1252                 /* FH finished to write, send event */
1253                 priv->ucode_write_complete = 1;
1254                 wake_up_interruptible(&priv->wait_command_queue);
1255         }
1256
1257         if (inta & ~handled)
1258                 IWL_ERR(priv, "Unhandled INTA bits 0x%08x\n", inta & ~handled);
1259
1260         if (inta & ~CSR_INI_SET_MASK) {
1261                 IWL_WARN(priv, "Disabled INTA bits 0x%08x were pending\n",
1262                          inta & ~CSR_INI_SET_MASK);
1263                 IWL_WARN(priv, "   with FH_INT = 0x%08x\n", inta_fh);
1264         }
1265
1266         /* Re-enable all interrupts */
1267         /* only Re-enable if diabled by irq */
1268         if (test_bit(STATUS_INT_ENABLED, &priv->status))
1269                 iwl_enable_interrupts(priv);
1270
1271 #ifdef CONFIG_IWLWIFI_DEBUG
1272         if (priv->debug_level & (IWL_DL_ISR)) {
1273                 inta = iwl_read32(priv, CSR_INT);
1274                 inta_mask = iwl_read32(priv, CSR_INT_MASK);
1275                 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
1276                 IWL_DEBUG_ISR(priv, "End inta 0x%08x, enabled 0x%08x, fh 0x%08x, "
1277                         "flags 0x%08lx\n", inta, inta_mask, inta_fh, flags);
1278         }
1279 #endif
1280         spin_unlock_irqrestore(&priv->lock, flags);
1281 }
1282
1283 static irqreturn_t iwl_isr(int irq, void *data)
1284 {
1285         struct iwl_priv *priv = data;
1286         u32 inta, inta_mask;
1287         u32 inta_fh;
1288         if (!priv)
1289                 return IRQ_NONE;
1290
1291         spin_lock(&priv->lock);
1292
1293         /* Disable (but don't clear!) interrupts here to avoid
1294          *    back-to-back ISRs and sporadic interrupts from our NIC.
1295          * If we have something to service, the tasklet will re-enable ints.
1296          * If we *don't* have something, we'll re-enable before leaving here. */
1297         inta_mask = iwl_read32(priv, CSR_INT_MASK);  /* just for debug */
1298         iwl_write32(priv, CSR_INT_MASK, 0x00000000);
1299
1300         /* Discover which interrupts are active/pending */
1301         inta = iwl_read32(priv, CSR_INT);
1302         inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
1303
1304         /* Ignore interrupt if there's nothing in NIC to service.
1305          * This may be due to IRQ shared with another device,
1306          * or due to sporadic interrupts thrown from our NIC. */
1307         if (!inta && !inta_fh) {
1308                 IWL_DEBUG_ISR(priv, "Ignore interrupt, inta == 0, inta_fh == 0\n");
1309                 goto none;
1310         }
1311
1312         if ((inta == 0xFFFFFFFF) || ((inta & 0xFFFFFFF0) == 0xa5a5a5a0)) {
1313                 /* Hardware disappeared. It might have already raised
1314                  * an interrupt */
1315                 IWL_WARN(priv, "HARDWARE GONE?? INTA == 0x%08x\n", inta);
1316                 goto unplugged;
1317         }
1318
1319         IWL_DEBUG_ISR(priv, "ISR inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
1320                       inta, inta_mask, inta_fh);
1321
1322         inta &= ~CSR_INT_BIT_SCD;
1323
1324         /* iwl_irq_tasklet() will service interrupts and re-enable them */
1325         if (likely(inta || inta_fh))
1326                 tasklet_schedule(&priv->irq_tasklet);
1327
1328  unplugged:
1329         spin_unlock(&priv->lock);
1330         return IRQ_HANDLED;
1331
1332  none:
1333         /* re-enable interrupts here since we don't have anything to service. */
1334         /* only Re-enable if diabled by irq */
1335         if (test_bit(STATUS_INT_ENABLED, &priv->status))
1336                 iwl_enable_interrupts(priv);
1337         spin_unlock(&priv->lock);
1338         return IRQ_NONE;
1339 }
1340
1341 /******************************************************************************
1342  *
1343  * uCode download functions
1344  *
1345  ******************************************************************************/
1346
1347 static void iwl_dealloc_ucode_pci(struct iwl_priv *priv)
1348 {
1349         iwl_free_fw_desc(priv->pci_dev, &priv->ucode_code);
1350         iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data);
1351         iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
1352         iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init);
1353         iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init_data);
1354         iwl_free_fw_desc(priv->pci_dev, &priv->ucode_boot);
1355 }
1356
1357 static void iwl_nic_start(struct iwl_priv *priv)
1358 {
1359         /* Remove all resets to allow NIC to operate */
1360         iwl_write32(priv, CSR_RESET, 0);
1361 }
1362
1363
1364 /**
1365  * iwl_read_ucode - Read uCode images from disk file.
1366  *
1367  * Copy into buffers for card to fetch via bus-mastering
1368  */
1369 static int iwl_read_ucode(struct iwl_priv *priv)
1370 {
1371         struct iwl_ucode *ucode;
1372         int ret = -EINVAL, index;
1373         const struct firmware *ucode_raw;
1374         const char *name_pre = priv->cfg->fw_name_pre;
1375         const unsigned int api_max = priv->cfg->ucode_api_max;
1376         const unsigned int api_min = priv->cfg->ucode_api_min;
1377         char buf[25];
1378         u8 *src;
1379         size_t len;
1380         u32 api_ver, inst_size, data_size, init_size, init_data_size, boot_size;
1381
1382         /* Ask kernel firmware_class module to get the boot firmware off disk.
1383          * request_firmware() is synchronous, file is in memory on return. */
1384         for (index = api_max; index >= api_min; index--) {
1385                 sprintf(buf, "%s%d%s", name_pre, index, ".ucode");
1386                 ret = request_firmware(&ucode_raw, buf, &priv->pci_dev->dev);
1387                 if (ret < 0) {
1388                         IWL_ERR(priv, "%s firmware file req failed: %d\n",
1389                                   buf, ret);
1390                         if (ret == -ENOENT)
1391                                 continue;
1392                         else
1393                                 goto error;
1394                 } else {
1395                         if (index < api_max)
1396                                 IWL_ERR(priv, "Loaded firmware %s, "
1397                                         "which is deprecated. "
1398                                         "Please use API v%u instead.\n",
1399                                           buf, api_max);
1400
1401                         IWL_DEBUG_INFO(priv, "Got firmware '%s' file (%zd bytes) from disk\n",
1402                                        buf, ucode_raw->size);
1403                         break;
1404                 }
1405         }
1406
1407         if (ret < 0)
1408                 goto error;
1409
1410         /* Make sure that we got at least our header! */
1411         if (ucode_raw->size < sizeof(*ucode)) {
1412                 IWL_ERR(priv, "File size way too small!\n");
1413                 ret = -EINVAL;
1414                 goto err_release;
1415         }
1416
1417         /* Data from ucode file:  header followed by uCode images */
1418         ucode = (void *)ucode_raw->data;
1419
1420         priv->ucode_ver = le32_to_cpu(ucode->ver);
1421         api_ver = IWL_UCODE_API(priv->ucode_ver);
1422         inst_size = le32_to_cpu(ucode->inst_size);
1423         data_size = le32_to_cpu(ucode->data_size);
1424         init_size = le32_to_cpu(ucode->init_size);
1425         init_data_size = le32_to_cpu(ucode->init_data_size);
1426         boot_size = le32_to_cpu(ucode->boot_size);
1427
1428         /* api_ver should match the api version forming part of the
1429          * firmware filename ... but we don't check for that and only rely
1430          * on the API version read from firware header from here on forward */
1431
1432         if (api_ver < api_min || api_ver > api_max) {
1433                 IWL_ERR(priv, "Driver unable to support your firmware API. "
1434                           "Driver supports v%u, firmware is v%u.\n",
1435                           api_max, api_ver);
1436                 priv->ucode_ver = 0;
1437                 ret = -EINVAL;
1438                 goto err_release;
1439         }
1440         if (api_ver != api_max)
1441                 IWL_ERR(priv, "Firmware has old API version. Expected v%u, "
1442                           "got v%u. New firmware can be obtained "
1443                           "from http://www.intellinuxwireless.org.\n",
1444                           api_max, api_ver);
1445
1446         IWL_INFO(priv, "loaded firmware version %u.%u.%u.%u\n",
1447                IWL_UCODE_MAJOR(priv->ucode_ver),
1448                IWL_UCODE_MINOR(priv->ucode_ver),
1449                IWL_UCODE_API(priv->ucode_ver),
1450                IWL_UCODE_SERIAL(priv->ucode_ver));
1451
1452         IWL_DEBUG_INFO(priv, "f/w package hdr ucode version raw = 0x%x\n",
1453                        priv->ucode_ver);
1454         IWL_DEBUG_INFO(priv, "f/w package hdr runtime inst size = %u\n",
1455                        inst_size);
1456         IWL_DEBUG_INFO(priv, "f/w package hdr runtime data size = %u\n",
1457                        data_size);
1458         IWL_DEBUG_INFO(priv, "f/w package hdr init inst size = %u\n",
1459                        init_size);
1460         IWL_DEBUG_INFO(priv, "f/w package hdr init data size = %u\n",
1461                        init_data_size);
1462         IWL_DEBUG_INFO(priv, "f/w package hdr boot inst size = %u\n",
1463                        boot_size);
1464
1465         /* Verify size of file vs. image size info in file's header */
1466         if (ucode_raw->size < sizeof(*ucode) +
1467                 inst_size + data_size + init_size +
1468                 init_data_size + boot_size) {
1469
1470                 IWL_DEBUG_INFO(priv, "uCode file size %d too small\n",
1471                                (int)ucode_raw->size);
1472                 ret = -EINVAL;
1473                 goto err_release;
1474         }
1475
1476         /* Verify that uCode images will fit in card's SRAM */
1477         if (inst_size > priv->hw_params.max_inst_size) {
1478                 IWL_DEBUG_INFO(priv, "uCode instr len %d too large to fit in\n",
1479                                inst_size);
1480                 ret = -EINVAL;
1481                 goto err_release;
1482         }
1483
1484         if (data_size > priv->hw_params.max_data_size) {
1485                 IWL_DEBUG_INFO(priv, "uCode data len %d too large to fit in\n",
1486                                 data_size);
1487                 ret = -EINVAL;
1488                 goto err_release;
1489         }
1490         if (init_size > priv->hw_params.max_inst_size) {
1491                 IWL_INFO(priv, "uCode init instr len %d too large to fit in\n",
1492                         init_size);
1493                 ret = -EINVAL;
1494                 goto err_release;
1495         }
1496         if (init_data_size > priv->hw_params.max_data_size) {
1497                 IWL_INFO(priv, "uCode init data len %d too large to fit in\n",
1498                       init_data_size);
1499                 ret = -EINVAL;
1500                 goto err_release;
1501         }
1502         if (boot_size > priv->hw_params.max_bsm_size) {
1503                 IWL_INFO(priv, "uCode boot instr len %d too large to fit in\n",
1504                         boot_size);
1505                 ret = -EINVAL;
1506                 goto err_release;
1507         }
1508
1509         /* Allocate ucode buffers for card's bus-master loading ... */
1510
1511         /* Runtime instructions and 2 copies of data:
1512          * 1) unmodified from disk
1513          * 2) backup cache for save/restore during power-downs */
1514         priv->ucode_code.len = inst_size;
1515         iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_code);
1516
1517         priv->ucode_data.len = data_size;
1518         iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data);
1519
1520         priv->ucode_data_backup.len = data_size;
1521         iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
1522
1523         if (!priv->ucode_code.v_addr || !priv->ucode_data.v_addr ||
1524             !priv->ucode_data_backup.v_addr)
1525                 goto err_pci_alloc;
1526
1527         /* Initialization instructions and data */
1528         if (init_size && init_data_size) {
1529                 priv->ucode_init.len = init_size;
1530                 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init);
1531
1532                 priv->ucode_init_data.len = init_data_size;
1533                 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init_data);
1534
1535                 if (!priv->ucode_init.v_addr || !priv->ucode_init_data.v_addr)
1536                         goto err_pci_alloc;
1537         }
1538
1539         /* Bootstrap (instructions only, no data) */
1540         if (boot_size) {
1541                 priv->ucode_boot.len = boot_size;
1542                 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_boot);
1543
1544                 if (!priv->ucode_boot.v_addr)
1545                         goto err_pci_alloc;
1546         }
1547
1548         /* Copy images into buffers for card's bus-master reads ... */
1549
1550         /* Runtime instructions (first block of data in file) */
1551         src = &ucode->data[0];
1552         len = priv->ucode_code.len;
1553         IWL_DEBUG_INFO(priv, "Copying (but not loading) uCode instr len %Zd\n", len);
1554         memcpy(priv->ucode_code.v_addr, src, len);
1555         IWL_DEBUG_INFO(priv, "uCode instr buf vaddr = 0x%p, paddr = 0x%08x\n",
1556                 priv->ucode_code.v_addr, (u32)priv->ucode_code.p_addr);
1557
1558         /* Runtime data (2nd block)
1559          * NOTE:  Copy into backup buffer will be done in iwl_up()  */
1560         src = &ucode->data[inst_size];
1561         len = priv->ucode_data.len;
1562         IWL_DEBUG_INFO(priv, "Copying (but not loading) uCode data len %Zd\n", len);
1563         memcpy(priv->ucode_data.v_addr, src, len);
1564         memcpy(priv->ucode_data_backup.v_addr, src, len);
1565
1566         /* Initialization instructions (3rd block) */
1567         if (init_size) {
1568                 src = &ucode->data[inst_size + data_size];
1569                 len = priv->ucode_init.len;
1570                 IWL_DEBUG_INFO(priv, "Copying (but not loading) init instr len %Zd\n",
1571                                 len);
1572                 memcpy(priv->ucode_init.v_addr, src, len);
1573         }
1574
1575         /* Initialization data (4th block) */
1576         if (init_data_size) {
1577                 src = &ucode->data[inst_size + data_size + init_size];
1578                 len = priv->ucode_init_data.len;
1579                 IWL_DEBUG_INFO(priv, "Copying (but not loading) init data len %Zd\n",
1580                                len);
1581                 memcpy(priv->ucode_init_data.v_addr, src, len);
1582         }
1583
1584         /* Bootstrap instructions (5th block) */
1585         src = &ucode->data[inst_size + data_size + init_size + init_data_size];
1586         len = priv->ucode_boot.len;
1587         IWL_DEBUG_INFO(priv, "Copying (but not loading) boot instr len %Zd\n", len);
1588         memcpy(priv->ucode_boot.v_addr, src, len);
1589
1590         /* We have our copies now, allow OS release its copies */
1591         release_firmware(ucode_raw);
1592         return 0;
1593
1594  err_pci_alloc:
1595         IWL_ERR(priv, "failed to allocate pci memory\n");
1596         ret = -ENOMEM;
1597         iwl_dealloc_ucode_pci(priv);
1598
1599  err_release:
1600         release_firmware(ucode_raw);
1601
1602  error:
1603         return ret;
1604 }
1605
1606 /* temporary */
1607 static int iwl_mac_beacon_update(struct ieee80211_hw *hw,
1608                                  struct sk_buff *skb);
1609
1610 /**
1611  * iwl_alive_start - called after REPLY_ALIVE notification received
1612  *                   from protocol/runtime uCode (initialization uCode's
1613  *                   Alive gets handled by iwl_init_alive_start()).
1614  */
1615 static void iwl_alive_start(struct iwl_priv *priv)
1616 {
1617         int ret = 0;
1618
1619         IWL_DEBUG_INFO(priv, "Runtime Alive received.\n");
1620
1621         if (priv->card_alive.is_valid != UCODE_VALID_OK) {
1622                 /* We had an error bringing up the hardware, so take it
1623                  * all the way back down so we can try again */
1624                 IWL_DEBUG_INFO(priv, "Alive failed.\n");
1625                 goto restart;
1626         }
1627
1628         /* Initialize uCode has loaded Runtime uCode ... verify inst image.
1629          * This is a paranoid check, because we would not have gotten the
1630          * "runtime" alive if code weren't properly loaded.  */
1631         if (iwl_verify_ucode(priv)) {
1632                 /* Runtime instruction load was bad;
1633                  * take it all the way back down so we can try again */
1634                 IWL_DEBUG_INFO(priv, "Bad runtime uCode load.\n");
1635                 goto restart;
1636         }
1637
1638         iwl_clear_stations_table(priv);
1639         ret = priv->cfg->ops->lib->alive_notify(priv);
1640         if (ret) {
1641                 IWL_WARN(priv,
1642                         "Could not complete ALIVE transition [ntf]: %d\n", ret);
1643                 goto restart;
1644         }
1645
1646         /* After the ALIVE response, we can send host commands to the uCode */
1647         set_bit(STATUS_ALIVE, &priv->status);
1648
1649         if (iwl_is_rfkill(priv))
1650                 return;
1651
1652         ieee80211_wake_queues(priv->hw);
1653
1654         priv->active_rate = priv->rates_mask;
1655         priv->active_rate_basic = priv->rates_mask & IWL_BASIC_RATES_MASK;
1656
1657         if (iwl_is_associated(priv)) {
1658                 struct iwl_rxon_cmd *active_rxon =
1659                                 (struct iwl_rxon_cmd *)&priv->active_rxon;
1660
1661                 memcpy(&priv->staging_rxon, &priv->active_rxon,
1662                        sizeof(priv->staging_rxon));
1663                 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
1664         } else {
1665                 /* Initialize our rx_config data */
1666                 iwl_connection_init_rx_config(priv, priv->iw_mode);
1667                 iwl_set_rxon_chain(priv);
1668                 memcpy(priv->staging_rxon.node_addr, priv->mac_addr, ETH_ALEN);
1669         }
1670
1671         /* Configure Bluetooth device coexistence support */
1672         iwl_send_bt_config(priv);
1673
1674         iwl_reset_run_time_calib(priv);
1675
1676         /* Configure the adapter for unassociated operation */
1677         iwl_commit_rxon(priv);
1678
1679         /* At this point, the NIC is initialized and operational */
1680         iwl_rf_kill_ct_config(priv);
1681
1682         iwl_leds_register(priv);
1683
1684         IWL_DEBUG_INFO(priv, "ALIVE processing complete.\n");
1685         set_bit(STATUS_READY, &priv->status);
1686         wake_up_interruptible(&priv->wait_command_queue);
1687
1688         if (priv->error_recovering)
1689                 iwl_error_recovery(priv);
1690
1691         iwl_power_update_mode(priv, 1);
1692
1693         /* reassociate for ADHOC mode */
1694         if (priv->vif && (priv->iw_mode == NL80211_IFTYPE_ADHOC)) {
1695                 struct sk_buff *beacon = ieee80211_beacon_get(priv->hw,
1696                                                                 priv->vif);
1697                 if (beacon)
1698                         iwl_mac_beacon_update(priv->hw, beacon);
1699         }
1700
1701
1702         if (test_and_clear_bit(STATUS_MODE_PENDING, &priv->status))
1703                 iwl_set_mode(priv, priv->iw_mode);
1704
1705         return;
1706
1707  restart:
1708         queue_work(priv->workqueue, &priv->restart);
1709 }
1710
1711 static void iwl_cancel_deferred_work(struct iwl_priv *priv);
1712
1713 static void __iwl_down(struct iwl_priv *priv)
1714 {
1715         unsigned long flags;
1716         int exit_pending = test_bit(STATUS_EXIT_PENDING, &priv->status);
1717
1718         IWL_DEBUG_INFO(priv, DRV_NAME " is going down\n");
1719
1720         if (!exit_pending)
1721                 set_bit(STATUS_EXIT_PENDING, &priv->status);
1722
1723         iwl_leds_unregister(priv);
1724
1725         iwl_clear_stations_table(priv);
1726
1727         /* Unblock any waiting calls */
1728         wake_up_interruptible_all(&priv->wait_command_queue);
1729
1730         /* Wipe out the EXIT_PENDING status bit if we are not actually
1731          * exiting the module */
1732         if (!exit_pending)
1733                 clear_bit(STATUS_EXIT_PENDING, &priv->status);
1734
1735         /* stop and reset the on-board processor */
1736         iwl_write32(priv, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET);
1737
1738         /* tell the device to stop sending interrupts */
1739         spin_lock_irqsave(&priv->lock, flags);
1740         iwl_disable_interrupts(priv);
1741         spin_unlock_irqrestore(&priv->lock, flags);
1742         iwl_synchronize_irq(priv);
1743
1744         if (priv->mac80211_registered)
1745                 ieee80211_stop_queues(priv->hw);
1746
1747         /* If we have not previously called iwl_init() then
1748          * clear all bits but the RF Kill and SUSPEND bits and return */
1749         if (!iwl_is_init(priv)) {
1750                 priv->status = test_bit(STATUS_RF_KILL_HW, &priv->status) <<
1751                                         STATUS_RF_KILL_HW |
1752                                test_bit(STATUS_RF_KILL_SW, &priv->status) <<
1753                                         STATUS_RF_KILL_SW |
1754                                test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
1755                                         STATUS_GEO_CONFIGURED |
1756                                test_bit(STATUS_IN_SUSPEND, &priv->status) <<
1757                                         STATUS_IN_SUSPEND |
1758                                test_bit(STATUS_EXIT_PENDING, &priv->status) <<
1759                                         STATUS_EXIT_PENDING;
1760                 goto exit;
1761         }
1762
1763         /* ...otherwise clear out all the status bits but the RF Kill and
1764          * SUSPEND bits and continue taking the NIC down. */
1765         priv->status &= test_bit(STATUS_RF_KILL_HW, &priv->status) <<
1766                                 STATUS_RF_KILL_HW |
1767                         test_bit(STATUS_RF_KILL_SW, &priv->status) <<
1768                                 STATUS_RF_KILL_SW |
1769                         test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
1770                                 STATUS_GEO_CONFIGURED |
1771                         test_bit(STATUS_IN_SUSPEND, &priv->status) <<
1772                                 STATUS_IN_SUSPEND |
1773                         test_bit(STATUS_FW_ERROR, &priv->status) <<
1774                                 STATUS_FW_ERROR |
1775                        test_bit(STATUS_EXIT_PENDING, &priv->status) <<
1776                                 STATUS_EXIT_PENDING;
1777
1778         spin_lock_irqsave(&priv->lock, flags);
1779         iwl_clear_bit(priv, CSR_GP_CNTRL,
1780                          CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
1781         spin_unlock_irqrestore(&priv->lock, flags);
1782
1783         iwl_txq_ctx_stop(priv);
1784         iwl_rxq_stop(priv);
1785
1786         spin_lock_irqsave(&priv->lock, flags);
1787         if (!iwl_grab_nic_access(priv)) {
1788                 iwl_write_prph(priv, APMG_CLK_DIS_REG,
1789                                          APMG_CLK_VAL_DMA_CLK_RQT);
1790                 iwl_release_nic_access(priv);
1791         }
1792         spin_unlock_irqrestore(&priv->lock, flags);
1793
1794         udelay(5);
1795
1796         /* FIXME: apm_ops.suspend(priv) */
1797         if (exit_pending || test_bit(STATUS_IN_SUSPEND, &priv->status))
1798                 priv->cfg->ops->lib->apm_ops.stop(priv);
1799         else
1800                 priv->cfg->ops->lib->apm_ops.reset(priv);
1801  exit:
1802         memset(&priv->card_alive, 0, sizeof(struct iwl_alive_resp));
1803
1804         if (priv->ibss_beacon)
1805                 dev_kfree_skb(priv->ibss_beacon);
1806         priv->ibss_beacon = NULL;
1807
1808         /* clear out any free frames */
1809         iwl_clear_free_frames(priv);
1810 }
1811
1812 static void iwl_down(struct iwl_priv *priv)
1813 {
1814         mutex_lock(&priv->mutex);
1815         __iwl_down(priv);
1816         mutex_unlock(&priv->mutex);
1817
1818         iwl_cancel_deferred_work(priv);
1819 }
1820
1821 #define MAX_HW_RESTARTS 5
1822
1823 static int __iwl_up(struct iwl_priv *priv)
1824 {
1825         int i;
1826         int ret;
1827
1828         if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
1829                 IWL_WARN(priv, "Exit pending; will not bring the NIC up\n");
1830                 return -EIO;
1831         }
1832
1833         if (!priv->ucode_data_backup.v_addr || !priv->ucode_data.v_addr) {
1834                 IWL_ERR(priv, "ucode not available for device bringup\n");
1835                 return -EIO;
1836         }
1837
1838         /* If platform's RF_KILL switch is NOT set to KILL */
1839         if (iwl_read32(priv, CSR_GP_CNTRL) & CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
1840                 clear_bit(STATUS_RF_KILL_HW, &priv->status);
1841         else
1842                 set_bit(STATUS_RF_KILL_HW, &priv->status);
1843
1844         if (iwl_is_rfkill(priv)) {
1845                 iwl_enable_interrupts(priv);
1846                 IWL_WARN(priv, "Radio disabled by %s RF Kill switch\n",
1847                     test_bit(STATUS_RF_KILL_HW, &priv->status) ? "HW" : "SW");
1848                 return 0;
1849         }
1850
1851         iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
1852
1853         ret = iwl_hw_nic_init(priv);
1854         if (ret) {
1855                 IWL_ERR(priv, "Unable to init nic\n");
1856                 return ret;
1857         }
1858
1859         /* make sure rfkill handshake bits are cleared */
1860         iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
1861         iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR,
1862                     CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
1863
1864         /* clear (again), then enable host interrupts */
1865         iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
1866         iwl_enable_interrupts(priv);
1867
1868         /* really make sure rfkill handshake bits are cleared */
1869         iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
1870         iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
1871
1872         /* Copy original ucode data image from disk into backup cache.
1873          * This will be used to initialize the on-board processor's
1874          * data SRAM for a clean start when the runtime program first loads. */
1875         memcpy(priv->ucode_data_backup.v_addr, priv->ucode_data.v_addr,
1876                priv->ucode_data.len);
1877
1878         for (i = 0; i < MAX_HW_RESTARTS; i++) {
1879
1880                 iwl_clear_stations_table(priv);
1881
1882                 /* load bootstrap state machine,
1883                  * load bootstrap program into processor's memory,
1884                  * prepare to load the "initialize" uCode */
1885                 ret = priv->cfg->ops->lib->load_ucode(priv);
1886
1887                 if (ret) {
1888                         IWL_ERR(priv, "Unable to set up bootstrap uCode: %d\n",
1889                                 ret);
1890                         continue;
1891                 }
1892
1893                 /* Clear out the uCode error bit if it is set */
1894                 clear_bit(STATUS_FW_ERROR, &priv->status);
1895
1896                 /* start card; "initialize" will load runtime ucode */
1897                 iwl_nic_start(priv);
1898
1899                 IWL_DEBUG_INFO(priv, DRV_NAME " is coming up\n");
1900
1901                 return 0;
1902         }
1903
1904         set_bit(STATUS_EXIT_PENDING, &priv->status);
1905         __iwl_down(priv);
1906         clear_bit(STATUS_EXIT_PENDING, &priv->status);
1907
1908         /* tried to restart and config the device for as long as our
1909          * patience could withstand */
1910         IWL_ERR(priv, "Unable to initialize device after %d attempts.\n", i);
1911         return -EIO;
1912 }
1913
1914
1915 /*****************************************************************************
1916  *
1917  * Workqueue callbacks
1918  *
1919  *****************************************************************************/
1920
1921 static void iwl_bg_init_alive_start(struct work_struct *data)
1922 {
1923         struct iwl_priv *priv =
1924             container_of(data, struct iwl_priv, init_alive_start.work);
1925
1926         if (test_bit(STATUS_EXIT_PENDING, &priv->status))
1927                 return;
1928
1929         mutex_lock(&priv->mutex);
1930         priv->cfg->ops->lib->init_alive_start(priv);
1931         mutex_unlock(&priv->mutex);
1932 }
1933
1934 static void iwl_bg_alive_start(struct work_struct *data)
1935 {
1936         struct iwl_priv *priv =
1937             container_of(data, struct iwl_priv, alive_start.work);
1938
1939         if (test_bit(STATUS_EXIT_PENDING, &priv->status))
1940                 return;
1941
1942         mutex_lock(&priv->mutex);
1943         iwl_alive_start(priv);
1944         mutex_unlock(&priv->mutex);
1945 }
1946
1947 static void iwl_bg_run_time_calib_work(struct work_struct *work)
1948 {
1949         struct iwl_priv *priv = container_of(work, struct iwl_priv,
1950                         run_time_calib_work);
1951
1952         mutex_lock(&priv->mutex);
1953
1954         if (test_bit(STATUS_EXIT_PENDING, &priv->status) ||
1955             test_bit(STATUS_SCANNING, &priv->status)) {
1956                 mutex_unlock(&priv->mutex);
1957                 return;
1958         }
1959
1960         if (priv->start_calib) {
1961                 iwl_chain_noise_calibration(priv, &priv->statistics);
1962
1963                 iwl_sensitivity_calibration(priv, &priv->statistics);
1964         }
1965
1966         mutex_unlock(&priv->mutex);
1967         return;
1968 }
1969
1970 static void iwl_bg_up(struct work_struct *data)
1971 {
1972         struct iwl_priv *priv = container_of(data, struct iwl_priv, up);
1973
1974         if (test_bit(STATUS_EXIT_PENDING, &priv->status))
1975                 return;
1976
1977         mutex_lock(&priv->mutex);
1978         __iwl_up(priv);
1979         mutex_unlock(&priv->mutex);
1980         iwl_rfkill_set_hw_state(priv);
1981 }
1982
1983 static void iwl_bg_restart(struct work_struct *data)
1984 {
1985         struct iwl_priv *priv = container_of(data, struct iwl_priv, restart);
1986
1987         if (test_bit(STATUS_EXIT_PENDING, &priv->status))
1988                 return;
1989
1990         iwl_down(priv);
1991         queue_work(priv->workqueue, &priv->up);
1992 }
1993
1994 static void iwl_bg_rx_replenish(struct work_struct *data)
1995 {
1996         struct iwl_priv *priv =
1997             container_of(data, struct iwl_priv, rx_replenish);
1998
1999         if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2000                 return;
2001
2002         mutex_lock(&priv->mutex);
2003         iwl_rx_replenish(priv);
2004         mutex_unlock(&priv->mutex);
2005 }
2006
2007 #define IWL_DELAY_NEXT_SCAN (HZ*2)
2008
2009 static void iwl_post_associate(struct iwl_priv *priv)
2010 {
2011         struct ieee80211_conf *conf = NULL;
2012         int ret = 0;
2013         unsigned long flags;
2014
2015         if (priv->iw_mode == NL80211_IFTYPE_AP) {
2016                 IWL_ERR(priv, "%s Should not be called in AP mode\n", __func__);
2017                 return;
2018         }
2019
2020         IWL_DEBUG_ASSOC(priv, "Associated as %d to: %pM\n",
2021                         priv->assoc_id, priv->active_rxon.bssid_addr);
2022
2023
2024         if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2025                 return;
2026
2027
2028         if (!priv->vif || !priv->is_open)
2029                 return;
2030
2031         iwl_power_cancel_timeout(priv);
2032         iwl_scan_cancel_timeout(priv, 200);
2033
2034         conf = ieee80211_get_hw_conf(priv->hw);
2035
2036         priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
2037         iwl_commit_rxon(priv);
2038
2039         iwl_setup_rxon_timing(priv);
2040         ret = iwl_send_cmd_pdu(priv, REPLY_RXON_TIMING,
2041                               sizeof(priv->rxon_timing), &priv->rxon_timing);
2042         if (ret)
2043                 IWL_WARN(priv, "REPLY_RXON_TIMING failed - "
2044                             "Attempting to continue.\n");
2045
2046         priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
2047
2048         iwl_set_rxon_ht(priv, &priv->current_ht_config);
2049
2050         iwl_set_rxon_chain(priv);
2051         priv->staging_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
2052
2053         IWL_DEBUG_ASSOC(priv, "assoc id %d beacon interval %d\n",
2054                         priv->assoc_id, priv->beacon_int);
2055
2056         if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
2057                 priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
2058         else
2059                 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
2060
2061         if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) {
2062                 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_SLOT_TIME)
2063                         priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
2064                 else
2065                         priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
2066
2067                 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
2068                         priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
2069
2070         }
2071
2072         iwl_commit_rxon(priv);
2073
2074         switch (priv->iw_mode) {
2075         case NL80211_IFTYPE_STATION:
2076                 break;
2077
2078         case NL80211_IFTYPE_ADHOC:
2079
2080                 /* assume default assoc id */
2081                 priv->assoc_id = 1;
2082
2083                 iwl_rxon_add_station(priv, priv->bssid, 0);
2084                 iwl_send_beacon_cmd(priv);
2085
2086                 break;
2087
2088         default:
2089                 IWL_ERR(priv, "%s Should not be called in %d mode\n",
2090                           __func__, priv->iw_mode);
2091                 break;
2092         }
2093
2094         if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
2095                 priv->assoc_station_added = 1;
2096
2097         spin_lock_irqsave(&priv->lock, flags);
2098         iwl_activate_qos(priv, 0);
2099         spin_unlock_irqrestore(&priv->lock, flags);
2100
2101         /* the chain noise calibration will enabled PM upon completion
2102          * If chain noise has already been run, then we need to enable
2103          * power management here */
2104         if (priv->chain_noise_data.state == IWL_CHAIN_NOISE_DONE)
2105                 iwl_power_enable_management(priv);
2106
2107         /* Enable Rx differential gain and sensitivity calibrations */
2108         iwl_chain_noise_reset(priv);
2109         priv->start_calib = 1;
2110
2111 }
2112
2113 /*****************************************************************************
2114  *
2115  * mac80211 entry point functions
2116  *
2117  *****************************************************************************/
2118
2119 #define UCODE_READY_TIMEOUT     (4 * HZ)
2120
2121 static int iwl_mac_start(struct ieee80211_hw *hw)
2122 {
2123         struct iwl_priv *priv = hw->priv;
2124         int ret;
2125
2126         IWL_DEBUG_MAC80211(priv, "enter\n");
2127
2128         /* we should be verifying the device is ready to be opened */
2129         mutex_lock(&priv->mutex);
2130
2131         memset(&priv->staging_rxon, 0, sizeof(struct iwl_rxon_cmd));
2132         /* fetch ucode file from disk, alloc and copy to bus-master buffers ...
2133          * ucode filename and max sizes are card-specific. */
2134
2135         if (!priv->ucode_code.len) {
2136                 ret = iwl_read_ucode(priv);
2137                 if (ret) {
2138                         IWL_ERR(priv, "Could not read microcode: %d\n", ret);
2139                         mutex_unlock(&priv->mutex);
2140                         return ret;
2141                 }
2142         }
2143
2144         ret = __iwl_up(priv);
2145
2146         mutex_unlock(&priv->mutex);
2147
2148         iwl_rfkill_set_hw_state(priv);
2149
2150         if (ret)
2151                 return ret;
2152
2153         if (iwl_is_rfkill(priv))
2154                 goto out;
2155
2156         IWL_DEBUG_INFO(priv, "Start UP work done.\n");
2157
2158         if (test_bit(STATUS_IN_SUSPEND, &priv->status))
2159                 return 0;
2160
2161         /* Wait for START_ALIVE from Run Time ucode. Otherwise callbacks from
2162          * mac80211 will not be run successfully. */
2163         ret = wait_event_interruptible_timeout(priv->wait_command_queue,
2164                         test_bit(STATUS_READY, &priv->status),
2165                         UCODE_READY_TIMEOUT);
2166         if (!ret) {
2167                 if (!test_bit(STATUS_READY, &priv->status)) {
2168                         IWL_ERR(priv, "START_ALIVE timeout after %dms.\n",
2169                                 jiffies_to_msecs(UCODE_READY_TIMEOUT));
2170                         return -ETIMEDOUT;
2171                 }
2172         }
2173
2174 out:
2175         priv->is_open = 1;
2176         IWL_DEBUG_MAC80211(priv, "leave\n");
2177         return 0;
2178 }
2179
2180 static void iwl_mac_stop(struct ieee80211_hw *hw)
2181 {
2182         struct iwl_priv *priv = hw->priv;
2183
2184         IWL_DEBUG_MAC80211(priv, "enter\n");
2185
2186         if (!priv->is_open) {
2187                 IWL_DEBUG_MAC80211(priv, "leave - skip\n");
2188                 return;
2189         }
2190
2191         priv->is_open = 0;
2192
2193         if (iwl_is_ready_rf(priv)) {
2194                 /* stop mac, cancel any scan request and clear
2195                  * RXON_FILTER_ASSOC_MSK BIT
2196                  */
2197                 mutex_lock(&priv->mutex);
2198                 iwl_scan_cancel_timeout(priv, 100);
2199                 mutex_unlock(&priv->mutex);
2200         }
2201
2202         iwl_down(priv);
2203
2204         flush_workqueue(priv->workqueue);
2205
2206         /* enable interrupts again in order to receive rfkill changes */
2207         iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
2208         iwl_enable_interrupts(priv);
2209
2210         IWL_DEBUG_MAC80211(priv, "leave\n");
2211 }
2212
2213 static int iwl_mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
2214 {
2215         struct iwl_priv *priv = hw->priv;
2216
2217         IWL_DEBUG_MACDUMP(priv, "enter\n");
2218
2219         IWL_DEBUG_TX(priv, "dev->xmit(%d bytes) at rate 0x%02x\n", skb->len,
2220                      ieee80211_get_tx_rate(hw, IEEE80211_SKB_CB(skb))->bitrate);
2221
2222         if (iwl_tx_skb(priv, skb))
2223                 dev_kfree_skb_any(skb);
2224
2225         IWL_DEBUG_MACDUMP(priv, "leave\n");
2226         return NETDEV_TX_OK;
2227 }
2228
2229 static int iwl_mac_add_interface(struct ieee80211_hw *hw,
2230                                  struct ieee80211_if_init_conf *conf)
2231 {
2232         struct iwl_priv *priv = hw->priv;
2233         unsigned long flags;
2234
2235         IWL_DEBUG_MAC80211(priv, "enter: type %d\n", conf->type);
2236
2237         if (priv->vif) {
2238                 IWL_DEBUG_MAC80211(priv, "leave - vif != NULL\n");
2239                 return -EOPNOTSUPP;
2240         }
2241
2242         spin_lock_irqsave(&priv->lock, flags);
2243         priv->vif = conf->vif;
2244         priv->iw_mode = conf->type;
2245
2246         spin_unlock_irqrestore(&priv->lock, flags);
2247
2248         mutex_lock(&priv->mutex);
2249
2250         if (conf->mac_addr) {
2251                 IWL_DEBUG_MAC80211(priv, "Set %pM\n", conf->mac_addr);
2252                 memcpy(priv->mac_addr, conf->mac_addr, ETH_ALEN);
2253         }
2254
2255         if (iwl_set_mode(priv, conf->type) == -EAGAIN)
2256                 /* we are not ready, will run again when ready */
2257                 set_bit(STATUS_MODE_PENDING, &priv->status);
2258
2259         mutex_unlock(&priv->mutex);
2260
2261         IWL_DEBUG_MAC80211(priv, "leave\n");
2262         return 0;
2263 }
2264
2265 /**
2266  * iwl_mac_config - mac80211 config callback
2267  *
2268  * We ignore conf->flags & IEEE80211_CONF_SHORT_SLOT_TIME since it seems to
2269  * be set inappropriately and the driver currently sets the hardware up to
2270  * use it whenever needed.
2271  */
2272 static int iwl_mac_config(struct ieee80211_hw *hw, u32 changed)
2273 {
2274         struct iwl_priv *priv = hw->priv;
2275         const struct iwl_channel_info *ch_info;
2276         struct ieee80211_conf *conf = &hw->conf;
2277         unsigned long flags;
2278         int ret = 0;
2279         u16 channel;
2280
2281         mutex_lock(&priv->mutex);
2282         IWL_DEBUG_MAC80211(priv, "enter to channel %d\n", conf->channel->hw_value);
2283
2284         priv->current_ht_config.is_ht = conf_is_ht(conf);
2285
2286         if (conf->radio_enabled && iwl_radio_kill_sw_enable_radio(priv)) {
2287                 IWL_DEBUG_MAC80211(priv, "leave - RF-KILL - waiting for uCode\n");
2288                 goto out;
2289         }
2290
2291         if (!conf->radio_enabled)
2292                 iwl_radio_kill_sw_disable_radio(priv);
2293
2294         if (!iwl_is_ready(priv)) {
2295                 IWL_DEBUG_MAC80211(priv, "leave - not ready\n");
2296                 ret = -EIO;
2297                 goto out;
2298         }
2299
2300         if (unlikely(!priv->cfg->mod_params->disable_hw_scan &&
2301                      test_bit(STATUS_SCANNING, &priv->status))) {
2302                 IWL_DEBUG_MAC80211(priv, "leave - scanning\n");
2303                 mutex_unlock(&priv->mutex);
2304                 return 0;
2305         }
2306
2307         channel = ieee80211_frequency_to_channel(conf->channel->center_freq);
2308         ch_info = iwl_get_channel_info(priv, conf->channel->band, channel);
2309         if (!is_channel_valid(ch_info)) {
2310                 IWL_DEBUG_MAC80211(priv, "leave - invalid channel\n");
2311                 ret = -EINVAL;
2312                 goto out;
2313         }
2314
2315         if (priv->iw_mode == NL80211_IFTYPE_ADHOC &&
2316             !is_channel_ibss(ch_info)) {
2317                 IWL_ERR(priv, "channel %d in band %d not IBSS channel\n",
2318                         conf->channel->hw_value, conf->channel->band);
2319                 ret = -EINVAL;
2320                 goto out;
2321         }
2322
2323         spin_lock_irqsave(&priv->lock, flags);
2324
2325
2326         /* if we are switching from ht to 2.4 clear flags
2327          * from any ht related info since 2.4 does not
2328          * support ht */
2329         if ((le16_to_cpu(priv->staging_rxon.channel) != channel)
2330 #ifdef IEEE80211_CONF_CHANNEL_SWITCH
2331             && !(conf->flags & IEEE80211_CONF_CHANNEL_SWITCH)
2332 #endif
2333         )
2334                 priv->staging_rxon.flags = 0;
2335
2336         iwl_set_rxon_channel(priv, conf->channel);
2337
2338         iwl_set_flags_for_band(priv, conf->channel->band);
2339
2340         /* The list of supported rates and rate mask can be different
2341          * for each band; since the band may have changed, reset
2342          * the rate mask to what mac80211 lists */
2343         iwl_set_rate(priv);
2344
2345         spin_unlock_irqrestore(&priv->lock, flags);
2346
2347 #ifdef IEEE80211_CONF_CHANNEL_SWITCH
2348         if (conf->flags & IEEE80211_CONF_CHANNEL_SWITCH) {
2349                 iwl_hw_channel_switch(priv, conf->channel);
2350                 goto out;
2351         }
2352 #endif
2353
2354         if (!conf->radio_enabled) {
2355                 IWL_DEBUG_MAC80211(priv, "leave - radio disabled\n");
2356                 goto out;
2357         }
2358
2359         if (iwl_is_rfkill(priv)) {
2360                 IWL_DEBUG_MAC80211(priv, "leave - RF kill\n");
2361                 ret = -EIO;
2362                 goto out;
2363         }
2364
2365         if (conf->flags & IEEE80211_CONF_PS)
2366                 ret = iwl_power_set_user_mode(priv, IWL_POWER_INDEX_3);
2367         else
2368                 ret = iwl_power_set_user_mode(priv, IWL_POWER_MODE_CAM);
2369         if (ret)
2370                 IWL_DEBUG_MAC80211(priv, "Error setting power level\n");
2371
2372         IWL_DEBUG_MAC80211(priv, "TX Power old=%d new=%d\n",
2373                            priv->tx_power_user_lmt, conf->power_level);
2374
2375         iwl_set_tx_power(priv, conf->power_level, false);
2376
2377         iwl_set_rate(priv);
2378
2379         /* call to ensure that 4965 rx_chain is set properly in monitor mode */
2380         iwl_set_rxon_chain(priv);
2381
2382         if (memcmp(&priv->active_rxon,
2383                    &priv->staging_rxon, sizeof(priv->staging_rxon)))
2384                 iwl_commit_rxon(priv);
2385         else
2386                 IWL_DEBUG_INFO(priv, "No re-sending same RXON configuration.\n");
2387
2388         IWL_DEBUG_MAC80211(priv, "leave\n");
2389
2390 out:
2391         mutex_unlock(&priv->mutex);
2392         return ret;
2393 }
2394
2395 static void iwl_config_ap(struct iwl_priv *priv)
2396 {
2397         int ret = 0;
2398         unsigned long flags;
2399
2400         if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2401                 return;
2402
2403         /* The following should be done only at AP bring up */
2404         if (!iwl_is_associated(priv)) {
2405
2406                 /* RXON - unassoc (to set timing command) */
2407                 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
2408                 iwl_commit_rxon(priv);
2409
2410                 /* RXON Timing */
2411                 iwl_setup_rxon_timing(priv);
2412                 ret = iwl_send_cmd_pdu(priv, REPLY_RXON_TIMING,
2413                                 sizeof(priv->rxon_timing), &priv->rxon_timing);
2414                 if (ret)
2415                         IWL_WARN(priv, "REPLY_RXON_TIMING failed - "
2416                                         "Attempting to continue.\n");
2417
2418                 iwl_set_rxon_chain(priv);
2419
2420                 /* FIXME: what should be the assoc_id for AP? */
2421                 priv->staging_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
2422                 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
2423                         priv->staging_rxon.flags |=
2424                                 RXON_FLG_SHORT_PREAMBLE_MSK;
2425                 else
2426                         priv->staging_rxon.flags &=
2427                                 ~RXON_FLG_SHORT_PREAMBLE_MSK;
2428
2429                 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) {
2430                         if (priv->assoc_capability &
2431                                 WLAN_CAPABILITY_SHORT_SLOT_TIME)
2432                                 priv->staging_rxon.flags |=
2433                                         RXON_FLG_SHORT_SLOT_MSK;
2434                         else
2435                                 priv->staging_rxon.flags &=
2436                                         ~RXON_FLG_SHORT_SLOT_MSK;
2437
2438                         if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
2439                                 priv->staging_rxon.flags &=
2440                                         ~RXON_FLG_SHORT_SLOT_MSK;
2441                 }
2442                 /* restore RXON assoc */
2443                 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
2444                 iwl_commit_rxon(priv);
2445                 spin_lock_irqsave(&priv->lock, flags);
2446                 iwl_activate_qos(priv, 1);
2447                 spin_unlock_irqrestore(&priv->lock, flags);
2448                 iwl_rxon_add_station(priv, iwl_bcast_addr, 0);
2449         }
2450         iwl_send_beacon_cmd(priv);
2451
2452         /* FIXME - we need to add code here to detect a totally new
2453          * configuration, reset the AP, unassoc, rxon timing, assoc,
2454          * clear sta table, add BCAST sta... */
2455 }
2456
2457
2458 static int iwl_mac_config_interface(struct ieee80211_hw *hw,
2459                                         struct ieee80211_vif *vif,
2460                                     struct ieee80211_if_conf *conf)
2461 {
2462         struct iwl_priv *priv = hw->priv;
2463         int rc;
2464
2465         if (conf == NULL)
2466                 return -EIO;
2467
2468         if (priv->vif != vif) {
2469                 IWL_DEBUG_MAC80211(priv, "leave - priv->vif != vif\n");
2470                 return 0;
2471         }
2472
2473         if (priv->iw_mode == NL80211_IFTYPE_ADHOC &&
2474             conf->changed & IEEE80211_IFCC_BEACON) {
2475                 struct sk_buff *beacon = ieee80211_beacon_get(hw, vif);
2476                 if (!beacon)
2477                         return -ENOMEM;
2478                 mutex_lock(&priv->mutex);
2479                 rc = iwl_mac_beacon_update(hw, beacon);
2480                 mutex_unlock(&priv->mutex);
2481                 if (rc)
2482                         return rc;
2483         }
2484
2485         if (!iwl_is_alive(priv))
2486                 return -EAGAIN;
2487
2488         mutex_lock(&priv->mutex);
2489
2490         if (conf->bssid)
2491                 IWL_DEBUG_MAC80211(priv, "bssid: %pM\n", conf->bssid);
2492
2493 /*
2494  * very dubious code was here; the probe filtering flag is never set:
2495  *
2496         if (unlikely(test_bit(STATUS_SCANNING, &priv->status)) &&
2497             !(priv->hw->flags & IEEE80211_HW_NO_PROBE_FILTERING)) {
2498  */
2499
2500         if (priv->iw_mode == NL80211_IFTYPE_AP) {
2501                 if (!conf->bssid) {
2502                         conf->bssid = priv->mac_addr;
2503                         memcpy(priv->bssid, priv->mac_addr, ETH_ALEN);
2504                         IWL_DEBUG_MAC80211(priv, "bssid was set to: %pM\n",
2505                                            conf->bssid);
2506                 }
2507                 if (priv->ibss_beacon)
2508                         dev_kfree_skb(priv->ibss_beacon);
2509
2510                 priv->ibss_beacon = ieee80211_beacon_get(hw, vif);
2511         }
2512
2513         if (iwl_is_rfkill(priv))
2514                 goto done;
2515
2516         if (conf->bssid && !is_zero_ether_addr(conf->bssid) &&
2517             !is_multicast_ether_addr(conf->bssid)) {
2518                 /* If there is currently a HW scan going on in the background
2519                  * then we need to cancel it else the RXON below will fail. */
2520                 if (iwl_scan_cancel_timeout(priv, 100)) {
2521                         IWL_WARN(priv, "Aborted scan still in progress "
2522                                     "after 100ms\n");
2523                         IWL_DEBUG_MAC80211(priv, "leaving - scan abort failed.\n");
2524                         mutex_unlock(&priv->mutex);
2525                         return -EAGAIN;
2526                 }
2527                 memcpy(priv->staging_rxon.bssid_addr, conf->bssid, ETH_ALEN);
2528
2529                 /* TODO: Audit driver for usage of these members and see
2530                  * if mac80211 deprecates them (priv->bssid looks like it
2531                  * shouldn't be there, but I haven't scanned the IBSS code
2532                  * to verify) - jpk */
2533                 memcpy(priv->bssid, conf->bssid, ETH_ALEN);
2534
2535                 if (priv->iw_mode == NL80211_IFTYPE_AP)
2536                         iwl_config_ap(priv);
2537                 else {
2538                         rc = iwl_commit_rxon(priv);
2539                         if ((priv->iw_mode == NL80211_IFTYPE_STATION) && rc)
2540                                 iwl_rxon_add_station(
2541                                         priv, priv->active_rxon.bssid_addr, 1);
2542                 }
2543
2544         } else {
2545                 iwl_scan_cancel_timeout(priv, 100);
2546                 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
2547                 iwl_commit_rxon(priv);
2548         }
2549
2550  done:
2551         IWL_DEBUG_MAC80211(priv, "leave\n");
2552         mutex_unlock(&priv->mutex);
2553
2554         return 0;
2555 }
2556
2557 static void iwl_mac_remove_interface(struct ieee80211_hw *hw,
2558                                      struct ieee80211_if_init_conf *conf)
2559 {
2560         struct iwl_priv *priv = hw->priv;
2561
2562         IWL_DEBUG_MAC80211(priv, "enter\n");
2563
2564         mutex_lock(&priv->mutex);
2565
2566         if (iwl_is_ready_rf(priv)) {
2567                 iwl_scan_cancel_timeout(priv, 100);
2568                 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
2569                 iwl_commit_rxon(priv);
2570         }
2571         if (priv->vif == conf->vif) {
2572                 priv->vif = NULL;
2573                 memset(priv->bssid, 0, ETH_ALEN);
2574         }
2575         mutex_unlock(&priv->mutex);
2576
2577         IWL_DEBUG_MAC80211(priv, "leave\n");
2578
2579 }
2580
2581 #define IWL_DELAY_NEXT_SCAN_AFTER_ASSOC (HZ*6)
2582 static void iwl_bss_info_changed(struct ieee80211_hw *hw,
2583                                      struct ieee80211_vif *vif,
2584                                      struct ieee80211_bss_conf *bss_conf,
2585                                      u32 changes)
2586 {
2587         struct iwl_priv *priv = hw->priv;
2588
2589         IWL_DEBUG_MAC80211(priv, "changes = 0x%X\n", changes);
2590
2591         if (changes & BSS_CHANGED_ERP_PREAMBLE) {
2592                 IWL_DEBUG_MAC80211(priv, "ERP_PREAMBLE %d\n",
2593                                    bss_conf->use_short_preamble);
2594                 if (bss_conf->use_short_preamble)
2595                         priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
2596                 else
2597                         priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
2598         }
2599
2600         if (changes & BSS_CHANGED_ERP_CTS_PROT) {
2601                 IWL_DEBUG_MAC80211(priv, "ERP_CTS %d\n", bss_conf->use_cts_prot);
2602                 if (bss_conf->use_cts_prot && (priv->band != IEEE80211_BAND_5GHZ))
2603                         priv->staging_rxon.flags |= RXON_FLG_TGG_PROTECT_MSK;
2604                 else
2605                         priv->staging_rxon.flags &= ~RXON_FLG_TGG_PROTECT_MSK;
2606         }
2607
2608         if (changes & BSS_CHANGED_HT) {
2609                 iwl_ht_conf(priv, bss_conf);
2610                 iwl_set_rxon_chain(priv);
2611         }
2612
2613         if (changes & BSS_CHANGED_ASSOC) {
2614                 IWL_DEBUG_MAC80211(priv, "ASSOC %d\n", bss_conf->assoc);
2615                 /* This should never happen as this function should
2616                  * never be called from interrupt context. */
2617                 if (WARN_ON_ONCE(in_interrupt()))
2618                         return;
2619                 if (bss_conf->assoc) {
2620                         priv->assoc_id = bss_conf->aid;
2621                         priv->beacon_int = bss_conf->beacon_int;
2622                         priv->power_data.dtim_period = bss_conf->dtim_period;
2623                         priv->timestamp = bss_conf->timestamp;
2624                         priv->assoc_capability = bss_conf->assoc_capability;
2625
2626                         /* we have just associated, don't start scan too early
2627                          * leave time for EAPOL exchange to complete
2628                          */
2629                         priv->next_scan_jiffies = jiffies +
2630                                         IWL_DELAY_NEXT_SCAN_AFTER_ASSOC;
2631                         mutex_lock(&priv->mutex);
2632                         iwl_post_associate(priv);
2633                         mutex_unlock(&priv->mutex);
2634                 } else {
2635                         priv->assoc_id = 0;
2636                         IWL_DEBUG_MAC80211(priv, "DISASSOC %d\n", bss_conf->assoc);
2637                 }
2638         } else if (changes && iwl_is_associated(priv) && priv->assoc_id) {
2639                         IWL_DEBUG_MAC80211(priv, "Associated Changes %d\n", changes);
2640                         iwl_send_rxon_assoc(priv);
2641         }
2642
2643 }
2644
2645 static void iwl_mac_update_tkip_key(struct ieee80211_hw *hw,
2646                         struct ieee80211_key_conf *keyconf, const u8 *addr,
2647                         u32 iv32, u16 *phase1key)
2648 {
2649
2650         struct iwl_priv *priv = hw->priv;
2651         IWL_DEBUG_MAC80211(priv, "enter\n");
2652
2653         iwl_update_tkip_key(priv, keyconf, addr, iv32, phase1key);
2654
2655         IWL_DEBUG_MAC80211(priv, "leave\n");
2656 }
2657
2658 static int iwl_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
2659                            struct ieee80211_vif *vif,
2660                            struct ieee80211_sta *sta,
2661                            struct ieee80211_key_conf *key)
2662 {
2663         struct iwl_priv *priv = hw->priv;
2664         const u8 *addr;
2665         int ret;
2666         u8 sta_id;
2667         bool is_default_wep_key = false;
2668
2669         IWL_DEBUG_MAC80211(priv, "enter\n");
2670
2671         if (priv->hw_params.sw_crypto) {
2672                 IWL_DEBUG_MAC80211(priv, "leave - hwcrypto disabled\n");
2673                 return -EOPNOTSUPP;
2674         }
2675         addr = sta ? sta->addr : iwl_bcast_addr;
2676         sta_id = iwl_find_station(priv, addr);
2677         if (sta_id == IWL_INVALID_STATION) {
2678                 IWL_DEBUG_MAC80211(priv, "leave - %pM not in station map.\n",
2679                                    addr);
2680                 return -EINVAL;
2681
2682         }
2683
2684         mutex_lock(&priv->mutex);
2685         iwl_scan_cancel_timeout(priv, 100);
2686         mutex_unlock(&priv->mutex);
2687
2688         /* If we are getting WEP group key and we didn't receive any key mapping
2689          * so far, we are in legacy wep mode (group key only), otherwise we are
2690          * in 1X mode.
2691          * In legacy wep mode, we use another host command to the uCode */
2692         if (key->alg == ALG_WEP && sta_id == priv->hw_params.bcast_sta_id &&
2693                 priv->iw_mode != NL80211_IFTYPE_AP) {
2694                 if (cmd == SET_KEY)
2695                         is_default_wep_key = !priv->key_mapping_key;
2696                 else
2697                         is_default_wep_key =
2698                                         (key->hw_key_idx == HW_KEY_DEFAULT);
2699         }
2700
2701         switch (cmd) {
2702         case SET_KEY:
2703                 if (is_default_wep_key)
2704                         ret = iwl_set_default_wep_key(priv, key);
2705                 else
2706                         ret = iwl_set_dynamic_key(priv, key, sta_id);
2707
2708                 IWL_DEBUG_MAC80211(priv, "enable hwcrypto key\n");
2709                 break;
2710         case DISABLE_KEY:
2711                 if (is_default_wep_key)
2712                         ret = iwl_remove_default_wep_key(priv, key);
2713                 else
2714                         ret = iwl_remove_dynamic_key(priv, key, sta_id);
2715
2716                 IWL_DEBUG_MAC80211(priv, "disable hwcrypto key\n");
2717                 break;
2718         default:
2719                 ret = -EINVAL;
2720         }
2721
2722         IWL_DEBUG_MAC80211(priv, "leave\n");
2723
2724         return ret;
2725 }
2726
2727 static int iwl_mac_conf_tx(struct ieee80211_hw *hw, u16 queue,
2728                            const struct ieee80211_tx_queue_params *params)
2729 {
2730         struct iwl_priv *priv = hw->priv;
2731         unsigned long flags;
2732         int q;
2733
2734         IWL_DEBUG_MAC80211(priv, "enter\n");
2735
2736         if (!iwl_is_ready_rf(priv)) {
2737                 IWL_DEBUG_MAC80211(priv, "leave - RF not ready\n");
2738                 return -EIO;
2739         }
2740
2741         if (queue >= AC_NUM) {
2742                 IWL_DEBUG_MAC80211(priv, "leave - queue >= AC_NUM %d\n", queue);
2743                 return 0;
2744         }
2745
2746         q = AC_NUM - 1 - queue;
2747
2748         spin_lock_irqsave(&priv->lock, flags);
2749
2750         priv->qos_data.def_qos_parm.ac[q].cw_min = cpu_to_le16(params->cw_min);
2751         priv->qos_data.def_qos_parm.ac[q].cw_max = cpu_to_le16(params->cw_max);
2752         priv->qos_data.def_qos_parm.ac[q].aifsn = params->aifs;
2753         priv->qos_data.def_qos_parm.ac[q].edca_txop =
2754                         cpu_to_le16((params->txop * 32));
2755
2756         priv->qos_data.def_qos_parm.ac[q].reserved1 = 0;
2757         priv->qos_data.qos_active = 1;
2758
2759         if (priv->iw_mode == NL80211_IFTYPE_AP)
2760                 iwl_activate_qos(priv, 1);
2761         else if (priv->assoc_id && iwl_is_associated(priv))
2762                 iwl_activate_qos(priv, 0);
2763
2764         spin_unlock_irqrestore(&priv->lock, flags);
2765
2766         IWL_DEBUG_MAC80211(priv, "leave\n");
2767         return 0;
2768 }
2769
2770 static int iwl_mac_ampdu_action(struct ieee80211_hw *hw,
2771                              enum ieee80211_ampdu_mlme_action action,
2772                              struct ieee80211_sta *sta, u16 tid, u16 *ssn)
2773 {
2774         struct iwl_priv *priv = hw->priv;
2775
2776         IWL_DEBUG_HT(priv, "A-MPDU action on addr %pM tid %d\n",
2777                      sta->addr, tid);
2778
2779         if (!(priv->cfg->sku & IWL_SKU_N))
2780                 return -EACCES;
2781
2782         switch (action) {
2783         case IEEE80211_AMPDU_RX_START:
2784                 IWL_DEBUG_HT(priv, "start Rx\n");
2785                 return iwl_sta_rx_agg_start(priv, sta->addr, tid, *ssn);
2786         case IEEE80211_AMPDU_RX_STOP:
2787                 IWL_DEBUG_HT(priv, "stop Rx\n");
2788                 return iwl_sta_rx_agg_stop(priv, sta->addr, tid);
2789         case IEEE80211_AMPDU_TX_START:
2790                 IWL_DEBUG_HT(priv, "start Tx\n");
2791                 return iwl_tx_agg_start(priv, sta->addr, tid, ssn);
2792         case IEEE80211_AMPDU_TX_STOP:
2793                 IWL_DEBUG_HT(priv, "stop Tx\n");
2794                 return iwl_tx_agg_stop(priv, sta->addr, tid);
2795         default:
2796                 IWL_DEBUG_HT(priv, "unknown\n");
2797                 return -EINVAL;
2798                 break;
2799         }
2800         return 0;
2801 }
2802
2803 static int iwl_mac_get_tx_stats(struct ieee80211_hw *hw,
2804                                 struct ieee80211_tx_queue_stats *stats)
2805 {
2806         struct iwl_priv *priv = hw->priv;
2807         int i, avail;
2808         struct iwl_tx_queue *txq;
2809         struct iwl_queue *q;
2810         unsigned long flags;
2811
2812         IWL_DEBUG_MAC80211(priv, "enter\n");
2813
2814         if (!iwl_is_ready_rf(priv)) {
2815                 IWL_DEBUG_MAC80211(priv, "leave - RF not ready\n");
2816                 return -EIO;
2817         }
2818
2819         spin_lock_irqsave(&priv->lock, flags);
2820
2821         for (i = 0; i < AC_NUM; i++) {
2822                 txq = &priv->txq[i];
2823                 q = &txq->q;
2824                 avail = iwl_queue_space(q);
2825
2826                 stats[i].len = q->n_window - avail;
2827                 stats[i].limit = q->n_window - q->high_mark;
2828                 stats[i].count = q->n_window;
2829
2830         }
2831         spin_unlock_irqrestore(&priv->lock, flags);
2832
2833         IWL_DEBUG_MAC80211(priv, "leave\n");
2834
2835         return 0;
2836 }
2837
2838 static int iwl_mac_get_stats(struct ieee80211_hw *hw,
2839                              struct ieee80211_low_level_stats *stats)
2840 {
2841         struct iwl_priv *priv = hw->priv;
2842
2843         priv = hw->priv;
2844         IWL_DEBUG_MAC80211(priv, "enter\n");
2845         IWL_DEBUG_MAC80211(priv, "leave\n");
2846
2847         return 0;
2848 }
2849
2850 static void iwl_mac_reset_tsf(struct ieee80211_hw *hw)
2851 {
2852         struct iwl_priv *priv = hw->priv;
2853         unsigned long flags;
2854
2855         mutex_lock(&priv->mutex);
2856         IWL_DEBUG_MAC80211(priv, "enter\n");
2857
2858         spin_lock_irqsave(&priv->lock, flags);
2859         memset(&priv->current_ht_config, 0, sizeof(struct iwl_ht_info));
2860         spin_unlock_irqrestore(&priv->lock, flags);
2861
2862         iwl_reset_qos(priv);
2863
2864         spin_lock_irqsave(&priv->lock, flags);
2865         priv->assoc_id = 0;
2866         priv->assoc_capability = 0;
2867         priv->assoc_station_added = 0;
2868
2869         /* new association get rid of ibss beacon skb */
2870         if (priv->ibss_beacon)
2871                 dev_kfree_skb(priv->ibss_beacon);
2872
2873         priv->ibss_beacon = NULL;
2874
2875         priv->beacon_int = priv->hw->conf.beacon_int;
2876         priv->timestamp = 0;
2877         if ((priv->iw_mode == NL80211_IFTYPE_STATION))
2878                 priv->beacon_int = 0;
2879
2880         spin_unlock_irqrestore(&priv->lock, flags);
2881
2882         if (!iwl_is_ready_rf(priv)) {
2883                 IWL_DEBUG_MAC80211(priv, "leave - not ready\n");
2884                 mutex_unlock(&priv->mutex);
2885                 return;
2886         }
2887
2888         /* we are restarting association process
2889          * clear RXON_FILTER_ASSOC_MSK bit
2890          */
2891         if (priv->iw_mode != NL80211_IFTYPE_AP) {
2892                 iwl_scan_cancel_timeout(priv, 100);
2893                 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
2894                 iwl_commit_rxon(priv);
2895         }
2896
2897         iwl_power_update_mode(priv, 0);
2898
2899         /* Per mac80211.h: This is only used in IBSS mode... */
2900         if (priv->iw_mode != NL80211_IFTYPE_ADHOC) {
2901
2902                 /* switch to CAM during association period.
2903                  * the ucode will block any association/authentication
2904                  * frome during assiciation period if it can not hear
2905                  * the AP because of PM. the timer enable PM back is
2906                  * association do not complete
2907                  */
2908                 if (priv->hw->conf.channel->flags & (IEEE80211_CHAN_PASSIVE_SCAN |
2909                                                      IEEE80211_CHAN_RADAR))
2910                                 iwl_power_disable_management(priv, 3000);
2911
2912                 IWL_DEBUG_MAC80211(priv, "leave - not in IBSS\n");
2913                 mutex_unlock(&priv->mutex);
2914                 return;
2915         }
2916
2917         iwl_set_rate(priv);
2918
2919         mutex_unlock(&priv->mutex);
2920
2921         IWL_DEBUG_MAC80211(priv, "leave\n");
2922 }
2923
2924 static int iwl_mac_beacon_update(struct ieee80211_hw *hw, struct sk_buff *skb)
2925 {
2926         struct iwl_priv *priv = hw->priv;
2927         unsigned long flags;
2928         __le64 timestamp;
2929
2930         IWL_DEBUG_MAC80211(priv, "enter\n");
2931
2932         if (!iwl_is_ready_rf(priv)) {
2933                 IWL_DEBUG_MAC80211(priv, "leave - RF not ready\n");
2934                 return -EIO;
2935         }
2936
2937         if (priv->iw_mode != NL80211_IFTYPE_ADHOC) {
2938                 IWL_DEBUG_MAC80211(priv, "leave - not IBSS\n");
2939                 return -EIO;
2940         }
2941
2942         spin_lock_irqsave(&priv->lock, flags);
2943
2944         if (priv->ibss_beacon)
2945                 dev_kfree_skb(priv->ibss_beacon);
2946
2947         priv->ibss_beacon = skb;
2948
2949         priv->assoc_id = 0;
2950         timestamp = ((struct ieee80211_mgmt *)skb->data)->u.beacon.timestamp;
2951         priv->timestamp = le64_to_cpu(timestamp);
2952
2953         IWL_DEBUG_MAC80211(priv, "leave\n");
2954         spin_unlock_irqrestore(&priv->lock, flags);
2955
2956         iwl_reset_qos(priv);
2957
2958         iwl_post_associate(priv);
2959
2960
2961         return 0;
2962 }
2963
2964 /*****************************************************************************
2965  *
2966  * sysfs attributes
2967  *
2968  *****************************************************************************/
2969
2970 #ifdef CONFIG_IWLWIFI_DEBUG
2971
2972 /*
2973  * The following adds a new attribute to the sysfs representation
2974  * of this device driver (i.e. a new file in /sys/class/net/wlan0/device/)
2975  * used for controlling the debug level.
2976  *
2977  * See the level definitions in iwl for details.
2978  */
2979
2980 static ssize_t show_debug_level(struct device *d,
2981                                 struct device_attribute *attr, char *buf)
2982 {
2983         struct iwl_priv *priv = d->driver_data;
2984
2985         return sprintf(buf, "0x%08X\n", priv->debug_level);
2986 }
2987 static ssize_t store_debug_level(struct device *d,
2988                                 struct device_attribute *attr,
2989                                  const char *buf, size_t count)
2990 {
2991         struct iwl_priv *priv = d->driver_data;
2992         unsigned long val;
2993         int ret;
2994
2995         ret = strict_strtoul(buf, 0, &val);
2996         if (ret)
2997                 IWL_ERR(priv, "%s is not in hex or decimal form.\n", buf);
2998         else
2999                 priv->debug_level = val;
3000
3001         return strnlen(buf, count);
3002 }
3003
3004 static DEVICE_ATTR(debug_level, S_IWUSR | S_IRUGO,
3005                         show_debug_level, store_debug_level);
3006
3007
3008 #endif /* CONFIG_IWLWIFI_DEBUG */
3009
3010
3011 static ssize_t show_version(struct device *d,
3012                                 struct device_attribute *attr, char *buf)
3013 {
3014         struct iwl_priv *priv = d->driver_data;
3015         struct iwl_alive_resp *palive = &priv->card_alive;
3016         ssize_t pos = 0;
3017         u16 eeprom_ver;
3018
3019         if (palive->is_valid)
3020                 pos += sprintf(buf + pos,
3021                                 "fw version: 0x%01X.0x%01X.0x%01X.0x%01X\n"
3022                                 "fw type: 0x%01X 0x%01X\n",
3023                                 palive->ucode_major, palive->ucode_minor,
3024                                 palive->sw_rev[0], palive->sw_rev[1],
3025                                 palive->ver_type, palive->ver_subtype);
3026         else
3027                 pos += sprintf(buf + pos, "fw not loaded\n");
3028
3029         if (priv->eeprom) {
3030                 eeprom_ver = iwl_eeprom_query16(priv, EEPROM_VERSION);
3031                 pos += sprintf(buf + pos, "EEPROM version: 0x%x\n",
3032                                  eeprom_ver);
3033         } else {
3034                 pos += sprintf(buf + pos, "EEPROM not initialzed\n");
3035         }
3036
3037         return pos;
3038 }
3039
3040 static DEVICE_ATTR(version, S_IWUSR | S_IRUGO, show_version, NULL);
3041
3042 static ssize_t show_temperature(struct device *d,
3043                                 struct device_attribute *attr, char *buf)
3044 {
3045         struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
3046
3047         if (!iwl_is_alive(priv))
3048                 return -EAGAIN;
3049
3050         return sprintf(buf, "%d\n", priv->temperature);
3051 }
3052
3053 static DEVICE_ATTR(temperature, S_IRUGO, show_temperature, NULL);
3054
3055 static ssize_t show_tx_power(struct device *d,
3056                              struct device_attribute *attr, char *buf)
3057 {
3058         struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
3059
3060         if (!iwl_is_ready_rf(priv))
3061                 return sprintf(buf, "off\n");
3062         else
3063                 return sprintf(buf, "%d\n", priv->tx_power_user_lmt);
3064 }
3065
3066 static ssize_t store_tx_power(struct device *d,
3067                               struct device_attribute *attr,
3068                               const char *buf, size_t count)
3069 {
3070         struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
3071         unsigned long val;
3072         int ret;
3073
3074         ret = strict_strtoul(buf, 10, &val);
3075         if (ret)
3076                 IWL_INFO(priv, "%s is not in decimal form.\n", buf);
3077         else
3078                 iwl_set_tx_power(priv, val, false);
3079
3080         return count;
3081 }
3082
3083 static DEVICE_ATTR(tx_power, S_IWUSR | S_IRUGO, show_tx_power, store_tx_power);
3084
3085 static ssize_t show_flags(struct device *d,
3086                           struct device_attribute *attr, char *buf)
3087 {
3088         struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
3089
3090         return sprintf(buf, "0x%04X\n", priv->active_rxon.flags);
3091 }
3092
3093 static ssize_t store_flags(struct device *d,
3094                            struct device_attribute *attr,
3095                            const char *buf, size_t count)
3096 {
3097         struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
3098         unsigned long val;
3099         u32 flags;
3100         int ret = strict_strtoul(buf, 0, &val);
3101         if (ret)
3102                 return ret;
3103         flags = (u32)val;
3104
3105         mutex_lock(&priv->mutex);
3106         if (le32_to_cpu(priv->staging_rxon.flags) != flags) {
3107                 /* Cancel any currently running scans... */
3108                 if (iwl_scan_cancel_timeout(priv, 100))
3109                         IWL_WARN(priv, "Could not cancel scan.\n");
3110                 else {
3111                         IWL_DEBUG_INFO(priv, "Commit rxon.flags = 0x%04X\n", flags);
3112                         priv->staging_rxon.flags = cpu_to_le32(flags);
3113                         iwl_commit_rxon(priv);
3114                 }
3115         }
3116         mutex_unlock(&priv->mutex);
3117
3118         return count;
3119 }
3120
3121 static DEVICE_ATTR(flags, S_IWUSR | S_IRUGO, show_flags, store_flags);
3122
3123 static ssize_t show_filter_flags(struct device *d,
3124                                  struct device_attribute *attr, char *buf)
3125 {
3126         struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
3127
3128         return sprintf(buf, "0x%04X\n",
3129                 le32_to_cpu(priv->active_rxon.filter_flags));
3130 }
3131
3132 static ssize_t store_filter_flags(struct device *d,
3133                                   struct device_attribute *attr,
3134                                   const char *buf, size_t count)
3135 {
3136         struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
3137         unsigned long val;
3138         u32 filter_flags;
3139         int ret = strict_strtoul(buf, 0, &val);
3140         if (ret)
3141                 return ret;
3142         filter_flags = (u32)val;
3143
3144         mutex_lock(&priv->mutex);
3145         if (le32_to_cpu(priv->staging_rxon.filter_flags) != filter_flags) {
3146                 /* Cancel any currently running scans... */
3147                 if (iwl_scan_cancel_timeout(priv, 100))
3148                         IWL_WARN(priv, "Could not cancel scan.\n");
3149                 else {
3150                         IWL_DEBUG_INFO(priv, "Committing rxon.filter_flags = "
3151                                        "0x%04X\n", filter_flags);
3152                         priv->staging_rxon.filter_flags =
3153                                 cpu_to_le32(filter_flags);
3154                         iwl_commit_rxon(priv);
3155                 }
3156         }
3157         mutex_unlock(&priv->mutex);
3158
3159         return count;
3160 }
3161
3162 static DEVICE_ATTR(filter_flags, S_IWUSR | S_IRUGO, show_filter_flags,
3163                    store_filter_flags);
3164
3165 static ssize_t store_power_level(struct device *d,
3166                                  struct device_attribute *attr,
3167                                  const char *buf, size_t count)
3168 {
3169         struct iwl_priv *priv = dev_get_drvdata(d);
3170         int ret;
3171         unsigned long mode;
3172
3173
3174         mutex_lock(&priv->mutex);
3175
3176         if (!iwl_is_ready(priv)) {
3177                 ret = -EAGAIN;
3178                 goto out;
3179         }
3180
3181         ret = strict_strtoul(buf, 10, &mode);
3182         if (ret)
3183                 goto out;
3184
3185         ret = iwl_power_set_user_mode(priv, mode);
3186         if (ret) {
3187                 IWL_DEBUG_MAC80211(priv, "failed setting power mode.\n");
3188                 goto out;
3189         }
3190         ret = count;
3191
3192  out:
3193         mutex_unlock(&priv->mutex);
3194         return ret;
3195 }
3196
3197 static ssize_t show_power_level(struct device *d,
3198                                 struct device_attribute *attr, char *buf)
3199 {
3200         struct iwl_priv *priv = dev_get_drvdata(d);
3201         int mode = priv->power_data.user_power_setting;
3202         int system = priv->power_data.system_power_setting;
3203         int level = priv->power_data.power_mode;
3204         char *p = buf;
3205
3206         switch (system) {
3207         case IWL_POWER_SYS_AUTO:
3208                 p += sprintf(p, "SYSTEM:auto");
3209                 break;
3210         case IWL_POWER_SYS_AC:
3211                 p += sprintf(p, "SYSTEM:ac");
3212                 break;
3213         case IWL_POWER_SYS_BATTERY:
3214                 p += sprintf(p, "SYSTEM:battery");
3215                 break;
3216         }
3217
3218         p += sprintf(p, "\tMODE:%s", (mode < IWL_POWER_AUTO) ?
3219                         "fixed" : "auto");
3220         p += sprintf(p, "\tINDEX:%d", level);
3221         p += sprintf(p, "\n");
3222         return p - buf + 1;
3223 }
3224
3225 static DEVICE_ATTR(power_level, S_IWUSR | S_IRUSR, show_power_level,
3226                    store_power_level);
3227
3228
3229 static ssize_t show_statistics(struct device *d,
3230                                struct device_attribute *attr, char *buf)
3231 {
3232         struct iwl_priv *priv = dev_get_drvdata(d);
3233         u32 size = sizeof(struct iwl_notif_statistics);
3234         u32 len = 0, ofs = 0;
3235         u8 *data = (u8 *)&priv->statistics;
3236         int rc = 0;
3237
3238         if (!iwl_is_alive(priv))
3239                 return -EAGAIN;
3240
3241         mutex_lock(&priv->mutex);
3242         rc = iwl_send_statistics_request(priv, 0);
3243         mutex_unlock(&priv->mutex);
3244
3245         if (rc) {
3246                 len = sprintf(buf,
3247                               "Error sending statistics request: 0x%08X\n", rc);
3248                 return len;
3249         }
3250
3251         while (size && (PAGE_SIZE - len)) {
3252                 hex_dump_to_buffer(data + ofs, size, 16, 1, buf + len,
3253                                    PAGE_SIZE - len, 1);
3254                 len = strlen(buf);
3255                 if (PAGE_SIZE - len)
3256                         buf[len++] = '\n';
3257
3258                 ofs += 16;
3259                 size -= min(size, 16U);
3260         }
3261
3262         return len;
3263 }
3264
3265 static DEVICE_ATTR(statistics, S_IRUGO, show_statistics, NULL);
3266
3267
3268 /*****************************************************************************
3269  *
3270  * driver setup and teardown
3271  *
3272  *****************************************************************************/
3273
3274 static void iwl_setup_deferred_work(struct iwl_priv *priv)
3275 {
3276         priv->workqueue = create_singlethread_workqueue(DRV_NAME);
3277
3278         init_waitqueue_head(&priv->wait_command_queue);
3279
3280         INIT_WORK(&priv->up, iwl_bg_up);
3281         INIT_WORK(&priv->restart, iwl_bg_restart);
3282         INIT_WORK(&priv->rx_replenish, iwl_bg_rx_replenish);
3283         INIT_WORK(&priv->rf_kill, iwl_bg_rf_kill);
3284         INIT_WORK(&priv->beacon_update, iwl_bg_beacon_update);
3285         INIT_WORK(&priv->run_time_calib_work, iwl_bg_run_time_calib_work);
3286         INIT_DELAYED_WORK(&priv->init_alive_start, iwl_bg_init_alive_start);
3287         INIT_DELAYED_WORK(&priv->alive_start, iwl_bg_alive_start);
3288
3289         iwl_setup_scan_deferred_work(priv);
3290         iwl_setup_power_deferred_work(priv);
3291
3292         if (priv->cfg->ops->lib->setup_deferred_work)
3293                 priv->cfg->ops->lib->setup_deferred_work(priv);
3294
3295         init_timer(&priv->statistics_periodic);
3296         priv->statistics_periodic.data = (unsigned long)priv;
3297         priv->statistics_periodic.function = iwl_bg_statistics_periodic;
3298
3299         tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
3300                      iwl_irq_tasklet, (unsigned long)priv);
3301 }
3302
3303 static void iwl_cancel_deferred_work(struct iwl_priv *priv)
3304 {
3305         if (priv->cfg->ops->lib->cancel_deferred_work)
3306                 priv->cfg->ops->lib->cancel_deferred_work(priv);
3307
3308         cancel_delayed_work_sync(&priv->init_alive_start);
3309         cancel_delayed_work(&priv->scan_check);
3310         cancel_delayed_work_sync(&priv->set_power_save);
3311         cancel_delayed_work(&priv->alive_start);
3312         cancel_work_sync(&priv->beacon_update);
3313         del_timer_sync(&priv->statistics_periodic);
3314 }
3315
3316 static struct attribute *iwl_sysfs_entries[] = {
3317         &dev_attr_flags.attr,
3318         &dev_attr_filter_flags.attr,
3319         &dev_attr_power_level.attr,
3320         &dev_attr_statistics.attr,
3321         &dev_attr_temperature.attr,
3322         &dev_attr_tx_power.attr,
3323 #ifdef CONFIG_IWLWIFI_DEBUG
3324         &dev_attr_debug_level.attr,
3325 #endif
3326         &dev_attr_version.attr,
3327
3328         NULL
3329 };
3330
3331 static struct attribute_group iwl_attribute_group = {
3332         .name = NULL,           /* put in device directory */
3333         .attrs = iwl_sysfs_entries,
3334 };
3335
3336 static struct ieee80211_ops iwl_hw_ops = {
3337         .tx = iwl_mac_tx,
3338         .start = iwl_mac_start,
3339         .stop = iwl_mac_stop,
3340         .add_interface = iwl_mac_add_interface,
3341         .remove_interface = iwl_mac_remove_interface,
3342         .config = iwl_mac_config,
3343         .config_interface = iwl_mac_config_interface,
3344         .configure_filter = iwl_configure_filter,
3345         .set_key = iwl_mac_set_key,
3346         .update_tkip_key = iwl_mac_update_tkip_key,
3347         .get_stats = iwl_mac_get_stats,
3348         .get_tx_stats = iwl_mac_get_tx_stats,
3349         .conf_tx = iwl_mac_conf_tx,
3350         .reset_tsf = iwl_mac_reset_tsf,
3351         .bss_info_changed = iwl_bss_info_changed,
3352         .ampdu_action = iwl_mac_ampdu_action,
3353         .hw_scan = iwl_mac_hw_scan
3354 };
3355
3356 static int iwl_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
3357 {
3358         int err = 0;
3359         struct iwl_priv *priv;
3360         struct ieee80211_hw *hw;
3361         struct iwl_cfg *cfg = (struct iwl_cfg *)(ent->driver_data);
3362         unsigned long flags;
3363         u16 pci_cmd;
3364
3365         /************************
3366          * 1. Allocating HW data
3367          ************************/
3368
3369         /* Disabling hardware scan means that mac80211 will perform scans
3370          * "the hard way", rather than using device's scan. */
3371         if (cfg->mod_params->disable_hw_scan) {
3372                 if (cfg->mod_params->debug & IWL_DL_INFO)
3373                         dev_printk(KERN_DEBUG, &(pdev->dev),
3374                                    "Disabling hw_scan\n");
3375                 iwl_hw_ops.hw_scan = NULL;
3376         }
3377
3378         hw = iwl_alloc_all(cfg, &iwl_hw_ops);
3379         if (!hw) {
3380                 err = -ENOMEM;
3381                 goto out;
3382         }
3383         priv = hw->priv;
3384         /* At this point both hw and priv are allocated. */
3385
3386         SET_IEEE80211_DEV(hw, &pdev->dev);
3387
3388         IWL_DEBUG_INFO(priv, "*** LOAD DRIVER ***\n");
3389         priv->cfg = cfg;
3390         priv->pci_dev = pdev;
3391
3392 #ifdef CONFIG_IWLWIFI_DEBUG
3393         priv->debug_level = priv->cfg->mod_params->debug;
3394         atomic_set(&priv->restrict_refcnt, 0);
3395 #endif
3396
3397         /**************************
3398          * 2. Initializing PCI bus
3399          **************************/
3400         if (pci_enable_device(pdev)) {
3401                 err = -ENODEV;
3402                 goto out_ieee80211_free_hw;
3403         }
3404
3405         pci_set_master(pdev);
3406
3407         err = pci_set_dma_mask(pdev, DMA_BIT_MASK(36));
3408         if (!err)
3409                 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(36));
3410         if (err) {
3411                 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
3412                 if (!err)
3413                         err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
3414                 /* both attempts failed: */
3415                 if (err) {
3416                         IWL_WARN(priv, "No suitable DMA available.\n");
3417                         goto out_pci_disable_device;
3418                 }
3419         }
3420
3421         err = pci_request_regions(pdev, DRV_NAME);
3422         if (err)
3423                 goto out_pci_disable_device;
3424
3425         pci_set_drvdata(pdev, priv);
3426
3427
3428         /***********************
3429          * 3. Read REV register
3430          ***********************/
3431         priv->hw_base = pci_iomap(pdev, 0, 0);
3432         if (!priv->hw_base) {
3433                 err = -ENODEV;
3434                 goto out_pci_release_regions;
3435         }
3436
3437         IWL_DEBUG_INFO(priv, "pci_resource_len = 0x%08llx\n",
3438                 (unsigned long long) pci_resource_len(pdev, 0));
3439         IWL_DEBUG_INFO(priv, "pci_resource_base = %p\n", priv->hw_base);
3440
3441         iwl_hw_detect(priv);
3442         IWL_INFO(priv, "Detected Intel Wireless WiFi Link %s REV=0x%X\n",
3443                 priv->cfg->name, priv->hw_rev);
3444
3445         /* We disable the RETRY_TIMEOUT register (0x41) to keep
3446          * PCI Tx retries from interfering with C3 CPU state */
3447         pci_write_config_byte(pdev, PCI_CFG_RETRY_TIMEOUT, 0x00);
3448
3449         /* amp init */
3450         err = priv->cfg->ops->lib->apm_ops.init(priv);
3451         if (err < 0) {
3452                 IWL_DEBUG_INFO(priv, "Failed to init APMG\n");
3453                 goto out_iounmap;
3454         }
3455         /*****************
3456          * 4. Read EEPROM
3457          *****************/
3458         /* Read the EEPROM */
3459         err = iwl_eeprom_init(priv);
3460         if (err) {
3461                 IWL_ERR(priv, "Unable to init EEPROM\n");
3462                 goto out_iounmap;
3463         }
3464         err = iwl_eeprom_check_version(priv);
3465         if (err)
3466                 goto out_iounmap;
3467
3468         /* extract MAC Address */
3469         iwl_eeprom_get_mac(priv, priv->mac_addr);
3470         IWL_DEBUG_INFO(priv, "MAC address: %pM\n", priv->mac_addr);
3471         SET_IEEE80211_PERM_ADDR(priv->hw, priv->mac_addr);
3472
3473         /************************
3474          * 5. Setup HW constants
3475          ************************/
3476         if (iwl_set_hw_params(priv)) {
3477                 IWL_ERR(priv, "failed to set hw parameters\n");
3478                 goto out_free_eeprom;
3479         }
3480
3481         /*******************
3482          * 6. Setup priv
3483          *******************/
3484
3485         err = iwl_init_drv(priv);
3486         if (err)
3487                 goto out_free_eeprom;
3488         /* At this point both hw and priv are initialized. */
3489
3490         /**********************************
3491          * 7. Initialize module parameters
3492          **********************************/
3493
3494         /* Disable radio (SW RF KILL) via parameter when loading driver */
3495         if (priv->cfg->mod_params->disable) {
3496                 set_bit(STATUS_RF_KILL_SW, &priv->status);
3497                 IWL_DEBUG_INFO(priv, "Radio disabled.\n");
3498         }
3499
3500         /********************
3501          * 8. Setup services
3502          ********************/
3503         spin_lock_irqsave(&priv->lock, flags);
3504         iwl_disable_interrupts(priv);
3505         spin_unlock_irqrestore(&priv->lock, flags);
3506
3507         pci_enable_msi(priv->pci_dev);
3508
3509         err = request_irq(priv->pci_dev->irq, iwl_isr, IRQF_SHARED,
3510                           DRV_NAME, priv);
3511         if (err) {
3512                 IWL_ERR(priv, "Error allocating IRQ %d\n", priv->pci_dev->irq);
3513                 goto out_disable_msi;
3514         }
3515         err = sysfs_create_group(&pdev->dev.kobj, &iwl_attribute_group);
3516         if (err) {
3517                 IWL_ERR(priv, "failed to create sysfs device attributes\n");
3518                 goto out_free_irq;
3519         }
3520
3521         iwl_setup_deferred_work(priv);
3522         iwl_setup_rx_handlers(priv);
3523
3524         /**********************************
3525          * 9. Setup and register mac80211
3526          **********************************/
3527
3528         /* enable interrupts if needed: hw bug w/a */
3529         pci_read_config_word(priv->pci_dev, PCI_COMMAND, &pci_cmd);
3530         if (pci_cmd & PCI_COMMAND_INTX_DISABLE) {
3531                 pci_cmd &= ~PCI_COMMAND_INTX_DISABLE;
3532                 pci_write_config_word(priv->pci_dev, PCI_COMMAND, pci_cmd);
3533         }
3534
3535         iwl_enable_interrupts(priv);
3536
3537         err = iwl_setup_mac(priv);
3538         if (err)
3539                 goto out_remove_sysfs;
3540
3541         err = iwl_dbgfs_register(priv, DRV_NAME);
3542         if (err)
3543                 IWL_ERR(priv, "failed to create debugfs files\n");
3544
3545         /* If platform's RF_KILL switch is NOT set to KILL */
3546         if (iwl_read32(priv, CSR_GP_CNTRL) & CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
3547                 clear_bit(STATUS_RF_KILL_HW, &priv->status);
3548         else
3549                 set_bit(STATUS_RF_KILL_HW, &priv->status);
3550
3551         err = iwl_rfkill_init(priv);
3552         if (err)
3553                 IWL_ERR(priv, "Unable to initialize RFKILL system. "
3554                                   "Ignoring error: %d\n", err);
3555         else
3556                 iwl_rfkill_set_hw_state(priv);
3557
3558         iwl_power_initialize(priv);
3559         return 0;
3560
3561  out_remove_sysfs:
3562         sysfs_remove_group(&pdev->dev.kobj, &iwl_attribute_group);
3563  out_free_irq:
3564         free_irq(priv->pci_dev->irq, priv);
3565  out_disable_msi:
3566         pci_disable_msi(priv->pci_dev);
3567         iwl_uninit_drv(priv);
3568  out_free_eeprom:
3569         iwl_eeprom_free(priv);
3570  out_iounmap:
3571         pci_iounmap(pdev, priv->hw_base);
3572  out_pci_release_regions:
3573         pci_release_regions(pdev);
3574         pci_set_drvdata(pdev, NULL);
3575  out_pci_disable_device:
3576         pci_disable_device(pdev);
3577  out_ieee80211_free_hw:
3578         ieee80211_free_hw(priv->hw);
3579  out:
3580         return err;
3581 }
3582
3583 static void __devexit iwl_pci_remove(struct pci_dev *pdev)
3584 {
3585         struct iwl_priv *priv = pci_get_drvdata(pdev);
3586         unsigned long flags;
3587
3588         if (!priv)
3589                 return;
3590
3591         IWL_DEBUG_INFO(priv, "*** UNLOAD DRIVER ***\n");
3592
3593         iwl_dbgfs_unregister(priv);
3594         sysfs_remove_group(&pdev->dev.kobj, &iwl_attribute_group);
3595
3596         /* ieee80211_unregister_hw call wil cause iwl_mac_stop to
3597          * to be called and iwl_down since we are removing the device
3598          * we need to set STATUS_EXIT_PENDING bit.
3599          */
3600         set_bit(STATUS_EXIT_PENDING, &priv->status);
3601         if (priv->mac80211_registered) {
3602                 ieee80211_unregister_hw(priv->hw);
3603                 priv->mac80211_registered = 0;
3604         } else {
3605                 iwl_down(priv);
3606         }
3607
3608         /* make sure we flush any pending irq or
3609          * tasklet for the driver
3610          */
3611         spin_lock_irqsave(&priv->lock, flags);
3612         iwl_disable_interrupts(priv);
3613         spin_unlock_irqrestore(&priv->lock, flags);
3614
3615         iwl_synchronize_irq(priv);
3616
3617         iwl_rfkill_unregister(priv);
3618         iwl_dealloc_ucode_pci(priv);
3619
3620         if (priv->rxq.bd)
3621                 iwl_rx_queue_free(priv, &priv->rxq);
3622         iwl_hw_txq_ctx_free(priv);
3623
3624         iwl_clear_stations_table(priv);
3625         iwl_eeprom_free(priv);
3626
3627
3628         /*netif_stop_queue(dev); */
3629         flush_workqueue(priv->workqueue);
3630
3631         /* ieee80211_unregister_hw calls iwl_mac_stop, which flushes
3632          * priv->workqueue... so we can't take down the workqueue
3633          * until now... */
3634         destroy_workqueue(priv->workqueue);
3635         priv->workqueue = NULL;
3636
3637         free_irq(priv->pci_dev->irq, priv);
3638         pci_disable_msi(priv->pci_dev);
3639         pci_iounmap(pdev, priv->hw_base);
3640         pci_release_regions(pdev);
3641         pci_disable_device(pdev);
3642         pci_set_drvdata(pdev, NULL);
3643
3644         iwl_uninit_drv(priv);
3645
3646         if (priv->ibss_beacon)
3647                 dev_kfree_skb(priv->ibss_beacon);
3648
3649         ieee80211_free_hw(priv->hw);
3650 }
3651
3652 #ifdef CONFIG_PM
3653
3654 static int iwl_pci_suspend(struct pci_dev *pdev, pm_message_t state)
3655 {
3656         struct iwl_priv *priv = pci_get_drvdata(pdev);
3657
3658         if (priv->is_open) {
3659                 set_bit(STATUS_IN_SUSPEND, &priv->status);
3660                 iwl_mac_stop(priv->hw);
3661                 priv->is_open = 1;
3662         }
3663
3664         pci_save_state(pdev);
3665         pci_disable_device(pdev);
3666         pci_set_power_state(pdev, PCI_D3hot);
3667
3668         return 0;
3669 }
3670
3671 static int iwl_pci_resume(struct pci_dev *pdev)
3672 {
3673         struct iwl_priv *priv = pci_get_drvdata(pdev);
3674         int ret;
3675
3676         pci_set_power_state(pdev, PCI_D0);
3677         ret = pci_enable_device(pdev);
3678         if (ret)
3679                 return ret;
3680         pci_restore_state(pdev);
3681         iwl_enable_interrupts(priv);
3682
3683         if (priv->is_open)
3684                 iwl_mac_start(priv->hw);
3685
3686         clear_bit(STATUS_IN_SUSPEND, &priv->status);
3687         return 0;
3688 }
3689
3690 #endif /* CONFIG_PM */
3691
3692 /*****************************************************************************
3693  *
3694  * driver and module entry point
3695  *
3696  *****************************************************************************/
3697
3698 /* Hardware specific file defines the PCI IDs table for that hardware module */
3699 static struct pci_device_id iwl_hw_card_ids[] = {
3700 #ifdef CONFIG_IWL4965
3701         {IWL_PCI_DEVICE(0x4229, PCI_ANY_ID, iwl4965_agn_cfg)},
3702         {IWL_PCI_DEVICE(0x4230, PCI_ANY_ID, iwl4965_agn_cfg)},
3703 #endif /* CONFIG_IWL4965 */
3704 #ifdef CONFIG_IWL5000
3705         {IWL_PCI_DEVICE(0x4232, 0x1205, iwl5100_bg_cfg)},
3706         {IWL_PCI_DEVICE(0x4232, 0x1305, iwl5100_bg_cfg)},
3707         {IWL_PCI_DEVICE(0x4232, 0x1206, iwl5100_abg_cfg)},
3708         {IWL_PCI_DEVICE(0x4232, 0x1306, iwl5100_abg_cfg)},
3709         {IWL_PCI_DEVICE(0x4232, 0x1326, iwl5100_abg_cfg)},
3710         {IWL_PCI_DEVICE(0x4237, 0x1216, iwl5100_abg_cfg)},
3711         {IWL_PCI_DEVICE(0x4232, PCI_ANY_ID, iwl5100_agn_cfg)},
3712         {IWL_PCI_DEVICE(0x4235, PCI_ANY_ID, iwl5300_agn_cfg)},
3713         {IWL_PCI_DEVICE(0x4236, PCI_ANY_ID, iwl5300_agn_cfg)},
3714         {IWL_PCI_DEVICE(0x4237, PCI_ANY_ID, iwl5100_agn_cfg)},
3715 /* 5350 WiFi/WiMax */
3716         {IWL_PCI_DEVICE(0x423A, 0x1001, iwl5350_agn_cfg)},
3717         {IWL_PCI_DEVICE(0x423A, 0x1021, iwl5350_agn_cfg)},
3718         {IWL_PCI_DEVICE(0x423B, 0x1011, iwl5350_agn_cfg)},
3719 /* 5150 Wifi/WiMax */
3720         {IWL_PCI_DEVICE(0x423C, PCI_ANY_ID, iwl5150_agn_cfg)},
3721         {IWL_PCI_DEVICE(0x423D, PCI_ANY_ID, iwl5150_agn_cfg)},
3722 /* 6000/6050 Series */
3723         {IWL_PCI_DEVICE(0x0082, 0x1102, iwl6000_2ag_cfg)},
3724         {IWL_PCI_DEVICE(0x0085, 0x1112, iwl6000_2ag_cfg)},
3725         {IWL_PCI_DEVICE(0x0082, 0x1122, iwl6000_2ag_cfg)},
3726         {IWL_PCI_DEVICE(0x422B, PCI_ANY_ID, iwl6000_3agn_cfg)},
3727         {IWL_PCI_DEVICE(0x4238, PCI_ANY_ID, iwl6000_3agn_cfg)},
3728         {IWL_PCI_DEVICE(0x0082, PCI_ANY_ID, iwl6000_2agn_cfg)},
3729         {IWL_PCI_DEVICE(0x0085, PCI_ANY_ID, iwl6000_3agn_cfg)},
3730         {IWL_PCI_DEVICE(0x0086, PCI_ANY_ID, iwl6050_3agn_cfg)},
3731         {IWL_PCI_DEVICE(0x0087, PCI_ANY_ID, iwl6050_2agn_cfg)},
3732         {IWL_PCI_DEVICE(0x0088, PCI_ANY_ID, iwl6050_3agn_cfg)},
3733         {IWL_PCI_DEVICE(0x0089, PCI_ANY_ID, iwl6050_2agn_cfg)},
3734 /* 100 Series WiFi */
3735         {IWL_PCI_DEVICE(0x0083, PCI_ANY_ID, iwl100_bgn_cfg)},
3736         {IWL_PCI_DEVICE(0x0084, PCI_ANY_ID, iwl100_bgn_cfg)},
3737 #endif /* CONFIG_IWL5000 */
3738
3739         {0}
3740 };
3741 MODULE_DEVICE_TABLE(pci, iwl_hw_card_ids);
3742
3743 static struct pci_driver iwl_driver = {
3744         .name = DRV_NAME,
3745         .id_table = iwl_hw_card_ids,
3746         .probe = iwl_pci_probe,
3747         .remove = __devexit_p(iwl_pci_remove),
3748 #ifdef CONFIG_PM
3749         .suspend = iwl_pci_suspend,
3750         .resume = iwl_pci_resume,
3751 #endif
3752 };
3753
3754 static int __init iwl_init(void)
3755 {
3756
3757         int ret;
3758         printk(KERN_INFO DRV_NAME ": " DRV_DESCRIPTION ", " DRV_VERSION "\n");
3759         printk(KERN_INFO DRV_NAME ": " DRV_COPYRIGHT "\n");
3760
3761         ret = iwlagn_rate_control_register();
3762         if (ret) {
3763                 printk(KERN_ERR DRV_NAME
3764                        "Unable to register rate control algorithm: %d\n", ret);
3765                 return ret;
3766         }
3767
3768         ret = pci_register_driver(&iwl_driver);
3769         if (ret) {
3770                 printk(KERN_ERR DRV_NAME "Unable to initialize PCI module\n");
3771                 goto error_register;
3772         }
3773
3774         return ret;
3775
3776 error_register:
3777         iwlagn_rate_control_unregister();
3778         return ret;
3779 }
3780
3781 static void __exit iwl_exit(void)
3782 {
3783         pci_unregister_driver(&iwl_driver);
3784         iwlagn_rate_control_unregister();
3785 }
3786
3787 module_exit(iwl_exit);
3788 module_init(iwl_init);