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