]> bbs.cooldavid.org Git - net-next-2.6.git/blob - drivers/net/wireless/iwlwifi/iwl3945-base.c
0f773973a4e5b4798736b888961e6faae84c13c9
[net-next-2.6.git] / drivers / net / wireless / iwlwifi / iwl3945-base.c
1 /******************************************************************************
2  *
3  * Copyright(c) 2003 - 2010 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/sched.h>
37 #include <linux/skbuff.h>
38 #include <linux/netdevice.h>
39 #include <linux/wireless.h>
40 #include <linux/firmware.h>
41 #include <linux/etherdevice.h>
42 #include <linux/if_arp.h>
43
44 #include <net/ieee80211_radiotap.h>
45 #include <net/mac80211.h>
46
47 #include <asm/div64.h>
48
49 #define DRV_NAME        "iwl3945"
50
51 #include "iwl-fh.h"
52 #include "iwl-3945-fh.h"
53 #include "iwl-commands.h"
54 #include "iwl-sta.h"
55 #include "iwl-3945.h"
56 #include "iwl-core.h"
57 #include "iwl-helpers.h"
58 #include "iwl-dev.h"
59 #include "iwl-spectrum.h"
60
61 /*
62  * module name, copyright, version, etc.
63  */
64
65 #define DRV_DESCRIPTION \
66 "Intel(R) PRO/Wireless 3945ABG/BG Network Connection driver for Linux"
67
68 #ifdef CONFIG_IWLWIFI_DEBUG
69 #define VD "d"
70 #else
71 #define VD
72 #endif
73
74 /*
75  * add "s" to indicate spectrum measurement included.
76  * we add it here to be consistent with previous releases in which
77  * this was configurable.
78  */
79 #define DRV_VERSION  IWLWIFI_VERSION VD "s"
80 #define DRV_COPYRIGHT   "Copyright(c) 2003-2010 Intel Corporation"
81 #define DRV_AUTHOR     "<ilw@linux.intel.com>"
82
83 MODULE_DESCRIPTION(DRV_DESCRIPTION);
84 MODULE_VERSION(DRV_VERSION);
85 MODULE_AUTHOR(DRV_COPYRIGHT " " DRV_AUTHOR);
86 MODULE_LICENSE("GPL");
87
88  /* module parameters */
89 struct iwl_mod_params iwl3945_mod_params = {
90         .sw_crypto = 1,
91         .restart_fw = 1,
92         /* the rest are 0 by default */
93 };
94
95 /**
96  * iwl3945_get_antenna_flags - Get antenna flags for RXON command
97  * @priv: eeprom and antenna fields are used to determine antenna flags
98  *
99  * priv->eeprom39  is used to determine if antenna AUX/MAIN are reversed
100  * iwl3945_mod_params.antenna specifies the antenna diversity mode:
101  *
102  * IWL_ANTENNA_DIVERSITY - NIC selects best antenna by itself
103  * IWL_ANTENNA_MAIN      - Force MAIN antenna
104  * IWL_ANTENNA_AUX       - Force AUX antenna
105  */
106 __le32 iwl3945_get_antenna_flags(const struct iwl_priv *priv)
107 {
108         struct iwl3945_eeprom *eeprom = (struct iwl3945_eeprom *)priv->eeprom;
109
110         switch (iwl3945_mod_params.antenna) {
111         case IWL_ANTENNA_DIVERSITY:
112                 return 0;
113
114         case IWL_ANTENNA_MAIN:
115                 if (eeprom->antenna_switch_type)
116                         return RXON_FLG_DIS_DIV_MSK | RXON_FLG_ANT_B_MSK;
117                 return RXON_FLG_DIS_DIV_MSK | RXON_FLG_ANT_A_MSK;
118
119         case IWL_ANTENNA_AUX:
120                 if (eeprom->antenna_switch_type)
121                         return RXON_FLG_DIS_DIV_MSK | RXON_FLG_ANT_A_MSK;
122                 return RXON_FLG_DIS_DIV_MSK | RXON_FLG_ANT_B_MSK;
123         }
124
125         /* bad antenna selector value */
126         IWL_ERR(priv, "Bad antenna selector value (0x%x)\n",
127                 iwl3945_mod_params.antenna);
128
129         return 0;               /* "diversity" is default if error */
130 }
131
132 static int iwl3945_set_ccmp_dynamic_key_info(struct iwl_priv *priv,
133                                    struct ieee80211_key_conf *keyconf,
134                                    u8 sta_id)
135 {
136         unsigned long flags;
137         __le16 key_flags = 0;
138         int ret;
139
140         key_flags |= (STA_KEY_FLG_CCMP | STA_KEY_FLG_MAP_KEY_MSK);
141         key_flags |= cpu_to_le16(keyconf->keyidx << STA_KEY_FLG_KEYID_POS);
142
143         if (sta_id == priv->hw_params.bcast_sta_id)
144                 key_flags |= STA_KEY_MULTICAST_MSK;
145
146         keyconf->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
147         keyconf->hw_key_idx = keyconf->keyidx;
148         key_flags &= ~STA_KEY_FLG_INVALID;
149
150         spin_lock_irqsave(&priv->sta_lock, flags);
151         priv->stations[sta_id].keyinfo.alg = keyconf->alg;
152         priv->stations[sta_id].keyinfo.keylen = keyconf->keylen;
153         memcpy(priv->stations[sta_id].keyinfo.key, keyconf->key,
154                keyconf->keylen);
155
156         memcpy(priv->stations[sta_id].sta.key.key, keyconf->key,
157                keyconf->keylen);
158
159         if ((priv->stations[sta_id].sta.key.key_flags & STA_KEY_FLG_ENCRYPT_MSK)
160                         == STA_KEY_FLG_NO_ENC)
161                 priv->stations[sta_id].sta.key.key_offset =
162                                  iwl_get_free_ucode_key_index(priv);
163         /* else, we are overriding an existing key => no need to allocated room
164         * in uCode. */
165
166         WARN(priv->stations[sta_id].sta.key.key_offset == WEP_INVALID_OFFSET,
167                 "no space for a new key");
168
169         priv->stations[sta_id].sta.key.key_flags = key_flags;
170         priv->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
171         priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
172
173         IWL_DEBUG_INFO(priv, "hwcrypto: modify ucode station key info\n");
174
175         ret = iwl_send_add_sta(priv, &priv->stations[sta_id].sta, CMD_ASYNC);
176
177         spin_unlock_irqrestore(&priv->sta_lock, flags);
178
179         return ret;
180 }
181
182 static int iwl3945_set_tkip_dynamic_key_info(struct iwl_priv *priv,
183                                   struct ieee80211_key_conf *keyconf,
184                                   u8 sta_id)
185 {
186         return -EOPNOTSUPP;
187 }
188
189 static int iwl3945_set_wep_dynamic_key_info(struct iwl_priv *priv,
190                                   struct ieee80211_key_conf *keyconf,
191                                   u8 sta_id)
192 {
193         return -EOPNOTSUPP;
194 }
195
196 static int iwl3945_clear_sta_key_info(struct iwl_priv *priv, u8 sta_id)
197 {
198         unsigned long flags;
199
200         spin_lock_irqsave(&priv->sta_lock, flags);
201         memset(&priv->stations[sta_id].keyinfo, 0, sizeof(struct iwl_hw_key));
202         memset(&priv->stations[sta_id].sta.key, 0,
203                 sizeof(struct iwl4965_keyinfo));
204         priv->stations[sta_id].sta.key.key_flags = STA_KEY_FLG_NO_ENC;
205         priv->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
206         priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
207         spin_unlock_irqrestore(&priv->sta_lock, flags);
208
209         IWL_DEBUG_INFO(priv, "hwcrypto: clear ucode station key info\n");
210         iwl_send_add_sta(priv, &priv->stations[sta_id].sta, 0);
211         return 0;
212 }
213
214 static int iwl3945_set_dynamic_key(struct iwl_priv *priv,
215                         struct ieee80211_key_conf *keyconf, u8 sta_id)
216 {
217         int ret = 0;
218
219         keyconf->hw_key_idx = HW_KEY_DYNAMIC;
220
221         switch (keyconf->alg) {
222         case ALG_CCMP:
223                 ret = iwl3945_set_ccmp_dynamic_key_info(priv, keyconf, sta_id);
224                 break;
225         case ALG_TKIP:
226                 ret = iwl3945_set_tkip_dynamic_key_info(priv, keyconf, sta_id);
227                 break;
228         case ALG_WEP:
229                 ret = iwl3945_set_wep_dynamic_key_info(priv, keyconf, sta_id);
230                 break;
231         default:
232                 IWL_ERR(priv, "Unknown alg: %s alg = %d\n", __func__, keyconf->alg);
233                 ret = -EINVAL;
234         }
235
236         IWL_DEBUG_WEP(priv, "Set dynamic key: alg= %d len=%d idx=%d sta=%d ret=%d\n",
237                       keyconf->alg, keyconf->keylen, keyconf->keyidx,
238                       sta_id, ret);
239
240         return ret;
241 }
242
243 static int iwl3945_remove_static_key(struct iwl_priv *priv)
244 {
245         int ret = -EOPNOTSUPP;
246
247         return ret;
248 }
249
250 static int iwl3945_set_static_key(struct iwl_priv *priv,
251                                 struct ieee80211_key_conf *key)
252 {
253         if (key->alg == ALG_WEP)
254                 return -EOPNOTSUPP;
255
256         IWL_ERR(priv, "Static key invalid: alg %d\n", key->alg);
257         return -EINVAL;
258 }
259
260 static void iwl3945_clear_free_frames(struct iwl_priv *priv)
261 {
262         struct list_head *element;
263
264         IWL_DEBUG_INFO(priv, "%d frames on pre-allocated heap on clear.\n",
265                        priv->frames_count);
266
267         while (!list_empty(&priv->free_frames)) {
268                 element = priv->free_frames.next;
269                 list_del(element);
270                 kfree(list_entry(element, struct iwl3945_frame, list));
271                 priv->frames_count--;
272         }
273
274         if (priv->frames_count) {
275                 IWL_WARN(priv, "%d frames still in use.  Did we lose one?\n",
276                             priv->frames_count);
277                 priv->frames_count = 0;
278         }
279 }
280
281 static struct iwl3945_frame *iwl3945_get_free_frame(struct iwl_priv *priv)
282 {
283         struct iwl3945_frame *frame;
284         struct list_head *element;
285         if (list_empty(&priv->free_frames)) {
286                 frame = kzalloc(sizeof(*frame), GFP_KERNEL);
287                 if (!frame) {
288                         IWL_ERR(priv, "Could not allocate frame!\n");
289                         return NULL;
290                 }
291
292                 priv->frames_count++;
293                 return frame;
294         }
295
296         element = priv->free_frames.next;
297         list_del(element);
298         return list_entry(element, struct iwl3945_frame, list);
299 }
300
301 static void iwl3945_free_frame(struct iwl_priv *priv, struct iwl3945_frame *frame)
302 {
303         memset(frame, 0, sizeof(*frame));
304         list_add(&frame->list, &priv->free_frames);
305 }
306
307 unsigned int iwl3945_fill_beacon_frame(struct iwl_priv *priv,
308                                 struct ieee80211_hdr *hdr,
309                                 int left)
310 {
311
312         if (!iwl_is_associated(priv) || !priv->ibss_beacon ||
313             ((priv->iw_mode != NL80211_IFTYPE_ADHOC) &&
314              (priv->iw_mode != NL80211_IFTYPE_AP)))
315                 return 0;
316
317         if (priv->ibss_beacon->len > left)
318                 return 0;
319
320         memcpy(hdr, priv->ibss_beacon->data, priv->ibss_beacon->len);
321
322         return priv->ibss_beacon->len;
323 }
324
325 static int iwl3945_send_beacon_cmd(struct iwl_priv *priv)
326 {
327         struct iwl3945_frame *frame;
328         unsigned int frame_size;
329         int rc;
330         u8 rate;
331
332         frame = iwl3945_get_free_frame(priv);
333
334         if (!frame) {
335                 IWL_ERR(priv, "Could not obtain free frame buffer for beacon "
336                           "command.\n");
337                 return -ENOMEM;
338         }
339
340         rate = iwl_rate_get_lowest_plcp(priv);
341
342         frame_size = iwl3945_hw_get_beacon_cmd(priv, frame, rate);
343
344         rc = iwl_send_cmd_pdu(priv, REPLY_TX_BEACON, frame_size,
345                               &frame->u.cmd[0]);
346
347         iwl3945_free_frame(priv, frame);
348
349         return rc;
350 }
351
352 static void iwl3945_unset_hw_params(struct iwl_priv *priv)
353 {
354         if (priv->_3945.shared_virt)
355                 dma_free_coherent(&priv->pci_dev->dev,
356                                   sizeof(struct iwl3945_shared),
357                                   priv->_3945.shared_virt,
358                                   priv->_3945.shared_phys);
359 }
360
361 static void iwl3945_build_tx_cmd_hwcrypto(struct iwl_priv *priv,
362                                       struct ieee80211_tx_info *info,
363                                       struct iwl_device_cmd *cmd,
364                                       struct sk_buff *skb_frag,
365                                       int sta_id)
366 {
367         struct iwl3945_tx_cmd *tx_cmd = (struct iwl3945_tx_cmd *)cmd->cmd.payload;
368         struct iwl_hw_key *keyinfo = &priv->stations[sta_id].keyinfo;
369
370         switch (keyinfo->alg) {
371         case ALG_CCMP:
372                 tx_cmd->sec_ctl = TX_CMD_SEC_CCM;
373                 memcpy(tx_cmd->key, keyinfo->key, keyinfo->keylen);
374                 IWL_DEBUG_TX(priv, "tx_cmd with AES hwcrypto\n");
375                 break;
376
377         case ALG_TKIP:
378                 break;
379
380         case ALG_WEP:
381                 tx_cmd->sec_ctl = TX_CMD_SEC_WEP |
382                     (info->control.hw_key->hw_key_idx & TX_CMD_SEC_MSK) << TX_CMD_SEC_SHIFT;
383
384                 if (keyinfo->keylen == 13)
385                         tx_cmd->sec_ctl |= TX_CMD_SEC_KEY128;
386
387                 memcpy(&tx_cmd->key[3], keyinfo->key, keyinfo->keylen);
388
389                 IWL_DEBUG_TX(priv, "Configuring packet for WEP encryption "
390                              "with key %d\n", info->control.hw_key->hw_key_idx);
391                 break;
392
393         default:
394                 IWL_ERR(priv, "Unknown encode alg %d\n", keyinfo->alg);
395                 break;
396         }
397 }
398
399 /*
400  * handle build REPLY_TX command notification.
401  */
402 static void iwl3945_build_tx_cmd_basic(struct iwl_priv *priv,
403                                   struct iwl_device_cmd *cmd,
404                                   struct ieee80211_tx_info *info,
405                                   struct ieee80211_hdr *hdr, u8 std_id)
406 {
407         struct iwl3945_tx_cmd *tx_cmd = (struct iwl3945_tx_cmd *)cmd->cmd.payload;
408         __le32 tx_flags = tx_cmd->tx_flags;
409         __le16 fc = hdr->frame_control;
410
411         tx_cmd->stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
412         if (!(info->flags & IEEE80211_TX_CTL_NO_ACK)) {
413                 tx_flags |= TX_CMD_FLG_ACK_MSK;
414                 if (ieee80211_is_mgmt(fc))
415                         tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
416                 if (ieee80211_is_probe_resp(fc) &&
417                     !(le16_to_cpu(hdr->seq_ctrl) & 0xf))
418                         tx_flags |= TX_CMD_FLG_TSF_MSK;
419         } else {
420                 tx_flags &= (~TX_CMD_FLG_ACK_MSK);
421                 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
422         }
423
424         tx_cmd->sta_id = std_id;
425         if (ieee80211_has_morefrags(fc))
426                 tx_flags |= TX_CMD_FLG_MORE_FRAG_MSK;
427
428         if (ieee80211_is_data_qos(fc)) {
429                 u8 *qc = ieee80211_get_qos_ctl(hdr);
430                 tx_cmd->tid_tspec = qc[0] & 0xf;
431                 tx_flags &= ~TX_CMD_FLG_SEQ_CTL_MSK;
432         } else {
433                 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
434         }
435
436         priv->cfg->ops->utils->rts_tx_cmd_flag(info, &tx_flags);
437
438         if ((tx_flags & TX_CMD_FLG_RTS_MSK) || (tx_flags & TX_CMD_FLG_CTS_MSK))
439                 tx_flags |= TX_CMD_FLG_FULL_TXOP_PROT_MSK;
440
441         tx_flags &= ~(TX_CMD_FLG_ANT_SEL_MSK);
442         if (ieee80211_is_mgmt(fc)) {
443                 if (ieee80211_is_assoc_req(fc) || ieee80211_is_reassoc_req(fc))
444                         tx_cmd->timeout.pm_frame_timeout = cpu_to_le16(3);
445                 else
446                         tx_cmd->timeout.pm_frame_timeout = cpu_to_le16(2);
447         } else {
448                 tx_cmd->timeout.pm_frame_timeout = 0;
449         }
450
451         tx_cmd->driver_txop = 0;
452         tx_cmd->tx_flags = tx_flags;
453         tx_cmd->next_frame_len = 0;
454 }
455
456 /*
457  * start REPLY_TX command process
458  */
459 static int iwl3945_tx_skb(struct iwl_priv *priv, struct sk_buff *skb)
460 {
461         struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
462         struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
463         struct iwl3945_tx_cmd *tx_cmd;
464         struct iwl_tx_queue *txq = NULL;
465         struct iwl_queue *q = NULL;
466         struct iwl_device_cmd *out_cmd;
467         struct iwl_cmd_meta *out_meta;
468         dma_addr_t phys_addr;
469         dma_addr_t txcmd_phys;
470         int txq_id = skb_get_queue_mapping(skb);
471         u16 len, idx, len_org, hdr_len; /* TODO: len_org is not used */
472         u8 id;
473         u8 unicast;
474         u8 sta_id;
475         u8 tid = 0;
476         u16 seq_number = 0;
477         __le16 fc;
478         u8 wait_write_ptr = 0;
479         u8 *qc = NULL;
480         unsigned long flags;
481
482         spin_lock_irqsave(&priv->lock, flags);
483         if (iwl_is_rfkill(priv)) {
484                 IWL_DEBUG_DROP(priv, "Dropping - RF KILL\n");
485                 goto drop_unlock;
486         }
487
488         if ((ieee80211_get_tx_rate(priv->hw, info)->hw_value & 0xFF) == IWL_INVALID_RATE) {
489                 IWL_ERR(priv, "ERROR: No TX rate available.\n");
490                 goto drop_unlock;
491         }
492
493         unicast = !is_multicast_ether_addr(hdr->addr1);
494         id = 0;
495
496         fc = hdr->frame_control;
497
498 #ifdef CONFIG_IWLWIFI_DEBUG
499         if (ieee80211_is_auth(fc))
500                 IWL_DEBUG_TX(priv, "Sending AUTH frame\n");
501         else if (ieee80211_is_assoc_req(fc))
502                 IWL_DEBUG_TX(priv, "Sending ASSOC frame\n");
503         else if (ieee80211_is_reassoc_req(fc))
504                 IWL_DEBUG_TX(priv, "Sending REASSOC frame\n");
505 #endif
506
507         spin_unlock_irqrestore(&priv->lock, flags);
508
509         hdr_len = ieee80211_hdrlen(fc);
510
511         /* Find (or create) index into station table for destination station */
512         if (info->flags & IEEE80211_TX_CTL_INJECTED)
513                 sta_id = priv->hw_params.bcast_sta_id;
514         else
515                 sta_id = iwl_get_sta_id(priv, hdr);
516         if (sta_id == IWL_INVALID_STATION) {
517                 IWL_DEBUG_DROP(priv, "Dropping - INVALID STATION: %pM\n",
518                                hdr->addr1);
519                 goto drop;
520         }
521
522         IWL_DEBUG_RATE(priv, "station Id %d\n", sta_id);
523
524         if (ieee80211_is_data_qos(fc)) {
525                 qc = ieee80211_get_qos_ctl(hdr);
526                 tid = qc[0] & IEEE80211_QOS_CTL_TID_MASK;
527                 if (unlikely(tid >= MAX_TID_COUNT))
528                         goto drop;
529                 seq_number = priv->stations[sta_id].tid[tid].seq_number &
530                                 IEEE80211_SCTL_SEQ;
531                 hdr->seq_ctrl = cpu_to_le16(seq_number) |
532                         (hdr->seq_ctrl &
533                                 cpu_to_le16(IEEE80211_SCTL_FRAG));
534                 seq_number += 0x10;
535         }
536
537         /* Descriptor for chosen Tx queue */
538         txq = &priv->txq[txq_id];
539         q = &txq->q;
540
541         if ((iwl_queue_space(q) < q->high_mark))
542                 goto drop;
543
544         spin_lock_irqsave(&priv->lock, flags);
545
546         idx = get_cmd_index(q, q->write_ptr, 0);
547
548         /* Set up driver data for this TFD */
549         memset(&(txq->txb[q->write_ptr]), 0, sizeof(struct iwl_tx_info));
550         txq->txb[q->write_ptr].skb[0] = skb;
551
552         /* Init first empty entry in queue's array of Tx/cmd buffers */
553         out_cmd = txq->cmd[idx];
554         out_meta = &txq->meta[idx];
555         tx_cmd = (struct iwl3945_tx_cmd *)out_cmd->cmd.payload;
556         memset(&out_cmd->hdr, 0, sizeof(out_cmd->hdr));
557         memset(tx_cmd, 0, sizeof(*tx_cmd));
558
559         /*
560          * Set up the Tx-command (not MAC!) header.
561          * Store the chosen Tx queue and TFD index within the sequence field;
562          * after Tx, uCode's Tx response will return this value so driver can
563          * locate the frame within the tx queue and do post-tx processing.
564          */
565         out_cmd->hdr.cmd = REPLY_TX;
566         out_cmd->hdr.sequence = cpu_to_le16((u16)(QUEUE_TO_SEQ(txq_id) |
567                                 INDEX_TO_SEQ(q->write_ptr)));
568
569         /* Copy MAC header from skb into command buffer */
570         memcpy(tx_cmd->hdr, hdr, hdr_len);
571
572
573         if (info->control.hw_key)
574                 iwl3945_build_tx_cmd_hwcrypto(priv, info, out_cmd, skb, sta_id);
575
576         /* TODO need this for burst mode later on */
577         iwl3945_build_tx_cmd_basic(priv, out_cmd, info, hdr, sta_id);
578
579         /* set is_hcca to 0; it probably will never be implemented */
580         iwl3945_hw_build_tx_cmd_rate(priv, out_cmd, info, hdr, sta_id, 0);
581
582         /* Total # bytes to be transmitted */
583         len = (u16)skb->len;
584         tx_cmd->len = cpu_to_le16(len);
585
586         iwl_dbg_log_tx_data_frame(priv, len, hdr);
587         iwl_update_stats(priv, true, fc, len);
588         tx_cmd->tx_flags &= ~TX_CMD_FLG_ANT_A_MSK;
589         tx_cmd->tx_flags &= ~TX_CMD_FLG_ANT_B_MSK;
590
591         if (!ieee80211_has_morefrags(hdr->frame_control)) {
592                 txq->need_update = 1;
593                 if (qc)
594                         priv->stations[sta_id].tid[tid].seq_number = seq_number;
595         } else {
596                 wait_write_ptr = 1;
597                 txq->need_update = 0;
598         }
599
600         IWL_DEBUG_TX(priv, "sequence nr = 0X%x\n",
601                      le16_to_cpu(out_cmd->hdr.sequence));
602         IWL_DEBUG_TX(priv, "tx_flags = 0X%x\n", le32_to_cpu(tx_cmd->tx_flags));
603         iwl_print_hex_dump(priv, IWL_DL_TX, tx_cmd, sizeof(*tx_cmd));
604         iwl_print_hex_dump(priv, IWL_DL_TX, (u8 *)tx_cmd->hdr,
605                            ieee80211_hdrlen(fc));
606
607         /*
608          * Use the first empty entry in this queue's command buffer array
609          * to contain the Tx command and MAC header concatenated together
610          * (payload data will be in another buffer).
611          * Size of this varies, due to varying MAC header length.
612          * If end is not dword aligned, we'll have 2 extra bytes at the end
613          * of the MAC header (device reads on dword boundaries).
614          * We'll tell device about this padding later.
615          */
616         len = sizeof(struct iwl3945_tx_cmd) +
617                         sizeof(struct iwl_cmd_header) + hdr_len;
618
619         len_org = len;
620         len = (len + 3) & ~3;
621
622         if (len_org != len)
623                 len_org = 1;
624         else
625                 len_org = 0;
626
627         /* Physical address of this Tx command's header (not MAC header!),
628          * within command buffer array. */
629         txcmd_phys = pci_map_single(priv->pci_dev, &out_cmd->hdr,
630                                     len, PCI_DMA_TODEVICE);
631         /* we do not map meta data ... so we can safely access address to
632          * provide to unmap command*/
633         pci_unmap_addr_set(out_meta, mapping, txcmd_phys);
634         pci_unmap_len_set(out_meta, len, len);
635
636         /* Add buffer containing Tx command and MAC(!) header to TFD's
637          * first entry */
638         priv->cfg->ops->lib->txq_attach_buf_to_tfd(priv, txq,
639                                                    txcmd_phys, len, 1, 0);
640
641
642         /* Set up TFD's 2nd entry to point directly to remainder of skb,
643          * if any (802.11 null frames have no payload). */
644         len = skb->len - hdr_len;
645         if (len) {
646                 phys_addr = pci_map_single(priv->pci_dev, skb->data + hdr_len,
647                                            len, PCI_DMA_TODEVICE);
648                 priv->cfg->ops->lib->txq_attach_buf_to_tfd(priv, txq,
649                                                            phys_addr, len,
650                                                            0, U32_PAD(len));
651         }
652
653
654         /* Tell device the write index *just past* this latest filled TFD */
655         q->write_ptr = iwl_queue_inc_wrap(q->write_ptr, q->n_bd);
656         iwl_txq_update_write_ptr(priv, txq);
657         spin_unlock_irqrestore(&priv->lock, flags);
658
659         if ((iwl_queue_space(q) < q->high_mark)
660             && priv->mac80211_registered) {
661                 if (wait_write_ptr) {
662                         spin_lock_irqsave(&priv->lock, flags);
663                         txq->need_update = 1;
664                         iwl_txq_update_write_ptr(priv, txq);
665                         spin_unlock_irqrestore(&priv->lock, flags);
666                 }
667
668                 iwl_stop_queue(priv, skb_get_queue_mapping(skb));
669         }
670
671         return 0;
672
673 drop_unlock:
674         spin_unlock_irqrestore(&priv->lock, flags);
675 drop:
676         return -1;
677 }
678
679 #define BEACON_TIME_MASK_LOW    0x00FFFFFF
680 #define BEACON_TIME_MASK_HIGH   0xFF000000
681 #define TIME_UNIT               1024
682
683 /*
684  * extended beacon time format
685  * time in usec will be changed into a 32-bit value in 8:24 format
686  * the high 1 byte is the beacon counts
687  * the lower 3 bytes is the time in usec within one beacon interval
688  */
689
690 static u32 iwl3945_usecs_to_beacons(u32 usec, u32 beacon_interval)
691 {
692         u32 quot;
693         u32 rem;
694         u32 interval = beacon_interval * 1024;
695
696         if (!interval || !usec)
697                 return 0;
698
699         quot = (usec / interval) & (BEACON_TIME_MASK_HIGH >> 24);
700         rem = (usec % interval) & BEACON_TIME_MASK_LOW;
701
702         return (quot << 24) + rem;
703 }
704
705 /* base is usually what we get from ucode with each received frame,
706  * the same as HW timer counter counting down
707  */
708
709 static __le32 iwl3945_add_beacon_time(u32 base, u32 addon, u32 beacon_interval)
710 {
711         u32 base_low = base & BEACON_TIME_MASK_LOW;
712         u32 addon_low = addon & BEACON_TIME_MASK_LOW;
713         u32 interval = beacon_interval * TIME_UNIT;
714         u32 res = (base & BEACON_TIME_MASK_HIGH) +
715             (addon & BEACON_TIME_MASK_HIGH);
716
717         if (base_low > addon_low)
718                 res += base_low - addon_low;
719         else if (base_low < addon_low) {
720                 res += interval + base_low - addon_low;
721                 res += (1 << 24);
722         } else
723                 res += (1 << 24);
724
725         return cpu_to_le32(res);
726 }
727
728 static int iwl3945_get_measurement(struct iwl_priv *priv,
729                                struct ieee80211_measurement_params *params,
730                                u8 type)
731 {
732         struct iwl_spectrum_cmd spectrum;
733         struct iwl_rx_packet *pkt;
734         struct iwl_host_cmd cmd = {
735                 .id = REPLY_SPECTRUM_MEASUREMENT_CMD,
736                 .data = (void *)&spectrum,
737                 .flags = CMD_WANT_SKB,
738         };
739         u32 add_time = le64_to_cpu(params->start_time);
740         int rc;
741         int spectrum_resp_status;
742         int duration = le16_to_cpu(params->duration);
743
744         if (iwl_is_associated(priv))
745                 add_time =
746                     iwl3945_usecs_to_beacons(
747                         le64_to_cpu(params->start_time) - priv->_3945.last_tsf,
748                         le16_to_cpu(priv->rxon_timing.beacon_interval));
749
750         memset(&spectrum, 0, sizeof(spectrum));
751
752         spectrum.channel_count = cpu_to_le16(1);
753         spectrum.flags =
754             RXON_FLG_TSF2HOST_MSK | RXON_FLG_ANT_A_MSK | RXON_FLG_DIS_DIV_MSK;
755         spectrum.filter_flags = MEASUREMENT_FILTER_FLAG;
756         cmd.len = sizeof(spectrum);
757         spectrum.len = cpu_to_le16(cmd.len - sizeof(spectrum.len));
758
759         if (iwl_is_associated(priv))
760                 spectrum.start_time =
761                     iwl3945_add_beacon_time(priv->_3945.last_beacon_time,
762                                 add_time,
763                                 le16_to_cpu(priv->rxon_timing.beacon_interval));
764         else
765                 spectrum.start_time = 0;
766
767         spectrum.channels[0].duration = cpu_to_le32(duration * TIME_UNIT);
768         spectrum.channels[0].channel = params->channel;
769         spectrum.channels[0].type = type;
770         if (priv->active_rxon.flags & RXON_FLG_BAND_24G_MSK)
771                 spectrum.flags |= RXON_FLG_BAND_24G_MSK |
772                     RXON_FLG_AUTO_DETECT_MSK | RXON_FLG_TGG_PROTECT_MSK;
773
774         rc = iwl_send_cmd_sync(priv, &cmd);
775         if (rc)
776                 return rc;
777
778         pkt = (struct iwl_rx_packet *)cmd.reply_page;
779         if (pkt->hdr.flags & IWL_CMD_FAILED_MSK) {
780                 IWL_ERR(priv, "Bad return from REPLY_RX_ON_ASSOC command\n");
781                 rc = -EIO;
782         }
783
784         spectrum_resp_status = le16_to_cpu(pkt->u.spectrum.status);
785         switch (spectrum_resp_status) {
786         case 0:         /* Command will be handled */
787                 if (pkt->u.spectrum.id != 0xff) {
788                         IWL_DEBUG_INFO(priv, "Replaced existing measurement: %d\n",
789                                                 pkt->u.spectrum.id);
790                         priv->measurement_status &= ~MEASUREMENT_READY;
791                 }
792                 priv->measurement_status |= MEASUREMENT_ACTIVE;
793                 rc = 0;
794                 break;
795
796         case 1:         /* Command will not be handled */
797                 rc = -EAGAIN;
798                 break;
799         }
800
801         iwl_free_pages(priv, cmd.reply_page);
802
803         return rc;
804 }
805
806 static void iwl3945_rx_reply_alive(struct iwl_priv *priv,
807                                struct iwl_rx_mem_buffer *rxb)
808 {
809         struct iwl_rx_packet *pkt = rxb_addr(rxb);
810         struct iwl_alive_resp *palive;
811         struct delayed_work *pwork;
812
813         palive = &pkt->u.alive_frame;
814
815         IWL_DEBUG_INFO(priv, "Alive ucode status 0x%08X revision "
816                        "0x%01X 0x%01X\n",
817                        palive->is_valid, palive->ver_type,
818                        palive->ver_subtype);
819
820         if (palive->ver_subtype == INITIALIZE_SUBTYPE) {
821                 IWL_DEBUG_INFO(priv, "Initialization Alive received.\n");
822                 memcpy(&priv->card_alive_init, &pkt->u.alive_frame,
823                        sizeof(struct iwl_alive_resp));
824                 pwork = &priv->init_alive_start;
825         } else {
826                 IWL_DEBUG_INFO(priv, "Runtime Alive received.\n");
827                 memcpy(&priv->card_alive, &pkt->u.alive_frame,
828                        sizeof(struct iwl_alive_resp));
829                 pwork = &priv->alive_start;
830                 iwl3945_disable_events(priv);
831         }
832
833         /* We delay the ALIVE response by 5ms to
834          * give the HW RF Kill time to activate... */
835         if (palive->is_valid == UCODE_VALID_OK)
836                 queue_delayed_work(priv->workqueue, pwork,
837                                    msecs_to_jiffies(5));
838         else
839                 IWL_WARN(priv, "uCode did not respond OK.\n");
840 }
841
842 static void iwl3945_rx_reply_add_sta(struct iwl_priv *priv,
843                                  struct iwl_rx_mem_buffer *rxb)
844 {
845 #ifdef CONFIG_IWLWIFI_DEBUG
846         struct iwl_rx_packet *pkt = rxb_addr(rxb);
847 #endif
848
849         IWL_DEBUG_RX(priv, "Received REPLY_ADD_STA: 0x%02X\n", pkt->u.status);
850         return;
851 }
852
853 static void iwl3945_bg_beacon_update(struct work_struct *work)
854 {
855         struct iwl_priv *priv =
856                 container_of(work, struct iwl_priv, beacon_update);
857         struct sk_buff *beacon;
858
859         /* Pull updated AP beacon from mac80211. will fail if not in AP mode */
860         beacon = ieee80211_beacon_get(priv->hw, priv->vif);
861
862         if (!beacon) {
863                 IWL_ERR(priv, "update beacon failed\n");
864                 return;
865         }
866
867         mutex_lock(&priv->mutex);
868         /* new beacon skb is allocated every time; dispose previous.*/
869         if (priv->ibss_beacon)
870                 dev_kfree_skb(priv->ibss_beacon);
871
872         priv->ibss_beacon = beacon;
873         mutex_unlock(&priv->mutex);
874
875         iwl3945_send_beacon_cmd(priv);
876 }
877
878 static void iwl3945_rx_beacon_notif(struct iwl_priv *priv,
879                                 struct iwl_rx_mem_buffer *rxb)
880 {
881 #ifdef CONFIG_IWLWIFI_DEBUG
882         struct iwl_rx_packet *pkt = rxb_addr(rxb);
883         struct iwl3945_beacon_notif *beacon = &(pkt->u.beacon_status);
884         u8 rate = beacon->beacon_notify_hdr.rate;
885
886         IWL_DEBUG_RX(priv, "beacon status %x retries %d iss %d "
887                 "tsf %d %d rate %d\n",
888                 le32_to_cpu(beacon->beacon_notify_hdr.status) & TX_STATUS_MSK,
889                 beacon->beacon_notify_hdr.failure_frame,
890                 le32_to_cpu(beacon->ibss_mgr_status),
891                 le32_to_cpu(beacon->high_tsf),
892                 le32_to_cpu(beacon->low_tsf), rate);
893 #endif
894
895         if ((priv->iw_mode == NL80211_IFTYPE_AP) &&
896             (!test_bit(STATUS_EXIT_PENDING, &priv->status)))
897                 queue_work(priv->workqueue, &priv->beacon_update);
898 }
899
900 /* Handle notification from uCode that card's power state is changing
901  * due to software, hardware, or critical temperature RFKILL */
902 static void iwl3945_rx_card_state_notif(struct iwl_priv *priv,
903                                     struct iwl_rx_mem_buffer *rxb)
904 {
905         struct iwl_rx_packet *pkt = rxb_addr(rxb);
906         u32 flags = le32_to_cpu(pkt->u.card_state_notif.flags);
907         unsigned long status = priv->status;
908
909         IWL_WARN(priv, "Card state received: HW:%s SW:%s\n",
910                           (flags & HW_CARD_DISABLED) ? "Kill" : "On",
911                           (flags & SW_CARD_DISABLED) ? "Kill" : "On");
912
913         iwl_write32(priv, CSR_UCODE_DRV_GP1_SET,
914                     CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
915
916         if (flags & HW_CARD_DISABLED)
917                 set_bit(STATUS_RF_KILL_HW, &priv->status);
918         else
919                 clear_bit(STATUS_RF_KILL_HW, &priv->status);
920
921
922         iwl_scan_cancel(priv);
923
924         if ((test_bit(STATUS_RF_KILL_HW, &status) !=
925              test_bit(STATUS_RF_KILL_HW, &priv->status)))
926                 wiphy_rfkill_set_hw_state(priv->hw->wiphy,
927                                 test_bit(STATUS_RF_KILL_HW, &priv->status));
928         else
929                 wake_up_interruptible(&priv->wait_command_queue);
930 }
931
932 /**
933  * iwl3945_setup_rx_handlers - Initialize Rx handler callbacks
934  *
935  * Setup the RX handlers for each of the reply types sent from the uCode
936  * to the host.
937  *
938  * This function chains into the hardware specific files for them to setup
939  * any hardware specific handlers as well.
940  */
941 static void iwl3945_setup_rx_handlers(struct iwl_priv *priv)
942 {
943         priv->rx_handlers[REPLY_ALIVE] = iwl3945_rx_reply_alive;
944         priv->rx_handlers[REPLY_ADD_STA] = iwl3945_rx_reply_add_sta;
945         priv->rx_handlers[REPLY_ERROR] = iwl_rx_reply_error;
946         priv->rx_handlers[CHANNEL_SWITCH_NOTIFICATION] = iwl_rx_csa;
947         priv->rx_handlers[SPECTRUM_MEASURE_NOTIFICATION] =
948                         iwl_rx_spectrum_measure_notif;
949         priv->rx_handlers[PM_SLEEP_NOTIFICATION] = iwl_rx_pm_sleep_notif;
950         priv->rx_handlers[PM_DEBUG_STATISTIC_NOTIFIC] =
951             iwl_rx_pm_debug_statistics_notif;
952         priv->rx_handlers[BEACON_NOTIFICATION] = iwl3945_rx_beacon_notif;
953
954         /*
955          * The same handler is used for both the REPLY to a discrete
956          * statistics request from the host as well as for the periodic
957          * statistics notifications (after received beacons) from the uCode.
958          */
959         priv->rx_handlers[REPLY_STATISTICS_CMD] = iwl3945_hw_rx_statistics;
960         priv->rx_handlers[STATISTICS_NOTIFICATION] = iwl3945_hw_rx_statistics;
961
962         iwl_setup_rx_scan_handlers(priv);
963         priv->rx_handlers[CARD_STATE_NOTIFICATION] = iwl3945_rx_card_state_notif;
964
965         /* Set up hardware specific Rx handlers */
966         iwl3945_hw_rx_handler_setup(priv);
967 }
968
969 /************************** RX-FUNCTIONS ****************************/
970 /*
971  * Rx theory of operation
972  *
973  * The host allocates 32 DMA target addresses and passes the host address
974  * to the firmware at register IWL_RFDS_TABLE_LOWER + N * RFD_SIZE where N is
975  * 0 to 31
976  *
977  * Rx Queue Indexes
978  * The host/firmware share two index registers for managing the Rx buffers.
979  *
980  * The READ index maps to the first position that the firmware may be writing
981  * to -- the driver can read up to (but not including) this position and get
982  * good data.
983  * The READ index is managed by the firmware once the card is enabled.
984  *
985  * The WRITE index maps to the last position the driver has read from -- the
986  * position preceding WRITE is the last slot the firmware can place a packet.
987  *
988  * The queue is empty (no good data) if WRITE = READ - 1, and is full if
989  * WRITE = READ.
990  *
991  * During initialization, the host sets up the READ queue position to the first
992  * INDEX position, and WRITE to the last (READ - 1 wrapped)
993  *
994  * When the firmware places a packet in a buffer, it will advance the READ index
995  * and fire the RX interrupt.  The driver can then query the READ index and
996  * process as many packets as possible, moving the WRITE index forward as it
997  * resets the Rx queue buffers with new memory.
998  *
999  * The management in the driver is as follows:
1000  * + A list of pre-allocated SKBs is stored in iwl->rxq->rx_free.  When
1001  *   iwl->rxq->free_count drops to or below RX_LOW_WATERMARK, work is scheduled
1002  *   to replenish the iwl->rxq->rx_free.
1003  * + In iwl3945_rx_replenish (scheduled) if 'processed' != 'read' then the
1004  *   iwl->rxq is replenished and the READ INDEX is updated (updating the
1005  *   'processed' and 'read' driver indexes as well)
1006  * + A received packet is processed and handed to the kernel network stack,
1007  *   detached from the iwl->rxq.  The driver 'processed' index is updated.
1008  * + The Host/Firmware iwl->rxq is replenished at tasklet time from the rx_free
1009  *   list. If there are no allocated buffers in iwl->rxq->rx_free, the READ
1010  *   INDEX is not incremented and iwl->status(RX_STALLED) is set.  If there
1011  *   were enough free buffers and RX_STALLED is set it is cleared.
1012  *
1013  *
1014  * Driver sequence:
1015  *
1016  * iwl3945_rx_replenish()     Replenishes rx_free list from rx_used, and calls
1017  *                            iwl3945_rx_queue_restock
1018  * iwl3945_rx_queue_restock() Moves available buffers from rx_free into Rx
1019  *                            queue, updates firmware pointers, and updates
1020  *                            the WRITE index.  If insufficient rx_free buffers
1021  *                            are available, schedules iwl3945_rx_replenish
1022  *
1023  * -- enable interrupts --
1024  * ISR - iwl3945_rx()         Detach iwl_rx_mem_buffers from pool up to the
1025  *                            READ INDEX, detaching the SKB from the pool.
1026  *                            Moves the packet buffer from queue to rx_used.
1027  *                            Calls iwl3945_rx_queue_restock to refill any empty
1028  *                            slots.
1029  * ...
1030  *
1031  */
1032
1033 /**
1034  * iwl3945_dma_addr2rbd_ptr - convert a DMA address to a uCode read buffer ptr
1035  */
1036 static inline __le32 iwl3945_dma_addr2rbd_ptr(struct iwl_priv *priv,
1037                                           dma_addr_t dma_addr)
1038 {
1039         return cpu_to_le32((u32)dma_addr);
1040 }
1041
1042 /**
1043  * iwl3945_rx_queue_restock - refill RX queue from pre-allocated pool
1044  *
1045  * If there are slots in the RX queue that need to be restocked,
1046  * and we have free pre-allocated buffers, fill the ranks as much
1047  * as we can, pulling from rx_free.
1048  *
1049  * This moves the 'write' index forward to catch up with 'processed', and
1050  * also updates the memory address in the firmware to reference the new
1051  * target buffer.
1052  */
1053 static void iwl3945_rx_queue_restock(struct iwl_priv *priv)
1054 {
1055         struct iwl_rx_queue *rxq = &priv->rxq;
1056         struct list_head *element;
1057         struct iwl_rx_mem_buffer *rxb;
1058         unsigned long flags;
1059         int write;
1060
1061         spin_lock_irqsave(&rxq->lock, flags);
1062         write = rxq->write & ~0x7;
1063         while ((iwl_rx_queue_space(rxq) > 0) && (rxq->free_count)) {
1064                 /* Get next free Rx buffer, remove from free list */
1065                 element = rxq->rx_free.next;
1066                 rxb = list_entry(element, struct iwl_rx_mem_buffer, list);
1067                 list_del(element);
1068
1069                 /* Point to Rx buffer via next RBD in circular buffer */
1070                 rxq->bd[rxq->write] = iwl3945_dma_addr2rbd_ptr(priv, rxb->page_dma);
1071                 rxq->queue[rxq->write] = rxb;
1072                 rxq->write = (rxq->write + 1) & RX_QUEUE_MASK;
1073                 rxq->free_count--;
1074         }
1075         spin_unlock_irqrestore(&rxq->lock, flags);
1076         /* If the pre-allocated buffer pool is dropping low, schedule to
1077          * refill it */
1078         if (rxq->free_count <= RX_LOW_WATERMARK)
1079                 queue_work(priv->workqueue, &priv->rx_replenish);
1080
1081
1082         /* If we've added more space for the firmware to place data, tell it.
1083          * Increment device's write pointer in multiples of 8. */
1084         if ((rxq->write_actual != (rxq->write & ~0x7))
1085             || (abs(rxq->write - rxq->read) > 7)) {
1086                 spin_lock_irqsave(&rxq->lock, flags);
1087                 rxq->need_update = 1;
1088                 spin_unlock_irqrestore(&rxq->lock, flags);
1089                 iwl_rx_queue_update_write_ptr(priv, rxq);
1090         }
1091 }
1092
1093 /**
1094  * iwl3945_rx_replenish - Move all used packet from rx_used to rx_free
1095  *
1096  * When moving to rx_free an SKB is allocated for the slot.
1097  *
1098  * Also restock the Rx queue via iwl3945_rx_queue_restock.
1099  * This is called as a scheduled work item (except for during initialization)
1100  */
1101 static void iwl3945_rx_allocate(struct iwl_priv *priv, gfp_t priority)
1102 {
1103         struct iwl_rx_queue *rxq = &priv->rxq;
1104         struct list_head *element;
1105         struct iwl_rx_mem_buffer *rxb;
1106         struct page *page;
1107         unsigned long flags;
1108         gfp_t gfp_mask = priority;
1109
1110         while (1) {
1111                 spin_lock_irqsave(&rxq->lock, flags);
1112
1113                 if (list_empty(&rxq->rx_used)) {
1114                         spin_unlock_irqrestore(&rxq->lock, flags);
1115                         return;
1116                 }
1117                 spin_unlock_irqrestore(&rxq->lock, flags);
1118
1119                 if (rxq->free_count > RX_LOW_WATERMARK)
1120                         gfp_mask |= __GFP_NOWARN;
1121
1122                 if (priv->hw_params.rx_page_order > 0)
1123                         gfp_mask |= __GFP_COMP;
1124
1125                 /* Alloc a new receive buffer */
1126                 page = alloc_pages(gfp_mask, priv->hw_params.rx_page_order);
1127                 if (!page) {
1128                         if (net_ratelimit())
1129                                 IWL_DEBUG_INFO(priv, "Failed to allocate SKB buffer.\n");
1130                         if ((rxq->free_count <= RX_LOW_WATERMARK) &&
1131                             net_ratelimit())
1132                                 IWL_CRIT(priv, "Failed to allocate SKB buffer with %s. Only %u free buffers remaining.\n",
1133                                          priority == GFP_ATOMIC ?  "GFP_ATOMIC" : "GFP_KERNEL",
1134                                          rxq->free_count);
1135                         /* We don't reschedule replenish work here -- we will
1136                          * call the restock method and if it still needs
1137                          * more buffers it will schedule replenish */
1138                         break;
1139                 }
1140
1141                 spin_lock_irqsave(&rxq->lock, flags);
1142                 if (list_empty(&rxq->rx_used)) {
1143                         spin_unlock_irqrestore(&rxq->lock, flags);
1144                         __free_pages(page, priv->hw_params.rx_page_order);
1145                         return;
1146                 }
1147                 element = rxq->rx_used.next;
1148                 rxb = list_entry(element, struct iwl_rx_mem_buffer, list);
1149                 list_del(element);
1150                 spin_unlock_irqrestore(&rxq->lock, flags);
1151
1152                 rxb->page = page;
1153                 /* Get physical address of RB/SKB */
1154                 rxb->page_dma = pci_map_page(priv->pci_dev, page, 0,
1155                                 PAGE_SIZE << priv->hw_params.rx_page_order,
1156                                 PCI_DMA_FROMDEVICE);
1157
1158                 spin_lock_irqsave(&rxq->lock, flags);
1159
1160                 list_add_tail(&rxb->list, &rxq->rx_free);
1161                 rxq->free_count++;
1162                 priv->alloc_rxb_page++;
1163
1164                 spin_unlock_irqrestore(&rxq->lock, flags);
1165         }
1166 }
1167
1168 void iwl3945_rx_queue_reset(struct iwl_priv *priv, struct iwl_rx_queue *rxq)
1169 {
1170         unsigned long flags;
1171         int i;
1172         spin_lock_irqsave(&rxq->lock, flags);
1173         INIT_LIST_HEAD(&rxq->rx_free);
1174         INIT_LIST_HEAD(&rxq->rx_used);
1175         /* Fill the rx_used queue with _all_ of the Rx buffers */
1176         for (i = 0; i < RX_FREE_BUFFERS + RX_QUEUE_SIZE; i++) {
1177                 /* In the reset function, these buffers may have been allocated
1178                  * to an SKB, so we need to unmap and free potential storage */
1179                 if (rxq->pool[i].page != NULL) {
1180                         pci_unmap_page(priv->pci_dev, rxq->pool[i].page_dma,
1181                                 PAGE_SIZE << priv->hw_params.rx_page_order,
1182                                 PCI_DMA_FROMDEVICE);
1183                         __iwl_free_pages(priv, rxq->pool[i].page);
1184                         rxq->pool[i].page = NULL;
1185                 }
1186                 list_add_tail(&rxq->pool[i].list, &rxq->rx_used);
1187         }
1188
1189         /* Set us so that we have processed and used all buffers, but have
1190          * not restocked the Rx queue with fresh buffers */
1191         rxq->read = rxq->write = 0;
1192         rxq->write_actual = 0;
1193         rxq->free_count = 0;
1194         spin_unlock_irqrestore(&rxq->lock, flags);
1195 }
1196
1197 void iwl3945_rx_replenish(void *data)
1198 {
1199         struct iwl_priv *priv = data;
1200         unsigned long flags;
1201
1202         iwl3945_rx_allocate(priv, GFP_KERNEL);
1203
1204         spin_lock_irqsave(&priv->lock, flags);
1205         iwl3945_rx_queue_restock(priv);
1206         spin_unlock_irqrestore(&priv->lock, flags);
1207 }
1208
1209 static void iwl3945_rx_replenish_now(struct iwl_priv *priv)
1210 {
1211         iwl3945_rx_allocate(priv, GFP_ATOMIC);
1212
1213         iwl3945_rx_queue_restock(priv);
1214 }
1215
1216
1217 /* Assumes that the skb field of the buffers in 'pool' is kept accurate.
1218  * If an SKB has been detached, the POOL needs to have its SKB set to NULL
1219  * This free routine walks the list of POOL entries and if SKB is set to
1220  * non NULL it is unmapped and freed
1221  */
1222 static void iwl3945_rx_queue_free(struct iwl_priv *priv, struct iwl_rx_queue *rxq)
1223 {
1224         int i;
1225         for (i = 0; i < RX_QUEUE_SIZE + RX_FREE_BUFFERS; i++) {
1226                 if (rxq->pool[i].page != NULL) {
1227                         pci_unmap_page(priv->pci_dev, rxq->pool[i].page_dma,
1228                                 PAGE_SIZE << priv->hw_params.rx_page_order,
1229                                 PCI_DMA_FROMDEVICE);
1230                         __iwl_free_pages(priv, rxq->pool[i].page);
1231                         rxq->pool[i].page = NULL;
1232                 }
1233         }
1234
1235         dma_free_coherent(&priv->pci_dev->dev, 4 * RX_QUEUE_SIZE, rxq->bd,
1236                           rxq->dma_addr);
1237         dma_free_coherent(&priv->pci_dev->dev, sizeof(struct iwl_rb_status),
1238                           rxq->rb_stts, rxq->rb_stts_dma);
1239         rxq->bd = NULL;
1240         rxq->rb_stts  = NULL;
1241 }
1242
1243
1244 /* Convert linear signal-to-noise ratio into dB */
1245 static u8 ratio2dB[100] = {
1246 /*       0   1   2   3   4   5   6   7   8   9 */
1247          0,  0,  6, 10, 12, 14, 16, 17, 18, 19, /* 00 - 09 */
1248         20, 21, 22, 22, 23, 23, 24, 25, 26, 26, /* 10 - 19 */
1249         26, 26, 26, 27, 27, 28, 28, 28, 29, 29, /* 20 - 29 */
1250         29, 30, 30, 30, 31, 31, 31, 31, 32, 32, /* 30 - 39 */
1251         32, 32, 32, 33, 33, 33, 33, 33, 34, 34, /* 40 - 49 */
1252         34, 34, 34, 34, 35, 35, 35, 35, 35, 35, /* 50 - 59 */
1253         36, 36, 36, 36, 36, 36, 36, 37, 37, 37, /* 60 - 69 */
1254         37, 37, 37, 37, 37, 38, 38, 38, 38, 38, /* 70 - 79 */
1255         38, 38, 38, 38, 38, 39, 39, 39, 39, 39, /* 80 - 89 */
1256         39, 39, 39, 39, 39, 40, 40, 40, 40, 40  /* 90 - 99 */
1257 };
1258
1259 /* Calculates a relative dB value from a ratio of linear
1260  *   (i.e. not dB) signal levels.
1261  * Conversion assumes that levels are voltages (20*log), not powers (10*log). */
1262 int iwl3945_calc_db_from_ratio(int sig_ratio)
1263 {
1264         /* 1000:1 or higher just report as 60 dB */
1265         if (sig_ratio >= 1000)
1266                 return 60;
1267
1268         /* 100:1 or higher, divide by 10 and use table,
1269          *   add 20 dB to make up for divide by 10 */
1270         if (sig_ratio >= 100)
1271                 return 20 + (int)ratio2dB[sig_ratio/10];
1272
1273         /* We shouldn't see this */
1274         if (sig_ratio < 1)
1275                 return 0;
1276
1277         /* Use table for ratios 1:1 - 99:1 */
1278         return (int)ratio2dB[sig_ratio];
1279 }
1280
1281 /**
1282  * iwl3945_rx_handle - Main entry function for receiving responses from uCode
1283  *
1284  * Uses the priv->rx_handlers callback function array to invoke
1285  * the appropriate handlers, including command responses,
1286  * frame-received notifications, and other notifications.
1287  */
1288 static void iwl3945_rx_handle(struct iwl_priv *priv)
1289 {
1290         struct iwl_rx_mem_buffer *rxb;
1291         struct iwl_rx_packet *pkt;
1292         struct iwl_rx_queue *rxq = &priv->rxq;
1293         u32 r, i;
1294         int reclaim;
1295         unsigned long flags;
1296         u8 fill_rx = 0;
1297         u32 count = 8;
1298         int total_empty = 0;
1299
1300         /* uCode's read index (stored in shared DRAM) indicates the last Rx
1301          * buffer that the driver may process (last buffer filled by ucode). */
1302         r = le16_to_cpu(rxq->rb_stts->closed_rb_num) &  0x0FFF;
1303         i = rxq->read;
1304
1305         /* calculate total frames need to be restock after handling RX */
1306         total_empty = r - rxq->write_actual;
1307         if (total_empty < 0)
1308                 total_empty += RX_QUEUE_SIZE;
1309
1310         if (total_empty > (RX_QUEUE_SIZE / 2))
1311                 fill_rx = 1;
1312         /* Rx interrupt, but nothing sent from uCode */
1313         if (i == r)
1314                 IWL_DEBUG_RX(priv, "r = %d, i = %d\n", r, i);
1315
1316         while (i != r) {
1317                 rxb = rxq->queue[i];
1318
1319                 /* If an RXB doesn't have a Rx queue slot associated with it,
1320                  * then a bug has been introduced in the queue refilling
1321                  * routines -- catch it here */
1322                 BUG_ON(rxb == NULL);
1323
1324                 rxq->queue[i] = NULL;
1325
1326                 pci_unmap_page(priv->pci_dev, rxb->page_dma,
1327                                PAGE_SIZE << priv->hw_params.rx_page_order,
1328                                PCI_DMA_FROMDEVICE);
1329                 pkt = rxb_addr(rxb);
1330
1331                 trace_iwlwifi_dev_rx(priv, pkt,
1332                         le32_to_cpu(pkt->len_n_flags) & FH_RSCSR_FRAME_SIZE_MSK);
1333
1334                 /* Reclaim a command buffer only if this packet is a response
1335                  *   to a (driver-originated) command.
1336                  * If the packet (e.g. Rx frame) originated from uCode,
1337                  *   there is no command buffer to reclaim.
1338                  * Ucode should set SEQ_RX_FRAME bit if ucode-originated,
1339                  *   but apparently a few don't get set; catch them here. */
1340                 reclaim = !(pkt->hdr.sequence & SEQ_RX_FRAME) &&
1341                         (pkt->hdr.cmd != STATISTICS_NOTIFICATION) &&
1342                         (pkt->hdr.cmd != REPLY_TX);
1343
1344                 /* Based on type of command response or notification,
1345                  *   handle those that need handling via function in
1346                  *   rx_handlers table.  See iwl3945_setup_rx_handlers() */
1347                 if (priv->rx_handlers[pkt->hdr.cmd]) {
1348                         IWL_DEBUG_RX(priv, "r = %d, i = %d, %s, 0x%02x\n", r, i,
1349                                 get_cmd_string(pkt->hdr.cmd), pkt->hdr.cmd);
1350                         priv->isr_stats.rx_handlers[pkt->hdr.cmd]++;
1351                         priv->rx_handlers[pkt->hdr.cmd] (priv, rxb);
1352                 } else {
1353                         /* No handling needed */
1354                         IWL_DEBUG_RX(priv,
1355                                 "r %d i %d No handler needed for %s, 0x%02x\n",
1356                                 r, i, get_cmd_string(pkt->hdr.cmd),
1357                                 pkt->hdr.cmd);
1358                 }
1359
1360                 /*
1361                  * XXX: After here, we should always check rxb->page
1362                  * against NULL before touching it or its virtual
1363                  * memory (pkt). Because some rx_handler might have
1364                  * already taken or freed the pages.
1365                  */
1366
1367                 if (reclaim) {
1368                         /* Invoke any callbacks, transfer the buffer to caller,
1369                          * and fire off the (possibly) blocking iwl_send_cmd()
1370                          * as we reclaim the driver command queue */
1371                         if (rxb->page)
1372                                 iwl_tx_cmd_complete(priv, rxb);
1373                         else
1374                                 IWL_WARN(priv, "Claim null rxb?\n");
1375                 }
1376
1377                 /* Reuse the page if possible. For notification packets and
1378                  * SKBs that fail to Rx correctly, add them back into the
1379                  * rx_free list for reuse later. */
1380                 spin_lock_irqsave(&rxq->lock, flags);
1381                 if (rxb->page != NULL) {
1382                         rxb->page_dma = pci_map_page(priv->pci_dev, rxb->page,
1383                                 0, PAGE_SIZE << priv->hw_params.rx_page_order,
1384                                 PCI_DMA_FROMDEVICE);
1385                         list_add_tail(&rxb->list, &rxq->rx_free);
1386                         rxq->free_count++;
1387                 } else
1388                         list_add_tail(&rxb->list, &rxq->rx_used);
1389
1390                 spin_unlock_irqrestore(&rxq->lock, flags);
1391
1392                 i = (i + 1) & RX_QUEUE_MASK;
1393                 /* If there are a lot of unused frames,
1394                  * restock the Rx queue so ucode won't assert. */
1395                 if (fill_rx) {
1396                         count++;
1397                         if (count >= 8) {
1398                                 rxq->read = i;
1399                                 iwl3945_rx_replenish_now(priv);
1400                                 count = 0;
1401                         }
1402                 }
1403         }
1404
1405         /* Backtrack one entry */
1406         rxq->read = i;
1407         if (fill_rx)
1408                 iwl3945_rx_replenish_now(priv);
1409         else
1410                 iwl3945_rx_queue_restock(priv);
1411 }
1412
1413 /* call this function to flush any scheduled tasklet */
1414 static inline void iwl_synchronize_irq(struct iwl_priv *priv)
1415 {
1416         /* wait to make sure we flush pending tasklet*/
1417         synchronize_irq(priv->pci_dev->irq);
1418         tasklet_kill(&priv->irq_tasklet);
1419 }
1420
1421 static const char *desc_lookup(int i)
1422 {
1423         switch (i) {
1424         case 1:
1425                 return "FAIL";
1426         case 2:
1427                 return "BAD_PARAM";
1428         case 3:
1429                 return "BAD_CHECKSUM";
1430         case 4:
1431                 return "NMI_INTERRUPT";
1432         case 5:
1433                 return "SYSASSERT";
1434         case 6:
1435                 return "FATAL_ERROR";
1436         }
1437
1438         return "UNKNOWN";
1439 }
1440
1441 #define ERROR_START_OFFSET  (1 * sizeof(u32))
1442 #define ERROR_ELEM_SIZE     (7 * sizeof(u32))
1443
1444 void iwl3945_dump_nic_error_log(struct iwl_priv *priv)
1445 {
1446         u32 i;
1447         u32 desc, time, count, base, data1;
1448         u32 blink1, blink2, ilink1, ilink2;
1449
1450         base = le32_to_cpu(priv->card_alive.error_event_table_ptr);
1451
1452         if (!iwl3945_hw_valid_rtc_data_addr(base)) {
1453                 IWL_ERR(priv, "Not valid error log pointer 0x%08X\n", base);
1454                 return;
1455         }
1456
1457
1458         count = iwl_read_targ_mem(priv, base);
1459
1460         if (ERROR_START_OFFSET <= count * ERROR_ELEM_SIZE) {
1461                 IWL_ERR(priv, "Start IWL Error Log Dump:\n");
1462                 IWL_ERR(priv, "Status: 0x%08lX, count: %d\n",
1463                         priv->status, count);
1464         }
1465
1466         IWL_ERR(priv, "Desc       Time       asrtPC  blink2 "
1467                   "ilink1  nmiPC   Line\n");
1468         for (i = ERROR_START_OFFSET;
1469              i < (count * ERROR_ELEM_SIZE) + ERROR_START_OFFSET;
1470              i += ERROR_ELEM_SIZE) {
1471                 desc = iwl_read_targ_mem(priv, base + i);
1472                 time =
1473                     iwl_read_targ_mem(priv, base + i + 1 * sizeof(u32));
1474                 blink1 =
1475                     iwl_read_targ_mem(priv, base + i + 2 * sizeof(u32));
1476                 blink2 =
1477                     iwl_read_targ_mem(priv, base + i + 3 * sizeof(u32));
1478                 ilink1 =
1479                     iwl_read_targ_mem(priv, base + i + 4 * sizeof(u32));
1480                 ilink2 =
1481                     iwl_read_targ_mem(priv, base + i + 5 * sizeof(u32));
1482                 data1 =
1483                     iwl_read_targ_mem(priv, base + i + 6 * sizeof(u32));
1484
1485                 IWL_ERR(priv,
1486                         "%-13s (#%d) %010u 0x%05X 0x%05X 0x%05X 0x%05X %u\n\n",
1487                         desc_lookup(desc), desc, time, blink1, blink2,
1488                         ilink1, ilink2, data1);
1489                 trace_iwlwifi_dev_ucode_error(priv, desc, time, data1, 0,
1490                                         0, blink1, blink2, ilink1, ilink2);
1491         }
1492 }
1493
1494 #define EVENT_START_OFFSET  (6 * sizeof(u32))
1495
1496 /**
1497  * iwl3945_print_event_log - Dump error event log to syslog
1498  *
1499  */
1500 static int iwl3945_print_event_log(struct iwl_priv *priv, u32 start_idx,
1501                                   u32 num_events, u32 mode,
1502                                   int pos, char **buf, size_t bufsz)
1503 {
1504         u32 i;
1505         u32 base;       /* SRAM byte address of event log header */
1506         u32 event_size; /* 2 u32s, or 3 u32s if timestamp recorded */
1507         u32 ptr;        /* SRAM byte address of log data */
1508         u32 ev, time, data; /* event log data */
1509         unsigned long reg_flags;
1510
1511         if (num_events == 0)
1512                 return pos;
1513
1514         base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
1515
1516         if (mode == 0)
1517                 event_size = 2 * sizeof(u32);
1518         else
1519                 event_size = 3 * sizeof(u32);
1520
1521         ptr = base + EVENT_START_OFFSET + (start_idx * event_size);
1522
1523         /* Make sure device is powered up for SRAM reads */
1524         spin_lock_irqsave(&priv->reg_lock, reg_flags);
1525         iwl_grab_nic_access(priv);
1526
1527         /* Set starting address; reads will auto-increment */
1528         _iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR, ptr);
1529         rmb();
1530
1531         /* "time" is actually "data" for mode 0 (no timestamp).
1532          * place event id # at far right for easier visual parsing. */
1533         for (i = 0; i < num_events; i++) {
1534                 ev = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
1535                 time = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
1536                 if (mode == 0) {
1537                         /* data, ev */
1538                         if (bufsz) {
1539                                 pos += scnprintf(*buf + pos, bufsz - pos,
1540                                                 "0x%08x:%04u\n",
1541                                                 time, ev);
1542                         } else {
1543                                 IWL_ERR(priv, "0x%08x\t%04u\n", time, ev);
1544                                 trace_iwlwifi_dev_ucode_event(priv, 0,
1545                                                               time, ev);
1546                         }
1547                 } else {
1548                         data = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
1549                         if (bufsz) {
1550                                 pos += scnprintf(*buf + pos, bufsz - pos,
1551                                                 "%010u:0x%08x:%04u\n",
1552                                                  time, data, ev);
1553                         } else {
1554                                 IWL_ERR(priv, "%010u\t0x%08x\t%04u\n",
1555                                         time, data, ev);
1556                                 trace_iwlwifi_dev_ucode_event(priv, time,
1557                                                               data, ev);
1558                         }
1559                 }
1560         }
1561
1562         /* Allow device to power down */
1563         iwl_release_nic_access(priv);
1564         spin_unlock_irqrestore(&priv->reg_lock, reg_flags);
1565         return pos;
1566 }
1567
1568 /**
1569  * iwl3945_print_last_event_logs - Dump the newest # of event log to syslog
1570  */
1571 static int iwl3945_print_last_event_logs(struct iwl_priv *priv, u32 capacity,
1572                                       u32 num_wraps, u32 next_entry,
1573                                       u32 size, u32 mode,
1574                                       int pos, char **buf, size_t bufsz)
1575 {
1576         /*
1577          * display the newest DEFAULT_LOG_ENTRIES entries
1578          * i.e the entries just before the next ont that uCode would fill.
1579          */
1580         if (num_wraps) {
1581                 if (next_entry < size) {
1582                         pos = iwl3945_print_event_log(priv,
1583                                              capacity - (size - next_entry),
1584                                              size - next_entry, mode,
1585                                              pos, buf, bufsz);
1586                         pos = iwl3945_print_event_log(priv, 0,
1587                                                       next_entry, mode,
1588                                                       pos, buf, bufsz);
1589                 } else
1590                         pos = iwl3945_print_event_log(priv, next_entry - size,
1591                                                       size, mode,
1592                                                       pos, buf, bufsz);
1593         } else {
1594                 if (next_entry < size)
1595                         pos = iwl3945_print_event_log(priv, 0,
1596                                                       next_entry, mode,
1597                                                       pos, buf, bufsz);
1598                 else
1599                         pos = iwl3945_print_event_log(priv, next_entry - size,
1600                                                       size, mode,
1601                                                       pos, buf, bufsz);
1602         }
1603         return pos;
1604 }
1605
1606 #define DEFAULT_IWL3945_DUMP_EVENT_LOG_ENTRIES (20)
1607
1608 int iwl3945_dump_nic_event_log(struct iwl_priv *priv, bool full_log,
1609                             char **buf, bool display)
1610 {
1611         u32 base;       /* SRAM byte address of event log header */
1612         u32 capacity;   /* event log capacity in # entries */
1613         u32 mode;       /* 0 - no timestamp, 1 - timestamp recorded */
1614         u32 num_wraps;  /* # times uCode wrapped to top of log */
1615         u32 next_entry; /* index of next entry to be written by uCode */
1616         u32 size;       /* # entries that we'll print */
1617         int pos = 0;
1618         size_t bufsz = 0;
1619
1620         base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
1621         if (!iwl3945_hw_valid_rtc_data_addr(base)) {
1622                 IWL_ERR(priv, "Invalid event log pointer 0x%08X\n", base);
1623                 return  -EINVAL;
1624         }
1625
1626         /* event log header */
1627         capacity = iwl_read_targ_mem(priv, base);
1628         mode = iwl_read_targ_mem(priv, base + (1 * sizeof(u32)));
1629         num_wraps = iwl_read_targ_mem(priv, base + (2 * sizeof(u32)));
1630         next_entry = iwl_read_targ_mem(priv, base + (3 * sizeof(u32)));
1631
1632         if (capacity > priv->cfg->max_event_log_size) {
1633                 IWL_ERR(priv, "Log capacity %d is bogus, limit to %d entries\n",
1634                         capacity, priv->cfg->max_event_log_size);
1635                 capacity = priv->cfg->max_event_log_size;
1636         }
1637
1638         if (next_entry > priv->cfg->max_event_log_size) {
1639                 IWL_ERR(priv, "Log write index %d is bogus, limit to %d\n",
1640                         next_entry, priv->cfg->max_event_log_size);
1641                 next_entry = priv->cfg->max_event_log_size;
1642         }
1643
1644         size = num_wraps ? capacity : next_entry;
1645
1646         /* bail out if nothing in log */
1647         if (size == 0) {
1648                 IWL_ERR(priv, "Start IWL Event Log Dump: nothing in log\n");
1649                 return pos;
1650         }
1651
1652 #ifdef CONFIG_IWLWIFI_DEBUG
1653         if (!(iwl_get_debug_level(priv) & IWL_DL_FW_ERRORS) && !full_log)
1654                 size = (size > DEFAULT_IWL3945_DUMP_EVENT_LOG_ENTRIES)
1655                         ? DEFAULT_IWL3945_DUMP_EVENT_LOG_ENTRIES : size;
1656 #else
1657         size = (size > DEFAULT_IWL3945_DUMP_EVENT_LOG_ENTRIES)
1658                 ? DEFAULT_IWL3945_DUMP_EVENT_LOG_ENTRIES : size;
1659 #endif
1660
1661         IWL_ERR(priv, "Start IWL Event Log Dump: display last %d count\n",
1662                   size);
1663
1664 #ifdef CONFIG_IWLWIFI_DEBUG
1665         if (display) {
1666                 if (full_log)
1667                         bufsz = capacity * 48;
1668                 else
1669                         bufsz = size * 48;
1670                 *buf = kmalloc(bufsz, GFP_KERNEL);
1671                 if (!*buf)
1672                         return -ENOMEM;
1673         }
1674         if ((iwl_get_debug_level(priv) & IWL_DL_FW_ERRORS) || full_log) {
1675                 /* if uCode has wrapped back to top of log,
1676                  * start at the oldest entry,
1677                  * i.e the next one that uCode would fill.
1678                  */
1679                 if (num_wraps)
1680                         pos = iwl3945_print_event_log(priv, next_entry,
1681                                                 capacity - next_entry, mode,
1682                                                 pos, buf, bufsz);
1683
1684                 /* (then/else) start at top of log */
1685                 pos = iwl3945_print_event_log(priv, 0, next_entry, mode,
1686                                               pos, buf, bufsz);
1687         } else
1688                 pos = iwl3945_print_last_event_logs(priv, capacity, num_wraps,
1689                                                     next_entry, size, mode,
1690                                                     pos, buf, bufsz);
1691 #else
1692         pos = iwl3945_print_last_event_logs(priv, capacity, num_wraps,
1693                                             next_entry, size, mode,
1694                                             pos, buf, bufsz);
1695 #endif
1696         return pos;
1697 }
1698
1699 static void iwl3945_irq_tasklet(struct iwl_priv *priv)
1700 {
1701         u32 inta, handled = 0;
1702         u32 inta_fh;
1703         unsigned long flags;
1704 #ifdef CONFIG_IWLWIFI_DEBUG
1705         u32 inta_mask;
1706 #endif
1707
1708         spin_lock_irqsave(&priv->lock, flags);
1709
1710         /* Ack/clear/reset pending uCode interrupts.
1711          * Note:  Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS,
1712          *  and will clear only when CSR_FH_INT_STATUS gets cleared. */
1713         inta = iwl_read32(priv, CSR_INT);
1714         iwl_write32(priv, CSR_INT, inta);
1715
1716         /* Ack/clear/reset pending flow-handler (DMA) interrupts.
1717          * Any new interrupts that happen after this, either while we're
1718          * in this tasklet, or later, will show up in next ISR/tasklet. */
1719         inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
1720         iwl_write32(priv, CSR_FH_INT_STATUS, inta_fh);
1721
1722 #ifdef CONFIG_IWLWIFI_DEBUG
1723         if (iwl_get_debug_level(priv) & IWL_DL_ISR) {
1724                 /* just for debug */
1725                 inta_mask = iwl_read32(priv, CSR_INT_MASK);
1726                 IWL_DEBUG_ISR(priv, "inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
1727                               inta, inta_mask, inta_fh);
1728         }
1729 #endif
1730
1731         spin_unlock_irqrestore(&priv->lock, flags);
1732
1733         /* Since CSR_INT and CSR_FH_INT_STATUS reads and clears are not
1734          * atomic, make sure that inta covers all the interrupts that
1735          * we've discovered, even if FH interrupt came in just after
1736          * reading CSR_INT. */
1737         if (inta_fh & CSR39_FH_INT_RX_MASK)
1738                 inta |= CSR_INT_BIT_FH_RX;
1739         if (inta_fh & CSR39_FH_INT_TX_MASK)
1740                 inta |= CSR_INT_BIT_FH_TX;
1741
1742         /* Now service all interrupt bits discovered above. */
1743         if (inta & CSR_INT_BIT_HW_ERR) {
1744                 IWL_ERR(priv, "Hardware error detected.  Restarting.\n");
1745
1746                 /* Tell the device to stop sending interrupts */
1747                 iwl_disable_interrupts(priv);
1748
1749                 priv->isr_stats.hw++;
1750                 iwl_irq_handle_error(priv);
1751
1752                 handled |= CSR_INT_BIT_HW_ERR;
1753
1754                 return;
1755         }
1756
1757 #ifdef CONFIG_IWLWIFI_DEBUG
1758         if (iwl_get_debug_level(priv) & (IWL_DL_ISR)) {
1759                 /* NIC fires this, but we don't use it, redundant with WAKEUP */
1760                 if (inta & CSR_INT_BIT_SCD) {
1761                         IWL_DEBUG_ISR(priv, "Scheduler finished to transmit "
1762                                       "the frame/frames.\n");
1763                         priv->isr_stats.sch++;
1764                 }
1765
1766                 /* Alive notification via Rx interrupt will do the real work */
1767                 if (inta & CSR_INT_BIT_ALIVE) {
1768                         IWL_DEBUG_ISR(priv, "Alive interrupt\n");
1769                         priv->isr_stats.alive++;
1770                 }
1771         }
1772 #endif
1773         /* Safely ignore these bits for debug checks below */
1774         inta &= ~(CSR_INT_BIT_SCD | CSR_INT_BIT_ALIVE);
1775
1776         /* Error detected by uCode */
1777         if (inta & CSR_INT_BIT_SW_ERR) {
1778                 IWL_ERR(priv, "Microcode SW error detected. "
1779                         "Restarting 0x%X.\n", inta);
1780                 priv->isr_stats.sw++;
1781                 priv->isr_stats.sw_err = inta;
1782                 iwl_irq_handle_error(priv);
1783                 handled |= CSR_INT_BIT_SW_ERR;
1784         }
1785
1786         /* uCode wakes up after power-down sleep */
1787         if (inta & CSR_INT_BIT_WAKEUP) {
1788                 IWL_DEBUG_ISR(priv, "Wakeup interrupt\n");
1789                 iwl_rx_queue_update_write_ptr(priv, &priv->rxq);
1790                 iwl_txq_update_write_ptr(priv, &priv->txq[0]);
1791                 iwl_txq_update_write_ptr(priv, &priv->txq[1]);
1792                 iwl_txq_update_write_ptr(priv, &priv->txq[2]);
1793                 iwl_txq_update_write_ptr(priv, &priv->txq[3]);
1794                 iwl_txq_update_write_ptr(priv, &priv->txq[4]);
1795                 iwl_txq_update_write_ptr(priv, &priv->txq[5]);
1796
1797                 priv->isr_stats.wakeup++;
1798                 handled |= CSR_INT_BIT_WAKEUP;
1799         }
1800
1801         /* All uCode command responses, including Tx command responses,
1802          * Rx "responses" (frame-received notification), and other
1803          * notifications from uCode come through here*/
1804         if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) {
1805                 iwl3945_rx_handle(priv);
1806                 priv->isr_stats.rx++;
1807                 handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX);
1808         }
1809
1810         if (inta & CSR_INT_BIT_FH_TX) {
1811                 IWL_DEBUG_ISR(priv, "Tx interrupt\n");
1812                 priv->isr_stats.tx++;
1813
1814                 iwl_write32(priv, CSR_FH_INT_STATUS, (1 << 6));
1815                 iwl_write_direct32(priv, FH39_TCSR_CREDIT
1816                                         (FH39_SRVC_CHNL), 0x0);
1817                 handled |= CSR_INT_BIT_FH_TX;
1818         }
1819
1820         if (inta & ~handled) {
1821                 IWL_ERR(priv, "Unhandled INTA bits 0x%08x\n", inta & ~handled);
1822                 priv->isr_stats.unhandled++;
1823         }
1824
1825         if (inta & ~priv->inta_mask) {
1826                 IWL_WARN(priv, "Disabled INTA bits 0x%08x were pending\n",
1827                          inta & ~priv->inta_mask);
1828                 IWL_WARN(priv, "   with FH_INT = 0x%08x\n", inta_fh);
1829         }
1830
1831         /* Re-enable all interrupts */
1832         /* only Re-enable if disabled by irq */
1833         if (test_bit(STATUS_INT_ENABLED, &priv->status))
1834                 iwl_enable_interrupts(priv);
1835
1836 #ifdef CONFIG_IWLWIFI_DEBUG
1837         if (iwl_get_debug_level(priv) & (IWL_DL_ISR)) {
1838                 inta = iwl_read32(priv, CSR_INT);
1839                 inta_mask = iwl_read32(priv, CSR_INT_MASK);
1840                 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
1841                 IWL_DEBUG_ISR(priv, "End inta 0x%08x, enabled 0x%08x, fh 0x%08x, "
1842                         "flags 0x%08lx\n", inta, inta_mask, inta_fh, flags);
1843         }
1844 #endif
1845 }
1846
1847 static int iwl3945_get_channels_for_scan(struct iwl_priv *priv,
1848                                          enum ieee80211_band band,
1849                                      u8 is_active, u8 n_probes,
1850                                      struct iwl3945_scan_channel *scan_ch)
1851 {
1852         struct ieee80211_channel *chan;
1853         const struct ieee80211_supported_band *sband;
1854         const struct iwl_channel_info *ch_info;
1855         u16 passive_dwell = 0;
1856         u16 active_dwell = 0;
1857         int added, i;
1858
1859         sband = iwl_get_hw_mode(priv, band);
1860         if (!sband)
1861                 return 0;
1862
1863         active_dwell = iwl_get_active_dwell_time(priv, band, n_probes);
1864         passive_dwell = iwl_get_passive_dwell_time(priv, band);
1865
1866         if (passive_dwell <= active_dwell)
1867                 passive_dwell = active_dwell + 1;
1868
1869         for (i = 0, added = 0; i < priv->scan_request->n_channels; i++) {
1870                 chan = priv->scan_request->channels[i];
1871
1872                 if (chan->band != band)
1873                         continue;
1874
1875                 scan_ch->channel = chan->hw_value;
1876
1877                 ch_info = iwl_get_channel_info(priv, band, scan_ch->channel);
1878                 if (!is_channel_valid(ch_info)) {
1879                         IWL_DEBUG_SCAN(priv, "Channel %d is INVALID for this band.\n",
1880                                        scan_ch->channel);
1881                         continue;
1882                 }
1883
1884                 scan_ch->active_dwell = cpu_to_le16(active_dwell);
1885                 scan_ch->passive_dwell = cpu_to_le16(passive_dwell);
1886                 /* If passive , set up for auto-switch
1887                  *  and use long active_dwell time.
1888                  */
1889                 if (!is_active || is_channel_passive(ch_info) ||
1890                     (chan->flags & IEEE80211_CHAN_PASSIVE_SCAN)) {
1891                         scan_ch->type = 0;      /* passive */
1892                         if (IWL_UCODE_API(priv->ucode_ver) == 1)
1893                                 scan_ch->active_dwell = cpu_to_le16(passive_dwell - 1);
1894                 } else {
1895                         scan_ch->type = 1;      /* active */
1896                 }
1897
1898                 /* Set direct probe bits. These may be used both for active
1899                  * scan channels (probes gets sent right away),
1900                  * or for passive channels (probes get se sent only after
1901                  * hearing clear Rx packet).*/
1902                 if (IWL_UCODE_API(priv->ucode_ver) >= 2) {
1903                         if (n_probes)
1904                                 scan_ch->type |= IWL39_SCAN_PROBE_MASK(n_probes);
1905                 } else {
1906                         /* uCode v1 does not allow setting direct probe bits on
1907                          * passive channel. */
1908                         if ((scan_ch->type & 1) && n_probes)
1909                                 scan_ch->type |= IWL39_SCAN_PROBE_MASK(n_probes);
1910                 }
1911
1912                 /* Set txpower levels to defaults */
1913                 scan_ch->tpc.dsp_atten = 110;
1914                 /* scan_pwr_info->tpc.dsp_atten; */
1915
1916                 /*scan_pwr_info->tpc.tx_gain; */
1917                 if (band == IEEE80211_BAND_5GHZ)
1918                         scan_ch->tpc.tx_gain = ((1 << 5) | (3 << 3)) | 3;
1919                 else {
1920                         scan_ch->tpc.tx_gain = ((1 << 5) | (5 << 3));
1921                         /* NOTE: if we were doing 6Mb OFDM for scans we'd use
1922                          * power level:
1923                          * scan_ch->tpc.tx_gain = ((1 << 5) | (2 << 3)) | 3;
1924                          */
1925                 }
1926
1927                 IWL_DEBUG_SCAN(priv, "Scanning %d [%s %d]\n",
1928                                scan_ch->channel,
1929                                (scan_ch->type & 1) ? "ACTIVE" : "PASSIVE",
1930                                (scan_ch->type & 1) ?
1931                                active_dwell : passive_dwell);
1932
1933                 scan_ch++;
1934                 added++;
1935         }
1936
1937         IWL_DEBUG_SCAN(priv, "total channels to scan %d\n", added);
1938         return added;
1939 }
1940
1941 static void iwl3945_init_hw_rates(struct iwl_priv *priv,
1942                               struct ieee80211_rate *rates)
1943 {
1944         int i;
1945
1946         for (i = 0; i < IWL_RATE_COUNT_LEGACY; i++) {
1947                 rates[i].bitrate = iwl3945_rates[i].ieee * 5;
1948                 rates[i].hw_value = i; /* Rate scaling will work on indexes */
1949                 rates[i].hw_value_short = i;
1950                 rates[i].flags = 0;
1951                 if ((i > IWL39_LAST_OFDM_RATE) || (i < IWL_FIRST_OFDM_RATE)) {
1952                         /*
1953                          * If CCK != 1M then set short preamble rate flag.
1954                          */
1955                         rates[i].flags |= (iwl3945_rates[i].plcp == 10) ?
1956                                 0 : IEEE80211_RATE_SHORT_PREAMBLE;
1957                 }
1958         }
1959 }
1960
1961 /******************************************************************************
1962  *
1963  * uCode download functions
1964  *
1965  ******************************************************************************/
1966
1967 static void iwl3945_dealloc_ucode_pci(struct iwl_priv *priv)
1968 {
1969         iwl_free_fw_desc(priv->pci_dev, &priv->ucode_code);
1970         iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data);
1971         iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
1972         iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init);
1973         iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init_data);
1974         iwl_free_fw_desc(priv->pci_dev, &priv->ucode_boot);
1975 }
1976
1977 /**
1978  * iwl3945_verify_inst_full - verify runtime uCode image in card vs. host,
1979  *     looking at all data.
1980  */
1981 static int iwl3945_verify_inst_full(struct iwl_priv *priv, __le32 *image, u32 len)
1982 {
1983         u32 val;
1984         u32 save_len = len;
1985         int rc = 0;
1986         u32 errcnt;
1987
1988         IWL_DEBUG_INFO(priv, "ucode inst image size is %u\n", len);
1989
1990         iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR,
1991                                IWL39_RTC_INST_LOWER_BOUND);
1992
1993         errcnt = 0;
1994         for (; len > 0; len -= sizeof(u32), image++) {
1995                 /* read data comes through single port, auto-incr addr */
1996                 /* NOTE: Use the debugless read so we don't flood kernel log
1997                  * if IWL_DL_IO is set */
1998                 val = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
1999                 if (val != le32_to_cpu(*image)) {
2000                         IWL_ERR(priv, "uCode INST section is invalid at "
2001                                   "offset 0x%x, is 0x%x, s/b 0x%x\n",
2002                                   save_len - len, val, le32_to_cpu(*image));
2003                         rc = -EIO;
2004                         errcnt++;
2005                         if (errcnt >= 20)
2006                                 break;
2007                 }
2008         }
2009
2010
2011         if (!errcnt)
2012                 IWL_DEBUG_INFO(priv,
2013                         "ucode image in INSTRUCTION memory is good\n");
2014
2015         return rc;
2016 }
2017
2018
2019 /**
2020  * iwl3945_verify_inst_sparse - verify runtime uCode image in card vs. host,
2021  *   using sample data 100 bytes apart.  If these sample points are good,
2022  *   it's a pretty good bet that everything between them is good, too.
2023  */
2024 static int iwl3945_verify_inst_sparse(struct iwl_priv *priv, __le32 *image, u32 len)
2025 {
2026         u32 val;
2027         int rc = 0;
2028         u32 errcnt = 0;
2029         u32 i;
2030
2031         IWL_DEBUG_INFO(priv, "ucode inst image size is %u\n", len);
2032
2033         for (i = 0; i < len; i += 100, image += 100/sizeof(u32)) {
2034                 /* read data comes through single port, auto-incr addr */
2035                 /* NOTE: Use the debugless read so we don't flood kernel log
2036                  * if IWL_DL_IO is set */
2037                 iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR,
2038                         i + IWL39_RTC_INST_LOWER_BOUND);
2039                 val = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
2040                 if (val != le32_to_cpu(*image)) {
2041 #if 0 /* Enable this if you want to see details */
2042                         IWL_ERR(priv, "uCode INST section is invalid at "
2043                                   "offset 0x%x, is 0x%x, s/b 0x%x\n",
2044                                   i, val, *image);
2045 #endif
2046                         rc = -EIO;
2047                         errcnt++;
2048                         if (errcnt >= 3)
2049                                 break;
2050                 }
2051         }
2052
2053         return rc;
2054 }
2055
2056
2057 /**
2058  * iwl3945_verify_ucode - determine which instruction image is in SRAM,
2059  *    and verify its contents
2060  */
2061 static int iwl3945_verify_ucode(struct iwl_priv *priv)
2062 {
2063         __le32 *image;
2064         u32 len;
2065         int rc = 0;
2066
2067         /* Try bootstrap */
2068         image = (__le32 *)priv->ucode_boot.v_addr;
2069         len = priv->ucode_boot.len;
2070         rc = iwl3945_verify_inst_sparse(priv, image, len);
2071         if (rc == 0) {
2072                 IWL_DEBUG_INFO(priv, "Bootstrap uCode is good in inst SRAM\n");
2073                 return 0;
2074         }
2075
2076         /* Try initialize */
2077         image = (__le32 *)priv->ucode_init.v_addr;
2078         len = priv->ucode_init.len;
2079         rc = iwl3945_verify_inst_sparse(priv, image, len);
2080         if (rc == 0) {
2081                 IWL_DEBUG_INFO(priv, "Initialize uCode is good in inst SRAM\n");
2082                 return 0;
2083         }
2084
2085         /* Try runtime/protocol */
2086         image = (__le32 *)priv->ucode_code.v_addr;
2087         len = priv->ucode_code.len;
2088         rc = iwl3945_verify_inst_sparse(priv, image, len);
2089         if (rc == 0) {
2090                 IWL_DEBUG_INFO(priv, "Runtime uCode is good in inst SRAM\n");
2091                 return 0;
2092         }
2093
2094         IWL_ERR(priv, "NO VALID UCODE IMAGE IN INSTRUCTION SRAM!!\n");
2095
2096         /* Since nothing seems to match, show first several data entries in
2097          * instruction SRAM, so maybe visual inspection will give a clue.
2098          * Selection of bootstrap image (vs. other images) is arbitrary. */
2099         image = (__le32 *)priv->ucode_boot.v_addr;
2100         len = priv->ucode_boot.len;
2101         rc = iwl3945_verify_inst_full(priv, image, len);
2102
2103         return rc;
2104 }
2105
2106 static void iwl3945_nic_start(struct iwl_priv *priv)
2107 {
2108         /* Remove all resets to allow NIC to operate */
2109         iwl_write32(priv, CSR_RESET, 0);
2110 }
2111
2112 /**
2113  * iwl3945_read_ucode - Read uCode images from disk file.
2114  *
2115  * Copy into buffers for card to fetch via bus-mastering
2116  */
2117 static int iwl3945_read_ucode(struct iwl_priv *priv)
2118 {
2119         const struct iwl_ucode_header *ucode;
2120         int ret = -EINVAL, index;
2121         const struct firmware *ucode_raw;
2122         /* firmware file name contains uCode/driver compatibility version */
2123         const char *name_pre = priv->cfg->fw_name_pre;
2124         const unsigned int api_max = priv->cfg->ucode_api_max;
2125         const unsigned int api_min = priv->cfg->ucode_api_min;
2126         char buf[25];
2127         u8 *src;
2128         size_t len;
2129         u32 api_ver, inst_size, data_size, init_size, init_data_size, boot_size;
2130
2131         /* Ask kernel firmware_class module to get the boot firmware off disk.
2132          * request_firmware() is synchronous, file is in memory on return. */
2133         for (index = api_max; index >= api_min; index--) {
2134                 sprintf(buf, "%s%u%s", name_pre, index, ".ucode");
2135                 ret = request_firmware(&ucode_raw, buf, &priv->pci_dev->dev);
2136                 if (ret < 0) {
2137                         IWL_ERR(priv, "%s firmware file req failed: %d\n",
2138                                   buf, ret);
2139                         if (ret == -ENOENT)
2140                                 continue;
2141                         else
2142                                 goto error;
2143                 } else {
2144                         if (index < api_max)
2145                                 IWL_ERR(priv, "Loaded firmware %s, "
2146                                         "which is deprecated. "
2147                                         " Please use API v%u instead.\n",
2148                                           buf, api_max);
2149                         IWL_DEBUG_INFO(priv, "Got firmware '%s' file "
2150                                        "(%zd bytes) from disk\n",
2151                                        buf, ucode_raw->size);
2152                         break;
2153                 }
2154         }
2155
2156         if (ret < 0)
2157                 goto error;
2158
2159         /* Make sure that we got at least our header! */
2160         if (ucode_raw->size <  priv->cfg->ops->ucode->get_header_size(1)) {
2161                 IWL_ERR(priv, "File size way too small!\n");
2162                 ret = -EINVAL;
2163                 goto err_release;
2164         }
2165
2166         /* Data from ucode file:  header followed by uCode images */
2167         ucode = (struct iwl_ucode_header *)ucode_raw->data;
2168
2169         priv->ucode_ver = le32_to_cpu(ucode->ver);
2170         api_ver = IWL_UCODE_API(priv->ucode_ver);
2171         inst_size = priv->cfg->ops->ucode->get_inst_size(ucode, api_ver);
2172         data_size = priv->cfg->ops->ucode->get_data_size(ucode, api_ver);
2173         init_size = priv->cfg->ops->ucode->get_init_size(ucode, api_ver);
2174         init_data_size =
2175                 priv->cfg->ops->ucode->get_init_data_size(ucode, api_ver);
2176         boot_size = priv->cfg->ops->ucode->get_boot_size(ucode, api_ver);
2177         src = priv->cfg->ops->ucode->get_data(ucode, api_ver);
2178
2179         /* api_ver should match the api version forming part of the
2180          * firmware filename ... but we don't check for that and only rely
2181          * on the API version read from firmware header from here on forward */
2182
2183         if (api_ver < api_min || api_ver > api_max) {
2184                 IWL_ERR(priv, "Driver unable to support your firmware API. "
2185                           "Driver supports v%u, firmware is v%u.\n",
2186                           api_max, api_ver);
2187                 priv->ucode_ver = 0;
2188                 ret = -EINVAL;
2189                 goto err_release;
2190         }
2191         if (api_ver != api_max)
2192                 IWL_ERR(priv, "Firmware has old API version. Expected %u, "
2193                           "got %u. New firmware can be obtained "
2194                           "from http://www.intellinuxwireless.org.\n",
2195                           api_max, api_ver);
2196
2197         IWL_INFO(priv, "loaded firmware version %u.%u.%u.%u\n",
2198                 IWL_UCODE_MAJOR(priv->ucode_ver),
2199                 IWL_UCODE_MINOR(priv->ucode_ver),
2200                 IWL_UCODE_API(priv->ucode_ver),
2201                 IWL_UCODE_SERIAL(priv->ucode_ver));
2202
2203         snprintf(priv->hw->wiphy->fw_version,
2204                  sizeof(priv->hw->wiphy->fw_version),
2205                  "%u.%u.%u.%u",
2206                  IWL_UCODE_MAJOR(priv->ucode_ver),
2207                  IWL_UCODE_MINOR(priv->ucode_ver),
2208                  IWL_UCODE_API(priv->ucode_ver),
2209                  IWL_UCODE_SERIAL(priv->ucode_ver));
2210
2211         IWL_DEBUG_INFO(priv, "f/w package hdr ucode version raw = 0x%x\n",
2212                        priv->ucode_ver);
2213         IWL_DEBUG_INFO(priv, "f/w package hdr runtime inst size = %u\n",
2214                        inst_size);
2215         IWL_DEBUG_INFO(priv, "f/w package hdr runtime data size = %u\n",
2216                        data_size);
2217         IWL_DEBUG_INFO(priv, "f/w package hdr init inst size = %u\n",
2218                        init_size);
2219         IWL_DEBUG_INFO(priv, "f/w package hdr init data size = %u\n",
2220                        init_data_size);
2221         IWL_DEBUG_INFO(priv, "f/w package hdr boot inst size = %u\n",
2222                        boot_size);
2223
2224
2225         /* Verify size of file vs. image size info in file's header */
2226         if (ucode_raw->size != priv->cfg->ops->ucode->get_header_size(api_ver) +
2227                 inst_size + data_size + init_size +
2228                 init_data_size + boot_size) {
2229
2230                 IWL_DEBUG_INFO(priv,
2231                         "uCode file size %zd does not match expected size\n",
2232                         ucode_raw->size);
2233                 ret = -EINVAL;
2234                 goto err_release;
2235         }
2236
2237         /* Verify that uCode images will fit in card's SRAM */
2238         if (inst_size > IWL39_MAX_INST_SIZE) {
2239                 IWL_DEBUG_INFO(priv, "uCode instr len %d too large to fit in\n",
2240                                inst_size);
2241                 ret = -EINVAL;
2242                 goto err_release;
2243         }
2244
2245         if (data_size > IWL39_MAX_DATA_SIZE) {
2246                 IWL_DEBUG_INFO(priv, "uCode data len %d too large to fit in\n",
2247                                data_size);
2248                 ret = -EINVAL;
2249                 goto err_release;
2250         }
2251         if (init_size > IWL39_MAX_INST_SIZE) {
2252                 IWL_DEBUG_INFO(priv,
2253                                 "uCode init instr len %d too large to fit in\n",
2254                                 init_size);
2255                 ret = -EINVAL;
2256                 goto err_release;
2257         }
2258         if (init_data_size > IWL39_MAX_DATA_SIZE) {
2259                 IWL_DEBUG_INFO(priv,
2260                                 "uCode init data len %d too large to fit in\n",
2261                                 init_data_size);
2262                 ret = -EINVAL;
2263                 goto err_release;
2264         }
2265         if (boot_size > IWL39_MAX_BSM_SIZE) {
2266                 IWL_DEBUG_INFO(priv,
2267                                 "uCode boot instr len %d too large to fit in\n",
2268                                 boot_size);
2269                 ret = -EINVAL;
2270                 goto err_release;
2271         }
2272
2273         /* Allocate ucode buffers for card's bus-master loading ... */
2274
2275         /* Runtime instructions and 2 copies of data:
2276          * 1) unmodified from disk
2277          * 2) backup cache for save/restore during power-downs */
2278         priv->ucode_code.len = inst_size;
2279         iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_code);
2280
2281         priv->ucode_data.len = data_size;
2282         iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data);
2283
2284         priv->ucode_data_backup.len = data_size;
2285         iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
2286
2287         if (!priv->ucode_code.v_addr || !priv->ucode_data.v_addr ||
2288             !priv->ucode_data_backup.v_addr)
2289                 goto err_pci_alloc;
2290
2291         /* Initialization instructions and data */
2292         if (init_size && init_data_size) {
2293                 priv->ucode_init.len = init_size;
2294                 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init);
2295
2296                 priv->ucode_init_data.len = init_data_size;
2297                 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init_data);
2298
2299                 if (!priv->ucode_init.v_addr || !priv->ucode_init_data.v_addr)
2300                         goto err_pci_alloc;
2301         }
2302
2303         /* Bootstrap (instructions only, no data) */
2304         if (boot_size) {
2305                 priv->ucode_boot.len = boot_size;
2306                 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_boot);
2307
2308                 if (!priv->ucode_boot.v_addr)
2309                         goto err_pci_alloc;
2310         }
2311
2312         /* Copy images into buffers for card's bus-master reads ... */
2313
2314         /* Runtime instructions (first block of data in file) */
2315         len = inst_size;
2316         IWL_DEBUG_INFO(priv,
2317                 "Copying (but not loading) uCode instr len %zd\n", len);
2318         memcpy(priv->ucode_code.v_addr, src, len);
2319         src += len;
2320
2321         IWL_DEBUG_INFO(priv, "uCode instr buf vaddr = 0x%p, paddr = 0x%08x\n",
2322                 priv->ucode_code.v_addr, (u32)priv->ucode_code.p_addr);
2323
2324         /* Runtime data (2nd block)
2325          * NOTE:  Copy into backup buffer will be done in iwl3945_up()  */
2326         len = data_size;
2327         IWL_DEBUG_INFO(priv,
2328                 "Copying (but not loading) uCode data len %zd\n", len);
2329         memcpy(priv->ucode_data.v_addr, src, len);
2330         memcpy(priv->ucode_data_backup.v_addr, src, len);
2331         src += len;
2332
2333         /* Initialization instructions (3rd block) */
2334         if (init_size) {
2335                 len = init_size;
2336                 IWL_DEBUG_INFO(priv,
2337                         "Copying (but not loading) init instr len %zd\n", len);
2338                 memcpy(priv->ucode_init.v_addr, src, len);
2339                 src += len;
2340         }
2341
2342         /* Initialization data (4th block) */
2343         if (init_data_size) {
2344                 len = init_data_size;
2345                 IWL_DEBUG_INFO(priv,
2346                         "Copying (but not loading) init data len %zd\n", len);
2347                 memcpy(priv->ucode_init_data.v_addr, src, len);
2348                 src += len;
2349         }
2350
2351         /* Bootstrap instructions (5th block) */
2352         len = boot_size;
2353         IWL_DEBUG_INFO(priv,
2354                 "Copying (but not loading) boot instr len %zd\n", len);
2355         memcpy(priv->ucode_boot.v_addr, src, len);
2356
2357         /* We have our copies now, allow OS release its copies */
2358         release_firmware(ucode_raw);
2359         return 0;
2360
2361  err_pci_alloc:
2362         IWL_ERR(priv, "failed to allocate pci memory\n");
2363         ret = -ENOMEM;
2364         iwl3945_dealloc_ucode_pci(priv);
2365
2366  err_release:
2367         release_firmware(ucode_raw);
2368
2369  error:
2370         return ret;
2371 }
2372
2373
2374 /**
2375  * iwl3945_set_ucode_ptrs - Set uCode address location
2376  *
2377  * Tell initialization uCode where to find runtime uCode.
2378  *
2379  * BSM registers initially contain pointers to initialization uCode.
2380  * We need to replace them to load runtime uCode inst and data,
2381  * and to save runtime data when powering down.
2382  */
2383 static int iwl3945_set_ucode_ptrs(struct iwl_priv *priv)
2384 {
2385         dma_addr_t pinst;
2386         dma_addr_t pdata;
2387
2388         /* bits 31:0 for 3945 */
2389         pinst = priv->ucode_code.p_addr;
2390         pdata = priv->ucode_data_backup.p_addr;
2391
2392         /* Tell bootstrap uCode where to find image to load */
2393         iwl_write_prph(priv, BSM_DRAM_INST_PTR_REG, pinst);
2394         iwl_write_prph(priv, BSM_DRAM_DATA_PTR_REG, pdata);
2395         iwl_write_prph(priv, BSM_DRAM_DATA_BYTECOUNT_REG,
2396                                  priv->ucode_data.len);
2397
2398         /* Inst byte count must be last to set up, bit 31 signals uCode
2399          *   that all new ptr/size info is in place */
2400         iwl_write_prph(priv, BSM_DRAM_INST_BYTECOUNT_REG,
2401                                  priv->ucode_code.len | BSM_DRAM_INST_LOAD);
2402
2403         IWL_DEBUG_INFO(priv, "Runtime uCode pointers are set.\n");
2404
2405         return 0;
2406 }
2407
2408 /**
2409  * iwl3945_init_alive_start - Called after REPLY_ALIVE notification received
2410  *
2411  * Called after REPLY_ALIVE notification received from "initialize" uCode.
2412  *
2413  * Tell "initialize" uCode to go ahead and load the runtime uCode.
2414  */
2415 static void iwl3945_init_alive_start(struct iwl_priv *priv)
2416 {
2417         /* Check alive response for "valid" sign from uCode */
2418         if (priv->card_alive_init.is_valid != UCODE_VALID_OK) {
2419                 /* We had an error bringing up the hardware, so take it
2420                  * all the way back down so we can try again */
2421                 IWL_DEBUG_INFO(priv, "Initialize Alive failed.\n");
2422                 goto restart;
2423         }
2424
2425         /* Bootstrap uCode has loaded initialize uCode ... verify inst image.
2426          * This is a paranoid check, because we would not have gotten the
2427          * "initialize" alive if code weren't properly loaded.  */
2428         if (iwl3945_verify_ucode(priv)) {
2429                 /* Runtime instruction load was bad;
2430                  * take it all the way back down so we can try again */
2431                 IWL_DEBUG_INFO(priv, "Bad \"initialize\" uCode load.\n");
2432                 goto restart;
2433         }
2434
2435         /* Send pointers to protocol/runtime uCode image ... init code will
2436          * load and launch runtime uCode, which will send us another "Alive"
2437          * notification. */
2438         IWL_DEBUG_INFO(priv, "Initialization Alive received.\n");
2439         if (iwl3945_set_ucode_ptrs(priv)) {
2440                 /* Runtime instruction load won't happen;
2441                  * take it all the way back down so we can try again */
2442                 IWL_DEBUG_INFO(priv, "Couldn't set up uCode pointers.\n");
2443                 goto restart;
2444         }
2445         return;
2446
2447  restart:
2448         queue_work(priv->workqueue, &priv->restart);
2449 }
2450
2451 /**
2452  * iwl3945_alive_start - called after REPLY_ALIVE notification received
2453  *                   from protocol/runtime uCode (initialization uCode's
2454  *                   Alive gets handled by iwl3945_init_alive_start()).
2455  */
2456 static void iwl3945_alive_start(struct iwl_priv *priv)
2457 {
2458         int thermal_spin = 0;
2459         u32 rfkill;
2460
2461         IWL_DEBUG_INFO(priv, "Runtime Alive received.\n");
2462
2463         if (priv->card_alive.is_valid != UCODE_VALID_OK) {
2464                 /* We had an error bringing up the hardware, so take it
2465                  * all the way back down so we can try again */
2466                 IWL_DEBUG_INFO(priv, "Alive failed.\n");
2467                 goto restart;
2468         }
2469
2470         /* Initialize uCode has loaded Runtime uCode ... verify inst image.
2471          * This is a paranoid check, because we would not have gotten the
2472          * "runtime" alive if code weren't properly loaded.  */
2473         if (iwl3945_verify_ucode(priv)) {
2474                 /* Runtime instruction load was bad;
2475                  * take it all the way back down so we can try again */
2476                 IWL_DEBUG_INFO(priv, "Bad runtime uCode load.\n");
2477                 goto restart;
2478         }
2479
2480         rfkill = iwl_read_prph(priv, APMG_RFKILL_REG);
2481         IWL_DEBUG_INFO(priv, "RFKILL status: 0x%x\n", rfkill);
2482
2483         if (rfkill & 0x1) {
2484                 clear_bit(STATUS_RF_KILL_HW, &priv->status);
2485                 /* if RFKILL is not on, then wait for thermal
2486                  * sensor in adapter to kick in */
2487                 while (iwl3945_hw_get_temperature(priv) == 0) {
2488                         thermal_spin++;
2489                         udelay(10);
2490                 }
2491
2492                 if (thermal_spin)
2493                         IWL_DEBUG_INFO(priv, "Thermal calibration took %dus\n",
2494                                        thermal_spin * 10);
2495         } else
2496                 set_bit(STATUS_RF_KILL_HW, &priv->status);
2497
2498         /* After the ALIVE response, we can send commands to 3945 uCode */
2499         set_bit(STATUS_ALIVE, &priv->status);
2500
2501         if (priv->cfg->ops->lib->recover_from_tx_stall) {
2502                 /* Enable timer to monitor the driver queues */
2503                 mod_timer(&priv->monitor_recover,
2504                         jiffies +
2505                         msecs_to_jiffies(priv->cfg->monitor_recover_period));
2506         }
2507
2508         if (iwl_is_rfkill(priv))
2509                 return;
2510
2511         ieee80211_wake_queues(priv->hw);
2512
2513         priv->active_rate = IWL_RATES_MASK;
2514
2515         iwl_power_update_mode(priv, true);
2516
2517         if (iwl_is_associated(priv)) {
2518                 struct iwl3945_rxon_cmd *active_rxon =
2519                                 (struct iwl3945_rxon_cmd *)(&priv->active_rxon);
2520
2521                 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
2522                 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
2523         } else {
2524                 /* Initialize our rx_config data */
2525                 iwl_connection_init_rx_config(priv, priv->iw_mode);
2526         }
2527
2528         /* Configure Bluetooth device coexistence support */
2529         iwl_send_bt_config(priv);
2530
2531         /* Configure the adapter for unassociated operation */
2532         iwlcore_commit_rxon(priv);
2533
2534         iwl3945_reg_txpower_periodic(priv);
2535
2536         iwl_leds_init(priv);
2537
2538         IWL_DEBUG_INFO(priv, "ALIVE processing complete.\n");
2539         set_bit(STATUS_READY, &priv->status);
2540         wake_up_interruptible(&priv->wait_command_queue);
2541
2542         return;
2543
2544  restart:
2545         queue_work(priv->workqueue, &priv->restart);
2546 }
2547
2548 static void iwl3945_cancel_deferred_work(struct iwl_priv *priv);
2549
2550 static void __iwl3945_down(struct iwl_priv *priv)
2551 {
2552         unsigned long flags;
2553         int exit_pending = test_bit(STATUS_EXIT_PENDING, &priv->status);
2554         struct ieee80211_conf *conf = NULL;
2555
2556         IWL_DEBUG_INFO(priv, DRV_NAME " is going down\n");
2557
2558         conf = ieee80211_get_hw_conf(priv->hw);
2559
2560         if (!exit_pending)
2561                 set_bit(STATUS_EXIT_PENDING, &priv->status);
2562
2563         /* Station information will now be cleared in device */
2564         iwl_clear_ucode_stations(priv, true);
2565
2566         /* Unblock any waiting calls */
2567         wake_up_interruptible_all(&priv->wait_command_queue);
2568
2569         /* Wipe out the EXIT_PENDING status bit if we are not actually
2570          * exiting the module */
2571         if (!exit_pending)
2572                 clear_bit(STATUS_EXIT_PENDING, &priv->status);
2573
2574         /* stop and reset the on-board processor */
2575         iwl_write32(priv, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET);
2576
2577         /* tell the device to stop sending interrupts */
2578         spin_lock_irqsave(&priv->lock, flags);
2579         iwl_disable_interrupts(priv);
2580         spin_unlock_irqrestore(&priv->lock, flags);
2581         iwl_synchronize_irq(priv);
2582
2583         if (priv->mac80211_registered)
2584                 ieee80211_stop_queues(priv->hw);
2585
2586         /* If we have not previously called iwl3945_init() then
2587          * clear all bits but the RF Kill bits and return */
2588         if (!iwl_is_init(priv)) {
2589                 priv->status = test_bit(STATUS_RF_KILL_HW, &priv->status) <<
2590                                         STATUS_RF_KILL_HW |
2591                                test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
2592                                         STATUS_GEO_CONFIGURED |
2593                                 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
2594                                         STATUS_EXIT_PENDING;
2595                 goto exit;
2596         }
2597
2598         /* ...otherwise clear out all the status bits but the RF Kill
2599          * bit and continue taking the NIC down. */
2600         priv->status &= test_bit(STATUS_RF_KILL_HW, &priv->status) <<
2601                                 STATUS_RF_KILL_HW |
2602                         test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
2603                                 STATUS_GEO_CONFIGURED |
2604                         test_bit(STATUS_FW_ERROR, &priv->status) <<
2605                                 STATUS_FW_ERROR |
2606                         test_bit(STATUS_EXIT_PENDING, &priv->status) <<
2607                                 STATUS_EXIT_PENDING;
2608
2609         iwl3945_hw_txq_ctx_stop(priv);
2610         iwl3945_hw_rxq_stop(priv);
2611
2612         /* Power-down device's busmaster DMA clocks */
2613         iwl_write_prph(priv, APMG_CLK_DIS_REG, APMG_CLK_VAL_DMA_CLK_RQT);
2614         udelay(5);
2615
2616         /* Stop the device, and put it in low power state */
2617         priv->cfg->ops->lib->apm_ops.stop(priv);
2618
2619  exit:
2620         memset(&priv->card_alive, 0, sizeof(struct iwl_alive_resp));
2621
2622         if (priv->ibss_beacon)
2623                 dev_kfree_skb(priv->ibss_beacon);
2624         priv->ibss_beacon = NULL;
2625
2626         /* clear out any free frames */
2627         iwl3945_clear_free_frames(priv);
2628 }
2629
2630 static void iwl3945_down(struct iwl_priv *priv)
2631 {
2632         mutex_lock(&priv->mutex);
2633         __iwl3945_down(priv);
2634         mutex_unlock(&priv->mutex);
2635
2636         iwl3945_cancel_deferred_work(priv);
2637 }
2638
2639 #define MAX_HW_RESTARTS 5
2640
2641 static int __iwl3945_up(struct iwl_priv *priv)
2642 {
2643         int rc, i;
2644
2645         if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
2646                 IWL_WARN(priv, "Exit pending; will not bring the NIC up\n");
2647                 return -EIO;
2648         }
2649
2650         if (!priv->ucode_data_backup.v_addr || !priv->ucode_data.v_addr) {
2651                 IWL_ERR(priv, "ucode not available for device bring up\n");
2652                 return -EIO;
2653         }
2654
2655         /* If platform's RF_KILL switch is NOT set to KILL */
2656         if (iwl_read32(priv, CSR_GP_CNTRL) &
2657                                 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
2658                 clear_bit(STATUS_RF_KILL_HW, &priv->status);
2659         else {
2660                 set_bit(STATUS_RF_KILL_HW, &priv->status);
2661                 IWL_WARN(priv, "Radio disabled by HW RF Kill switch\n");
2662                 return -ENODEV;
2663         }
2664
2665         iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
2666
2667         rc = iwl3945_hw_nic_init(priv);
2668         if (rc) {
2669                 IWL_ERR(priv, "Unable to int nic\n");
2670                 return rc;
2671         }
2672
2673         /* make sure rfkill handshake bits are cleared */
2674         iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
2675         iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR,
2676                     CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
2677
2678         /* clear (again), then enable host interrupts */
2679         iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
2680         iwl_enable_interrupts(priv);
2681
2682         /* really make sure rfkill handshake bits are cleared */
2683         iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
2684         iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
2685
2686         /* Copy original ucode data image from disk into backup cache.
2687          * This will be used to initialize the on-board processor's
2688          * data SRAM for a clean start when the runtime program first loads. */
2689         memcpy(priv->ucode_data_backup.v_addr, priv->ucode_data.v_addr,
2690                priv->ucode_data.len);
2691
2692         /* We return success when we resume from suspend and rf_kill is on. */
2693         if (test_bit(STATUS_RF_KILL_HW, &priv->status))
2694                 return 0;
2695
2696         for (i = 0; i < MAX_HW_RESTARTS; i++) {
2697
2698                 /* load bootstrap state machine,
2699                  * load bootstrap program into processor's memory,
2700                  * prepare to load the "initialize" uCode */
2701                 rc = priv->cfg->ops->lib->load_ucode(priv);
2702
2703                 if (rc) {
2704                         IWL_ERR(priv,
2705                                 "Unable to set up bootstrap uCode: %d\n", rc);
2706                         continue;
2707                 }
2708
2709                 /* start card; "initialize" will load runtime ucode */
2710                 iwl3945_nic_start(priv);
2711
2712                 IWL_DEBUG_INFO(priv, DRV_NAME " is coming up\n");
2713
2714                 return 0;
2715         }
2716
2717         set_bit(STATUS_EXIT_PENDING, &priv->status);
2718         __iwl3945_down(priv);
2719         clear_bit(STATUS_EXIT_PENDING, &priv->status);
2720
2721         /* tried to restart and config the device for as long as our
2722          * patience could withstand */
2723         IWL_ERR(priv, "Unable to initialize device after %d attempts.\n", i);
2724         return -EIO;
2725 }
2726
2727
2728 /*****************************************************************************
2729  *
2730  * Workqueue callbacks
2731  *
2732  *****************************************************************************/
2733
2734 static void iwl3945_bg_init_alive_start(struct work_struct *data)
2735 {
2736         struct iwl_priv *priv =
2737             container_of(data, struct iwl_priv, init_alive_start.work);
2738
2739         if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2740                 return;
2741
2742         mutex_lock(&priv->mutex);
2743         iwl3945_init_alive_start(priv);
2744         mutex_unlock(&priv->mutex);
2745 }
2746
2747 static void iwl3945_bg_alive_start(struct work_struct *data)
2748 {
2749         struct iwl_priv *priv =
2750             container_of(data, struct iwl_priv, alive_start.work);
2751
2752         if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2753                 return;
2754
2755         mutex_lock(&priv->mutex);
2756         iwl3945_alive_start(priv);
2757         mutex_unlock(&priv->mutex);
2758 }
2759
2760 /*
2761  * 3945 cannot interrupt driver when hardware rf kill switch toggles;
2762  * driver must poll CSR_GP_CNTRL_REG register for change.  This register
2763  * *is* readable even when device has been SW_RESET into low power mode
2764  * (e.g. during RF KILL).
2765  */
2766 static void iwl3945_rfkill_poll(struct work_struct *data)
2767 {
2768         struct iwl_priv *priv =
2769             container_of(data, struct iwl_priv, _3945.rfkill_poll.work);
2770         bool old_rfkill = test_bit(STATUS_RF_KILL_HW, &priv->status);
2771         bool new_rfkill = !(iwl_read32(priv, CSR_GP_CNTRL)
2772                         & CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW);
2773
2774         if (new_rfkill != old_rfkill) {
2775                 if (new_rfkill)
2776                         set_bit(STATUS_RF_KILL_HW, &priv->status);
2777                 else
2778                         clear_bit(STATUS_RF_KILL_HW, &priv->status);
2779
2780                 wiphy_rfkill_set_hw_state(priv->hw->wiphy, new_rfkill);
2781
2782                 IWL_DEBUG_RF_KILL(priv, "RF_KILL bit toggled to %s.\n",
2783                                 new_rfkill ? "disable radio" : "enable radio");
2784         }
2785
2786         /* Keep this running, even if radio now enabled.  This will be
2787          * cancelled in mac_start() if system decides to start again */
2788         queue_delayed_work(priv->workqueue, &priv->_3945.rfkill_poll,
2789                            round_jiffies_relative(2 * HZ));
2790
2791 }
2792
2793 #define IWL_SCAN_CHECK_WATCHDOG (7 * HZ)
2794 static void iwl3945_bg_request_scan(struct work_struct *data)
2795 {
2796         struct iwl_priv *priv =
2797             container_of(data, struct iwl_priv, request_scan);
2798         struct iwl_host_cmd cmd = {
2799                 .id = REPLY_SCAN_CMD,
2800                 .len = sizeof(struct iwl3945_scan_cmd),
2801                 .flags = CMD_SIZE_HUGE,
2802         };
2803         struct iwl3945_scan_cmd *scan;
2804         struct ieee80211_conf *conf = NULL;
2805         u8 n_probes = 0;
2806         enum ieee80211_band band;
2807         bool is_active = false;
2808
2809         conf = ieee80211_get_hw_conf(priv->hw);
2810
2811         mutex_lock(&priv->mutex);
2812
2813         cancel_delayed_work(&priv->scan_check);
2814
2815         if (!iwl_is_ready(priv)) {
2816                 IWL_WARN(priv, "request scan called when driver not ready.\n");
2817                 goto done;
2818         }
2819
2820         /* Make sure the scan wasn't canceled before this queued work
2821          * was given the chance to run... */
2822         if (!test_bit(STATUS_SCANNING, &priv->status))
2823                 goto done;
2824
2825         /* This should never be called or scheduled if there is currently
2826          * a scan active in the hardware. */
2827         if (test_bit(STATUS_SCAN_HW, &priv->status)) {
2828                 IWL_DEBUG_INFO(priv, "Multiple concurrent scan requests  "
2829                                 "Ignoring second request.\n");
2830                 goto done;
2831         }
2832
2833         if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
2834                 IWL_DEBUG_SCAN(priv, "Aborting scan due to device shutdown\n");
2835                 goto done;
2836         }
2837
2838         if (test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
2839                 IWL_DEBUG_HC(priv,
2840                         "Scan request while abort pending. Queuing.\n");
2841                 goto done;
2842         }
2843
2844         if (iwl_is_rfkill(priv)) {
2845                 IWL_DEBUG_HC(priv, "Aborting scan due to RF Kill activation\n");
2846                 goto done;
2847         }
2848
2849         if (!test_bit(STATUS_READY, &priv->status)) {
2850                 IWL_DEBUG_HC(priv,
2851                         "Scan request while uninitialized. Queuing.\n");
2852                 goto done;
2853         }
2854
2855         if (!priv->scan_cmd) {
2856                 priv->scan_cmd = kmalloc(sizeof(struct iwl3945_scan_cmd) +
2857                                          IWL_MAX_SCAN_SIZE, GFP_KERNEL);
2858                 if (!priv->scan_cmd) {
2859                         IWL_DEBUG_SCAN(priv, "Fail to allocate scan memory\n");
2860                         goto done;
2861                 }
2862         }
2863         scan = priv->scan_cmd;
2864         memset(scan, 0, sizeof(struct iwl3945_scan_cmd) + IWL_MAX_SCAN_SIZE);
2865
2866         scan->quiet_plcp_th = IWL_PLCP_QUIET_THRESH;
2867         scan->quiet_time = IWL_ACTIVE_QUIET_TIME;
2868
2869         if (iwl_is_associated(priv)) {
2870                 u16 interval = 0;
2871                 u32 extra;
2872                 u32 suspend_time = 100;
2873                 u32 scan_suspend_time = 100;
2874                 unsigned long flags;
2875
2876                 IWL_DEBUG_INFO(priv, "Scanning while associated...\n");
2877
2878                 spin_lock_irqsave(&priv->lock, flags);
2879                 interval = priv->beacon_int;
2880                 spin_unlock_irqrestore(&priv->lock, flags);
2881
2882                 scan->suspend_time = 0;
2883                 scan->max_out_time = cpu_to_le32(200 * 1024);
2884                 if (!interval)
2885                         interval = suspend_time;
2886                 /*
2887                  * suspend time format:
2888                  *  0-19: beacon interval in usec (time before exec.)
2889                  * 20-23: 0
2890                  * 24-31: number of beacons (suspend between channels)
2891                  */
2892
2893                 extra = (suspend_time / interval) << 24;
2894                 scan_suspend_time = 0xFF0FFFFF &
2895                     (extra | ((suspend_time % interval) * 1024));
2896
2897                 scan->suspend_time = cpu_to_le32(scan_suspend_time);
2898                 IWL_DEBUG_SCAN(priv, "suspend_time 0x%X beacon interval %d\n",
2899                                scan_suspend_time, interval);
2900         }
2901
2902         if (priv->is_internal_short_scan) {
2903                 IWL_DEBUG_SCAN(priv, "Start internal passive scan.\n");
2904         } else if (priv->scan_request->n_ssids) {
2905                 int i, p = 0;
2906                 IWL_DEBUG_SCAN(priv, "Kicking off active scan\n");
2907                 for (i = 0; i < priv->scan_request->n_ssids; i++) {
2908                         /* always does wildcard anyway */
2909                         if (!priv->scan_request->ssids[i].ssid_len)
2910                                 continue;
2911                         scan->direct_scan[p].id = WLAN_EID_SSID;
2912                         scan->direct_scan[p].len =
2913                                 priv->scan_request->ssids[i].ssid_len;
2914                         memcpy(scan->direct_scan[p].ssid,
2915                                priv->scan_request->ssids[i].ssid,
2916                                priv->scan_request->ssids[i].ssid_len);
2917                         n_probes++;
2918                         p++;
2919                 }
2920                 is_active = true;
2921         } else
2922                 IWL_DEBUG_SCAN(priv, "Kicking off passive scan.\n");
2923
2924         /* We don't build a direct scan probe request; the uCode will do
2925          * that based on the direct_mask added to each channel entry */
2926         scan->tx_cmd.tx_flags = TX_CMD_FLG_SEQ_CTL_MSK;
2927         scan->tx_cmd.sta_id = priv->hw_params.bcast_sta_id;
2928         scan->tx_cmd.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
2929
2930         /* flags + rate selection */
2931
2932         switch (priv->scan_band) {
2933         case IEEE80211_BAND_2GHZ:
2934                 scan->flags = RXON_FLG_BAND_24G_MSK | RXON_FLG_AUTO_DETECT_MSK;
2935                 scan->tx_cmd.rate = IWL_RATE_1M_PLCP;
2936                 scan->good_CRC_th = 0;
2937                 band = IEEE80211_BAND_2GHZ;
2938                 break;
2939         case IEEE80211_BAND_5GHZ:
2940                 scan->tx_cmd.rate = IWL_RATE_6M_PLCP;
2941                 /*
2942                  * If active scaning is requested but a certain channel
2943                  * is marked passive, we can do active scanning if we
2944                  * detect transmissions.
2945                  */
2946                 scan->good_CRC_th = is_active ? IWL_GOOD_CRC_TH : 0;
2947                 band = IEEE80211_BAND_5GHZ;
2948                 break;
2949         default:
2950                 IWL_WARN(priv, "Invalid scan band\n");
2951                 goto done;
2952         }
2953
2954         if (!priv->is_internal_short_scan) {
2955                 scan->tx_cmd.len = cpu_to_le16(
2956                         iwl_fill_probe_req(priv,
2957                                 (struct ieee80211_mgmt *)scan->data,
2958                                 priv->scan_request->ie,
2959                                 priv->scan_request->ie_len,
2960                                 IWL_MAX_SCAN_SIZE - sizeof(*scan)));
2961         } else {
2962                 scan->tx_cmd.len = cpu_to_le16(
2963                         iwl_fill_probe_req(priv,
2964                                 (struct ieee80211_mgmt *)scan->data,
2965                                 NULL, 0,
2966                                 IWL_MAX_SCAN_SIZE - sizeof(*scan)));
2967         }
2968         /* select Rx antennas */
2969         scan->flags |= iwl3945_get_antenna_flags(priv);
2970
2971         if (iwl_is_monitor_mode(priv))
2972                 scan->filter_flags = RXON_FILTER_PROMISC_MSK;
2973
2974         scan->channel_count =
2975                 iwl3945_get_channels_for_scan(priv, band, is_active, n_probes,
2976                         (void *)&scan->data[le16_to_cpu(scan->tx_cmd.len)]);
2977
2978         if (scan->channel_count == 0) {
2979                 IWL_DEBUG_SCAN(priv, "channel count %d\n", scan->channel_count);
2980                 goto done;
2981         }
2982
2983         cmd.len += le16_to_cpu(scan->tx_cmd.len) +
2984             scan->channel_count * sizeof(struct iwl3945_scan_channel);
2985         cmd.data = scan;
2986         scan->len = cpu_to_le16(cmd.len);
2987
2988         set_bit(STATUS_SCAN_HW, &priv->status);
2989         if (iwl_send_cmd_sync(priv, &cmd))
2990                 goto done;
2991
2992         queue_delayed_work(priv->workqueue, &priv->scan_check,
2993                            IWL_SCAN_CHECK_WATCHDOG);
2994
2995         mutex_unlock(&priv->mutex);
2996         return;
2997
2998  done:
2999         /* can not perform scan make sure we clear scanning
3000          * bits from status so next scan request can be performed.
3001          * if we dont clear scanning status bit here all next scan
3002          * will fail
3003         */
3004         clear_bit(STATUS_SCAN_HW, &priv->status);
3005         clear_bit(STATUS_SCANNING, &priv->status);
3006
3007         /* inform mac80211 scan aborted */
3008         queue_work(priv->workqueue, &priv->scan_completed);
3009         mutex_unlock(&priv->mutex);
3010 }
3011
3012 static void iwl3945_bg_restart(struct work_struct *data)
3013 {
3014         struct iwl_priv *priv = container_of(data, struct iwl_priv, restart);
3015
3016         if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3017                 return;
3018
3019         if (test_and_clear_bit(STATUS_FW_ERROR, &priv->status)) {
3020                 mutex_lock(&priv->mutex);
3021                 priv->vif = NULL;
3022                 priv->is_open = 0;
3023                 mutex_unlock(&priv->mutex);
3024                 iwl3945_down(priv);
3025                 ieee80211_restart_hw(priv->hw);
3026         } else {
3027                 iwl3945_down(priv);
3028
3029                 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3030                         return;
3031
3032                 mutex_lock(&priv->mutex);
3033                 __iwl3945_up(priv);
3034                 mutex_unlock(&priv->mutex);
3035         }
3036 }
3037
3038 static void iwl3945_bg_rx_replenish(struct work_struct *data)
3039 {
3040         struct iwl_priv *priv =
3041             container_of(data, struct iwl_priv, rx_replenish);
3042
3043         if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3044                 return;
3045
3046         mutex_lock(&priv->mutex);
3047         iwl3945_rx_replenish(priv);
3048         mutex_unlock(&priv->mutex);
3049 }
3050
3051 void iwl3945_post_associate(struct iwl_priv *priv)
3052 {
3053         int rc = 0;
3054         struct ieee80211_conf *conf = NULL;
3055
3056         if (priv->iw_mode == NL80211_IFTYPE_AP) {
3057                 IWL_ERR(priv, "%s Should not be called in AP mode\n", __func__);
3058                 return;
3059         }
3060
3061
3062         IWL_DEBUG_ASSOC(priv, "Associated as %d to: %pM\n",
3063                         priv->assoc_id, priv->active_rxon.bssid_addr);
3064
3065         if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3066                 return;
3067
3068         if (!priv->vif || !priv->is_open)
3069                 return;
3070
3071         iwl_scan_cancel_timeout(priv, 200);
3072
3073         conf = ieee80211_get_hw_conf(priv->hw);
3074
3075         priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
3076         iwlcore_commit_rxon(priv);
3077
3078         memset(&priv->rxon_timing, 0, sizeof(struct iwl_rxon_time_cmd));
3079         iwl_setup_rxon_timing(priv);
3080         rc = iwl_send_cmd_pdu(priv, REPLY_RXON_TIMING,
3081                               sizeof(priv->rxon_timing), &priv->rxon_timing);
3082         if (rc)
3083                 IWL_WARN(priv, "REPLY_RXON_TIMING failed - "
3084                             "Attempting to continue.\n");
3085
3086         priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
3087
3088         priv->staging_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
3089
3090         IWL_DEBUG_ASSOC(priv, "assoc id %d beacon interval %d\n",
3091                         priv->assoc_id, priv->beacon_int);
3092
3093         if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
3094                 priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
3095         else
3096                 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
3097
3098         if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) {
3099                 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_SLOT_TIME)
3100                         priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
3101                 else
3102                         priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
3103
3104                 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
3105                         priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
3106
3107         }
3108
3109         iwlcore_commit_rxon(priv);
3110
3111         switch (priv->iw_mode) {
3112         case NL80211_IFTYPE_STATION:
3113                 iwl3945_rate_scale_init(priv->hw, IWL_AP_ID);
3114                 break;
3115
3116         case NL80211_IFTYPE_ADHOC:
3117
3118                 priv->assoc_id = 1;
3119                 iwl_add_local_station(priv, priv->bssid, false);
3120                 iwl3945_sync_sta(priv, IWL_STA_ID,
3121                                 (priv->band == IEEE80211_BAND_5GHZ) ?
3122                                 IWL_RATE_6M_PLCP : IWL_RATE_1M_PLCP,
3123                                  CMD_ASYNC);
3124                 iwl3945_rate_scale_init(priv->hw, IWL_STA_ID);
3125
3126                 iwl3945_send_beacon_cmd(priv);
3127
3128                 break;
3129
3130         default:
3131                  IWL_ERR(priv, "%s Should not be called in %d mode\n",
3132                            __func__, priv->iw_mode);
3133                 break;
3134         }
3135 }
3136
3137 /*****************************************************************************
3138  *
3139  * mac80211 entry point functions
3140  *
3141  *****************************************************************************/
3142
3143 #define UCODE_READY_TIMEOUT     (2 * HZ)
3144
3145 static int iwl3945_mac_start(struct ieee80211_hw *hw)
3146 {
3147         struct iwl_priv *priv = hw->priv;
3148         int ret;
3149
3150         IWL_DEBUG_MAC80211(priv, "enter\n");
3151
3152         /* we should be verifying the device is ready to be opened */
3153         mutex_lock(&priv->mutex);
3154
3155         /* fetch ucode file from disk, alloc and copy to bus-master buffers ...
3156          * ucode filename and max sizes are card-specific. */
3157
3158         if (!priv->ucode_code.len) {
3159                 ret = iwl3945_read_ucode(priv);
3160                 if (ret) {
3161                         IWL_ERR(priv, "Could not read microcode: %d\n", ret);
3162                         mutex_unlock(&priv->mutex);
3163                         goto out_release_irq;
3164                 }
3165         }
3166
3167         ret = __iwl3945_up(priv);
3168
3169         mutex_unlock(&priv->mutex);
3170
3171         if (ret)
3172                 goto out_release_irq;
3173
3174         IWL_DEBUG_INFO(priv, "Start UP work.\n");
3175
3176         /* Wait for START_ALIVE from ucode. Otherwise callbacks from
3177          * mac80211 will not be run successfully. */
3178         ret = wait_event_interruptible_timeout(priv->wait_command_queue,
3179                         test_bit(STATUS_READY, &priv->status),
3180                         UCODE_READY_TIMEOUT);
3181         if (!ret) {
3182                 if (!test_bit(STATUS_READY, &priv->status)) {
3183                         IWL_ERR(priv,
3184                                 "Wait for START_ALIVE timeout after %dms.\n",
3185                                 jiffies_to_msecs(UCODE_READY_TIMEOUT));
3186                         ret = -ETIMEDOUT;
3187                         goto out_release_irq;
3188                 }
3189         }
3190
3191         /* ucode is running and will send rfkill notifications,
3192          * no need to poll the killswitch state anymore */
3193         cancel_delayed_work(&priv->_3945.rfkill_poll);
3194
3195         iwl_led_start(priv);
3196
3197         priv->is_open = 1;
3198         IWL_DEBUG_MAC80211(priv, "leave\n");
3199         return 0;
3200
3201 out_release_irq:
3202         priv->is_open = 0;
3203         IWL_DEBUG_MAC80211(priv, "leave - failed\n");
3204         return ret;
3205 }
3206
3207 static void iwl3945_mac_stop(struct ieee80211_hw *hw)
3208 {
3209         struct iwl_priv *priv = hw->priv;
3210
3211         IWL_DEBUG_MAC80211(priv, "enter\n");
3212
3213         if (!priv->is_open) {
3214                 IWL_DEBUG_MAC80211(priv, "leave - skip\n");
3215                 return;
3216         }
3217
3218         priv->is_open = 0;
3219
3220         if (iwl_is_ready_rf(priv)) {
3221                 /* stop mac, cancel any scan request and clear
3222                  * RXON_FILTER_ASSOC_MSK BIT
3223                  */
3224                 mutex_lock(&priv->mutex);
3225                 iwl_scan_cancel_timeout(priv, 100);
3226                 mutex_unlock(&priv->mutex);
3227         }
3228
3229         iwl3945_down(priv);
3230
3231         flush_workqueue(priv->workqueue);
3232
3233         /* start polling the killswitch state again */
3234         queue_delayed_work(priv->workqueue, &priv->_3945.rfkill_poll,
3235                            round_jiffies_relative(2 * HZ));
3236
3237         IWL_DEBUG_MAC80211(priv, "leave\n");
3238 }
3239
3240 static int iwl3945_mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
3241 {
3242         struct iwl_priv *priv = hw->priv;
3243
3244         IWL_DEBUG_MAC80211(priv, "enter\n");
3245
3246         IWL_DEBUG_TX(priv, "dev->xmit(%d bytes) at rate 0x%02x\n", skb->len,
3247                      ieee80211_get_tx_rate(hw, IEEE80211_SKB_CB(skb))->bitrate);
3248
3249         if (iwl3945_tx_skb(priv, skb))
3250                 dev_kfree_skb_any(skb);
3251
3252         IWL_DEBUG_MAC80211(priv, "leave\n");
3253         return NETDEV_TX_OK;
3254 }
3255
3256 void iwl3945_config_ap(struct iwl_priv *priv)
3257 {
3258         int rc = 0;
3259
3260         if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3261                 return;
3262
3263         /* The following should be done only at AP bring up */
3264         if (!(iwl_is_associated(priv))) {
3265
3266                 /* RXON - unassoc (to set timing command) */
3267                 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
3268                 iwlcore_commit_rxon(priv);
3269
3270                 /* RXON Timing */
3271                 memset(&priv->rxon_timing, 0, sizeof(struct iwl_rxon_time_cmd));
3272                 iwl_setup_rxon_timing(priv);
3273                 rc = iwl_send_cmd_pdu(priv, REPLY_RXON_TIMING,
3274                                       sizeof(priv->rxon_timing),
3275                                       &priv->rxon_timing);
3276                 if (rc)
3277                         IWL_WARN(priv, "REPLY_RXON_TIMING failed - "
3278                                         "Attempting to continue.\n");
3279
3280                 /* FIXME: what should be the assoc_id for AP? */
3281                 priv->staging_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
3282                 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
3283                         priv->staging_rxon.flags |=
3284                                 RXON_FLG_SHORT_PREAMBLE_MSK;
3285                 else
3286                         priv->staging_rxon.flags &=
3287                                 ~RXON_FLG_SHORT_PREAMBLE_MSK;
3288
3289                 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) {
3290                         if (priv->assoc_capability &
3291                                 WLAN_CAPABILITY_SHORT_SLOT_TIME)
3292                                 priv->staging_rxon.flags |=
3293                                         RXON_FLG_SHORT_SLOT_MSK;
3294                         else
3295                                 priv->staging_rxon.flags &=
3296                                         ~RXON_FLG_SHORT_SLOT_MSK;
3297
3298                         if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
3299                                 priv->staging_rxon.flags &=
3300                                         ~RXON_FLG_SHORT_SLOT_MSK;
3301                 }
3302                 /* restore RXON assoc */
3303                 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
3304                 iwlcore_commit_rxon(priv);
3305                 iwl_add_local_station(priv, iwl_bcast_addr, false);
3306         }
3307         iwl3945_send_beacon_cmd(priv);
3308
3309         /* FIXME - we need to add code here to detect a totally new
3310          * configuration, reset the AP, unassoc, rxon timing, assoc,
3311          * clear sta table, add BCAST sta... */
3312 }
3313
3314 static int iwl3945_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
3315                                struct ieee80211_vif *vif,
3316                                struct ieee80211_sta *sta,
3317                                struct ieee80211_key_conf *key)
3318 {
3319         struct iwl_priv *priv = hw->priv;
3320         const u8 *addr;
3321         int ret = 0;
3322         u8 sta_id = IWL_INVALID_STATION;
3323         u8 static_key;
3324
3325         IWL_DEBUG_MAC80211(priv, "enter\n");
3326
3327         if (iwl3945_mod_params.sw_crypto) {
3328                 IWL_DEBUG_MAC80211(priv, "leave - hwcrypto disabled\n");
3329                 return -EOPNOTSUPP;
3330         }
3331
3332         addr = sta ? sta->addr : iwl_bcast_addr;
3333         static_key = !iwl_is_associated(priv);
3334
3335         if (!static_key) {
3336                 sta_id = iwl_find_station(priv, addr);
3337                 if (sta_id == IWL_INVALID_STATION) {
3338                         IWL_DEBUG_MAC80211(priv, "leave - %pM not in station map.\n",
3339                                             addr);
3340                         return -EINVAL;
3341                 }
3342         }
3343
3344         mutex_lock(&priv->mutex);
3345         iwl_scan_cancel_timeout(priv, 100);
3346
3347         switch (cmd) {
3348         case SET_KEY:
3349                 if (static_key)
3350                         ret = iwl3945_set_static_key(priv, key);
3351                 else
3352                         ret = iwl3945_set_dynamic_key(priv, key, sta_id);
3353                 IWL_DEBUG_MAC80211(priv, "enable hwcrypto key\n");
3354                 break;
3355         case DISABLE_KEY:
3356                 if (static_key)
3357                         ret = iwl3945_remove_static_key(priv);
3358                 else
3359                         ret = iwl3945_clear_sta_key_info(priv, sta_id);
3360                 IWL_DEBUG_MAC80211(priv, "disable hwcrypto key\n");
3361                 break;
3362         default:
3363                 ret = -EINVAL;
3364         }
3365
3366         mutex_unlock(&priv->mutex);
3367         IWL_DEBUG_MAC80211(priv, "leave\n");
3368
3369         return ret;
3370 }
3371
3372 static int iwl3945_mac_sta_add(struct ieee80211_hw *hw,
3373                                struct ieee80211_vif *vif,
3374                                struct ieee80211_sta *sta)
3375 {
3376         struct iwl_priv *priv = hw->priv;
3377         int ret;
3378         bool is_ap = priv->iw_mode == NL80211_IFTYPE_STATION;
3379         u8 sta_id;
3380
3381         IWL_DEBUG_INFO(priv, "received request to add station %pM\n",
3382                         sta->addr);
3383
3384         ret = iwl_add_station_common(priv, sta->addr, is_ap, &sta->ht_cap,
3385                                      &sta_id);
3386         if (ret) {
3387                 IWL_ERR(priv, "Unable to add station %pM (%d)\n",
3388                         sta->addr, ret);
3389                 /* Should we return success if return code is EEXIST ? */
3390                 return ret;
3391         }
3392
3393         /* Initialize rate scaling */
3394         IWL_DEBUG_INFO(priv, "Initializing rate scaling for station %pM\n",
3395                        sta->addr);
3396         iwl3945_rs_rate_init(priv, sta, sta_id);
3397
3398         return 0;
3399
3400
3401
3402         return ret;
3403 }
3404 /*****************************************************************************
3405  *
3406  * sysfs attributes
3407  *
3408  *****************************************************************************/
3409
3410 #ifdef CONFIG_IWLWIFI_DEBUG
3411
3412 /*
3413  * The following adds a new attribute to the sysfs representation
3414  * of this device driver (i.e. a new file in /sys/bus/pci/drivers/iwl/)
3415  * used for controlling the debug level.
3416  *
3417  * See the level definitions in iwl for details.
3418  *
3419  * The debug_level being managed using sysfs below is a per device debug
3420  * level that is used instead of the global debug level if it (the per
3421  * device debug level) is set.
3422  */
3423 static ssize_t show_debug_level(struct device *d,
3424                                 struct device_attribute *attr, char *buf)
3425 {
3426         struct iwl_priv *priv = dev_get_drvdata(d);
3427         return sprintf(buf, "0x%08X\n", iwl_get_debug_level(priv));
3428 }
3429 static ssize_t store_debug_level(struct device *d,
3430                                 struct device_attribute *attr,
3431                                  const char *buf, size_t count)
3432 {
3433         struct iwl_priv *priv = dev_get_drvdata(d);
3434         unsigned long val;
3435         int ret;
3436
3437         ret = strict_strtoul(buf, 0, &val);
3438         if (ret)
3439                 IWL_INFO(priv, "%s is not in hex or decimal form.\n", buf);
3440         else {
3441                 priv->debug_level = val;
3442                 if (iwl_alloc_traffic_mem(priv))
3443                         IWL_ERR(priv,
3444                                 "Not enough memory to generate traffic log\n");
3445         }
3446         return strnlen(buf, count);
3447 }
3448
3449 static DEVICE_ATTR(debug_level, S_IWUSR | S_IRUGO,
3450                         show_debug_level, store_debug_level);
3451
3452 #endif /* CONFIG_IWLWIFI_DEBUG */
3453
3454 static ssize_t show_temperature(struct device *d,
3455                                 struct device_attribute *attr, char *buf)
3456 {
3457         struct iwl_priv *priv = dev_get_drvdata(d);
3458
3459         if (!iwl_is_alive(priv))
3460                 return -EAGAIN;
3461
3462         return sprintf(buf, "%d\n", iwl3945_hw_get_temperature(priv));
3463 }
3464
3465 static DEVICE_ATTR(temperature, S_IRUGO, show_temperature, NULL);
3466
3467 static ssize_t show_tx_power(struct device *d,
3468                              struct device_attribute *attr, char *buf)
3469 {
3470         struct iwl_priv *priv = dev_get_drvdata(d);
3471         return sprintf(buf, "%d\n", priv->tx_power_user_lmt);
3472 }
3473
3474 static ssize_t store_tx_power(struct device *d,
3475                               struct device_attribute *attr,
3476                               const char *buf, size_t count)
3477 {
3478         struct iwl_priv *priv = dev_get_drvdata(d);
3479         char *p = (char *)buf;
3480         u32 val;
3481
3482         val = simple_strtoul(p, &p, 10);
3483         if (p == buf)
3484                 IWL_INFO(priv, ": %s is not in decimal form.\n", buf);
3485         else
3486                 iwl3945_hw_reg_set_txpower(priv, val);
3487
3488         return count;
3489 }
3490
3491 static DEVICE_ATTR(tx_power, S_IWUSR | S_IRUGO, show_tx_power, store_tx_power);
3492
3493 static ssize_t show_flags(struct device *d,
3494                           struct device_attribute *attr, char *buf)
3495 {
3496         struct iwl_priv *priv = dev_get_drvdata(d);
3497
3498         return sprintf(buf, "0x%04X\n", priv->active_rxon.flags);
3499 }
3500
3501 static ssize_t store_flags(struct device *d,
3502                            struct device_attribute *attr,
3503                            const char *buf, size_t count)
3504 {
3505         struct iwl_priv *priv = dev_get_drvdata(d);
3506         u32 flags = simple_strtoul(buf, NULL, 0);
3507
3508         mutex_lock(&priv->mutex);
3509         if (le32_to_cpu(priv->staging_rxon.flags) != flags) {
3510                 /* Cancel any currently running scans... */
3511                 if (iwl_scan_cancel_timeout(priv, 100))
3512                         IWL_WARN(priv, "Could not cancel scan.\n");
3513                 else {
3514                         IWL_DEBUG_INFO(priv, "Committing rxon.flags = 0x%04X\n",
3515                                        flags);
3516                         priv->staging_rxon.flags = cpu_to_le32(flags);
3517                         iwlcore_commit_rxon(priv);
3518                 }
3519         }
3520         mutex_unlock(&priv->mutex);
3521
3522         return count;
3523 }
3524
3525 static DEVICE_ATTR(flags, S_IWUSR | S_IRUGO, show_flags, store_flags);
3526
3527 static ssize_t show_filter_flags(struct device *d,
3528                                  struct device_attribute *attr, char *buf)
3529 {
3530         struct iwl_priv *priv = dev_get_drvdata(d);
3531
3532         return sprintf(buf, "0x%04X\n",
3533                 le32_to_cpu(priv->active_rxon.filter_flags));
3534 }
3535
3536 static ssize_t store_filter_flags(struct device *d,
3537                                   struct device_attribute *attr,
3538                                   const char *buf, size_t count)
3539 {
3540         struct iwl_priv *priv = dev_get_drvdata(d);
3541         u32 filter_flags = simple_strtoul(buf, NULL, 0);
3542
3543         mutex_lock(&priv->mutex);
3544         if (le32_to_cpu(priv->staging_rxon.filter_flags) != filter_flags) {
3545                 /* Cancel any currently running scans... */
3546                 if (iwl_scan_cancel_timeout(priv, 100))
3547                         IWL_WARN(priv, "Could not cancel scan.\n");
3548                 else {
3549                         IWL_DEBUG_INFO(priv, "Committing rxon.filter_flags = "
3550                                        "0x%04X\n", filter_flags);
3551                         priv->staging_rxon.filter_flags =
3552                                 cpu_to_le32(filter_flags);
3553                         iwlcore_commit_rxon(priv);
3554                 }
3555         }
3556         mutex_unlock(&priv->mutex);
3557
3558         return count;
3559 }
3560
3561 static DEVICE_ATTR(filter_flags, S_IWUSR | S_IRUGO, show_filter_flags,
3562                    store_filter_flags);
3563
3564 static ssize_t show_measurement(struct device *d,
3565                                 struct device_attribute *attr, char *buf)
3566 {
3567         struct iwl_priv *priv = dev_get_drvdata(d);
3568         struct iwl_spectrum_notification measure_report;
3569         u32 size = sizeof(measure_report), len = 0, ofs = 0;
3570         u8 *data = (u8 *)&measure_report;
3571         unsigned long flags;
3572
3573         spin_lock_irqsave(&priv->lock, flags);
3574         if (!(priv->measurement_status & MEASUREMENT_READY)) {
3575                 spin_unlock_irqrestore(&priv->lock, flags);
3576                 return 0;
3577         }
3578         memcpy(&measure_report, &priv->measure_report, size);
3579         priv->measurement_status = 0;
3580         spin_unlock_irqrestore(&priv->lock, flags);
3581
3582         while (size && (PAGE_SIZE - len)) {
3583                 hex_dump_to_buffer(data + ofs, size, 16, 1, buf + len,
3584                                    PAGE_SIZE - len, 1);
3585                 len = strlen(buf);
3586                 if (PAGE_SIZE - len)
3587                         buf[len++] = '\n';
3588
3589                 ofs += 16;
3590                 size -= min(size, 16U);
3591         }
3592
3593         return len;
3594 }
3595
3596 static ssize_t store_measurement(struct device *d,
3597                                  struct device_attribute *attr,
3598                                  const char *buf, size_t count)
3599 {
3600         struct iwl_priv *priv = dev_get_drvdata(d);
3601         struct ieee80211_measurement_params params = {
3602                 .channel = le16_to_cpu(priv->active_rxon.channel),
3603                 .start_time = cpu_to_le64(priv->_3945.last_tsf),
3604                 .duration = cpu_to_le16(1),
3605         };
3606         u8 type = IWL_MEASURE_BASIC;
3607         u8 buffer[32];
3608         u8 channel;
3609
3610         if (count) {
3611                 char *p = buffer;
3612                 strncpy(buffer, buf, min(sizeof(buffer), count));
3613                 channel = simple_strtoul(p, NULL, 0);
3614                 if (channel)
3615                         params.channel = channel;
3616
3617                 p = buffer;
3618                 while (*p && *p != ' ')
3619                         p++;
3620                 if (*p)
3621                         type = simple_strtoul(p + 1, NULL, 0);
3622         }
3623
3624         IWL_DEBUG_INFO(priv, "Invoking measurement of type %d on "
3625                        "channel %d (for '%s')\n", type, params.channel, buf);
3626         iwl3945_get_measurement(priv, &params, type);
3627
3628         return count;
3629 }
3630
3631 static DEVICE_ATTR(measurement, S_IRUSR | S_IWUSR,
3632                    show_measurement, store_measurement);
3633
3634 static ssize_t store_retry_rate(struct device *d,
3635                                 struct device_attribute *attr,
3636                                 const char *buf, size_t count)
3637 {
3638         struct iwl_priv *priv = dev_get_drvdata(d);
3639
3640         priv->retry_rate = simple_strtoul(buf, NULL, 0);
3641         if (priv->retry_rate <= 0)
3642                 priv->retry_rate = 1;
3643
3644         return count;
3645 }
3646
3647 static ssize_t show_retry_rate(struct device *d,
3648                                struct device_attribute *attr, char *buf)
3649 {
3650         struct iwl_priv *priv = dev_get_drvdata(d);
3651         return sprintf(buf, "%d", priv->retry_rate);
3652 }
3653
3654 static DEVICE_ATTR(retry_rate, S_IWUSR | S_IRUSR, show_retry_rate,
3655                    store_retry_rate);
3656
3657
3658 static ssize_t show_channels(struct device *d,
3659                              struct device_attribute *attr, char *buf)
3660 {
3661         /* all this shit doesn't belong into sysfs anyway */
3662         return 0;
3663 }
3664
3665 static DEVICE_ATTR(channels, S_IRUSR, show_channels, NULL);
3666
3667 static ssize_t show_statistics(struct device *d,
3668                                struct device_attribute *attr, char *buf)
3669 {
3670         struct iwl_priv *priv = dev_get_drvdata(d);
3671         u32 size = sizeof(struct iwl3945_notif_statistics);
3672         u32 len = 0, ofs = 0;
3673         u8 *data = (u8 *)&priv->_3945.statistics;
3674         int rc = 0;
3675
3676         if (!iwl_is_alive(priv))
3677                 return -EAGAIN;
3678
3679         mutex_lock(&priv->mutex);
3680         rc = iwl_send_statistics_request(priv, CMD_SYNC, false);
3681         mutex_unlock(&priv->mutex);
3682
3683         if (rc) {
3684                 len = sprintf(buf,
3685                               "Error sending statistics request: 0x%08X\n", rc);
3686                 return len;
3687         }
3688
3689         while (size && (PAGE_SIZE - len)) {
3690                 hex_dump_to_buffer(data + ofs, size, 16, 1, buf + len,
3691                                    PAGE_SIZE - len, 1);
3692                 len = strlen(buf);
3693                 if (PAGE_SIZE - len)
3694                         buf[len++] = '\n';
3695
3696                 ofs += 16;
3697                 size -= min(size, 16U);
3698         }
3699
3700         return len;
3701 }
3702
3703 static DEVICE_ATTR(statistics, S_IRUGO, show_statistics, NULL);
3704
3705 static ssize_t show_antenna(struct device *d,
3706                             struct device_attribute *attr, char *buf)
3707 {
3708         struct iwl_priv *priv = dev_get_drvdata(d);
3709
3710         if (!iwl_is_alive(priv))
3711                 return -EAGAIN;
3712
3713         return sprintf(buf, "%d\n", iwl3945_mod_params.antenna);
3714 }
3715
3716 static ssize_t store_antenna(struct device *d,
3717                              struct device_attribute *attr,
3718                              const char *buf, size_t count)
3719 {
3720         struct iwl_priv *priv __maybe_unused = dev_get_drvdata(d);
3721         int ant;
3722
3723         if (count == 0)
3724                 return 0;
3725
3726         if (sscanf(buf, "%1i", &ant) != 1) {
3727                 IWL_DEBUG_INFO(priv, "not in hex or decimal form.\n");
3728                 return count;
3729         }
3730
3731         if ((ant >= 0) && (ant <= 2)) {
3732                 IWL_DEBUG_INFO(priv, "Setting antenna select to %d.\n", ant);
3733                 iwl3945_mod_params.antenna = (enum iwl3945_antenna)ant;
3734         } else
3735                 IWL_DEBUG_INFO(priv, "Bad antenna select value %d.\n", ant);
3736
3737
3738         return count;
3739 }
3740
3741 static DEVICE_ATTR(antenna, S_IWUSR | S_IRUGO, show_antenna, store_antenna);
3742
3743 static ssize_t show_status(struct device *d,
3744                            struct device_attribute *attr, char *buf)
3745 {
3746         struct iwl_priv *priv = dev_get_drvdata(d);
3747         if (!iwl_is_alive(priv))
3748                 return -EAGAIN;
3749         return sprintf(buf, "0x%08x\n", (int)priv->status);
3750 }
3751
3752 static DEVICE_ATTR(status, S_IRUGO, show_status, NULL);
3753
3754 static ssize_t dump_error_log(struct device *d,
3755                               struct device_attribute *attr,
3756                               const char *buf, size_t count)
3757 {
3758         struct iwl_priv *priv = dev_get_drvdata(d);
3759         char *p = (char *)buf;
3760
3761         if (p[0] == '1')
3762                 iwl3945_dump_nic_error_log(priv);
3763
3764         return strnlen(buf, count);
3765 }
3766
3767 static DEVICE_ATTR(dump_errors, S_IWUSR, NULL, dump_error_log);
3768
3769 /*****************************************************************************
3770  *
3771  * driver setup and tear down
3772  *
3773  *****************************************************************************/
3774
3775 static void iwl3945_setup_deferred_work(struct iwl_priv *priv)
3776 {
3777         priv->workqueue = create_singlethread_workqueue(DRV_NAME);
3778
3779         init_waitqueue_head(&priv->wait_command_queue);
3780
3781         INIT_WORK(&priv->restart, iwl3945_bg_restart);
3782         INIT_WORK(&priv->rx_replenish, iwl3945_bg_rx_replenish);
3783         INIT_WORK(&priv->beacon_update, iwl3945_bg_beacon_update);
3784         INIT_DELAYED_WORK(&priv->init_alive_start, iwl3945_bg_init_alive_start);
3785         INIT_DELAYED_WORK(&priv->alive_start, iwl3945_bg_alive_start);
3786         INIT_DELAYED_WORK(&priv->_3945.rfkill_poll, iwl3945_rfkill_poll);
3787         INIT_WORK(&priv->scan_completed, iwl_bg_scan_completed);
3788         INIT_WORK(&priv->request_scan, iwl3945_bg_request_scan);
3789         INIT_WORK(&priv->abort_scan, iwl_bg_abort_scan);
3790         INIT_DELAYED_WORK(&priv->scan_check, iwl_bg_scan_check);
3791
3792         iwl3945_hw_setup_deferred_work(priv);
3793
3794         if (priv->cfg->ops->lib->recover_from_tx_stall) {
3795                 init_timer(&priv->monitor_recover);
3796                 priv->monitor_recover.data = (unsigned long)priv;
3797                 priv->monitor_recover.function =
3798                         priv->cfg->ops->lib->recover_from_tx_stall;
3799         }
3800
3801         tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
3802                      iwl3945_irq_tasklet, (unsigned long)priv);
3803 }
3804
3805 static void iwl3945_cancel_deferred_work(struct iwl_priv *priv)
3806 {
3807         iwl3945_hw_cancel_deferred_work(priv);
3808
3809         cancel_delayed_work_sync(&priv->init_alive_start);
3810         cancel_delayed_work(&priv->scan_check);
3811         cancel_delayed_work(&priv->alive_start);
3812         cancel_work_sync(&priv->beacon_update);
3813         if (priv->cfg->ops->lib->recover_from_tx_stall)
3814                 del_timer_sync(&priv->monitor_recover);
3815 }
3816
3817 static struct attribute *iwl3945_sysfs_entries[] = {
3818         &dev_attr_antenna.attr,
3819         &dev_attr_channels.attr,
3820         &dev_attr_dump_errors.attr,
3821         &dev_attr_flags.attr,
3822         &dev_attr_filter_flags.attr,
3823         &dev_attr_measurement.attr,
3824         &dev_attr_retry_rate.attr,
3825         &dev_attr_statistics.attr,
3826         &dev_attr_status.attr,
3827         &dev_attr_temperature.attr,
3828         &dev_attr_tx_power.attr,
3829 #ifdef CONFIG_IWLWIFI_DEBUG
3830         &dev_attr_debug_level.attr,
3831 #endif
3832         NULL
3833 };
3834
3835 static struct attribute_group iwl3945_attribute_group = {
3836         .name = NULL,           /* put in device directory */
3837         .attrs = iwl3945_sysfs_entries,
3838 };
3839
3840 static struct ieee80211_ops iwl3945_hw_ops = {
3841         .tx = iwl3945_mac_tx,
3842         .start = iwl3945_mac_start,
3843         .stop = iwl3945_mac_stop,
3844         .add_interface = iwl_mac_add_interface,
3845         .remove_interface = iwl_mac_remove_interface,
3846         .config = iwl_mac_config,
3847         .configure_filter = iwl_configure_filter,
3848         .set_key = iwl3945_mac_set_key,
3849         .conf_tx = iwl_mac_conf_tx,
3850         .reset_tsf = iwl_mac_reset_tsf,
3851         .bss_info_changed = iwl_bss_info_changed,
3852         .hw_scan = iwl_mac_hw_scan,
3853         .sta_add = iwl3945_mac_sta_add,
3854         .sta_remove = iwl_mac_sta_remove,
3855 };
3856
3857 static int iwl3945_init_drv(struct iwl_priv *priv)
3858 {
3859         int ret;
3860         struct iwl3945_eeprom *eeprom = (struct iwl3945_eeprom *)priv->eeprom;
3861
3862         priv->retry_rate = 1;
3863         priv->ibss_beacon = NULL;
3864
3865         spin_lock_init(&priv->sta_lock);
3866         spin_lock_init(&priv->hcmd_lock);
3867
3868         INIT_LIST_HEAD(&priv->free_frames);
3869
3870         mutex_init(&priv->mutex);
3871         mutex_init(&priv->sync_cmd_mutex);
3872
3873         priv->ieee_channels = NULL;
3874         priv->ieee_rates = NULL;
3875         priv->band = IEEE80211_BAND_2GHZ;
3876
3877         priv->iw_mode = NL80211_IFTYPE_STATION;
3878         priv->missed_beacon_threshold = IWL_MISSED_BEACON_THRESHOLD_DEF;
3879
3880         priv->tx_power_user_lmt = IWL_DEFAULT_TX_POWER;
3881
3882         if (eeprom->version < EEPROM_3945_EEPROM_VERSION) {
3883                 IWL_WARN(priv, "Unsupported EEPROM version: 0x%04X\n",
3884                          eeprom->version);
3885                 ret = -EINVAL;
3886                 goto err;
3887         }
3888         ret = iwl_init_channel_map(priv);
3889         if (ret) {
3890                 IWL_ERR(priv, "initializing regulatory failed: %d\n", ret);
3891                 goto err;
3892         }
3893
3894         /* Set up txpower settings in driver for all channels */
3895         if (iwl3945_txpower_set_from_eeprom(priv)) {
3896                 ret = -EIO;
3897                 goto err_free_channel_map;
3898         }
3899
3900         ret = iwlcore_init_geos(priv);
3901         if (ret) {
3902                 IWL_ERR(priv, "initializing geos failed: %d\n", ret);
3903                 goto err_free_channel_map;
3904         }
3905         iwl3945_init_hw_rates(priv, priv->ieee_rates);
3906
3907         return 0;
3908
3909 err_free_channel_map:
3910         iwl_free_channel_map(priv);
3911 err:
3912         return ret;
3913 }
3914
3915 static int iwl3945_setup_mac(struct iwl_priv *priv)
3916 {
3917         int ret;
3918         struct ieee80211_hw *hw = priv->hw;
3919
3920         hw->rate_control_algorithm = "iwl-3945-rs";
3921         hw->sta_data_size = sizeof(struct iwl3945_sta_priv);
3922
3923         /* Tell mac80211 our characteristics */
3924         hw->flags = IEEE80211_HW_SIGNAL_DBM |
3925                     IEEE80211_HW_NOISE_DBM |
3926                     IEEE80211_HW_SPECTRUM_MGMT;
3927
3928         if (!priv->cfg->broken_powersave)
3929                 hw->flags |= IEEE80211_HW_SUPPORTS_PS |
3930                              IEEE80211_HW_SUPPORTS_DYNAMIC_PS;
3931
3932         hw->wiphy->interface_modes =
3933                 BIT(NL80211_IFTYPE_STATION) |
3934                 BIT(NL80211_IFTYPE_ADHOC);
3935
3936         hw->wiphy->flags |= WIPHY_FLAG_CUSTOM_REGULATORY |
3937                             WIPHY_FLAG_DISABLE_BEACON_HINTS;
3938
3939         hw->wiphy->max_scan_ssids = PROBE_OPTION_MAX_3945;
3940         /* we create the 802.11 header and a zero-length SSID element */
3941         hw->wiphy->max_scan_ie_len = IWL_MAX_PROBE_REQUEST - 24 - 2;
3942
3943         /* Default value; 4 EDCA QOS priorities */
3944         hw->queues = 4;
3945
3946         if (priv->bands[IEEE80211_BAND_2GHZ].n_channels)
3947                 priv->hw->wiphy->bands[IEEE80211_BAND_2GHZ] =
3948                         &priv->bands[IEEE80211_BAND_2GHZ];
3949
3950         if (priv->bands[IEEE80211_BAND_5GHZ].n_channels)
3951                 priv->hw->wiphy->bands[IEEE80211_BAND_5GHZ] =
3952                         &priv->bands[IEEE80211_BAND_5GHZ];
3953
3954         ret = ieee80211_register_hw(priv->hw);
3955         if (ret) {
3956                 IWL_ERR(priv, "Failed to register hw (error %d)\n", ret);
3957                 return ret;
3958         }
3959         priv->mac80211_registered = 1;
3960
3961         return 0;
3962 }
3963
3964 static int iwl3945_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
3965 {
3966         int err = 0;
3967         struct iwl_priv *priv;
3968         struct ieee80211_hw *hw;
3969         struct iwl_cfg *cfg = (struct iwl_cfg *)(ent->driver_data);
3970         struct iwl3945_eeprom *eeprom;
3971         unsigned long flags;
3972
3973         /***********************
3974          * 1. Allocating HW data
3975          * ********************/
3976
3977         /* mac80211 allocates memory for this device instance, including
3978          *   space for this driver's private structure */
3979         hw = iwl_alloc_all(cfg, &iwl3945_hw_ops);
3980         if (hw == NULL) {
3981                 printk(KERN_ERR DRV_NAME "Can not allocate network device\n");
3982                 err = -ENOMEM;
3983                 goto out;
3984         }
3985         priv = hw->priv;
3986         SET_IEEE80211_DEV(hw, &pdev->dev);
3987
3988         /*
3989          * Disabling hardware scan means that mac80211 will perform scans
3990          * "the hard way", rather than using device's scan.
3991          */
3992         if (iwl3945_mod_params.disable_hw_scan) {
3993                 IWL_DEBUG_INFO(priv, "Disabling hw_scan\n");
3994                 iwl3945_hw_ops.hw_scan = NULL;
3995         }
3996
3997
3998         IWL_DEBUG_INFO(priv, "*** LOAD DRIVER ***\n");
3999         priv->cfg = cfg;
4000         priv->pci_dev = pdev;
4001         priv->inta_mask = CSR_INI_SET_MASK;
4002
4003 #ifdef CONFIG_IWLWIFI_DEBUG
4004         atomic_set(&priv->restrict_refcnt, 0);
4005 #endif
4006         if (iwl_alloc_traffic_mem(priv))
4007                 IWL_ERR(priv, "Not enough memory to generate traffic log\n");
4008
4009         /***************************
4010          * 2. Initializing PCI bus
4011          * *************************/
4012         if (pci_enable_device(pdev)) {
4013                 err = -ENODEV;
4014                 goto out_ieee80211_free_hw;
4015         }
4016
4017         pci_set_master(pdev);
4018
4019         err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
4020         if (!err)
4021                 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
4022         if (err) {
4023                 IWL_WARN(priv, "No suitable DMA available.\n");
4024                 goto out_pci_disable_device;
4025         }
4026
4027         pci_set_drvdata(pdev, priv);
4028         err = pci_request_regions(pdev, DRV_NAME);
4029         if (err)
4030                 goto out_pci_disable_device;
4031
4032         /***********************
4033          * 3. Read REV Register
4034          * ********************/
4035         priv->hw_base = pci_iomap(pdev, 0, 0);
4036         if (!priv->hw_base) {
4037                 err = -ENODEV;
4038                 goto out_pci_release_regions;
4039         }
4040
4041         IWL_DEBUG_INFO(priv, "pci_resource_len = 0x%08llx\n",
4042                         (unsigned long long) pci_resource_len(pdev, 0));
4043         IWL_DEBUG_INFO(priv, "pci_resource_base = %p\n", priv->hw_base);
4044
4045         /* We disable the RETRY_TIMEOUT register (0x41) to keep
4046          * PCI Tx retries from interfering with C3 CPU state */
4047         pci_write_config_byte(pdev, 0x41, 0x00);
4048
4049         /* these spin locks will be used in apm_ops.init and EEPROM access
4050          * we should init now
4051          */
4052         spin_lock_init(&priv->reg_lock);
4053         spin_lock_init(&priv->lock);
4054
4055         /*
4056          * stop and reset the on-board processor just in case it is in a
4057          * strange state ... like being left stranded by a primary kernel
4058          * and this is now the kdump kernel trying to start up
4059          */
4060         iwl_write32(priv, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET);
4061
4062         /***********************
4063          * 4. Read EEPROM
4064          * ********************/
4065
4066         /* Read the EEPROM */
4067         err = iwl_eeprom_init(priv);
4068         if (err) {
4069                 IWL_ERR(priv, "Unable to init EEPROM\n");
4070                 goto out_iounmap;
4071         }
4072         /* MAC Address location in EEPROM same for 3945/4965 */
4073         eeprom = (struct iwl3945_eeprom *)priv->eeprom;
4074         memcpy(priv->mac_addr, eeprom->mac_address, ETH_ALEN);
4075         IWL_DEBUG_INFO(priv, "MAC address: %pM\n", priv->mac_addr);
4076         SET_IEEE80211_PERM_ADDR(priv->hw, priv->mac_addr);
4077
4078         /***********************
4079          * 5. Setup HW Constants
4080          * ********************/
4081         /* Device-specific setup */
4082         if (iwl3945_hw_set_hw_params(priv)) {
4083                 IWL_ERR(priv, "failed to set hw settings\n");
4084                 goto out_eeprom_free;
4085         }
4086
4087         /***********************
4088          * 6. Setup priv
4089          * ********************/
4090
4091         err = iwl3945_init_drv(priv);
4092         if (err) {
4093                 IWL_ERR(priv, "initializing driver failed\n");
4094                 goto out_unset_hw_params;
4095         }
4096
4097         IWL_INFO(priv, "Detected Intel Wireless WiFi Link %s\n",
4098                 priv->cfg->name);
4099
4100         /***********************
4101          * 7. Setup Services
4102          * ********************/
4103
4104         spin_lock_irqsave(&priv->lock, flags);
4105         iwl_disable_interrupts(priv);
4106         spin_unlock_irqrestore(&priv->lock, flags);
4107
4108         pci_enable_msi(priv->pci_dev);
4109
4110         err = request_irq(priv->pci_dev->irq, priv->cfg->ops->lib->isr,
4111                           IRQF_SHARED, DRV_NAME, priv);
4112         if (err) {
4113                 IWL_ERR(priv, "Error allocating IRQ %d\n", priv->pci_dev->irq);
4114                 goto out_disable_msi;
4115         }
4116
4117         err = sysfs_create_group(&pdev->dev.kobj, &iwl3945_attribute_group);
4118         if (err) {
4119                 IWL_ERR(priv, "failed to create sysfs device attributes\n");
4120                 goto out_release_irq;
4121         }
4122
4123         iwl_set_rxon_channel(priv,
4124                              &priv->bands[IEEE80211_BAND_2GHZ].channels[5]);
4125         iwl3945_setup_deferred_work(priv);
4126         iwl3945_setup_rx_handlers(priv);
4127         iwl_power_initialize(priv);
4128
4129         /*********************************
4130          * 8. Setup and Register mac80211
4131          * *******************************/
4132
4133         iwl_enable_interrupts(priv);
4134
4135         err = iwl3945_setup_mac(priv);
4136         if (err)
4137                 goto  out_remove_sysfs;
4138
4139         err = iwl_dbgfs_register(priv, DRV_NAME);
4140         if (err)
4141                 IWL_ERR(priv, "failed to create debugfs files. Ignoring error: %d\n", err);
4142
4143         /* Start monitoring the killswitch */
4144         queue_delayed_work(priv->workqueue, &priv->_3945.rfkill_poll,
4145                            2 * HZ);
4146
4147         return 0;
4148
4149  out_remove_sysfs:
4150         destroy_workqueue(priv->workqueue);
4151         priv->workqueue = NULL;
4152         sysfs_remove_group(&pdev->dev.kobj, &iwl3945_attribute_group);
4153  out_release_irq:
4154         free_irq(priv->pci_dev->irq, priv);
4155  out_disable_msi:
4156         pci_disable_msi(priv->pci_dev);
4157         iwlcore_free_geos(priv);
4158         iwl_free_channel_map(priv);
4159  out_unset_hw_params:
4160         iwl3945_unset_hw_params(priv);
4161  out_eeprom_free:
4162         iwl_eeprom_free(priv);
4163  out_iounmap:
4164         pci_iounmap(pdev, priv->hw_base);
4165  out_pci_release_regions:
4166         pci_release_regions(pdev);
4167  out_pci_disable_device:
4168         pci_set_drvdata(pdev, NULL);
4169         pci_disable_device(pdev);
4170  out_ieee80211_free_hw:
4171         iwl_free_traffic_mem(priv);
4172         ieee80211_free_hw(priv->hw);
4173  out:
4174         return err;
4175 }
4176
4177 static void __devexit iwl3945_pci_remove(struct pci_dev *pdev)
4178 {
4179         struct iwl_priv *priv = pci_get_drvdata(pdev);
4180         unsigned long flags;
4181
4182         if (!priv)
4183                 return;
4184
4185         IWL_DEBUG_INFO(priv, "*** UNLOAD DRIVER ***\n");
4186
4187         iwl_dbgfs_unregister(priv);
4188
4189         set_bit(STATUS_EXIT_PENDING, &priv->status);
4190
4191         if (priv->mac80211_registered) {
4192                 ieee80211_unregister_hw(priv->hw);
4193                 priv->mac80211_registered = 0;
4194         } else {
4195                 iwl3945_down(priv);
4196         }
4197
4198         /*
4199          * Make sure device is reset to low power before unloading driver.
4200          * This may be redundant with iwl_down(), but there are paths to
4201          * run iwl_down() without calling apm_ops.stop(), and there are
4202          * paths to avoid running iwl_down() at all before leaving driver.
4203          * This (inexpensive) call *makes sure* device is reset.
4204          */
4205         priv->cfg->ops->lib->apm_ops.stop(priv);
4206
4207         /* make sure we flush any pending irq or
4208          * tasklet for the driver
4209          */
4210         spin_lock_irqsave(&priv->lock, flags);
4211         iwl_disable_interrupts(priv);
4212         spin_unlock_irqrestore(&priv->lock, flags);
4213
4214         iwl_synchronize_irq(priv);
4215
4216         sysfs_remove_group(&pdev->dev.kobj, &iwl3945_attribute_group);
4217
4218         cancel_delayed_work_sync(&priv->_3945.rfkill_poll);
4219
4220         iwl3945_dealloc_ucode_pci(priv);
4221
4222         if (priv->rxq.bd)
4223                 iwl3945_rx_queue_free(priv, &priv->rxq);
4224         iwl3945_hw_txq_ctx_free(priv);
4225
4226         iwl3945_unset_hw_params(priv);
4227
4228         /*netif_stop_queue(dev); */
4229         flush_workqueue(priv->workqueue);
4230
4231         /* ieee80211_unregister_hw calls iwl3945_mac_stop, which flushes
4232          * priv->workqueue... so we can't take down the workqueue
4233          * until now... */
4234         destroy_workqueue(priv->workqueue);
4235         priv->workqueue = NULL;
4236         iwl_free_traffic_mem(priv);
4237
4238         free_irq(pdev->irq, priv);
4239         pci_disable_msi(pdev);
4240
4241         pci_iounmap(pdev, priv->hw_base);
4242         pci_release_regions(pdev);
4243         pci_disable_device(pdev);
4244         pci_set_drvdata(pdev, NULL);
4245
4246         iwl_free_channel_map(priv);
4247         iwlcore_free_geos(priv);
4248         kfree(priv->scan_cmd);
4249         if (priv->ibss_beacon)
4250                 dev_kfree_skb(priv->ibss_beacon);
4251
4252         ieee80211_free_hw(priv->hw);
4253 }
4254
4255
4256 /*****************************************************************************
4257  *
4258  * driver and module entry point
4259  *
4260  *****************************************************************************/
4261
4262 static struct pci_driver iwl3945_driver = {
4263         .name = DRV_NAME,
4264         .id_table = iwl3945_hw_card_ids,
4265         .probe = iwl3945_pci_probe,
4266         .remove = __devexit_p(iwl3945_pci_remove),
4267 #ifdef CONFIG_PM
4268         .suspend = iwl_pci_suspend,
4269         .resume = iwl_pci_resume,
4270 #endif
4271 };
4272
4273 static int __init iwl3945_init(void)
4274 {
4275
4276         int ret;
4277         printk(KERN_INFO DRV_NAME ": " DRV_DESCRIPTION ", " DRV_VERSION "\n");
4278         printk(KERN_INFO DRV_NAME ": " DRV_COPYRIGHT "\n");
4279
4280         ret = iwl3945_rate_control_register();
4281         if (ret) {
4282                 printk(KERN_ERR DRV_NAME
4283                        "Unable to register rate control algorithm: %d\n", ret);
4284                 return ret;
4285         }
4286
4287         ret = pci_register_driver(&iwl3945_driver);
4288         if (ret) {
4289                 printk(KERN_ERR DRV_NAME "Unable to initialize PCI module\n");
4290                 goto error_register;
4291         }
4292
4293         return ret;
4294
4295 error_register:
4296         iwl3945_rate_control_unregister();
4297         return ret;
4298 }
4299
4300 static void __exit iwl3945_exit(void)
4301 {
4302         pci_unregister_driver(&iwl3945_driver);
4303         iwl3945_rate_control_unregister();
4304 }
4305
4306 MODULE_FIRMWARE(IWL3945_MODULE_FIRMWARE(IWL3945_UCODE_API_MAX));
4307
4308 module_param_named(antenna, iwl3945_mod_params.antenna, int, S_IRUGO);
4309 MODULE_PARM_DESC(antenna, "select antenna (1=Main, 2=Aux, default 0 [both])");
4310 module_param_named(swcrypto, iwl3945_mod_params.sw_crypto, int, S_IRUGO);
4311 MODULE_PARM_DESC(swcrypto,
4312                  "using software crypto (default 1 [software])\n");
4313 #ifdef CONFIG_IWLWIFI_DEBUG
4314 module_param_named(debug, iwl_debug_level, uint, S_IRUGO | S_IWUSR);
4315 MODULE_PARM_DESC(debug, "debug output mask");
4316 #endif
4317 module_param_named(disable_hw_scan, iwl3945_mod_params.disable_hw_scan,
4318                    int, S_IRUGO);
4319 MODULE_PARM_DESC(disable_hw_scan, "disable hardware scanning (default 0)");
4320 module_param_named(fw_restart3945, iwl3945_mod_params.restart_fw, int, S_IRUGO);
4321 MODULE_PARM_DESC(fw_restart3945, "restart firmware in case of error");
4322
4323 module_exit(iwl3945_exit);
4324 module_init(iwl3945_init);