1 /******************************************************************************
3 * Copyright(c) 2003 - 2007 Intel Corporation. All rights reserved.
5 * Portions of this file are derived from the ipw3945 project, as well
6 * as portions of the ieee80211 subsystem header files.
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of version 2 of the GNU General Public License as
10 * published by the Free Software Foundation.
12 * This program is distributed in the hope that it will be useful, but WITHOUT
13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
17 * You should have received a copy of the GNU General Public License along with
18 * this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
21 * The full GNU General Public License is included in this distribution in the
22 * file called LICENSE.
24 * Contact Information:
25 * James P. Ketrenos <ipw2100-admin@linux.intel.com>
26 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
28 *****************************************************************************/
30 #include <linux/kernel.h>
31 #include <linux/module.h>
32 #include <linux/version.h>
33 #include <linux/init.h>
34 #include <linux/pci.h>
35 #include <linux/dma-mapping.h>
36 #include <linux/delay.h>
37 #include <linux/skbuff.h>
38 #include <linux/netdevice.h>
39 #include <linux/wireless.h>
40 #include <linux/firmware.h>
41 #include <linux/etherdevice.h>
42 #include <linux/if_arp.h>
44 #include <net/ieee80211_radiotap.h>
45 #include <net/mac80211.h>
47 #include <asm/div64.h>
50 #include "iwl-helpers.h"
52 #ifdef CONFIG_IWL3945_DEBUG
53 u32 iwl3945_debug_level
;
56 static int iwl3945_tx_queue_update_write_ptr(struct iwl3945_priv
*priv
,
57 struct iwl3945_tx_queue
*txq
);
59 /******************************************************************************
63 ******************************************************************************/
65 /* module parameters */
66 static int iwl3945_param_disable_hw_scan
; /* def: 0 = use 3945's h/w scan */
67 static int iwl3945_param_debug
; /* def: 0 = minimal debug log messages */
68 static int iwl3945_param_disable
; /* def: 0 = enable radio */
69 static int iwl3945_param_antenna
; /* def: 0 = both antennas (use diversity) */
70 int iwl3945_param_hwcrypto
; /* def: 0 = use software encryption */
71 static int iwl3945_param_qos_enable
= 1; /* def: 1 = use quality of service */
72 int iwl3945_param_queues_num
= IWL_MAX_NUM_QUEUES
; /* def: 8 Tx queues */
75 * module name, copyright, version, etc.
76 * NOTE: DRV_NAME is defined in iwlwifi.h for use by iwl-debug.h and printk
79 #define DRV_DESCRIPTION \
80 "Intel(R) PRO/Wireless 3945ABG/BG Network Connection driver for Linux"
82 #ifdef CONFIG_IWL3945_DEBUG
88 #ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
94 #define IWLWIFI_VERSION "1.2.23k" VD VS
95 #define DRV_COPYRIGHT "Copyright(c) 2003-2007 Intel Corporation"
96 #define DRV_VERSION IWLWIFI_VERSION
98 /* Change firmware file name, using "-" and incrementing number,
99 * *only* when uCode interface or architecture changes so that it
100 * is not compatible with earlier drivers.
101 * This number will also appear in << 8 position of 1st dword of uCode file */
102 #define IWL3945_UCODE_API "-1"
104 MODULE_DESCRIPTION(DRV_DESCRIPTION
);
105 MODULE_VERSION(DRV_VERSION
);
106 MODULE_AUTHOR(DRV_COPYRIGHT
);
107 MODULE_LICENSE("GPL");
109 static __le16
*ieee80211_get_qos_ctrl(struct ieee80211_hdr
*hdr
)
111 u16 fc
= le16_to_cpu(hdr
->frame_control
);
112 int hdr_len
= ieee80211_get_hdrlen(fc
);
114 if ((fc
& 0x00cc) == (IEEE80211_STYPE_QOS_DATA
| IEEE80211_FTYPE_DATA
))
115 return (__le16
*) ((u8
*) hdr
+ hdr_len
- QOS_CONTROL_LEN
);
119 static const struct ieee80211_hw_mode
*iwl3945_get_hw_mode(
120 struct iwl3945_priv
*priv
, int mode
)
124 for (i
= 0; i
< 3; i
++)
125 if (priv
->modes
[i
].mode
== mode
)
126 return &priv
->modes
[i
];
131 static int iwl3945_is_empty_essid(const char *essid
, int essid_len
)
133 /* Single white space is for Linksys APs */
134 if (essid_len
== 1 && essid
[0] == ' ')
137 /* Otherwise, if the entire essid is 0, we assume it is hidden */
140 if (essid
[essid_len
] != '\0')
147 static const char *iwl3945_escape_essid(const char *essid
, u8 essid_len
)
149 static char escaped
[IW_ESSID_MAX_SIZE
* 2 + 1];
150 const char *s
= essid
;
153 if (iwl3945_is_empty_essid(essid
, essid_len
)) {
154 memcpy(escaped
, "<hidden>", sizeof("<hidden>"));
158 essid_len
= min(essid_len
, (u8
) IW_ESSID_MAX_SIZE
);
159 while (essid_len
--) {
171 static void iwl3945_print_hex_dump(int level
, void *p
, u32 len
)
173 #ifdef CONFIG_IWL3945_DEBUG
174 if (!(iwl3945_debug_level
& level
))
177 print_hex_dump(KERN_DEBUG
, "iwl data: ", DUMP_PREFIX_OFFSET
, 16, 1,
182 /*************** DMA-QUEUE-GENERAL-FUNCTIONS *****
185 * Theory of operation
187 * A Tx or Rx queue resides in host DRAM, and is comprised of a circular buffer
188 * of buffer descriptors, each of which points to one or more data buffers for
189 * the device to read from or fill. Driver and device exchange status of each
190 * queue via "read" and "write" pointers. Driver keeps minimum of 2 empty
191 * entries in each circular buffer, to protect against confusing empty and full
194 * The device reads or writes the data in the queues via the device's several
195 * DMA/FIFO channels. Each queue is mapped to a single DMA channel.
197 * For Tx queue, there are low mark and high mark limits. If, after queuing
198 * the packet for Tx, free space become < low mark, Tx queue stopped. When
199 * reclaiming packets (on 'tx done IRQ), if free space become > high mark,
202 * The 3945 operates with six queues: One receive queue, one transmit queue
203 * (#4) for sending commands to the device firmware, and four transmit queues
204 * (#0-3) for data tx via EDCA. An additional 2 HCCA queues are unused.
205 ***************************************************/
207 static int iwl3945_queue_space(const struct iwl3945_queue
*q
)
209 int s
= q
->read_ptr
- q
->write_ptr
;
211 if (q
->read_ptr
> q
->write_ptr
)
216 /* keep some reserve to not confuse empty and full situations */
224 * iwl3945_queue_inc_wrap - increment queue index, wrap back to beginning
225 * @index -- current index
226 * @n_bd -- total number of entries in queue (must be power of 2)
228 static inline int iwl3945_queue_inc_wrap(int index
, int n_bd
)
230 return ++index
& (n_bd
- 1);
234 * iwl3945_queue_dec_wrap - increment queue index, wrap back to end
235 * @index -- current index
236 * @n_bd -- total number of entries in queue (must be power of 2)
238 static inline int iwl3945_queue_dec_wrap(int index
, int n_bd
)
240 return --index
& (n_bd
- 1);
243 static inline int x2_queue_used(const struct iwl3945_queue
*q
, int i
)
245 return q
->write_ptr
> q
->read_ptr
?
246 (i
>= q
->read_ptr
&& i
< q
->write_ptr
) :
247 !(i
< q
->read_ptr
&& i
>= q
->write_ptr
);
250 static inline u8
get_cmd_index(struct iwl3945_queue
*q
, u32 index
, int is_huge
)
252 /* This is for scan command, the big buffer at end of command array */
254 return q
->n_window
; /* must be power of 2 */
256 /* Otherwise, use normal size buffers */
257 return index
& (q
->n_window
- 1);
261 * iwl3945_queue_init - Initialize queue's high/low-water and read/write indexes
263 static int iwl3945_queue_init(struct iwl3945_priv
*priv
, struct iwl3945_queue
*q
,
264 int count
, int slots_num
, u32 id
)
267 q
->n_window
= slots_num
;
270 /* count must be power-of-two size, otherwise iwl3945_queue_inc_wrap
271 * and iwl3945_queue_dec_wrap are broken. */
272 BUG_ON(!is_power_of_2(count
));
274 /* slots_num must be power-of-two size, otherwise
275 * get_cmd_index is broken. */
276 BUG_ON(!is_power_of_2(slots_num
));
278 q
->low_mark
= q
->n_window
/ 4;
282 q
->high_mark
= q
->n_window
/ 8;
283 if (q
->high_mark
< 2)
286 q
->write_ptr
= q
->read_ptr
= 0;
292 * iwl3945_tx_queue_alloc - Alloc driver data and TFD CB for one Tx/cmd queue
294 static int iwl3945_tx_queue_alloc(struct iwl3945_priv
*priv
,
295 struct iwl3945_tx_queue
*txq
, u32 id
)
297 struct pci_dev
*dev
= priv
->pci_dev
;
299 /* Driver private data, only for Tx (not command) queues,
300 * not shared with device. */
301 if (id
!= IWL_CMD_QUEUE_NUM
) {
302 txq
->txb
= kmalloc(sizeof(txq
->txb
[0]) *
303 TFD_QUEUE_SIZE_MAX
, GFP_KERNEL
);
305 IWL_ERROR("kmalloc for auxiliary BD "
306 "structures failed\n");
312 /* Circular buffer of transmit frame descriptors (TFDs),
313 * shared with device */
314 txq
->bd
= pci_alloc_consistent(dev
,
315 sizeof(txq
->bd
[0]) * TFD_QUEUE_SIZE_MAX
,
319 IWL_ERROR("pci_alloc_consistent(%zd) failed\n",
320 sizeof(txq
->bd
[0]) * TFD_QUEUE_SIZE_MAX
);
337 * iwl3945_tx_queue_init - Allocate and initialize one tx/cmd queue
339 int iwl3945_tx_queue_init(struct iwl3945_priv
*priv
,
340 struct iwl3945_tx_queue
*txq
, int slots_num
, u32 txq_id
)
342 struct pci_dev
*dev
= priv
->pci_dev
;
347 * Alloc buffer array for commands (Tx or other types of commands).
348 * For the command queue (#4), allocate command space + one big
349 * command for scan, since scan command is very huge; the system will
350 * not have two scans at the same time, so only one is needed.
351 * For data Tx queues (all other queues), no super-size command
354 len
= sizeof(struct iwl3945_cmd
) * slots_num
;
355 if (txq_id
== IWL_CMD_QUEUE_NUM
)
356 len
+= IWL_MAX_SCAN_SIZE
;
357 txq
->cmd
= pci_alloc_consistent(dev
, len
, &txq
->dma_addr_cmd
);
361 /* Alloc driver data array and TFD circular buffer */
362 rc
= iwl3945_tx_queue_alloc(priv
, txq
, txq_id
);
364 pci_free_consistent(dev
, len
, txq
->cmd
, txq
->dma_addr_cmd
);
368 txq
->need_update
= 0;
370 /* TFD_QUEUE_SIZE_MAX must be power-of-two size, otherwise
371 * iwl3945_queue_inc_wrap and iwl3945_queue_dec_wrap are broken. */
372 BUILD_BUG_ON(TFD_QUEUE_SIZE_MAX
& (TFD_QUEUE_SIZE_MAX
- 1));
374 /* Initialize queue high/low-water, head/tail indexes */
375 iwl3945_queue_init(priv
, &txq
->q
, TFD_QUEUE_SIZE_MAX
, slots_num
, txq_id
);
377 /* Tell device where to find queue, enable DMA channel. */
378 iwl3945_hw_tx_queue_init(priv
, txq
);
384 * iwl3945_tx_queue_free - Deallocate DMA queue.
385 * @txq: Transmit queue to deallocate.
387 * Empty queue by removing and destroying all BD's.
389 * 0-fill, but do not free "txq" descriptor structure.
391 void iwl3945_tx_queue_free(struct iwl3945_priv
*priv
, struct iwl3945_tx_queue
*txq
)
393 struct iwl3945_queue
*q
= &txq
->q
;
394 struct pci_dev
*dev
= priv
->pci_dev
;
400 /* first, empty all BD's */
401 for (; q
->write_ptr
!= q
->read_ptr
;
402 q
->read_ptr
= iwl3945_queue_inc_wrap(q
->read_ptr
, q
->n_bd
))
403 iwl3945_hw_txq_free_tfd(priv
, txq
);
405 len
= sizeof(struct iwl3945_cmd
) * q
->n_window
;
406 if (q
->id
== IWL_CMD_QUEUE_NUM
)
407 len
+= IWL_MAX_SCAN_SIZE
;
409 /* De-alloc array of command/tx buffers */
410 pci_free_consistent(dev
, len
, txq
->cmd
, txq
->dma_addr_cmd
);
412 /* De-alloc circular buffer of TFDs */
414 pci_free_consistent(dev
, sizeof(struct iwl3945_tfd_frame
) *
415 txq
->q
.n_bd
, txq
->bd
, txq
->q
.dma_addr
);
417 /* De-alloc array of per-TFD driver data */
423 /* 0-fill queue descriptor structure */
424 memset(txq
, 0, sizeof(*txq
));
427 const u8 iwl3945_broadcast_addr
[ETH_ALEN
] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF };
429 /*************** STATION TABLE MANAGEMENT ****
430 * mac80211 should be examined to determine if sta_info is duplicating
431 * the functionality provided here
434 /**************************************************************/
435 #if 0 /* temporary disable till we add real remove station */
437 * iwl3945_remove_station - Remove driver's knowledge of station.
439 * NOTE: This does not remove station from device's station table.
441 static u8
iwl3945_remove_station(struct iwl3945_priv
*priv
, const u8
*addr
, int is_ap
)
443 int index
= IWL_INVALID_STATION
;
447 spin_lock_irqsave(&priv
->sta_lock
, flags
);
451 else if (is_broadcast_ether_addr(addr
))
452 index
= priv
->hw_setting
.bcast_sta_id
;
454 for (i
= IWL_STA_ID
; i
< priv
->hw_setting
.max_stations
; i
++)
455 if (priv
->stations
[i
].used
&&
456 !compare_ether_addr(priv
->stations
[i
].sta
.sta
.addr
,
462 if (unlikely(index
== IWL_INVALID_STATION
))
465 if (priv
->stations
[index
].used
) {
466 priv
->stations
[index
].used
= 0;
467 priv
->num_stations
--;
470 BUG_ON(priv
->num_stations
< 0);
473 spin_unlock_irqrestore(&priv
->sta_lock
, flags
);
479 * iwl3945_clear_stations_table - Clear the driver's station table
481 * NOTE: This does not clear or otherwise alter the device's station table.
483 static void iwl3945_clear_stations_table(struct iwl3945_priv
*priv
)
487 spin_lock_irqsave(&priv
->sta_lock
, flags
);
489 priv
->num_stations
= 0;
490 memset(priv
->stations
, 0, sizeof(priv
->stations
));
492 spin_unlock_irqrestore(&priv
->sta_lock
, flags
);
496 * iwl3945_add_station - Add station to station tables in driver and device
498 u8
iwl3945_add_station(struct iwl3945_priv
*priv
, const u8
*addr
, int is_ap
, u8 flags
)
501 int index
= IWL_INVALID_STATION
;
502 struct iwl3945_station_entry
*station
;
503 unsigned long flags_spin
;
504 DECLARE_MAC_BUF(mac
);
507 spin_lock_irqsave(&priv
->sta_lock
, flags_spin
);
510 else if (is_broadcast_ether_addr(addr
))
511 index
= priv
->hw_setting
.bcast_sta_id
;
513 for (i
= IWL_STA_ID
; i
< priv
->hw_setting
.max_stations
; i
++) {
514 if (!compare_ether_addr(priv
->stations
[i
].sta
.sta
.addr
,
520 if (!priv
->stations
[i
].used
&&
521 index
== IWL_INVALID_STATION
)
525 /* These two conditions has the same outcome but keep them separate
526 since they have different meaning */
527 if (unlikely(index
== IWL_INVALID_STATION
)) {
528 spin_unlock_irqrestore(&priv
->sta_lock
, flags_spin
);
532 if (priv
->stations
[index
].used
&&
533 !compare_ether_addr(priv
->stations
[index
].sta
.sta
.addr
, addr
)) {
534 spin_unlock_irqrestore(&priv
->sta_lock
, flags_spin
);
538 IWL_DEBUG_ASSOC("Add STA ID %d: %s\n", index
, print_mac(mac
, addr
));
539 station
= &priv
->stations
[index
];
541 priv
->num_stations
++;
543 /* Set up the REPLY_ADD_STA command to send to device */
544 memset(&station
->sta
, 0, sizeof(struct iwl3945_addsta_cmd
));
545 memcpy(station
->sta
.sta
.addr
, addr
, ETH_ALEN
);
546 station
->sta
.mode
= 0;
547 station
->sta
.sta
.sta_id
= index
;
548 station
->sta
.station_flags
= 0;
550 if (priv
->phymode
== MODE_IEEE80211A
)
551 rate
= IWL_RATE_6M_PLCP
;
553 rate
= IWL_RATE_1M_PLCP
;
555 /* Turn on both antennas for the station... */
556 station
->sta
.rate_n_flags
=
557 iwl3945_hw_set_rate_n_flags(rate
, RATE_MCS_ANT_AB_MSK
);
558 station
->current_rate
.rate_n_flags
=
559 le16_to_cpu(station
->sta
.rate_n_flags
);
561 spin_unlock_irqrestore(&priv
->sta_lock
, flags_spin
);
563 /* Add station to device's station table */
564 iwl3945_send_add_station(priv
, &station
->sta
, flags
);
569 /*************** DRIVER STATUS FUNCTIONS *****/
571 static inline int iwl3945_is_ready(struct iwl3945_priv
*priv
)
573 /* The adapter is 'ready' if READY and GEO_CONFIGURED bits are
574 * set but EXIT_PENDING is not */
575 return test_bit(STATUS_READY
, &priv
->status
) &&
576 test_bit(STATUS_GEO_CONFIGURED
, &priv
->status
) &&
577 !test_bit(STATUS_EXIT_PENDING
, &priv
->status
);
580 static inline int iwl3945_is_alive(struct iwl3945_priv
*priv
)
582 return test_bit(STATUS_ALIVE
, &priv
->status
);
585 static inline int iwl3945_is_init(struct iwl3945_priv
*priv
)
587 return test_bit(STATUS_INIT
, &priv
->status
);
590 static inline int iwl3945_is_rfkill(struct iwl3945_priv
*priv
)
592 return test_bit(STATUS_RF_KILL_HW
, &priv
->status
) ||
593 test_bit(STATUS_RF_KILL_SW
, &priv
->status
);
596 static inline int iwl3945_is_ready_rf(struct iwl3945_priv
*priv
)
599 if (iwl3945_is_rfkill(priv
))
602 return iwl3945_is_ready(priv
);
605 /*************** HOST COMMAND QUEUE FUNCTIONS *****/
607 #define IWL_CMD(x) case x : return #x
609 static const char *get_cmd_string(u8 cmd
)
612 IWL_CMD(REPLY_ALIVE
);
613 IWL_CMD(REPLY_ERROR
);
615 IWL_CMD(REPLY_RXON_ASSOC
);
616 IWL_CMD(REPLY_QOS_PARAM
);
617 IWL_CMD(REPLY_RXON_TIMING
);
618 IWL_CMD(REPLY_ADD_STA
);
619 IWL_CMD(REPLY_REMOVE_STA
);
620 IWL_CMD(REPLY_REMOVE_ALL_STA
);
621 IWL_CMD(REPLY_3945_RX
);
623 IWL_CMD(REPLY_RATE_SCALE
);
624 IWL_CMD(REPLY_LEDS_CMD
);
625 IWL_CMD(REPLY_TX_LINK_QUALITY_CMD
);
626 IWL_CMD(RADAR_NOTIFICATION
);
627 IWL_CMD(REPLY_QUIET_CMD
);
628 IWL_CMD(REPLY_CHANNEL_SWITCH
);
629 IWL_CMD(CHANNEL_SWITCH_NOTIFICATION
);
630 IWL_CMD(REPLY_SPECTRUM_MEASUREMENT_CMD
);
631 IWL_CMD(SPECTRUM_MEASURE_NOTIFICATION
);
632 IWL_CMD(POWER_TABLE_CMD
);
633 IWL_CMD(PM_SLEEP_NOTIFICATION
);
634 IWL_CMD(PM_DEBUG_STATISTIC_NOTIFIC
);
635 IWL_CMD(REPLY_SCAN_CMD
);
636 IWL_CMD(REPLY_SCAN_ABORT_CMD
);
637 IWL_CMD(SCAN_START_NOTIFICATION
);
638 IWL_CMD(SCAN_RESULTS_NOTIFICATION
);
639 IWL_CMD(SCAN_COMPLETE_NOTIFICATION
);
640 IWL_CMD(BEACON_NOTIFICATION
);
641 IWL_CMD(REPLY_TX_BEACON
);
642 IWL_CMD(WHO_IS_AWAKE_NOTIFICATION
);
643 IWL_CMD(QUIET_NOTIFICATION
);
644 IWL_CMD(REPLY_TX_PWR_TABLE_CMD
);
645 IWL_CMD(MEASURE_ABORT_NOTIFICATION
);
646 IWL_CMD(REPLY_BT_CONFIG
);
647 IWL_CMD(REPLY_STATISTICS_CMD
);
648 IWL_CMD(STATISTICS_NOTIFICATION
);
649 IWL_CMD(REPLY_CARD_STATE_CMD
);
650 IWL_CMD(CARD_STATE_NOTIFICATION
);
651 IWL_CMD(MISSED_BEACONS_NOTIFICATION
);
658 #define HOST_COMPLETE_TIMEOUT (HZ / 2)
661 * iwl3945_enqueue_hcmd - enqueue a uCode command
662 * @priv: device private data point
663 * @cmd: a point to the ucode command structure
665 * The function returns < 0 values to indicate the operation is
666 * failed. On success, it turns the index (> 0) of command in the
669 static int iwl3945_enqueue_hcmd(struct iwl3945_priv
*priv
, struct iwl3945_host_cmd
*cmd
)
671 struct iwl3945_tx_queue
*txq
= &priv
->txq
[IWL_CMD_QUEUE_NUM
];
672 struct iwl3945_queue
*q
= &txq
->q
;
673 struct iwl3945_tfd_frame
*tfd
;
675 struct iwl3945_cmd
*out_cmd
;
677 u16 fix_size
= (u16
)(cmd
->len
+ sizeof(out_cmd
->hdr
));
678 dma_addr_t phys_addr
;
684 /* If any of the command structures end up being larger than
685 * the TFD_MAX_PAYLOAD_SIZE, and it sent as a 'small' command then
686 * we will need to increase the size of the TFD entries */
687 BUG_ON((fix_size
> TFD_MAX_PAYLOAD_SIZE
) &&
688 !(cmd
->meta
.flags
& CMD_SIZE_HUGE
));
691 if (iwl3945_is_rfkill(priv
)) {
692 IWL_DEBUG_INFO("Not sending command - RF KILL");
696 if (iwl3945_queue_space(q
) < ((cmd
->meta
.flags
& CMD_ASYNC
) ? 2 : 1)) {
697 IWL_ERROR("No space for Tx\n");
701 spin_lock_irqsave(&priv
->hcmd_lock
, flags
);
703 tfd
= &txq
->bd
[q
->write_ptr
];
704 memset(tfd
, 0, sizeof(*tfd
));
706 control_flags
= (u32
*) tfd
;
708 idx
= get_cmd_index(q
, q
->write_ptr
, cmd
->meta
.flags
& CMD_SIZE_HUGE
);
709 out_cmd
= &txq
->cmd
[idx
];
711 out_cmd
->hdr
.cmd
= cmd
->id
;
712 memcpy(&out_cmd
->meta
, &cmd
->meta
, sizeof(cmd
->meta
));
713 memcpy(&out_cmd
->cmd
.payload
, cmd
->data
, cmd
->len
);
715 /* At this point, the out_cmd now has all of the incoming cmd
718 out_cmd
->hdr
.flags
= 0;
719 out_cmd
->hdr
.sequence
= cpu_to_le16(QUEUE_TO_SEQ(IWL_CMD_QUEUE_NUM
) |
720 INDEX_TO_SEQ(q
->write_ptr
));
721 if (out_cmd
->meta
.flags
& CMD_SIZE_HUGE
)
722 out_cmd
->hdr
.sequence
|= cpu_to_le16(SEQ_HUGE_FRAME
);
724 phys_addr
= txq
->dma_addr_cmd
+ sizeof(txq
->cmd
[0]) * idx
+
725 offsetof(struct iwl3945_cmd
, hdr
);
726 iwl3945_hw_txq_attach_buf_to_tfd(priv
, tfd
, phys_addr
, fix_size
);
728 pad
= U32_PAD(cmd
->len
);
729 count
= TFD_CTL_COUNT_GET(*control_flags
);
730 *control_flags
= TFD_CTL_COUNT_SET(count
) | TFD_CTL_PAD_SET(pad
);
732 IWL_DEBUG_HC("Sending command %s (#%x), seq: 0x%04X, "
733 "%d bytes at %d[%d]:%d\n",
734 get_cmd_string(out_cmd
->hdr
.cmd
),
735 out_cmd
->hdr
.cmd
, le16_to_cpu(out_cmd
->hdr
.sequence
),
736 fix_size
, q
->write_ptr
, idx
, IWL_CMD_QUEUE_NUM
);
738 txq
->need_update
= 1;
740 /* Increment and update queue's write index */
741 q
->write_ptr
= iwl3945_queue_inc_wrap(q
->write_ptr
, q
->n_bd
);
742 ret
= iwl3945_tx_queue_update_write_ptr(priv
, txq
);
744 spin_unlock_irqrestore(&priv
->hcmd_lock
, flags
);
745 return ret
? ret
: idx
;
748 static int iwl3945_send_cmd_async(struct iwl3945_priv
*priv
, struct iwl3945_host_cmd
*cmd
)
752 BUG_ON(!(cmd
->meta
.flags
& CMD_ASYNC
));
754 /* An asynchronous command can not expect an SKB to be set. */
755 BUG_ON(cmd
->meta
.flags
& CMD_WANT_SKB
);
757 /* An asynchronous command MUST have a callback. */
758 BUG_ON(!cmd
->meta
.u
.callback
);
760 if (test_bit(STATUS_EXIT_PENDING
, &priv
->status
))
763 ret
= iwl3945_enqueue_hcmd(priv
, cmd
);
765 IWL_ERROR("Error sending %s: iwl3945_enqueue_hcmd failed: %d\n",
766 get_cmd_string(cmd
->id
), ret
);
772 static int iwl3945_send_cmd_sync(struct iwl3945_priv
*priv
, struct iwl3945_host_cmd
*cmd
)
776 static atomic_t entry
= ATOMIC_INIT(0); /* reentrance protection */
778 BUG_ON(cmd
->meta
.flags
& CMD_ASYNC
);
780 /* A synchronous command can not have a callback set. */
781 BUG_ON(cmd
->meta
.u
.callback
!= NULL
);
783 if (atomic_xchg(&entry
, 1)) {
784 IWL_ERROR("Error sending %s: Already sending a host command\n",
785 get_cmd_string(cmd
->id
));
789 set_bit(STATUS_HCMD_ACTIVE
, &priv
->status
);
791 if (cmd
->meta
.flags
& CMD_WANT_SKB
)
792 cmd
->meta
.source
= &cmd
->meta
;
794 cmd_idx
= iwl3945_enqueue_hcmd(priv
, cmd
);
797 IWL_ERROR("Error sending %s: iwl3945_enqueue_hcmd failed: %d\n",
798 get_cmd_string(cmd
->id
), ret
);
802 ret
= wait_event_interruptible_timeout(priv
->wait_command_queue
,
803 !test_bit(STATUS_HCMD_ACTIVE
, &priv
->status
),
804 HOST_COMPLETE_TIMEOUT
);
806 if (test_bit(STATUS_HCMD_ACTIVE
, &priv
->status
)) {
807 IWL_ERROR("Error sending %s: time out after %dms.\n",
808 get_cmd_string(cmd
->id
),
809 jiffies_to_msecs(HOST_COMPLETE_TIMEOUT
));
811 clear_bit(STATUS_HCMD_ACTIVE
, &priv
->status
);
817 if (test_bit(STATUS_RF_KILL_HW
, &priv
->status
)) {
818 IWL_DEBUG_INFO("Command %s aborted: RF KILL Switch\n",
819 get_cmd_string(cmd
->id
));
823 if (test_bit(STATUS_FW_ERROR
, &priv
->status
)) {
824 IWL_DEBUG_INFO("Command %s failed: FW Error\n",
825 get_cmd_string(cmd
->id
));
829 if ((cmd
->meta
.flags
& CMD_WANT_SKB
) && !cmd
->meta
.u
.skb
) {
830 IWL_ERROR("Error: Response NULL in '%s'\n",
831 get_cmd_string(cmd
->id
));
840 if (cmd
->meta
.flags
& CMD_WANT_SKB
) {
841 struct iwl3945_cmd
*qcmd
;
843 /* Cancel the CMD_WANT_SKB flag for the cmd in the
844 * TX cmd queue. Otherwise in case the cmd comes
845 * in later, it will possibly set an invalid
846 * address (cmd->meta.source). */
847 qcmd
= &priv
->txq
[IWL_CMD_QUEUE_NUM
].cmd
[cmd_idx
];
848 qcmd
->meta
.flags
&= ~CMD_WANT_SKB
;
851 if (cmd
->meta
.u
.skb
) {
852 dev_kfree_skb_any(cmd
->meta
.u
.skb
);
853 cmd
->meta
.u
.skb
= NULL
;
856 atomic_set(&entry
, 0);
860 int iwl3945_send_cmd(struct iwl3945_priv
*priv
, struct iwl3945_host_cmd
*cmd
)
862 if (cmd
->meta
.flags
& CMD_ASYNC
)
863 return iwl3945_send_cmd_async(priv
, cmd
);
865 return iwl3945_send_cmd_sync(priv
, cmd
);
868 int iwl3945_send_cmd_pdu(struct iwl3945_priv
*priv
, u8 id
, u16 len
, const void *data
)
870 struct iwl3945_host_cmd cmd
= {
876 return iwl3945_send_cmd_sync(priv
, &cmd
);
879 static int __must_check
iwl3945_send_cmd_u32(struct iwl3945_priv
*priv
, u8 id
, u32 val
)
881 struct iwl3945_host_cmd cmd
= {
887 return iwl3945_send_cmd_sync(priv
, &cmd
);
890 int iwl3945_send_statistics_request(struct iwl3945_priv
*priv
)
892 return iwl3945_send_cmd_u32(priv
, REPLY_STATISTICS_CMD
, 0);
896 * iwl3945_set_rxon_channel - Set the phymode and channel values in staging RXON
897 * @phymode: MODE_IEEE80211A sets to 5.2GHz; all else set to 2.4GHz
898 * @channel: Any channel valid for the requested phymode
900 * In addition to setting the staging RXON, priv->phymode is also set.
902 * NOTE: Does not commit to the hardware; it sets appropriate bit fields
903 * in the staging RXON flag structure based on the phymode
905 static int iwl3945_set_rxon_channel(struct iwl3945_priv
*priv
, u8 phymode
, u16 channel
)
907 if (!iwl3945_get_channel_info(priv
, phymode
, channel
)) {
908 IWL_DEBUG_INFO("Could not set channel to %d [%d]\n",
913 if ((le16_to_cpu(priv
->staging_rxon
.channel
) == channel
) &&
914 (priv
->phymode
== phymode
))
917 priv
->staging_rxon
.channel
= cpu_to_le16(channel
);
918 if (phymode
== MODE_IEEE80211A
)
919 priv
->staging_rxon
.flags
&= ~RXON_FLG_BAND_24G_MSK
;
921 priv
->staging_rxon
.flags
|= RXON_FLG_BAND_24G_MSK
;
923 priv
->phymode
= phymode
;
925 IWL_DEBUG_INFO("Staging channel set to %d [%d]\n", channel
, phymode
);
931 * iwl3945_check_rxon_cmd - validate RXON structure is valid
933 * NOTE: This is really only useful during development and can eventually
934 * be #ifdef'd out once the driver is stable and folks aren't actively
937 static int iwl3945_check_rxon_cmd(struct iwl3945_rxon_cmd
*rxon
)
942 if (rxon
->flags
& RXON_FLG_BAND_24G_MSK
) {
943 error
|= le32_to_cpu(rxon
->flags
&
944 (RXON_FLG_TGJ_NARROW_BAND_MSK
|
945 RXON_FLG_RADAR_DETECT_MSK
));
947 IWL_WARNING("check 24G fields %d | %d\n",
950 error
|= (rxon
->flags
& RXON_FLG_SHORT_SLOT_MSK
) ?
951 0 : le32_to_cpu(RXON_FLG_SHORT_SLOT_MSK
);
953 IWL_WARNING("check 52 fields %d | %d\n",
955 error
|= le32_to_cpu(rxon
->flags
& RXON_FLG_CCK_MSK
);
957 IWL_WARNING("check 52 CCK %d | %d\n",
960 error
|= (rxon
->node_addr
[0] | rxon
->bssid_addr
[0]) & 0x1;
962 IWL_WARNING("check mac addr %d | %d\n", counter
++, error
);
964 /* make sure basic rates 6Mbps and 1Mbps are supported */
965 error
|= (((rxon
->ofdm_basic_rates
& IWL_RATE_6M_MASK
) == 0) &&
966 ((rxon
->cck_basic_rates
& IWL_RATE_1M_MASK
) == 0));
968 IWL_WARNING("check basic rate %d | %d\n", counter
++, error
);
970 error
|= (le16_to_cpu(rxon
->assoc_id
) > 2007);
972 IWL_WARNING("check assoc id %d | %d\n", counter
++, error
);
974 error
|= ((rxon
->flags
& (RXON_FLG_CCK_MSK
| RXON_FLG_SHORT_SLOT_MSK
))
975 == (RXON_FLG_CCK_MSK
| RXON_FLG_SHORT_SLOT_MSK
));
977 IWL_WARNING("check CCK and short slot %d | %d\n",
980 error
|= ((rxon
->flags
& (RXON_FLG_CCK_MSK
| RXON_FLG_AUTO_DETECT_MSK
))
981 == (RXON_FLG_CCK_MSK
| RXON_FLG_AUTO_DETECT_MSK
));
983 IWL_WARNING("check CCK & auto detect %d | %d\n",
986 error
|= ((rxon
->flags
& (RXON_FLG_AUTO_DETECT_MSK
|
987 RXON_FLG_TGG_PROTECT_MSK
)) == RXON_FLG_TGG_PROTECT_MSK
);
989 IWL_WARNING("check TGG and auto detect %d | %d\n",
992 if ((rxon
->flags
& RXON_FLG_DIS_DIV_MSK
))
993 error
|= ((rxon
->flags
& (RXON_FLG_ANT_B_MSK
|
994 RXON_FLG_ANT_A_MSK
)) == 0);
996 IWL_WARNING("check antenna %d %d\n", counter
++, error
);
999 IWL_WARNING("Tuning to channel %d\n",
1000 le16_to_cpu(rxon
->channel
));
1003 IWL_ERROR("Not a valid iwl3945_rxon_assoc_cmd field values\n");
1010 * iwl3945_full_rxon_required - check if full RXON (vs RXON_ASSOC) cmd is needed
1011 * @priv: staging_rxon is compared to active_rxon
1013 * If the RXON structure is changing enough to require a new tune,
1014 * or is clearing the RXON_FILTER_ASSOC_MSK, then return 1 to indicate that
1015 * a new tune (full RXON command, rather than RXON_ASSOC cmd) is required.
1017 static int iwl3945_full_rxon_required(struct iwl3945_priv
*priv
)
1020 /* These items are only settable from the full RXON command */
1021 if (!(priv
->active_rxon
.filter_flags
& RXON_FILTER_ASSOC_MSK
) ||
1022 compare_ether_addr(priv
->staging_rxon
.bssid_addr
,
1023 priv
->active_rxon
.bssid_addr
) ||
1024 compare_ether_addr(priv
->staging_rxon
.node_addr
,
1025 priv
->active_rxon
.node_addr
) ||
1026 compare_ether_addr(priv
->staging_rxon
.wlap_bssid_addr
,
1027 priv
->active_rxon
.wlap_bssid_addr
) ||
1028 (priv
->staging_rxon
.dev_type
!= priv
->active_rxon
.dev_type
) ||
1029 (priv
->staging_rxon
.channel
!= priv
->active_rxon
.channel
) ||
1030 (priv
->staging_rxon
.air_propagation
!=
1031 priv
->active_rxon
.air_propagation
) ||
1032 (priv
->staging_rxon
.assoc_id
!= priv
->active_rxon
.assoc_id
))
1035 /* flags, filter_flags, ofdm_basic_rates, and cck_basic_rates can
1036 * be updated with the RXON_ASSOC command -- however only some
1037 * flag transitions are allowed using RXON_ASSOC */
1039 /* Check if we are not switching bands */
1040 if ((priv
->staging_rxon
.flags
& RXON_FLG_BAND_24G_MSK
) !=
1041 (priv
->active_rxon
.flags
& RXON_FLG_BAND_24G_MSK
))
1044 /* Check if we are switching association toggle */
1045 if ((priv
->staging_rxon
.filter_flags
& RXON_FILTER_ASSOC_MSK
) !=
1046 (priv
->active_rxon
.filter_flags
& RXON_FILTER_ASSOC_MSK
))
1052 static int iwl3945_send_rxon_assoc(struct iwl3945_priv
*priv
)
1055 struct iwl3945_rx_packet
*res
= NULL
;
1056 struct iwl3945_rxon_assoc_cmd rxon_assoc
;
1057 struct iwl3945_host_cmd cmd
= {
1058 .id
= REPLY_RXON_ASSOC
,
1059 .len
= sizeof(rxon_assoc
),
1060 .meta
.flags
= CMD_WANT_SKB
,
1061 .data
= &rxon_assoc
,
1063 const struct iwl3945_rxon_cmd
*rxon1
= &priv
->staging_rxon
;
1064 const struct iwl3945_rxon_cmd
*rxon2
= &priv
->active_rxon
;
1066 if ((rxon1
->flags
== rxon2
->flags
) &&
1067 (rxon1
->filter_flags
== rxon2
->filter_flags
) &&
1068 (rxon1
->cck_basic_rates
== rxon2
->cck_basic_rates
) &&
1069 (rxon1
->ofdm_basic_rates
== rxon2
->ofdm_basic_rates
)) {
1070 IWL_DEBUG_INFO("Using current RXON_ASSOC. Not resending.\n");
1074 rxon_assoc
.flags
= priv
->staging_rxon
.flags
;
1075 rxon_assoc
.filter_flags
= priv
->staging_rxon
.filter_flags
;
1076 rxon_assoc
.ofdm_basic_rates
= priv
->staging_rxon
.ofdm_basic_rates
;
1077 rxon_assoc
.cck_basic_rates
= priv
->staging_rxon
.cck_basic_rates
;
1078 rxon_assoc
.reserved
= 0;
1080 rc
= iwl3945_send_cmd_sync(priv
, &cmd
);
1084 res
= (struct iwl3945_rx_packet
*)cmd
.meta
.u
.skb
->data
;
1085 if (res
->hdr
.flags
& IWL_CMD_FAILED_MSK
) {
1086 IWL_ERROR("Bad return from REPLY_RXON_ASSOC command\n");
1090 priv
->alloc_rxb_skb
--;
1091 dev_kfree_skb_any(cmd
.meta
.u
.skb
);
1097 * iwl3945_commit_rxon - commit staging_rxon to hardware
1099 * The RXON command in staging_rxon is committed to the hardware and
1100 * the active_rxon structure is updated with the new data. This
1101 * function correctly transitions out of the RXON_ASSOC_MSK state if
1102 * a HW tune is required based on the RXON structure changes.
1104 static int iwl3945_commit_rxon(struct iwl3945_priv
*priv
)
1106 /* cast away the const for active_rxon in this function */
1107 struct iwl3945_rxon_cmd
*active_rxon
= (void *)&priv
->active_rxon
;
1109 DECLARE_MAC_BUF(mac
);
1111 if (!iwl3945_is_alive(priv
))
1114 /* always get timestamp with Rx frame */
1115 priv
->staging_rxon
.flags
|= RXON_FLG_TSF2HOST_MSK
;
1117 /* select antenna */
1118 priv
->staging_rxon
.flags
&=
1119 ~(RXON_FLG_DIS_DIV_MSK
| RXON_FLG_ANT_SEL_MSK
);
1120 priv
->staging_rxon
.flags
|= iwl3945_get_antenna_flags(priv
);
1122 rc
= iwl3945_check_rxon_cmd(&priv
->staging_rxon
);
1124 IWL_ERROR("Invalid RXON configuration. Not committing.\n");
1128 /* If we don't need to send a full RXON, we can use
1129 * iwl3945_rxon_assoc_cmd which is used to reconfigure filter
1130 * and other flags for the current radio configuration. */
1131 if (!iwl3945_full_rxon_required(priv
)) {
1132 rc
= iwl3945_send_rxon_assoc(priv
);
1134 IWL_ERROR("Error setting RXON_ASSOC "
1135 "configuration (%d).\n", rc
);
1139 memcpy(active_rxon
, &priv
->staging_rxon
, sizeof(*active_rxon
));
1144 /* If we are currently associated and the new config requires
1145 * an RXON_ASSOC and the new config wants the associated mask enabled,
1146 * we must clear the associated from the active configuration
1147 * before we apply the new config */
1148 if (iwl3945_is_associated(priv
) &&
1149 (priv
->staging_rxon
.filter_flags
& RXON_FILTER_ASSOC_MSK
)) {
1150 IWL_DEBUG_INFO("Toggling associated bit on current RXON\n");
1151 active_rxon
->filter_flags
&= ~RXON_FILTER_ASSOC_MSK
;
1153 rc
= iwl3945_send_cmd_pdu(priv
, REPLY_RXON
,
1154 sizeof(struct iwl3945_rxon_cmd
),
1155 &priv
->active_rxon
);
1157 /* If the mask clearing failed then we set
1158 * active_rxon back to what it was previously */
1160 active_rxon
->filter_flags
|= RXON_FILTER_ASSOC_MSK
;
1161 IWL_ERROR("Error clearing ASSOC_MSK on current "
1162 "configuration (%d).\n", rc
);
1167 IWL_DEBUG_INFO("Sending RXON\n"
1168 "* with%s RXON_FILTER_ASSOC_MSK\n"
1171 ((priv
->staging_rxon
.filter_flags
&
1172 RXON_FILTER_ASSOC_MSK
) ? "" : "out"),
1173 le16_to_cpu(priv
->staging_rxon
.channel
),
1174 print_mac(mac
, priv
->staging_rxon
.bssid_addr
));
1176 /* Apply the new configuration */
1177 rc
= iwl3945_send_cmd_pdu(priv
, REPLY_RXON
,
1178 sizeof(struct iwl3945_rxon_cmd
), &priv
->staging_rxon
);
1180 IWL_ERROR("Error setting new configuration (%d).\n", rc
);
1184 memcpy(active_rxon
, &priv
->staging_rxon
, sizeof(*active_rxon
));
1186 iwl3945_clear_stations_table(priv
);
1188 /* If we issue a new RXON command which required a tune then we must
1189 * send a new TXPOWER command or we won't be able to Tx any frames */
1190 rc
= iwl3945_hw_reg_send_txpower(priv
);
1192 IWL_ERROR("Error setting Tx power (%d).\n", rc
);
1196 /* Add the broadcast address so we can send broadcast frames */
1197 if (iwl3945_add_station(priv
, iwl3945_broadcast_addr
, 0, 0) ==
1198 IWL_INVALID_STATION
) {
1199 IWL_ERROR("Error adding BROADCAST address for transmit.\n");
1203 /* If we have set the ASSOC_MSK and we are in BSS mode then
1204 * add the IWL_AP_ID to the station rate table */
1205 if (iwl3945_is_associated(priv
) &&
1206 (priv
->iw_mode
== IEEE80211_IF_TYPE_STA
))
1207 if (iwl3945_add_station(priv
, priv
->active_rxon
.bssid_addr
, 1, 0)
1208 == IWL_INVALID_STATION
) {
1209 IWL_ERROR("Error adding AP address for transmit.\n");
1213 /* Init the hardware's rate fallback order based on the
1215 rc
= iwl3945_init_hw_rate_table(priv
);
1217 IWL_ERROR("Error setting HW rate table: %02X\n", rc
);
1224 static int iwl3945_send_bt_config(struct iwl3945_priv
*priv
)
1226 struct iwl3945_bt_cmd bt_cmd
= {
1234 return iwl3945_send_cmd_pdu(priv
, REPLY_BT_CONFIG
,
1235 sizeof(struct iwl3945_bt_cmd
), &bt_cmd
);
1238 static int iwl3945_send_scan_abort(struct iwl3945_priv
*priv
)
1241 struct iwl3945_rx_packet
*res
;
1242 struct iwl3945_host_cmd cmd
= {
1243 .id
= REPLY_SCAN_ABORT_CMD
,
1244 .meta
.flags
= CMD_WANT_SKB
,
1247 /* If there isn't a scan actively going on in the hardware
1248 * then we are in between scan bands and not actually
1249 * actively scanning, so don't send the abort command */
1250 if (!test_bit(STATUS_SCAN_HW
, &priv
->status
)) {
1251 clear_bit(STATUS_SCAN_ABORTING
, &priv
->status
);
1255 rc
= iwl3945_send_cmd_sync(priv
, &cmd
);
1257 clear_bit(STATUS_SCAN_ABORTING
, &priv
->status
);
1261 res
= (struct iwl3945_rx_packet
*)cmd
.meta
.u
.skb
->data
;
1262 if (res
->u
.status
!= CAN_ABORT_STATUS
) {
1263 /* The scan abort will return 1 for success or
1264 * 2 for "failure". A failure condition can be
1265 * due to simply not being in an active scan which
1266 * can occur if we send the scan abort before we
1267 * the microcode has notified us that a scan is
1269 IWL_DEBUG_INFO("SCAN_ABORT returned %d.\n", res
->u
.status
);
1270 clear_bit(STATUS_SCAN_ABORTING
, &priv
->status
);
1271 clear_bit(STATUS_SCAN_HW
, &priv
->status
);
1274 dev_kfree_skb_any(cmd
.meta
.u
.skb
);
1279 static int iwl3945_card_state_sync_callback(struct iwl3945_priv
*priv
,
1280 struct iwl3945_cmd
*cmd
,
1281 struct sk_buff
*skb
)
1289 * Use: Sets the device's internal card state to enable, disable, or halt
1291 * When in the 'enable' state the card operates as normal.
1292 * When in the 'disable' state, the card enters into a low power mode.
1293 * When in the 'halt' state, the card is shut down and must be fully
1294 * restarted to come back on.
1296 static int iwl3945_send_card_state(struct iwl3945_priv
*priv
, u32 flags
, u8 meta_flag
)
1298 struct iwl3945_host_cmd cmd
= {
1299 .id
= REPLY_CARD_STATE_CMD
,
1302 .meta
.flags
= meta_flag
,
1305 if (meta_flag
& CMD_ASYNC
)
1306 cmd
.meta
.u
.callback
= iwl3945_card_state_sync_callback
;
1308 return iwl3945_send_cmd(priv
, &cmd
);
1311 static int iwl3945_add_sta_sync_callback(struct iwl3945_priv
*priv
,
1312 struct iwl3945_cmd
*cmd
, struct sk_buff
*skb
)
1314 struct iwl3945_rx_packet
*res
= NULL
;
1317 IWL_ERROR("Error: Response NULL in REPLY_ADD_STA.\n");
1321 res
= (struct iwl3945_rx_packet
*)skb
->data
;
1322 if (res
->hdr
.flags
& IWL_CMD_FAILED_MSK
) {
1323 IWL_ERROR("Bad return from REPLY_ADD_STA (0x%08X)\n",
1328 switch (res
->u
.add_sta
.status
) {
1329 case ADD_STA_SUCCESS_MSK
:
1335 /* We didn't cache the SKB; let the caller free it */
1339 int iwl3945_send_add_station(struct iwl3945_priv
*priv
,
1340 struct iwl3945_addsta_cmd
*sta
, u8 flags
)
1342 struct iwl3945_rx_packet
*res
= NULL
;
1344 struct iwl3945_host_cmd cmd
= {
1345 .id
= REPLY_ADD_STA
,
1346 .len
= sizeof(struct iwl3945_addsta_cmd
),
1347 .meta
.flags
= flags
,
1351 if (flags
& CMD_ASYNC
)
1352 cmd
.meta
.u
.callback
= iwl3945_add_sta_sync_callback
;
1354 cmd
.meta
.flags
|= CMD_WANT_SKB
;
1356 rc
= iwl3945_send_cmd(priv
, &cmd
);
1358 if (rc
|| (flags
& CMD_ASYNC
))
1361 res
= (struct iwl3945_rx_packet
*)cmd
.meta
.u
.skb
->data
;
1362 if (res
->hdr
.flags
& IWL_CMD_FAILED_MSK
) {
1363 IWL_ERROR("Bad return from REPLY_ADD_STA (0x%08X)\n",
1369 switch (res
->u
.add_sta
.status
) {
1370 case ADD_STA_SUCCESS_MSK
:
1371 IWL_DEBUG_INFO("REPLY_ADD_STA PASSED\n");
1375 IWL_WARNING("REPLY_ADD_STA failed\n");
1380 priv
->alloc_rxb_skb
--;
1381 dev_kfree_skb_any(cmd
.meta
.u
.skb
);
1386 static int iwl3945_update_sta_key_info(struct iwl3945_priv
*priv
,
1387 struct ieee80211_key_conf
*keyconf
,
1390 unsigned long flags
;
1391 __le16 key_flags
= 0;
1393 switch (keyconf
->alg
) {
1395 key_flags
|= STA_KEY_FLG_CCMP
;
1396 key_flags
|= cpu_to_le16(
1397 keyconf
->keyidx
<< STA_KEY_FLG_KEYID_POS
);
1398 key_flags
&= ~STA_KEY_FLG_INVALID
;
1405 spin_lock_irqsave(&priv
->sta_lock
, flags
);
1406 priv
->stations
[sta_id
].keyinfo
.alg
= keyconf
->alg
;
1407 priv
->stations
[sta_id
].keyinfo
.keylen
= keyconf
->keylen
;
1408 memcpy(priv
->stations
[sta_id
].keyinfo
.key
, keyconf
->key
,
1411 memcpy(priv
->stations
[sta_id
].sta
.key
.key
, keyconf
->key
,
1413 priv
->stations
[sta_id
].sta
.key
.key_flags
= key_flags
;
1414 priv
->stations
[sta_id
].sta
.sta
.modify_mask
= STA_MODIFY_KEY_MASK
;
1415 priv
->stations
[sta_id
].sta
.mode
= STA_CONTROL_MODIFY_MSK
;
1417 spin_unlock_irqrestore(&priv
->sta_lock
, flags
);
1419 IWL_DEBUG_INFO("hwcrypto: modify ucode station key info\n");
1420 iwl3945_send_add_station(priv
, &priv
->stations
[sta_id
].sta
, 0);
1424 static int iwl3945_clear_sta_key_info(struct iwl3945_priv
*priv
, u8 sta_id
)
1426 unsigned long flags
;
1428 spin_lock_irqsave(&priv
->sta_lock
, flags
);
1429 memset(&priv
->stations
[sta_id
].keyinfo
, 0, sizeof(struct iwl3945_hw_key
));
1430 memset(&priv
->stations
[sta_id
].sta
.key
, 0, sizeof(struct iwl3945_keyinfo
));
1431 priv
->stations
[sta_id
].sta
.key
.key_flags
= STA_KEY_FLG_NO_ENC
;
1432 priv
->stations
[sta_id
].sta
.sta
.modify_mask
= STA_MODIFY_KEY_MASK
;
1433 priv
->stations
[sta_id
].sta
.mode
= STA_CONTROL_MODIFY_MSK
;
1434 spin_unlock_irqrestore(&priv
->sta_lock
, flags
);
1436 IWL_DEBUG_INFO("hwcrypto: clear ucode station key info\n");
1437 iwl3945_send_add_station(priv
, &priv
->stations
[sta_id
].sta
, 0);
1441 static void iwl3945_clear_free_frames(struct iwl3945_priv
*priv
)
1443 struct list_head
*element
;
1445 IWL_DEBUG_INFO("%d frames on pre-allocated heap on clear.\n",
1446 priv
->frames_count
);
1448 while (!list_empty(&priv
->free_frames
)) {
1449 element
= priv
->free_frames
.next
;
1451 kfree(list_entry(element
, struct iwl3945_frame
, list
));
1452 priv
->frames_count
--;
1455 if (priv
->frames_count
) {
1456 IWL_WARNING("%d frames still in use. Did we lose one?\n",
1457 priv
->frames_count
);
1458 priv
->frames_count
= 0;
1462 static struct iwl3945_frame
*iwl3945_get_free_frame(struct iwl3945_priv
*priv
)
1464 struct iwl3945_frame
*frame
;
1465 struct list_head
*element
;
1466 if (list_empty(&priv
->free_frames
)) {
1467 frame
= kzalloc(sizeof(*frame
), GFP_KERNEL
);
1469 IWL_ERROR("Could not allocate frame!\n");
1473 priv
->frames_count
++;
1477 element
= priv
->free_frames
.next
;
1479 return list_entry(element
, struct iwl3945_frame
, list
);
1482 static void iwl3945_free_frame(struct iwl3945_priv
*priv
, struct iwl3945_frame
*frame
)
1484 memset(frame
, 0, sizeof(*frame
));
1485 list_add(&frame
->list
, &priv
->free_frames
);
1488 unsigned int iwl3945_fill_beacon_frame(struct iwl3945_priv
*priv
,
1489 struct ieee80211_hdr
*hdr
,
1490 const u8
*dest
, int left
)
1493 if (!iwl3945_is_associated(priv
) || !priv
->ibss_beacon
||
1494 ((priv
->iw_mode
!= IEEE80211_IF_TYPE_IBSS
) &&
1495 (priv
->iw_mode
!= IEEE80211_IF_TYPE_AP
)))
1498 if (priv
->ibss_beacon
->len
> left
)
1501 memcpy(hdr
, priv
->ibss_beacon
->data
, priv
->ibss_beacon
->len
);
1503 return priv
->ibss_beacon
->len
;
1506 static u8
iwl3945_rate_get_lowest_plcp(int rate_mask
)
1510 for (i
= IWL_RATE_1M_INDEX
; i
!= IWL_RATE_INVALID
;
1511 i
= iwl3945_rates
[i
].next_ieee
) {
1512 if (rate_mask
& (1 << i
))
1513 return iwl3945_rates
[i
].plcp
;
1516 return IWL_RATE_INVALID
;
1519 static int iwl3945_send_beacon_cmd(struct iwl3945_priv
*priv
)
1521 struct iwl3945_frame
*frame
;
1522 unsigned int frame_size
;
1526 frame
= iwl3945_get_free_frame(priv
);
1529 IWL_ERROR("Could not obtain free frame buffer for beacon "
1534 if (!(priv
->staging_rxon
.flags
& RXON_FLG_BAND_24G_MSK
)) {
1535 rate
= iwl3945_rate_get_lowest_plcp(priv
->active_rate_basic
&
1537 if (rate
== IWL_INVALID_RATE
)
1538 rate
= IWL_RATE_6M_PLCP
;
1540 rate
= iwl3945_rate_get_lowest_plcp(priv
->active_rate_basic
& 0xF);
1541 if (rate
== IWL_INVALID_RATE
)
1542 rate
= IWL_RATE_1M_PLCP
;
1545 frame_size
= iwl3945_hw_get_beacon_cmd(priv
, frame
, rate
);
1547 rc
= iwl3945_send_cmd_pdu(priv
, REPLY_TX_BEACON
, frame_size
,
1550 iwl3945_free_frame(priv
, frame
);
1555 /******************************************************************************
1557 * EEPROM related functions
1559 ******************************************************************************/
1561 static void get_eeprom_mac(struct iwl3945_priv
*priv
, u8
*mac
)
1563 memcpy(mac
, priv
->eeprom
.mac_address
, 6);
1567 * Clear the OWNER_MSK, to establish driver (instead of uCode running on
1568 * embedded controller) as EEPROM reader; each read is a series of pulses
1569 * to/from the EEPROM chip, not a single event, so even reads could conflict
1570 * if they weren't arbitrated by some ownership mechanism. Here, the driver
1571 * simply claims ownership, which should be safe when this function is called
1572 * (i.e. before loading uCode!).
1574 static inline int iwl3945_eeprom_acquire_semaphore(struct iwl3945_priv
*priv
)
1576 _iwl3945_clear_bit(priv
, CSR_EEPROM_GP
, CSR_EEPROM_GP_IF_OWNER_MSK
);
1581 * iwl3945_eeprom_init - read EEPROM contents
1583 * Load the EEPROM contents from adapter into priv->eeprom
1585 * NOTE: This routine uses the non-debug IO access functions.
1587 int iwl3945_eeprom_init(struct iwl3945_priv
*priv
)
1589 u16
*e
= (u16
*)&priv
->eeprom
;
1590 u32 gp
= iwl3945_read32(priv
, CSR_EEPROM_GP
);
1592 int sz
= sizeof(priv
->eeprom
);
1597 /* The EEPROM structure has several padding buffers within it
1598 * and when adding new EEPROM maps is subject to programmer errors
1599 * which may be very difficult to identify without explicitly
1600 * checking the resulting size of the eeprom map. */
1601 BUILD_BUG_ON(sizeof(priv
->eeprom
) != IWL_EEPROM_IMAGE_SIZE
);
1603 if ((gp
& CSR_EEPROM_GP_VALID_MSK
) == CSR_EEPROM_GP_BAD_SIGNATURE
) {
1604 IWL_ERROR("EEPROM not found, EEPROM_GP=0x%08x", gp
);
1608 /* Make sure driver (instead of uCode) is allowed to read EEPROM */
1609 rc
= iwl3945_eeprom_acquire_semaphore(priv
);
1611 IWL_ERROR("Failed to acquire EEPROM semaphore.\n");
1615 /* eeprom is an array of 16bit values */
1616 for (addr
= 0; addr
< sz
; addr
+= sizeof(u16
)) {
1617 _iwl3945_write32(priv
, CSR_EEPROM_REG
, addr
<< 1);
1618 _iwl3945_clear_bit(priv
, CSR_EEPROM_REG
, CSR_EEPROM_REG_BIT_CMD
);
1620 for (i
= 0; i
< IWL_EEPROM_ACCESS_TIMEOUT
;
1621 i
+= IWL_EEPROM_ACCESS_DELAY
) {
1622 r
= _iwl3945_read_direct32(priv
, CSR_EEPROM_REG
);
1623 if (r
& CSR_EEPROM_REG_READ_VALID_MSK
)
1625 udelay(IWL_EEPROM_ACCESS_DELAY
);
1628 if (!(r
& CSR_EEPROM_REG_READ_VALID_MSK
)) {
1629 IWL_ERROR("Time out reading EEPROM[%d]", addr
);
1632 e
[addr
/ 2] = le16_to_cpu((__force __le16
)(r
>> 16));
1638 /******************************************************************************
1640 * Misc. internal state and helper functions
1642 ******************************************************************************/
1643 #ifdef CONFIG_IWL3945_DEBUG
1646 * iwl3945_report_frame - dump frame to syslog during debug sessions
1648 * You may hack this function to show different aspects of received frames,
1649 * including selective frame dumps.
1650 * group100 parameter selects whether to show 1 out of 100 good frames.
1652 void iwl3945_report_frame(struct iwl3945_priv
*priv
,
1653 struct iwl3945_rx_packet
*pkt
,
1654 struct ieee80211_hdr
*header
, int group100
)
1657 u32 print_summary
= 0;
1658 u32 print_dump
= 0; /* set to 1 to dump all frames' contents */
1675 struct iwl3945_rx_frame_stats
*rx_stats
= IWL_RX_STATS(pkt
);
1676 struct iwl3945_rx_frame_hdr
*rx_hdr
= IWL_RX_HDR(pkt
);
1677 struct iwl3945_rx_frame_end
*rx_end
= IWL_RX_END(pkt
);
1678 u8
*data
= IWL_RX_DATA(pkt
);
1681 fc
= le16_to_cpu(header
->frame_control
);
1682 seq_ctl
= le16_to_cpu(header
->seq_ctrl
);
1685 channel
= le16_to_cpu(rx_hdr
->channel
);
1686 phy_flags
= le16_to_cpu(rx_hdr
->phy_flags
);
1687 rate_sym
= rx_hdr
->rate
;
1688 length
= le16_to_cpu(rx_hdr
->len
);
1690 /* end-of-frame status and timestamp */
1691 status
= le32_to_cpu(rx_end
->status
);
1692 bcn_tmr
= le32_to_cpu(rx_end
->beacon_timestamp
);
1693 tsf_low
= le64_to_cpu(rx_end
->timestamp
) & 0x0ffffffff;
1694 tsf
= le64_to_cpu(rx_end
->timestamp
);
1696 /* signal statistics */
1697 rssi
= rx_stats
->rssi
;
1698 agc
= rx_stats
->agc
;
1699 sig_avg
= le16_to_cpu(rx_stats
->sig_avg
);
1700 noise_diff
= le16_to_cpu(rx_stats
->noise_diff
);
1702 to_us
= !compare_ether_addr(header
->addr1
, priv
->mac_addr
);
1704 /* if data frame is to us and all is good,
1705 * (optionally) print summary for only 1 out of every 100 */
1706 if (to_us
&& (fc
& ~IEEE80211_FCTL_PROTECTED
) ==
1707 (IEEE80211_FCTL_FROMDS
| IEEE80211_FTYPE_DATA
)) {
1710 print_summary
= 1; /* print each frame */
1711 else if (priv
->framecnt_to_us
< 100) {
1712 priv
->framecnt_to_us
++;
1715 priv
->framecnt_to_us
= 0;
1720 /* print summary for all other frames */
1724 if (print_summary
) {
1729 title
= "100Frames";
1730 else if (fc
& IEEE80211_FCTL_RETRY
)
1732 else if (ieee80211_is_assoc_response(fc
))
1734 else if (ieee80211_is_reassoc_response(fc
))
1736 else if (ieee80211_is_probe_response(fc
)) {
1738 print_dump
= 1; /* dump frame contents */
1739 } else if (ieee80211_is_beacon(fc
)) {
1741 print_dump
= 1; /* dump frame contents */
1742 } else if (ieee80211_is_atim(fc
))
1744 else if (ieee80211_is_auth(fc
))
1746 else if (ieee80211_is_deauth(fc
))
1748 else if (ieee80211_is_disassoc(fc
))
1753 rate
= iwl3945_rate_index_from_plcp(rate_sym
);
1757 rate
= iwl3945_rates
[rate
].ieee
/ 2;
1759 /* print frame summary.
1760 * MAC addresses show just the last byte (for brevity),
1761 * but you can hack it to show more, if you'd like to. */
1763 IWL_DEBUG_RX("%s: mhd=0x%04x, dst=0x%02x, "
1764 "len=%u, rssi=%d, chnl=%d, rate=%u, \n",
1765 title
, fc
, header
->addr1
[5],
1766 length
, rssi
, channel
, rate
);
1768 /* src/dst addresses assume managed mode */
1769 IWL_DEBUG_RX("%s: 0x%04x, dst=0x%02x, "
1770 "src=0x%02x, rssi=%u, tim=%lu usec, "
1771 "phy=0x%02x, chnl=%d\n",
1772 title
, fc
, header
->addr1
[5],
1773 header
->addr3
[5], rssi
,
1774 tsf_low
- priv
->scan_start_tsf
,
1775 phy_flags
, channel
);
1779 iwl3945_print_hex_dump(IWL_DL_RX
, data
, length
);
1783 static void iwl3945_unset_hw_setting(struct iwl3945_priv
*priv
)
1785 if (priv
->hw_setting
.shared_virt
)
1786 pci_free_consistent(priv
->pci_dev
,
1787 sizeof(struct iwl3945_shared
),
1788 priv
->hw_setting
.shared_virt
,
1789 priv
->hw_setting
.shared_phys
);
1793 * iwl3945_supported_rate_to_ie - fill in the supported rate in IE field
1795 * return : set the bit for each supported rate insert in ie
1797 static u16
iwl3945_supported_rate_to_ie(u8
*ie
, u16 supported_rate
,
1798 u16 basic_rate
, int *left
)
1800 u16 ret_rates
= 0, bit
;
1805 for (bit
= 1, i
= 0; i
< IWL_RATE_COUNT
; i
++, bit
<<= 1) {
1806 if (bit
& supported_rate
) {
1808 rates
[*cnt
] = iwl3945_rates
[i
].ieee
|
1809 ((bit
& basic_rate
) ? 0x80 : 0x00);
1813 (*cnt
>= IWL_SUPPORTED_RATES_IE_LEN
))
1822 * iwl3945_fill_probe_req - fill in all required fields and IE for probe request
1824 static u16
iwl3945_fill_probe_req(struct iwl3945_priv
*priv
,
1825 struct ieee80211_mgmt
*frame
,
1826 int left
, int is_direct
)
1830 u16 active_rates
, ret_rates
, cck_rates
;
1832 /* Make sure there is enough space for the probe request,
1833 * two mandatory IEs and the data */
1839 frame
->frame_control
= cpu_to_le16(IEEE80211_STYPE_PROBE_REQ
);
1840 memcpy(frame
->da
, iwl3945_broadcast_addr
, ETH_ALEN
);
1841 memcpy(frame
->sa
, priv
->mac_addr
, ETH_ALEN
);
1842 memcpy(frame
->bssid
, iwl3945_broadcast_addr
, ETH_ALEN
);
1843 frame
->seq_ctrl
= 0;
1845 /* fill in our indirect SSID IE */
1852 pos
= &(frame
->u
.probe_req
.variable
[0]);
1853 *pos
++ = WLAN_EID_SSID
;
1856 /* fill in our direct SSID IE... */
1859 left
-= 2 + priv
->essid_len
;
1862 /* ... fill it in... */
1863 *pos
++ = WLAN_EID_SSID
;
1864 *pos
++ = priv
->essid_len
;
1865 memcpy(pos
, priv
->essid
, priv
->essid_len
);
1866 pos
+= priv
->essid_len
;
1867 len
+= 2 + priv
->essid_len
;
1870 /* fill in supported rate */
1876 /* ... fill it in... */
1877 *pos
++ = WLAN_EID_SUPP_RATES
;
1880 priv
->active_rate
= priv
->rates_mask
;
1881 active_rates
= priv
->active_rate
;
1882 priv
->active_rate_basic
= priv
->rates_mask
& IWL_BASIC_RATES_MASK
;
1884 cck_rates
= IWL_CCK_RATES_MASK
& active_rates
;
1885 ret_rates
= iwl3945_supported_rate_to_ie(pos
, cck_rates
,
1886 priv
->active_rate_basic
, &left
);
1887 active_rates
&= ~ret_rates
;
1889 ret_rates
= iwl3945_supported_rate_to_ie(pos
, active_rates
,
1890 priv
->active_rate_basic
, &left
);
1891 active_rates
&= ~ret_rates
;
1895 if (active_rates
== 0)
1898 /* fill in supported extended rate */
1903 /* ... fill it in... */
1904 *pos
++ = WLAN_EID_EXT_SUPP_RATES
;
1906 iwl3945_supported_rate_to_ie(pos
, active_rates
,
1907 priv
->active_rate_basic
, &left
);
1918 #ifdef CONFIG_IWL3945_QOS
1919 static int iwl3945_send_qos_params_command(struct iwl3945_priv
*priv
,
1920 struct iwl3945_qosparam_cmd
*qos
)
1923 return iwl3945_send_cmd_pdu(priv
, REPLY_QOS_PARAM
,
1924 sizeof(struct iwl3945_qosparam_cmd
), qos
);
1927 static void iwl3945_reset_qos(struct iwl3945_priv
*priv
)
1933 unsigned long flags
;
1936 spin_lock_irqsave(&priv
->lock
, flags
);
1937 priv
->qos_data
.qos_active
= 0;
1939 if (priv
->iw_mode
== IEEE80211_IF_TYPE_IBSS
) {
1940 if (priv
->qos_data
.qos_enable
)
1941 priv
->qos_data
.qos_active
= 1;
1942 if (!(priv
->active_rate
& 0xfff0)) {
1946 } else if (priv
->iw_mode
== IEEE80211_IF_TYPE_AP
) {
1947 if (priv
->qos_data
.qos_enable
)
1948 priv
->qos_data
.qos_active
= 1;
1949 } else if (!(priv
->staging_rxon
.flags
& RXON_FLG_SHORT_SLOT_MSK
)) {
1954 if (priv
->qos_data
.qos_active
)
1957 priv
->qos_data
.def_qos_parm
.ac
[0].cw_min
= cpu_to_le16(cw_min
);
1958 priv
->qos_data
.def_qos_parm
.ac
[0].cw_max
= cpu_to_le16(cw_max
);
1959 priv
->qos_data
.def_qos_parm
.ac
[0].aifsn
= aifs
;
1960 priv
->qos_data
.def_qos_parm
.ac
[0].edca_txop
= 0;
1961 priv
->qos_data
.def_qos_parm
.ac
[0].reserved1
= 0;
1963 if (priv
->qos_data
.qos_active
) {
1965 priv
->qos_data
.def_qos_parm
.ac
[i
].cw_min
= cpu_to_le16(cw_min
);
1966 priv
->qos_data
.def_qos_parm
.ac
[i
].cw_max
= cpu_to_le16(cw_max
);
1967 priv
->qos_data
.def_qos_parm
.ac
[i
].aifsn
= 7;
1968 priv
->qos_data
.def_qos_parm
.ac
[i
].edca_txop
= 0;
1969 priv
->qos_data
.def_qos_parm
.ac
[i
].reserved1
= 0;
1972 priv
->qos_data
.def_qos_parm
.ac
[i
].cw_min
=
1973 cpu_to_le16((cw_min
+ 1) / 2 - 1);
1974 priv
->qos_data
.def_qos_parm
.ac
[i
].cw_max
=
1975 cpu_to_le16(cw_max
);
1976 priv
->qos_data
.def_qos_parm
.ac
[i
].aifsn
= 2;
1978 priv
->qos_data
.def_qos_parm
.ac
[i
].edca_txop
=
1981 priv
->qos_data
.def_qos_parm
.ac
[i
].edca_txop
=
1983 priv
->qos_data
.def_qos_parm
.ac
[i
].reserved1
= 0;
1986 priv
->qos_data
.def_qos_parm
.ac
[i
].cw_min
=
1987 cpu_to_le16((cw_min
+ 1) / 4 - 1);
1988 priv
->qos_data
.def_qos_parm
.ac
[i
].cw_max
=
1989 cpu_to_le16((cw_max
+ 1) / 2 - 1);
1990 priv
->qos_data
.def_qos_parm
.ac
[i
].aifsn
= 2;
1991 priv
->qos_data
.def_qos_parm
.ac
[i
].reserved1
= 0;
1993 priv
->qos_data
.def_qos_parm
.ac
[i
].edca_txop
=
1996 priv
->qos_data
.def_qos_parm
.ac
[i
].edca_txop
=
1999 for (i
= 1; i
< 4; i
++) {
2000 priv
->qos_data
.def_qos_parm
.ac
[i
].cw_min
=
2001 cpu_to_le16(cw_min
);
2002 priv
->qos_data
.def_qos_parm
.ac
[i
].cw_max
=
2003 cpu_to_le16(cw_max
);
2004 priv
->qos_data
.def_qos_parm
.ac
[i
].aifsn
= aifs
;
2005 priv
->qos_data
.def_qos_parm
.ac
[i
].edca_txop
= 0;
2006 priv
->qos_data
.def_qos_parm
.ac
[i
].reserved1
= 0;
2009 IWL_DEBUG_QOS("set QoS to default \n");
2011 spin_unlock_irqrestore(&priv
->lock
, flags
);
2014 static void iwl3945_activate_qos(struct iwl3945_priv
*priv
, u8 force
)
2016 unsigned long flags
;
2018 if (test_bit(STATUS_EXIT_PENDING
, &priv
->status
))
2021 if (!priv
->qos_data
.qos_enable
)
2024 spin_lock_irqsave(&priv
->lock
, flags
);
2025 priv
->qos_data
.def_qos_parm
.qos_flags
= 0;
2027 if (priv
->qos_data
.qos_cap
.q_AP
.queue_request
&&
2028 !priv
->qos_data
.qos_cap
.q_AP
.txop_request
)
2029 priv
->qos_data
.def_qos_parm
.qos_flags
|=
2030 QOS_PARAM_FLG_TXOP_TYPE_MSK
;
2032 if (priv
->qos_data
.qos_active
)
2033 priv
->qos_data
.def_qos_parm
.qos_flags
|=
2034 QOS_PARAM_FLG_UPDATE_EDCA_MSK
;
2036 spin_unlock_irqrestore(&priv
->lock
, flags
);
2038 if (force
|| iwl3945_is_associated(priv
)) {
2039 IWL_DEBUG_QOS("send QoS cmd with Qos active %d \n",
2040 priv
->qos_data
.qos_active
);
2042 iwl3945_send_qos_params_command(priv
,
2043 &(priv
->qos_data
.def_qos_parm
));
2047 #endif /* CONFIG_IWL3945_QOS */
2049 * Power management (not Tx power!) functions
2051 #define MSEC_TO_USEC 1024
2053 #define NOSLP __constant_cpu_to_le32(0)
2054 #define SLP IWL_POWER_DRIVER_ALLOW_SLEEP_MSK
2055 #define SLP_TIMEOUT(T) __constant_cpu_to_le32((T) * MSEC_TO_USEC)
2056 #define SLP_VEC(X0, X1, X2, X3, X4) {__constant_cpu_to_le32(X0), \
2057 __constant_cpu_to_le32(X1), \
2058 __constant_cpu_to_le32(X2), \
2059 __constant_cpu_to_le32(X3), \
2060 __constant_cpu_to_le32(X4)}
2063 /* default power management (not Tx power) table values */
2065 static struct iwl3945_power_vec_entry range_0
[IWL_POWER_AC
] = {
2066 {{NOSLP
, SLP_TIMEOUT(0), SLP_TIMEOUT(0), SLP_VEC(0, 0, 0, 0, 0)}, 0},
2067 {{SLP
, SLP_TIMEOUT(200), SLP_TIMEOUT(500), SLP_VEC(1, 2, 3, 4, 4)}, 0},
2068 {{SLP
, SLP_TIMEOUT(200), SLP_TIMEOUT(300), SLP_VEC(2, 4, 6, 7, 7)}, 0},
2069 {{SLP
, SLP_TIMEOUT(50), SLP_TIMEOUT(100), SLP_VEC(2, 6, 9, 9, 10)}, 0},
2070 {{SLP
, SLP_TIMEOUT(50), SLP_TIMEOUT(25), SLP_VEC(2, 7, 9, 9, 10)}, 1},
2071 {{SLP
, SLP_TIMEOUT(25), SLP_TIMEOUT(25), SLP_VEC(4, 7, 10, 10, 10)}, 1}
2075 static struct iwl3945_power_vec_entry range_1
[IWL_POWER_AC
] = {
2076 {{NOSLP
, SLP_TIMEOUT(0), SLP_TIMEOUT(0), SLP_VEC(0, 0, 0, 0, 0)}, 0},
2077 {{SLP
, SLP_TIMEOUT(200), SLP_TIMEOUT(500),
2078 SLP_VEC(1, 2, 3, 4, 0xFF)}, 0},
2079 {{SLP
, SLP_TIMEOUT(200), SLP_TIMEOUT(300),
2080 SLP_VEC(2, 4, 6, 7, 0xFF)}, 0},
2081 {{SLP
, SLP_TIMEOUT(50), SLP_TIMEOUT(100),
2082 SLP_VEC(2, 6, 9, 9, 0xFF)}, 0},
2083 {{SLP
, SLP_TIMEOUT(50), SLP_TIMEOUT(25), SLP_VEC(2, 7, 9, 9, 0xFF)}, 0},
2084 {{SLP
, SLP_TIMEOUT(25), SLP_TIMEOUT(25),
2085 SLP_VEC(4, 7, 10, 10, 0xFF)}, 0}
2088 int iwl3945_power_init_handle(struct iwl3945_priv
*priv
)
2091 struct iwl3945_power_mgr
*pow_data
;
2092 int size
= sizeof(struct iwl3945_power_vec_entry
) * IWL_POWER_AC
;
2095 IWL_DEBUG_POWER("Initialize power \n");
2097 pow_data
= &(priv
->power_data
);
2099 memset(pow_data
, 0, sizeof(*pow_data
));
2101 pow_data
->active_index
= IWL_POWER_RANGE_0
;
2102 pow_data
->dtim_val
= 0xffff;
2104 memcpy(&pow_data
->pwr_range_0
[0], &range_0
[0], size
);
2105 memcpy(&pow_data
->pwr_range_1
[0], &range_1
[0], size
);
2107 rc
= pci_read_config_word(priv
->pci_dev
, PCI_LINK_CTRL
, &pci_pm
);
2111 struct iwl3945_powertable_cmd
*cmd
;
2113 IWL_DEBUG_POWER("adjust power command flags\n");
2115 for (i
= 0; i
< IWL_POWER_AC
; i
++) {
2116 cmd
= &pow_data
->pwr_range_0
[i
].cmd
;
2119 cmd
->flags
&= ~IWL_POWER_PCI_PM_MSK
;
2121 cmd
->flags
|= IWL_POWER_PCI_PM_MSK
;
2127 static int iwl3945_update_power_cmd(struct iwl3945_priv
*priv
,
2128 struct iwl3945_powertable_cmd
*cmd
, u32 mode
)
2133 struct iwl3945_power_vec_entry
*range
;
2135 struct iwl3945_power_mgr
*pow_data
;
2137 if (mode
> IWL_POWER_INDEX_5
) {
2138 IWL_DEBUG_POWER("Error invalid power mode \n");
2141 pow_data
= &(priv
->power_data
);
2143 if (pow_data
->active_index
== IWL_POWER_RANGE_0
)
2144 range
= &pow_data
->pwr_range_0
[0];
2146 range
= &pow_data
->pwr_range_1
[1];
2148 memcpy(cmd
, &range
[mode
].cmd
, sizeof(struct iwl3945_powertable_cmd
));
2150 #ifdef IWL_MAC80211_DISABLE
2151 if (priv
->assoc_network
!= NULL
) {
2152 unsigned long flags
;
2154 period
= priv
->assoc_network
->tim
.tim_period
;
2156 #endif /*IWL_MAC80211_DISABLE */
2157 skip
= range
[mode
].no_dtim
;
2166 cmd
->flags
&= ~IWL_POWER_SLEEP_OVER_DTIM_MSK
;
2168 __le32 slp_itrvl
= cmd
->sleep_interval
[IWL_POWER_VEC_SIZE
- 1];
2169 max_sleep
= (le32_to_cpu(slp_itrvl
) / period
) * period
;
2170 cmd
->flags
|= IWL_POWER_SLEEP_OVER_DTIM_MSK
;
2173 for (i
= 0; i
< IWL_POWER_VEC_SIZE
; i
++) {
2174 if (le32_to_cpu(cmd
->sleep_interval
[i
]) > max_sleep
)
2175 cmd
->sleep_interval
[i
] = cpu_to_le32(max_sleep
);
2178 IWL_DEBUG_POWER("Flags value = 0x%08X\n", cmd
->flags
);
2179 IWL_DEBUG_POWER("Tx timeout = %u\n", le32_to_cpu(cmd
->tx_data_timeout
));
2180 IWL_DEBUG_POWER("Rx timeout = %u\n", le32_to_cpu(cmd
->rx_data_timeout
));
2181 IWL_DEBUG_POWER("Sleep interval vector = { %d , %d , %d , %d , %d }\n",
2182 le32_to_cpu(cmd
->sleep_interval
[0]),
2183 le32_to_cpu(cmd
->sleep_interval
[1]),
2184 le32_to_cpu(cmd
->sleep_interval
[2]),
2185 le32_to_cpu(cmd
->sleep_interval
[3]),
2186 le32_to_cpu(cmd
->sleep_interval
[4]));
2191 static int iwl3945_send_power_mode(struct iwl3945_priv
*priv
, u32 mode
)
2193 u32
uninitialized_var(final_mode
);
2195 struct iwl3945_powertable_cmd cmd
;
2197 /* If on battery, set to 3,
2198 * if plugged into AC power, set to CAM ("continuously aware mode"),
2199 * else user level */
2201 case IWL_POWER_BATTERY
:
2202 final_mode
= IWL_POWER_INDEX_3
;
2205 final_mode
= IWL_POWER_MODE_CAM
;
2212 iwl3945_update_power_cmd(priv
, &cmd
, final_mode
);
2214 rc
= iwl3945_send_cmd_pdu(priv
, POWER_TABLE_CMD
, sizeof(cmd
), &cmd
);
2216 if (final_mode
== IWL_POWER_MODE_CAM
)
2217 clear_bit(STATUS_POWER_PMI
, &priv
->status
);
2219 set_bit(STATUS_POWER_PMI
, &priv
->status
);
2224 int iwl3945_is_network_packet(struct iwl3945_priv
*priv
, struct ieee80211_hdr
*header
)
2226 /* Filter incoming packets to determine if they are targeted toward
2227 * this network, discarding packets coming from ourselves */
2228 switch (priv
->iw_mode
) {
2229 case IEEE80211_IF_TYPE_IBSS
: /* Header: Dest. | Source | BSSID */
2230 /* packets from our adapter are dropped (echo) */
2231 if (!compare_ether_addr(header
->addr2
, priv
->mac_addr
))
2233 /* {broad,multi}cast packets to our IBSS go through */
2234 if (is_multicast_ether_addr(header
->addr1
))
2235 return !compare_ether_addr(header
->addr3
, priv
->bssid
);
2236 /* packets to our adapter go through */
2237 return !compare_ether_addr(header
->addr1
, priv
->mac_addr
);
2238 case IEEE80211_IF_TYPE_STA
: /* Header: Dest. | AP{BSSID} | Source */
2239 /* packets from our adapter are dropped (echo) */
2240 if (!compare_ether_addr(header
->addr3
, priv
->mac_addr
))
2242 /* {broad,multi}cast packets to our BSS go through */
2243 if (is_multicast_ether_addr(header
->addr1
))
2244 return !compare_ether_addr(header
->addr2
, priv
->bssid
);
2245 /* packets to our adapter go through */
2246 return !compare_ether_addr(header
->addr1
, priv
->mac_addr
);
2252 #define TX_STATUS_ENTRY(x) case TX_STATUS_FAIL_ ## x: return #x
2254 static const char *iwl3945_get_tx_fail_reason(u32 status
)
2256 switch (status
& TX_STATUS_MSK
) {
2257 case TX_STATUS_SUCCESS
:
2259 TX_STATUS_ENTRY(SHORT_LIMIT
);
2260 TX_STATUS_ENTRY(LONG_LIMIT
);
2261 TX_STATUS_ENTRY(FIFO_UNDERRUN
);
2262 TX_STATUS_ENTRY(MGMNT_ABORT
);
2263 TX_STATUS_ENTRY(NEXT_FRAG
);
2264 TX_STATUS_ENTRY(LIFE_EXPIRE
);
2265 TX_STATUS_ENTRY(DEST_PS
);
2266 TX_STATUS_ENTRY(ABORTED
);
2267 TX_STATUS_ENTRY(BT_RETRY
);
2268 TX_STATUS_ENTRY(STA_INVALID
);
2269 TX_STATUS_ENTRY(FRAG_DROPPED
);
2270 TX_STATUS_ENTRY(TID_DISABLE
);
2271 TX_STATUS_ENTRY(FRAME_FLUSHED
);
2272 TX_STATUS_ENTRY(INSUFFICIENT_CF_POLL
);
2273 TX_STATUS_ENTRY(TX_LOCKED
);
2274 TX_STATUS_ENTRY(NO_BEACON_ON_RADAR
);
2281 * iwl3945_scan_cancel - Cancel any currently executing HW scan
2283 * NOTE: priv->mutex is not required before calling this function
2285 static int iwl3945_scan_cancel(struct iwl3945_priv
*priv
)
2287 if (!test_bit(STATUS_SCAN_HW
, &priv
->status
)) {
2288 clear_bit(STATUS_SCANNING
, &priv
->status
);
2292 if (test_bit(STATUS_SCANNING
, &priv
->status
)) {
2293 if (!test_bit(STATUS_SCAN_ABORTING
, &priv
->status
)) {
2294 IWL_DEBUG_SCAN("Queuing scan abort.\n");
2295 set_bit(STATUS_SCAN_ABORTING
, &priv
->status
);
2296 queue_work(priv
->workqueue
, &priv
->abort_scan
);
2299 IWL_DEBUG_SCAN("Scan abort already in progress.\n");
2301 return test_bit(STATUS_SCANNING
, &priv
->status
);
2308 * iwl3945_scan_cancel_timeout - Cancel any currently executing HW scan
2309 * @ms: amount of time to wait (in milliseconds) for scan to abort
2311 * NOTE: priv->mutex must be held before calling this function
2313 static int iwl3945_scan_cancel_timeout(struct iwl3945_priv
*priv
, unsigned long ms
)
2315 unsigned long now
= jiffies
;
2318 ret
= iwl3945_scan_cancel(priv
);
2320 mutex_unlock(&priv
->mutex
);
2321 while (!time_after(jiffies
, now
+ msecs_to_jiffies(ms
)) &&
2322 test_bit(STATUS_SCANNING
, &priv
->status
))
2324 mutex_lock(&priv
->mutex
);
2326 return test_bit(STATUS_SCANNING
, &priv
->status
);
2332 static void iwl3945_sequence_reset(struct iwl3945_priv
*priv
)
2334 /* Reset ieee stats */
2336 /* We don't reset the net_device_stats (ieee->stats) on
2339 priv
->last_seq_num
= -1;
2340 priv
->last_frag_num
= -1;
2341 priv
->last_packet_time
= 0;
2343 iwl3945_scan_cancel(priv
);
2346 #define MAX_UCODE_BEACON_INTERVAL 1024
2347 #define INTEL_CONN_LISTEN_INTERVAL __constant_cpu_to_le16(0xA)
2349 static __le16
iwl3945_adjust_beacon_interval(u16 beacon_val
)
2352 u16 beacon_factor
= 0;
2355 (beacon_val
+ MAX_UCODE_BEACON_INTERVAL
)
2356 / MAX_UCODE_BEACON_INTERVAL
;
2357 new_val
= beacon_val
/ beacon_factor
;
2359 return cpu_to_le16(new_val
);
2362 static void iwl3945_setup_rxon_timing(struct iwl3945_priv
*priv
)
2364 u64 interval_tm_unit
;
2366 unsigned long flags
;
2367 struct ieee80211_conf
*conf
= NULL
;
2370 conf
= ieee80211_get_hw_conf(priv
->hw
);
2372 spin_lock_irqsave(&priv
->lock
, flags
);
2373 priv
->rxon_timing
.timestamp
.dw
[1] = cpu_to_le32(priv
->timestamp1
);
2374 priv
->rxon_timing
.timestamp
.dw
[0] = cpu_to_le32(priv
->timestamp0
);
2376 priv
->rxon_timing
.listen_interval
= INTEL_CONN_LISTEN_INTERVAL
;
2378 tsf
= priv
->timestamp1
;
2379 tsf
= ((tsf
<< 32) | priv
->timestamp0
);
2381 beacon_int
= priv
->beacon_int
;
2382 spin_unlock_irqrestore(&priv
->lock
, flags
);
2384 if (priv
->iw_mode
== IEEE80211_IF_TYPE_STA
) {
2385 if (beacon_int
== 0) {
2386 priv
->rxon_timing
.beacon_interval
= cpu_to_le16(100);
2387 priv
->rxon_timing
.beacon_init_val
= cpu_to_le32(102400);
2389 priv
->rxon_timing
.beacon_interval
=
2390 cpu_to_le16(beacon_int
);
2391 priv
->rxon_timing
.beacon_interval
=
2392 iwl3945_adjust_beacon_interval(
2393 le16_to_cpu(priv
->rxon_timing
.beacon_interval
));
2396 priv
->rxon_timing
.atim_window
= 0;
2398 priv
->rxon_timing
.beacon_interval
=
2399 iwl3945_adjust_beacon_interval(conf
->beacon_int
);
2400 /* TODO: we need to get atim_window from upper stack
2401 * for now we set to 0 */
2402 priv
->rxon_timing
.atim_window
= 0;
2406 (le16_to_cpu(priv
->rxon_timing
.beacon_interval
) * 1024);
2407 result
= do_div(tsf
, interval_tm_unit
);
2408 priv
->rxon_timing
.beacon_init_val
=
2409 cpu_to_le32((u32
) ((u64
) interval_tm_unit
- result
));
2412 ("beacon interval %d beacon timer %d beacon tim %d\n",
2413 le16_to_cpu(priv
->rxon_timing
.beacon_interval
),
2414 le32_to_cpu(priv
->rxon_timing
.beacon_init_val
),
2415 le16_to_cpu(priv
->rxon_timing
.atim_window
));
2418 static int iwl3945_scan_initiate(struct iwl3945_priv
*priv
)
2420 if (priv
->iw_mode
== IEEE80211_IF_TYPE_AP
) {
2421 IWL_ERROR("APs don't scan.\n");
2425 if (!iwl3945_is_ready_rf(priv
)) {
2426 IWL_DEBUG_SCAN("Aborting scan due to not ready.\n");
2430 if (test_bit(STATUS_SCANNING
, &priv
->status
)) {
2431 IWL_DEBUG_SCAN("Scan already in progress.\n");
2435 if (test_bit(STATUS_SCAN_ABORTING
, &priv
->status
)) {
2436 IWL_DEBUG_SCAN("Scan request while abort pending. "
2441 IWL_DEBUG_INFO("Starting scan...\n");
2442 priv
->scan_bands
= 2;
2443 set_bit(STATUS_SCANNING
, &priv
->status
);
2444 priv
->scan_start
= jiffies
;
2445 priv
->scan_pass_start
= priv
->scan_start
;
2447 queue_work(priv
->workqueue
, &priv
->request_scan
);
2452 static int iwl3945_set_rxon_hwcrypto(struct iwl3945_priv
*priv
, int hw_decrypt
)
2454 struct iwl3945_rxon_cmd
*rxon
= &priv
->staging_rxon
;
2457 rxon
->filter_flags
&= ~RXON_FILTER_DIS_DECRYPT_MSK
;
2459 rxon
->filter_flags
|= RXON_FILTER_DIS_DECRYPT_MSK
;
2464 static void iwl3945_set_flags_for_phymode(struct iwl3945_priv
*priv
, u8 phymode
)
2466 if (phymode
== MODE_IEEE80211A
) {
2467 priv
->staging_rxon
.flags
&=
2468 ~(RXON_FLG_BAND_24G_MSK
| RXON_FLG_AUTO_DETECT_MSK
2469 | RXON_FLG_CCK_MSK
);
2470 priv
->staging_rxon
.flags
|= RXON_FLG_SHORT_SLOT_MSK
;
2472 /* Copied from iwl3945_bg_post_associate() */
2473 if (priv
->assoc_capability
& WLAN_CAPABILITY_SHORT_SLOT_TIME
)
2474 priv
->staging_rxon
.flags
|= RXON_FLG_SHORT_SLOT_MSK
;
2476 priv
->staging_rxon
.flags
&= ~RXON_FLG_SHORT_SLOT_MSK
;
2478 if (priv
->iw_mode
== IEEE80211_IF_TYPE_IBSS
)
2479 priv
->staging_rxon
.flags
&= ~RXON_FLG_SHORT_SLOT_MSK
;
2481 priv
->staging_rxon
.flags
|= RXON_FLG_BAND_24G_MSK
;
2482 priv
->staging_rxon
.flags
|= RXON_FLG_AUTO_DETECT_MSK
;
2483 priv
->staging_rxon
.flags
&= ~RXON_FLG_CCK_MSK
;
2488 * initialize rxon structure with default values from eeprom
2490 static void iwl3945_connection_init_rx_config(struct iwl3945_priv
*priv
)
2492 const struct iwl3945_channel_info
*ch_info
;
2494 memset(&priv
->staging_rxon
, 0, sizeof(priv
->staging_rxon
));
2496 switch (priv
->iw_mode
) {
2497 case IEEE80211_IF_TYPE_AP
:
2498 priv
->staging_rxon
.dev_type
= RXON_DEV_TYPE_AP
;
2501 case IEEE80211_IF_TYPE_STA
:
2502 priv
->staging_rxon
.dev_type
= RXON_DEV_TYPE_ESS
;
2503 priv
->staging_rxon
.filter_flags
= RXON_FILTER_ACCEPT_GRP_MSK
;
2506 case IEEE80211_IF_TYPE_IBSS
:
2507 priv
->staging_rxon
.dev_type
= RXON_DEV_TYPE_IBSS
;
2508 priv
->staging_rxon
.flags
= RXON_FLG_SHORT_PREAMBLE_MSK
;
2509 priv
->staging_rxon
.filter_flags
= RXON_FILTER_BCON_AWARE_MSK
|
2510 RXON_FILTER_ACCEPT_GRP_MSK
;
2513 case IEEE80211_IF_TYPE_MNTR
:
2514 priv
->staging_rxon
.dev_type
= RXON_DEV_TYPE_SNIFFER
;
2515 priv
->staging_rxon
.filter_flags
= RXON_FILTER_PROMISC_MSK
|
2516 RXON_FILTER_CTL2HOST_MSK
| RXON_FILTER_ACCEPT_GRP_MSK
;
2521 /* TODO: Figure out when short_preamble would be set and cache from
2523 if (!hw_to_local(priv
->hw
)->short_preamble
)
2524 priv
->staging_rxon
.flags
&= ~RXON_FLG_SHORT_PREAMBLE_MSK
;
2526 priv
->staging_rxon
.flags
|= RXON_FLG_SHORT_PREAMBLE_MSK
;
2529 ch_info
= iwl3945_get_channel_info(priv
, priv
->phymode
,
2530 le16_to_cpu(priv
->staging_rxon
.channel
));
2533 ch_info
= &priv
->channel_info
[0];
2536 * in some case A channels are all non IBSS
2537 * in this case force B/G channel
2539 if ((priv
->iw_mode
== IEEE80211_IF_TYPE_IBSS
) &&
2540 !(is_channel_ibss(ch_info
)))
2541 ch_info
= &priv
->channel_info
[0];
2543 priv
->staging_rxon
.channel
= cpu_to_le16(ch_info
->channel
);
2544 if (is_channel_a_band(ch_info
))
2545 priv
->phymode
= MODE_IEEE80211A
;
2547 priv
->phymode
= MODE_IEEE80211G
;
2549 iwl3945_set_flags_for_phymode(priv
, priv
->phymode
);
2551 priv
->staging_rxon
.ofdm_basic_rates
=
2552 (IWL_OFDM_RATES_MASK
>> IWL_FIRST_OFDM_RATE
) & 0xFF;
2553 priv
->staging_rxon
.cck_basic_rates
=
2554 (IWL_CCK_RATES_MASK
>> IWL_FIRST_CCK_RATE
) & 0xF;
2557 static int iwl3945_set_mode(struct iwl3945_priv
*priv
, int mode
)
2559 if (mode
== IEEE80211_IF_TYPE_IBSS
) {
2560 const struct iwl3945_channel_info
*ch_info
;
2562 ch_info
= iwl3945_get_channel_info(priv
,
2564 le16_to_cpu(priv
->staging_rxon
.channel
));
2566 if (!ch_info
|| !is_channel_ibss(ch_info
)) {
2567 IWL_ERROR("channel %d not IBSS channel\n",
2568 le16_to_cpu(priv
->staging_rxon
.channel
));
2573 priv
->iw_mode
= mode
;
2575 iwl3945_connection_init_rx_config(priv
);
2576 memcpy(priv
->staging_rxon
.node_addr
, priv
->mac_addr
, ETH_ALEN
);
2578 iwl3945_clear_stations_table(priv
);
2580 /* dont commit rxon if rf-kill is on*/
2581 if (!iwl3945_is_ready_rf(priv
))
2584 cancel_delayed_work(&priv
->scan_check
);
2585 if (iwl3945_scan_cancel_timeout(priv
, 100)) {
2586 IWL_WARNING("Aborted scan still in progress after 100ms\n");
2587 IWL_DEBUG_MAC80211("leaving - scan abort failed.\n");
2591 iwl3945_commit_rxon(priv
);
2596 static void iwl3945_build_tx_cmd_hwcrypto(struct iwl3945_priv
*priv
,
2597 struct ieee80211_tx_control
*ctl
,
2598 struct iwl3945_cmd
*cmd
,
2599 struct sk_buff
*skb_frag
,
2602 struct iwl3945_hw_key
*keyinfo
= &priv
->stations
[ctl
->key_idx
].keyinfo
;
2604 switch (keyinfo
->alg
) {
2606 cmd
->cmd
.tx
.sec_ctl
= TX_CMD_SEC_CCM
;
2607 memcpy(cmd
->cmd
.tx
.key
, keyinfo
->key
, keyinfo
->keylen
);
2608 IWL_DEBUG_TX("tx_cmd with aes hwcrypto\n");
2613 cmd
->cmd
.tx
.sec_ctl
= TX_CMD_SEC_TKIP
;
2616 memcpy(cmd
->cmd
.tx
.tkip_mic
.byte
, skb_frag
->tail
- 8,
2619 memset(cmd
->cmd
.tx
.tkip_mic
.byte
, 0, 8);
2624 cmd
->cmd
.tx
.sec_ctl
= TX_CMD_SEC_WEP
|
2625 (ctl
->key_idx
& TX_CMD_SEC_MSK
) << TX_CMD_SEC_SHIFT
;
2627 if (keyinfo
->keylen
== 13)
2628 cmd
->cmd
.tx
.sec_ctl
|= TX_CMD_SEC_KEY128
;
2630 memcpy(&cmd
->cmd
.tx
.key
[3], keyinfo
->key
, keyinfo
->keylen
);
2632 IWL_DEBUG_TX("Configuring packet for WEP encryption "
2633 "with key %d\n", ctl
->key_idx
);
2637 printk(KERN_ERR
"Unknown encode alg %d\n", keyinfo
->alg
);
2643 * handle build REPLY_TX command notification.
2645 static void iwl3945_build_tx_cmd_basic(struct iwl3945_priv
*priv
,
2646 struct iwl3945_cmd
*cmd
,
2647 struct ieee80211_tx_control
*ctrl
,
2648 struct ieee80211_hdr
*hdr
,
2649 int is_unicast
, u8 std_id
)
2652 u16 fc
= le16_to_cpu(hdr
->frame_control
);
2653 __le32 tx_flags
= cmd
->cmd
.tx
.tx_flags
;
2655 cmd
->cmd
.tx
.stop_time
.life_time
= TX_CMD_LIFE_TIME_INFINITE
;
2656 if (!(ctrl
->flags
& IEEE80211_TXCTL_NO_ACK
)) {
2657 tx_flags
|= TX_CMD_FLG_ACK_MSK
;
2658 if ((fc
& IEEE80211_FCTL_FTYPE
) == IEEE80211_FTYPE_MGMT
)
2659 tx_flags
|= TX_CMD_FLG_SEQ_CTL_MSK
;
2660 if (ieee80211_is_probe_response(fc
) &&
2661 !(le16_to_cpu(hdr
->seq_ctrl
) & 0xf))
2662 tx_flags
|= TX_CMD_FLG_TSF_MSK
;
2664 tx_flags
&= (~TX_CMD_FLG_ACK_MSK
);
2665 tx_flags
|= TX_CMD_FLG_SEQ_CTL_MSK
;
2668 cmd
->cmd
.tx
.sta_id
= std_id
;
2669 if (ieee80211_get_morefrag(hdr
))
2670 tx_flags
|= TX_CMD_FLG_MORE_FRAG_MSK
;
2672 qc
= ieee80211_get_qos_ctrl(hdr
);
2674 cmd
->cmd
.tx
.tid_tspec
= (u8
) (le16_to_cpu(*qc
) & 0xf);
2675 tx_flags
&= ~TX_CMD_FLG_SEQ_CTL_MSK
;
2677 tx_flags
|= TX_CMD_FLG_SEQ_CTL_MSK
;
2679 if (ctrl
->flags
& IEEE80211_TXCTL_USE_RTS_CTS
) {
2680 tx_flags
|= TX_CMD_FLG_RTS_MSK
;
2681 tx_flags
&= ~TX_CMD_FLG_CTS_MSK
;
2682 } else if (ctrl
->flags
& IEEE80211_TXCTL_USE_CTS_PROTECT
) {
2683 tx_flags
&= ~TX_CMD_FLG_RTS_MSK
;
2684 tx_flags
|= TX_CMD_FLG_CTS_MSK
;
2687 if ((tx_flags
& TX_CMD_FLG_RTS_MSK
) || (tx_flags
& TX_CMD_FLG_CTS_MSK
))
2688 tx_flags
|= TX_CMD_FLG_FULL_TXOP_PROT_MSK
;
2690 tx_flags
&= ~(TX_CMD_FLG_ANT_SEL_MSK
);
2691 if ((fc
& IEEE80211_FCTL_FTYPE
) == IEEE80211_FTYPE_MGMT
) {
2692 if ((fc
& IEEE80211_FCTL_STYPE
) == IEEE80211_STYPE_ASSOC_REQ
||
2693 (fc
& IEEE80211_FCTL_STYPE
) == IEEE80211_STYPE_REASSOC_REQ
)
2694 cmd
->cmd
.tx
.timeout
.pm_frame_timeout
= cpu_to_le16(3);
2696 cmd
->cmd
.tx
.timeout
.pm_frame_timeout
= cpu_to_le16(2);
2698 cmd
->cmd
.tx
.timeout
.pm_frame_timeout
= 0;
2700 cmd
->cmd
.tx
.driver_txop
= 0;
2701 cmd
->cmd
.tx
.tx_flags
= tx_flags
;
2702 cmd
->cmd
.tx
.next_frame_len
= 0;
2706 * iwl3945_get_sta_id - Find station's index within station table
2708 static int iwl3945_get_sta_id(struct iwl3945_priv
*priv
, struct ieee80211_hdr
*hdr
)
2711 u16 fc
= le16_to_cpu(hdr
->frame_control
);
2713 /* If this frame is broadcast or management, use broadcast station id */
2714 if (((fc
& IEEE80211_FCTL_FTYPE
) != IEEE80211_FTYPE_DATA
) ||
2715 is_multicast_ether_addr(hdr
->addr1
))
2716 return priv
->hw_setting
.bcast_sta_id
;
2718 switch (priv
->iw_mode
) {
2720 /* If we are a client station in a BSS network, use the special
2721 * AP station entry (that's the only station we communicate with) */
2722 case IEEE80211_IF_TYPE_STA
:
2725 /* If we are an AP, then find the station, or use BCAST */
2726 case IEEE80211_IF_TYPE_AP
:
2727 sta_id
= iwl3945_hw_find_station(priv
, hdr
->addr1
);
2728 if (sta_id
!= IWL_INVALID_STATION
)
2730 return priv
->hw_setting
.bcast_sta_id
;
2732 /* If this frame is going out to an IBSS network, find the station,
2733 * or create a new station table entry */
2734 case IEEE80211_IF_TYPE_IBSS
: {
2735 DECLARE_MAC_BUF(mac
);
2737 /* Create new station table entry */
2738 sta_id
= iwl3945_hw_find_station(priv
, hdr
->addr1
);
2739 if (sta_id
!= IWL_INVALID_STATION
)
2742 sta_id
= iwl3945_add_station(priv
, hdr
->addr1
, 0, CMD_ASYNC
);
2744 if (sta_id
!= IWL_INVALID_STATION
)
2747 IWL_DEBUG_DROP("Station %s not in station map. "
2748 "Defaulting to broadcast...\n",
2749 print_mac(mac
, hdr
->addr1
));
2750 iwl3945_print_hex_dump(IWL_DL_DROP
, (u8
*) hdr
, sizeof(*hdr
));
2751 return priv
->hw_setting
.bcast_sta_id
;
2754 IWL_WARNING("Unknown mode of operation: %d", priv
->iw_mode
);
2755 return priv
->hw_setting
.bcast_sta_id
;
2760 * start REPLY_TX command process
2762 static int iwl3945_tx_skb(struct iwl3945_priv
*priv
,
2763 struct sk_buff
*skb
, struct ieee80211_tx_control
*ctl
)
2765 struct ieee80211_hdr
*hdr
= (struct ieee80211_hdr
*)skb
->data
;
2766 struct iwl3945_tfd_frame
*tfd
;
2768 int txq_id
= ctl
->queue
;
2769 struct iwl3945_tx_queue
*txq
= NULL
;
2770 struct iwl3945_queue
*q
= NULL
;
2771 dma_addr_t phys_addr
;
2772 dma_addr_t txcmd_phys
;
2773 struct iwl3945_cmd
*out_cmd
= NULL
;
2774 u16 len
, idx
, len_org
;
2775 u8 id
, hdr_len
, unicast
;
2780 u8 wait_write_ptr
= 0;
2781 unsigned long flags
;
2784 spin_lock_irqsave(&priv
->lock
, flags
);
2785 if (iwl3945_is_rfkill(priv
)) {
2786 IWL_DEBUG_DROP("Dropping - RF KILL\n");
2791 IWL_DEBUG_DROP("Dropping - !priv->vif\n");
2795 if ((ctl
->tx_rate
& 0xFF) == IWL_INVALID_RATE
) {
2796 IWL_ERROR("ERROR: No TX rate available.\n");
2800 unicast
= !is_multicast_ether_addr(hdr
->addr1
);
2803 fc
= le16_to_cpu(hdr
->frame_control
);
2805 #ifdef CONFIG_IWL3945_DEBUG
2806 if (ieee80211_is_auth(fc
))
2807 IWL_DEBUG_TX("Sending AUTH frame\n");
2808 else if (ieee80211_is_assoc_request(fc
))
2809 IWL_DEBUG_TX("Sending ASSOC frame\n");
2810 else if (ieee80211_is_reassoc_request(fc
))
2811 IWL_DEBUG_TX("Sending REASSOC frame\n");
2814 /* drop all data frame if we are not associated */
2815 if ((!iwl3945_is_associated(priv
) ||
2816 ((priv
->iw_mode
== IEEE80211_IF_TYPE_STA
) && !priv
->assoc_id
)) &&
2817 ((fc
& IEEE80211_FCTL_FTYPE
) == IEEE80211_FTYPE_DATA
)) {
2818 IWL_DEBUG_DROP("Dropping - !iwl3945_is_associated\n");
2822 spin_unlock_irqrestore(&priv
->lock
, flags
);
2824 hdr_len
= ieee80211_get_hdrlen(fc
);
2826 /* Find (or create) index into station table for destination station */
2827 sta_id
= iwl3945_get_sta_id(priv
, hdr
);
2828 if (sta_id
== IWL_INVALID_STATION
) {
2829 DECLARE_MAC_BUF(mac
);
2831 IWL_DEBUG_DROP("Dropping - INVALID STATION: %s\n",
2832 print_mac(mac
, hdr
->addr1
));
2836 IWL_DEBUG_RATE("station Id %d\n", sta_id
);
2838 qc
= ieee80211_get_qos_ctrl(hdr
);
2840 u8 tid
= (u8
)(le16_to_cpu(*qc
) & 0xf);
2841 seq_number
= priv
->stations
[sta_id
].tid
[tid
].seq_number
&
2843 hdr
->seq_ctrl
= cpu_to_le16(seq_number
) |
2845 __constant_cpu_to_le16(IEEE80211_SCTL_FRAG
));
2849 /* Descriptor for chosen Tx queue */
2850 txq
= &priv
->txq
[txq_id
];
2853 spin_lock_irqsave(&priv
->lock
, flags
);
2855 /* Set up first empty TFD within this queue's circular TFD buffer */
2856 tfd
= &txq
->bd
[q
->write_ptr
];
2857 memset(tfd
, 0, sizeof(*tfd
));
2858 control_flags
= (u32
*) tfd
;
2859 idx
= get_cmd_index(q
, q
->write_ptr
, 0);
2861 /* Set up driver data for this TFD */
2862 memset(&(txq
->txb
[q
->write_ptr
]), 0, sizeof(struct iwl3945_tx_info
));
2863 txq
->txb
[q
->write_ptr
].skb
[0] = skb
;
2864 memcpy(&(txq
->txb
[q
->write_ptr
].status
.control
),
2865 ctl
, sizeof(struct ieee80211_tx_control
));
2867 /* Init first empty entry in queue's array of Tx/cmd buffers */
2868 out_cmd
= &txq
->cmd
[idx
];
2869 memset(&out_cmd
->hdr
, 0, sizeof(out_cmd
->hdr
));
2870 memset(&out_cmd
->cmd
.tx
, 0, sizeof(out_cmd
->cmd
.tx
));
2873 * Set up the Tx-command (not MAC!) header.
2874 * Store the chosen Tx queue and TFD index within the sequence field;
2875 * after Tx, uCode's Tx response will return this value so driver can
2876 * locate the frame within the tx queue and do post-tx processing.
2878 out_cmd
->hdr
.cmd
= REPLY_TX
;
2879 out_cmd
->hdr
.sequence
= cpu_to_le16((u16
)(QUEUE_TO_SEQ(txq_id
) |
2880 INDEX_TO_SEQ(q
->write_ptr
)));
2882 /* Copy MAC header from skb into command buffer */
2883 memcpy(out_cmd
->cmd
.tx
.hdr
, hdr
, hdr_len
);
2886 * Use the first empty entry in this queue's command buffer array
2887 * to contain the Tx command and MAC header concatenated together
2888 * (payload data will be in another buffer).
2889 * Size of this varies, due to varying MAC header length.
2890 * If end is not dword aligned, we'll have 2 extra bytes at the end
2891 * of the MAC header (device reads on dword boundaries).
2892 * We'll tell device about this padding later.
2894 len
= priv
->hw_setting
.tx_cmd_len
+
2895 sizeof(struct iwl3945_cmd_header
) + hdr_len
;
2898 len
= (len
+ 3) & ~3;
2905 /* Physical address of this Tx command's header (not MAC header!),
2906 * within command buffer array. */
2907 txcmd_phys
= txq
->dma_addr_cmd
+ sizeof(struct iwl3945_cmd
) * idx
+
2908 offsetof(struct iwl3945_cmd
, hdr
);
2910 /* Add buffer containing Tx command and MAC(!) header to TFD's
2912 iwl3945_hw_txq_attach_buf_to_tfd(priv
, tfd
, txcmd_phys
, len
);
2914 if (!(ctl
->flags
& IEEE80211_TXCTL_DO_NOT_ENCRYPT
))
2915 iwl3945_build_tx_cmd_hwcrypto(priv
, ctl
, out_cmd
, skb
, 0);
2917 /* Set up TFD's 2nd entry to point directly to remainder of skb,
2918 * if any (802.11 null frames have no payload). */
2919 len
= skb
->len
- hdr_len
;
2921 phys_addr
= pci_map_single(priv
->pci_dev
, skb
->data
+ hdr_len
,
2922 len
, PCI_DMA_TODEVICE
);
2923 iwl3945_hw_txq_attach_buf_to_tfd(priv
, tfd
, phys_addr
, len
);
2927 /* If there is no payload, then we use only one Tx buffer */
2928 *control_flags
= TFD_CTL_COUNT_SET(1);
2930 /* Else use 2 buffers.
2931 * Tell 3945 about any padding after MAC header */
2932 *control_flags
= TFD_CTL_COUNT_SET(2) |
2933 TFD_CTL_PAD_SET(U32_PAD(len
));
2935 /* Total # bytes to be transmitted */
2936 len
= (u16
)skb
->len
;
2937 out_cmd
->cmd
.tx
.len
= cpu_to_le16(len
);
2939 /* TODO need this for burst mode later on */
2940 iwl3945_build_tx_cmd_basic(priv
, out_cmd
, ctl
, hdr
, unicast
, sta_id
);
2942 /* set is_hcca to 0; it probably will never be implemented */
2943 iwl3945_hw_build_tx_cmd_rate(priv
, out_cmd
, ctl
, hdr
, sta_id
, 0);
2945 out_cmd
->cmd
.tx
.tx_flags
&= ~TX_CMD_FLG_ANT_A_MSK
;
2946 out_cmd
->cmd
.tx
.tx_flags
&= ~TX_CMD_FLG_ANT_B_MSK
;
2948 if (!ieee80211_get_morefrag(hdr
)) {
2949 txq
->need_update
= 1;
2951 u8 tid
= (u8
)(le16_to_cpu(*qc
) & 0xf);
2952 priv
->stations
[sta_id
].tid
[tid
].seq_number
= seq_number
;
2956 txq
->need_update
= 0;
2959 iwl3945_print_hex_dump(IWL_DL_TX
, out_cmd
->cmd
.payload
,
2960 sizeof(out_cmd
->cmd
.tx
));
2962 iwl3945_print_hex_dump(IWL_DL_TX
, (u8
*)out_cmd
->cmd
.tx
.hdr
,
2963 ieee80211_get_hdrlen(fc
));
2965 /* Tell device the write index *just past* this latest filled TFD */
2966 q
->write_ptr
= iwl3945_queue_inc_wrap(q
->write_ptr
, q
->n_bd
);
2967 rc
= iwl3945_tx_queue_update_write_ptr(priv
, txq
);
2968 spin_unlock_irqrestore(&priv
->lock
, flags
);
2973 if ((iwl3945_queue_space(q
) < q
->high_mark
)
2974 && priv
->mac80211_registered
) {
2975 if (wait_write_ptr
) {
2976 spin_lock_irqsave(&priv
->lock
, flags
);
2977 txq
->need_update
= 1;
2978 iwl3945_tx_queue_update_write_ptr(priv
, txq
);
2979 spin_unlock_irqrestore(&priv
->lock
, flags
);
2982 ieee80211_stop_queue(priv
->hw
, ctl
->queue
);
2988 spin_unlock_irqrestore(&priv
->lock
, flags
);
2993 static void iwl3945_set_rate(struct iwl3945_priv
*priv
)
2995 const struct ieee80211_hw_mode
*hw
= NULL
;
2996 struct ieee80211_rate
*rate
;
2999 hw
= iwl3945_get_hw_mode(priv
, priv
->phymode
);
3001 IWL_ERROR("Failed to set rate: unable to get hw mode\n");
3005 priv
->active_rate
= 0;
3006 priv
->active_rate_basic
= 0;
3008 IWL_DEBUG_RATE("Setting rates for 802.11%c\n",
3009 hw
->mode
== MODE_IEEE80211A
?
3010 'a' : ((hw
->mode
== MODE_IEEE80211B
) ? 'b' : 'g'));
3012 for (i
= 0; i
< hw
->num_rates
; i
++) {
3013 rate
= &(hw
->rates
[i
]);
3014 if ((rate
->val
< IWL_RATE_COUNT
) &&
3015 (rate
->flags
& IEEE80211_RATE_SUPPORTED
)) {
3016 IWL_DEBUG_RATE("Adding rate index %d (plcp %d)%s\n",
3017 rate
->val
, iwl3945_rates
[rate
->val
].plcp
,
3018 (rate
->flags
& IEEE80211_RATE_BASIC
) ?
3020 priv
->active_rate
|= (1 << rate
->val
);
3021 if (rate
->flags
& IEEE80211_RATE_BASIC
)
3022 priv
->active_rate_basic
|= (1 << rate
->val
);
3024 IWL_DEBUG_RATE("Not adding rate %d (plcp %d)\n",
3025 rate
->val
, iwl3945_rates
[rate
->val
].plcp
);
3028 IWL_DEBUG_RATE("Set active_rate = %0x, active_rate_basic = %0x\n",
3029 priv
->active_rate
, priv
->active_rate_basic
);
3032 * If a basic rate is configured, then use it (adding IWL_RATE_1M_MASK)
3033 * otherwise set it to the default of all CCK rates and 6, 12, 24 for
3036 if (priv
->active_rate_basic
& IWL_CCK_BASIC_RATES_MASK
)
3037 priv
->staging_rxon
.cck_basic_rates
=
3038 ((priv
->active_rate_basic
&
3039 IWL_CCK_RATES_MASK
) >> IWL_FIRST_CCK_RATE
) & 0xF;
3041 priv
->staging_rxon
.cck_basic_rates
=
3042 (IWL_CCK_BASIC_RATES_MASK
>> IWL_FIRST_CCK_RATE
) & 0xF;
3044 if (priv
->active_rate_basic
& IWL_OFDM_BASIC_RATES_MASK
)
3045 priv
->staging_rxon
.ofdm_basic_rates
=
3046 ((priv
->active_rate_basic
&
3047 (IWL_OFDM_BASIC_RATES_MASK
| IWL_RATE_6M_MASK
)) >>
3048 IWL_FIRST_OFDM_RATE
) & 0xFF;
3050 priv
->staging_rxon
.ofdm_basic_rates
=
3051 (IWL_OFDM_BASIC_RATES_MASK
>> IWL_FIRST_OFDM_RATE
) & 0xFF;
3054 static void iwl3945_radio_kill_sw(struct iwl3945_priv
*priv
, int disable_radio
)
3056 unsigned long flags
;
3058 if (!!disable_radio
== test_bit(STATUS_RF_KILL_SW
, &priv
->status
))
3061 IWL_DEBUG_RF_KILL("Manual SW RF KILL set to: RADIO %s\n",
3062 disable_radio
? "OFF" : "ON");
3064 if (disable_radio
) {
3065 iwl3945_scan_cancel(priv
);
3066 /* FIXME: This is a workaround for AP */
3067 if (priv
->iw_mode
!= IEEE80211_IF_TYPE_AP
) {
3068 spin_lock_irqsave(&priv
->lock
, flags
);
3069 iwl3945_write32(priv
, CSR_UCODE_DRV_GP1_SET
,
3070 CSR_UCODE_SW_BIT_RFKILL
);
3071 spin_unlock_irqrestore(&priv
->lock
, flags
);
3072 iwl3945_send_card_state(priv
, CARD_STATE_CMD_DISABLE
, 0);
3073 set_bit(STATUS_RF_KILL_SW
, &priv
->status
);
3078 spin_lock_irqsave(&priv
->lock
, flags
);
3079 iwl3945_write32(priv
, CSR_UCODE_DRV_GP1_CLR
, CSR_UCODE_SW_BIT_RFKILL
);
3081 clear_bit(STATUS_RF_KILL_SW
, &priv
->status
);
3082 spin_unlock_irqrestore(&priv
->lock
, flags
);
3087 spin_lock_irqsave(&priv
->lock
, flags
);
3088 iwl3945_read32(priv
, CSR_UCODE_DRV_GP1
);
3089 if (!iwl3945_grab_nic_access(priv
))
3090 iwl3945_release_nic_access(priv
);
3091 spin_unlock_irqrestore(&priv
->lock
, flags
);
3093 if (test_bit(STATUS_RF_KILL_HW
, &priv
->status
)) {
3094 IWL_DEBUG_RF_KILL("Can not turn radio back on - "
3095 "disabled by HW switch\n");
3099 queue_work(priv
->workqueue
, &priv
->restart
);
3103 void iwl3945_set_decrypted_flag(struct iwl3945_priv
*priv
, struct sk_buff
*skb
,
3104 u32 decrypt_res
, struct ieee80211_rx_status
*stats
)
3107 le16_to_cpu(((struct ieee80211_hdr
*)skb
->data
)->frame_control
);
3109 if (priv
->active_rxon
.filter_flags
& RXON_FILTER_DIS_DECRYPT_MSK
)
3112 if (!(fc
& IEEE80211_FCTL_PROTECTED
))
3115 IWL_DEBUG_RX("decrypt_res:0x%x\n", decrypt_res
);
3116 switch (decrypt_res
& RX_RES_STATUS_SEC_TYPE_MSK
) {
3117 case RX_RES_STATUS_SEC_TYPE_TKIP
:
3118 if ((decrypt_res
& RX_RES_STATUS_DECRYPT_TYPE_MSK
) ==
3119 RX_RES_STATUS_BAD_ICV_MIC
)
3120 stats
->flag
|= RX_FLAG_MMIC_ERROR
;
3121 case RX_RES_STATUS_SEC_TYPE_WEP
:
3122 case RX_RES_STATUS_SEC_TYPE_CCMP
:
3123 if ((decrypt_res
& RX_RES_STATUS_DECRYPT_TYPE_MSK
) ==
3124 RX_RES_STATUS_DECRYPT_OK
) {
3125 IWL_DEBUG_RX("hw decrypt successfully!!!\n");
3126 stats
->flag
|= RX_FLAG_DECRYPTED
;
3135 #define IWL_PACKET_RETRY_TIME HZ
3137 int iwl3945_is_duplicate_packet(struct iwl3945_priv
*priv
, struct ieee80211_hdr
*header
)
3139 u16 sc
= le16_to_cpu(header
->seq_ctrl
);
3140 u16 seq
= (sc
& IEEE80211_SCTL_SEQ
) >> 4;
3141 u16 frag
= sc
& IEEE80211_SCTL_FRAG
;
3142 u16
*last_seq
, *last_frag
;
3143 unsigned long *last_time
;
3145 switch (priv
->iw_mode
) {
3146 case IEEE80211_IF_TYPE_IBSS
:{
3147 struct list_head
*p
;
3148 struct iwl3945_ibss_seq
*entry
= NULL
;
3149 u8
*mac
= header
->addr2
;
3150 int index
= mac
[5] & (IWL_IBSS_MAC_HASH_SIZE
- 1);
3152 __list_for_each(p
, &priv
->ibss_mac_hash
[index
]) {
3153 entry
= list_entry(p
, struct iwl3945_ibss_seq
, list
);
3154 if (!compare_ether_addr(entry
->mac
, mac
))
3157 if (p
== &priv
->ibss_mac_hash
[index
]) {
3158 entry
= kzalloc(sizeof(*entry
), GFP_ATOMIC
);
3160 IWL_ERROR("Cannot malloc new mac entry\n");
3163 memcpy(entry
->mac
, mac
, ETH_ALEN
);
3164 entry
->seq_num
= seq
;
3165 entry
->frag_num
= frag
;
3166 entry
->packet_time
= jiffies
;
3167 list_add(&entry
->list
, &priv
->ibss_mac_hash
[index
]);
3170 last_seq
= &entry
->seq_num
;
3171 last_frag
= &entry
->frag_num
;
3172 last_time
= &entry
->packet_time
;
3175 case IEEE80211_IF_TYPE_STA
:
3176 last_seq
= &priv
->last_seq_num
;
3177 last_frag
= &priv
->last_frag_num
;
3178 last_time
= &priv
->last_packet_time
;
3183 if ((*last_seq
== seq
) &&
3184 time_after(*last_time
+ IWL_PACKET_RETRY_TIME
, jiffies
)) {
3185 if (*last_frag
== frag
)
3187 if (*last_frag
+ 1 != frag
)
3188 /* out-of-order fragment */
3194 *last_time
= jiffies
;
3201 #ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
3203 #include "iwl-spectrum.h"
3205 #define BEACON_TIME_MASK_LOW 0x00FFFFFF
3206 #define BEACON_TIME_MASK_HIGH 0xFF000000
3207 #define TIME_UNIT 1024
3210 * extended beacon time format
3211 * time in usec will be changed into a 32-bit value in 8:24 format
3212 * the high 1 byte is the beacon counts
3213 * the lower 3 bytes is the time in usec within one beacon interval
3216 static u32
iwl3945_usecs_to_beacons(u32 usec
, u32 beacon_interval
)
3220 u32 interval
= beacon_interval
* 1024;
3222 if (!interval
|| !usec
)
3225 quot
= (usec
/ interval
) & (BEACON_TIME_MASK_HIGH
>> 24);
3226 rem
= (usec
% interval
) & BEACON_TIME_MASK_LOW
;
3228 return (quot
<< 24) + rem
;
3231 /* base is usually what we get from ucode with each received frame,
3232 * the same as HW timer counter counting down
3235 static __le32
iwl3945_add_beacon_time(u32 base
, u32 addon
, u32 beacon_interval
)
3237 u32 base_low
= base
& BEACON_TIME_MASK_LOW
;
3238 u32 addon_low
= addon
& BEACON_TIME_MASK_LOW
;
3239 u32 interval
= beacon_interval
* TIME_UNIT
;
3240 u32 res
= (base
& BEACON_TIME_MASK_HIGH
) +
3241 (addon
& BEACON_TIME_MASK_HIGH
);
3243 if (base_low
> addon_low
)
3244 res
+= base_low
- addon_low
;
3245 else if (base_low
< addon_low
) {
3246 res
+= interval
+ base_low
- addon_low
;
3251 return cpu_to_le32(res
);
3254 static int iwl3945_get_measurement(struct iwl3945_priv
*priv
,
3255 struct ieee80211_measurement_params
*params
,
3258 struct iwl3945_spectrum_cmd spectrum
;
3259 struct iwl3945_rx_packet
*res
;
3260 struct iwl3945_host_cmd cmd
= {
3261 .id
= REPLY_SPECTRUM_MEASUREMENT_CMD
,
3262 .data
= (void *)&spectrum
,
3263 .meta
.flags
= CMD_WANT_SKB
,
3265 u32 add_time
= le64_to_cpu(params
->start_time
);
3267 int spectrum_resp_status
;
3268 int duration
= le16_to_cpu(params
->duration
);
3270 if (iwl3945_is_associated(priv
))
3272 iwl3945_usecs_to_beacons(
3273 le64_to_cpu(params
->start_time
) - priv
->last_tsf
,
3274 le16_to_cpu(priv
->rxon_timing
.beacon_interval
));
3276 memset(&spectrum
, 0, sizeof(spectrum
));
3278 spectrum
.channel_count
= cpu_to_le16(1);
3280 RXON_FLG_TSF2HOST_MSK
| RXON_FLG_ANT_A_MSK
| RXON_FLG_DIS_DIV_MSK
;
3281 spectrum
.filter_flags
= MEASUREMENT_FILTER_FLAG
;
3282 cmd
.len
= sizeof(spectrum
);
3283 spectrum
.len
= cpu_to_le16(cmd
.len
- sizeof(spectrum
.len
));
3285 if (iwl3945_is_associated(priv
))
3286 spectrum
.start_time
=
3287 iwl3945_add_beacon_time(priv
->last_beacon_time
,
3289 le16_to_cpu(priv
->rxon_timing
.beacon_interval
));
3291 spectrum
.start_time
= 0;
3293 spectrum
.channels
[0].duration
= cpu_to_le32(duration
* TIME_UNIT
);
3294 spectrum
.channels
[0].channel
= params
->channel
;
3295 spectrum
.channels
[0].type
= type
;
3296 if (priv
->active_rxon
.flags
& RXON_FLG_BAND_24G_MSK
)
3297 spectrum
.flags
|= RXON_FLG_BAND_24G_MSK
|
3298 RXON_FLG_AUTO_DETECT_MSK
| RXON_FLG_TGG_PROTECT_MSK
;
3300 rc
= iwl3945_send_cmd_sync(priv
, &cmd
);
3304 res
= (struct iwl3945_rx_packet
*)cmd
.meta
.u
.skb
->data
;
3305 if (res
->hdr
.flags
& IWL_CMD_FAILED_MSK
) {
3306 IWL_ERROR("Bad return from REPLY_RX_ON_ASSOC command\n");
3310 spectrum_resp_status
= le16_to_cpu(res
->u
.spectrum
.status
);
3311 switch (spectrum_resp_status
) {
3312 case 0: /* Command will be handled */
3313 if (res
->u
.spectrum
.id
!= 0xff) {
3314 IWL_DEBUG_INFO("Replaced existing measurement: %d\n",
3315 res
->u
.spectrum
.id
);
3316 priv
->measurement_status
&= ~MEASUREMENT_READY
;
3318 priv
->measurement_status
|= MEASUREMENT_ACTIVE
;
3322 case 1: /* Command will not be handled */
3327 dev_kfree_skb_any(cmd
.meta
.u
.skb
);
3333 static void iwl3945_txstatus_to_ieee(struct iwl3945_priv
*priv
,
3334 struct iwl3945_tx_info
*tx_sta
)
3337 tx_sta
->status
.ack_signal
= 0;
3338 tx_sta
->status
.excessive_retries
= 0;
3339 tx_sta
->status
.queue_length
= 0;
3340 tx_sta
->status
.queue_number
= 0;
3343 ieee80211_tx_status_irqsafe(priv
->hw
,
3344 tx_sta
->skb
[0], &(tx_sta
->status
));
3346 ieee80211_tx_status(priv
->hw
,
3347 tx_sta
->skb
[0], &(tx_sta
->status
));
3349 tx_sta
->skb
[0] = NULL
;
3353 * iwl3945_tx_queue_reclaim - Reclaim Tx queue entries already Tx'd
3355 * When FW advances 'R' index, all entries between old and new 'R' index
3356 * need to be reclaimed. As result, some free space forms. If there is
3357 * enough free space (> low mark), wake the stack that feeds us.
3359 static int iwl3945_tx_queue_reclaim(struct iwl3945_priv
*priv
, int txq_id
, int index
)
3361 struct iwl3945_tx_queue
*txq
= &priv
->txq
[txq_id
];
3362 struct iwl3945_queue
*q
= &txq
->q
;
3365 if ((index
>= q
->n_bd
) || (x2_queue_used(q
, index
) == 0)) {
3366 IWL_ERROR("Read index for DMA queue txq id (%d), index %d, "
3367 "is out of range [0-%d] %d %d.\n", txq_id
,
3368 index
, q
->n_bd
, q
->write_ptr
, q
->read_ptr
);
3372 for (index
= iwl3945_queue_inc_wrap(index
, q
->n_bd
);
3373 q
->read_ptr
!= index
;
3374 q
->read_ptr
= iwl3945_queue_inc_wrap(q
->read_ptr
, q
->n_bd
)) {
3375 if (txq_id
!= IWL_CMD_QUEUE_NUM
) {
3376 iwl3945_txstatus_to_ieee(priv
,
3377 &(txq
->txb
[txq
->q
.read_ptr
]));
3378 iwl3945_hw_txq_free_tfd(priv
, txq
);
3379 } else if (nfreed
> 1) {
3380 IWL_ERROR("HCMD skipped: index (%d) %d %d\n", index
,
3381 q
->write_ptr
, q
->read_ptr
);
3382 queue_work(priv
->workqueue
, &priv
->restart
);
3387 if (iwl3945_queue_space(q
) > q
->low_mark
&& (txq_id
>= 0) &&
3388 (txq_id
!= IWL_CMD_QUEUE_NUM
) &&
3389 priv
->mac80211_registered
)
3390 ieee80211_wake_queue(priv
->hw
, txq_id
);
3396 static int iwl3945_is_tx_success(u32 status
)
3398 return (status
& 0xFF) == 0x1;
3401 /******************************************************************************
3403 * Generic RX handler implementations
3405 ******************************************************************************/
3407 * iwl3945_rx_reply_tx - Handle Tx response
3409 static void iwl3945_rx_reply_tx(struct iwl3945_priv
*priv
,
3410 struct iwl3945_rx_mem_buffer
*rxb
)
3412 struct iwl3945_rx_packet
*pkt
= (void *)rxb
->skb
->data
;
3413 u16 sequence
= le16_to_cpu(pkt
->hdr
.sequence
);
3414 int txq_id
= SEQ_TO_QUEUE(sequence
);
3415 int index
= SEQ_TO_INDEX(sequence
);
3416 struct iwl3945_tx_queue
*txq
= &priv
->txq
[txq_id
];
3417 struct ieee80211_tx_status
*tx_status
;
3418 struct iwl3945_tx_resp
*tx_resp
= (void *)&pkt
->u
.raw
[0];
3419 u32 status
= le32_to_cpu(tx_resp
->status
);
3421 if ((index
>= txq
->q
.n_bd
) || (x2_queue_used(&txq
->q
, index
) == 0)) {
3422 IWL_ERROR("Read index for DMA queue txq_id (%d) index %d "
3423 "is out of range [0-%d] %d %d\n", txq_id
,
3424 index
, txq
->q
.n_bd
, txq
->q
.write_ptr
,
3429 tx_status
= &(txq
->txb
[txq
->q
.read_ptr
].status
);
3431 tx_status
->retry_count
= tx_resp
->failure_frame
;
3432 tx_status
->queue_number
= status
;
3433 tx_status
->queue_length
= tx_resp
->bt_kill_count
;
3434 tx_status
->queue_length
|= tx_resp
->failure_rts
;
3437 iwl3945_is_tx_success(status
) ? IEEE80211_TX_STATUS_ACK
: 0;
3439 tx_status
->control
.tx_rate
= iwl3945_rate_index_from_plcp(tx_resp
->rate
);
3441 IWL_DEBUG_TX("Tx queue %d Status %s (0x%08x) plcp rate %d retries %d\n",
3442 txq_id
, iwl3945_get_tx_fail_reason(status
), status
,
3443 tx_resp
->rate
, tx_resp
->failure_frame
);
3445 IWL_DEBUG_TX_REPLY("Tx queue reclaim %d\n", index
);
3447 iwl3945_tx_queue_reclaim(priv
, txq_id
, index
);
3449 if (iwl_check_bits(status
, TX_ABORT_REQUIRED_MSK
))
3450 IWL_ERROR("TODO: Implement Tx ABORT REQUIRED!!!\n");
3454 static void iwl3945_rx_reply_alive(struct iwl3945_priv
*priv
,
3455 struct iwl3945_rx_mem_buffer
*rxb
)
3457 struct iwl3945_rx_packet
*pkt
= (void *)rxb
->skb
->data
;
3458 struct iwl3945_alive_resp
*palive
;
3459 struct delayed_work
*pwork
;
3461 palive
= &pkt
->u
.alive_frame
;
3463 IWL_DEBUG_INFO("Alive ucode status 0x%08X revision "
3465 palive
->is_valid
, palive
->ver_type
,
3466 palive
->ver_subtype
);
3468 if (palive
->ver_subtype
== INITIALIZE_SUBTYPE
) {
3469 IWL_DEBUG_INFO("Initialization Alive received.\n");
3470 memcpy(&priv
->card_alive_init
,
3471 &pkt
->u
.alive_frame
,
3472 sizeof(struct iwl3945_init_alive_resp
));
3473 pwork
= &priv
->init_alive_start
;
3475 IWL_DEBUG_INFO("Runtime Alive received.\n");
3476 memcpy(&priv
->card_alive
, &pkt
->u
.alive_frame
,
3477 sizeof(struct iwl3945_alive_resp
));
3478 pwork
= &priv
->alive_start
;
3479 iwl3945_disable_events(priv
);
3482 /* We delay the ALIVE response by 5ms to
3483 * give the HW RF Kill time to activate... */
3484 if (palive
->is_valid
== UCODE_VALID_OK
)
3485 queue_delayed_work(priv
->workqueue
, pwork
,
3486 msecs_to_jiffies(5));
3488 IWL_WARNING("uCode did not respond OK.\n");
3491 static void iwl3945_rx_reply_add_sta(struct iwl3945_priv
*priv
,
3492 struct iwl3945_rx_mem_buffer
*rxb
)
3494 struct iwl3945_rx_packet
*pkt
= (void *)rxb
->skb
->data
;
3496 IWL_DEBUG_RX("Received REPLY_ADD_STA: 0x%02X\n", pkt
->u
.status
);
3500 static void iwl3945_rx_reply_error(struct iwl3945_priv
*priv
,
3501 struct iwl3945_rx_mem_buffer
*rxb
)
3503 struct iwl3945_rx_packet
*pkt
= (void *)rxb
->skb
->data
;
3505 IWL_ERROR("Error Reply type 0x%08X cmd %s (0x%02X) "
3506 "seq 0x%04X ser 0x%08X\n",
3507 le32_to_cpu(pkt
->u
.err_resp
.error_type
),
3508 get_cmd_string(pkt
->u
.err_resp
.cmd_id
),
3509 pkt
->u
.err_resp
.cmd_id
,
3510 le16_to_cpu(pkt
->u
.err_resp
.bad_cmd_seq_num
),
3511 le32_to_cpu(pkt
->u
.err_resp
.error_info
));
3514 #define TX_STATUS_ENTRY(x) case TX_STATUS_FAIL_ ## x: return #x
3516 static void iwl3945_rx_csa(struct iwl3945_priv
*priv
, struct iwl3945_rx_mem_buffer
*rxb
)
3518 struct iwl3945_rx_packet
*pkt
= (void *)rxb
->skb
->data
;
3519 struct iwl3945_rxon_cmd
*rxon
= (void *)&priv
->active_rxon
;
3520 struct iwl3945_csa_notification
*csa
= &(pkt
->u
.csa_notif
);
3521 IWL_DEBUG_11H("CSA notif: channel %d, status %d\n",
3522 le16_to_cpu(csa
->channel
), le32_to_cpu(csa
->status
));
3523 rxon
->channel
= csa
->channel
;
3524 priv
->staging_rxon
.channel
= csa
->channel
;
3527 static void iwl3945_rx_spectrum_measure_notif(struct iwl3945_priv
*priv
,
3528 struct iwl3945_rx_mem_buffer
*rxb
)
3530 #ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
3531 struct iwl3945_rx_packet
*pkt
= (void *)rxb
->skb
->data
;
3532 struct iwl3945_spectrum_notification
*report
= &(pkt
->u
.spectrum_notif
);
3534 if (!report
->state
) {
3535 IWL_DEBUG(IWL_DL_11H
| IWL_DL_INFO
,
3536 "Spectrum Measure Notification: Start\n");
3540 memcpy(&priv
->measure_report
, report
, sizeof(*report
));
3541 priv
->measurement_status
|= MEASUREMENT_READY
;
3545 static void iwl3945_rx_pm_sleep_notif(struct iwl3945_priv
*priv
,
3546 struct iwl3945_rx_mem_buffer
*rxb
)
3548 #ifdef CONFIG_IWL3945_DEBUG
3549 struct iwl3945_rx_packet
*pkt
= (void *)rxb
->skb
->data
;
3550 struct iwl3945_sleep_notification
*sleep
= &(pkt
->u
.sleep_notif
);
3551 IWL_DEBUG_RX("sleep mode: %d, src: %d\n",
3552 sleep
->pm_sleep_mode
, sleep
->pm_wakeup_src
);
3556 static void iwl3945_rx_pm_debug_statistics_notif(struct iwl3945_priv
*priv
,
3557 struct iwl3945_rx_mem_buffer
*rxb
)
3559 struct iwl3945_rx_packet
*pkt
= (void *)rxb
->skb
->data
;
3560 IWL_DEBUG_RADIO("Dumping %d bytes of unhandled "
3561 "notification for %s:\n",
3562 le32_to_cpu(pkt
->len
), get_cmd_string(pkt
->hdr
.cmd
));
3563 iwl3945_print_hex_dump(IWL_DL_RADIO
, pkt
->u
.raw
, le32_to_cpu(pkt
->len
));
3566 static void iwl3945_bg_beacon_update(struct work_struct
*work
)
3568 struct iwl3945_priv
*priv
=
3569 container_of(work
, struct iwl3945_priv
, beacon_update
);
3570 struct sk_buff
*beacon
;
3572 /* Pull updated AP beacon from mac80211. will fail if not in AP mode */
3573 beacon
= ieee80211_beacon_get(priv
->hw
, priv
->vif
, NULL
);
3576 IWL_ERROR("update beacon failed\n");
3580 mutex_lock(&priv
->mutex
);
3581 /* new beacon skb is allocated every time; dispose previous.*/
3582 if (priv
->ibss_beacon
)
3583 dev_kfree_skb(priv
->ibss_beacon
);
3585 priv
->ibss_beacon
= beacon
;
3586 mutex_unlock(&priv
->mutex
);
3588 iwl3945_send_beacon_cmd(priv
);
3591 static void iwl3945_rx_beacon_notif(struct iwl3945_priv
*priv
,
3592 struct iwl3945_rx_mem_buffer
*rxb
)
3594 #ifdef CONFIG_IWL3945_DEBUG
3595 struct iwl3945_rx_packet
*pkt
= (void *)rxb
->skb
->data
;
3596 struct iwl3945_beacon_notif
*beacon
= &(pkt
->u
.beacon_status
);
3597 u8 rate
= beacon
->beacon_notify_hdr
.rate
;
3599 IWL_DEBUG_RX("beacon status %x retries %d iss %d "
3600 "tsf %d %d rate %d\n",
3601 le32_to_cpu(beacon
->beacon_notify_hdr
.status
) & TX_STATUS_MSK
,
3602 beacon
->beacon_notify_hdr
.failure_frame
,
3603 le32_to_cpu(beacon
->ibss_mgr_status
),
3604 le32_to_cpu(beacon
->high_tsf
),
3605 le32_to_cpu(beacon
->low_tsf
), rate
);
3608 if ((priv
->iw_mode
== IEEE80211_IF_TYPE_AP
) &&
3609 (!test_bit(STATUS_EXIT_PENDING
, &priv
->status
)))
3610 queue_work(priv
->workqueue
, &priv
->beacon_update
);
3613 /* Service response to REPLY_SCAN_CMD (0x80) */
3614 static void iwl3945_rx_reply_scan(struct iwl3945_priv
*priv
,
3615 struct iwl3945_rx_mem_buffer
*rxb
)
3617 #ifdef CONFIG_IWL3945_DEBUG
3618 struct iwl3945_rx_packet
*pkt
= (void *)rxb
->skb
->data
;
3619 struct iwl3945_scanreq_notification
*notif
=
3620 (struct iwl3945_scanreq_notification
*)pkt
->u
.raw
;
3622 IWL_DEBUG_RX("Scan request status = 0x%x\n", notif
->status
);
3626 /* Service SCAN_START_NOTIFICATION (0x82) */
3627 static void iwl3945_rx_scan_start_notif(struct iwl3945_priv
*priv
,
3628 struct iwl3945_rx_mem_buffer
*rxb
)
3630 struct iwl3945_rx_packet
*pkt
= (void *)rxb
->skb
->data
;
3631 struct iwl3945_scanstart_notification
*notif
=
3632 (struct iwl3945_scanstart_notification
*)pkt
->u
.raw
;
3633 priv
->scan_start_tsf
= le32_to_cpu(notif
->tsf_low
);
3634 IWL_DEBUG_SCAN("Scan start: "
3636 "(TSF: 0x%08X:%08X) - %d (beacon timer %u)\n",
3638 notif
->band
? "bg" : "a",
3640 notif
->tsf_low
, notif
->status
, notif
->beacon_timer
);
3643 /* Service SCAN_RESULTS_NOTIFICATION (0x83) */
3644 static void iwl3945_rx_scan_results_notif(struct iwl3945_priv
*priv
,
3645 struct iwl3945_rx_mem_buffer
*rxb
)
3647 struct iwl3945_rx_packet
*pkt
= (void *)rxb
->skb
->data
;
3648 struct iwl3945_scanresults_notification
*notif
=
3649 (struct iwl3945_scanresults_notification
*)pkt
->u
.raw
;
3651 IWL_DEBUG_SCAN("Scan ch.res: "
3653 "(TSF: 0x%08X:%08X) - %d "
3654 "elapsed=%lu usec (%dms since last)\n",
3656 notif
->band
? "bg" : "a",
3657 le32_to_cpu(notif
->tsf_high
),
3658 le32_to_cpu(notif
->tsf_low
),
3659 le32_to_cpu(notif
->statistics
[0]),
3660 le32_to_cpu(notif
->tsf_low
) - priv
->scan_start_tsf
,
3661 jiffies_to_msecs(elapsed_jiffies
3662 (priv
->last_scan_jiffies
, jiffies
)));
3664 priv
->last_scan_jiffies
= jiffies
;
3665 priv
->next_scan_jiffies
= 0;
3668 /* Service SCAN_COMPLETE_NOTIFICATION (0x84) */
3669 static void iwl3945_rx_scan_complete_notif(struct iwl3945_priv
*priv
,
3670 struct iwl3945_rx_mem_buffer
*rxb
)
3672 struct iwl3945_rx_packet
*pkt
= (void *)rxb
->skb
->data
;
3673 struct iwl3945_scancomplete_notification
*scan_notif
= (void *)pkt
->u
.raw
;
3675 IWL_DEBUG_SCAN("Scan complete: %d channels (TSF 0x%08X:%08X) - %d\n",
3676 scan_notif
->scanned_channels
,
3677 scan_notif
->tsf_low
,
3678 scan_notif
->tsf_high
, scan_notif
->status
);
3680 /* The HW is no longer scanning */
3681 clear_bit(STATUS_SCAN_HW
, &priv
->status
);
3683 /* The scan completion notification came in, so kill that timer... */
3684 cancel_delayed_work(&priv
->scan_check
);
3686 IWL_DEBUG_INFO("Scan pass on %sGHz took %dms\n",
3687 (priv
->scan_bands
== 2) ? "2.4" : "5.2",
3688 jiffies_to_msecs(elapsed_jiffies
3689 (priv
->scan_pass_start
, jiffies
)));
3691 /* Remove this scanned band from the list
3692 * of pending bands to scan */
3695 /* If a request to abort was given, or the scan did not succeed
3696 * then we reset the scan state machine and terminate,
3697 * re-queuing another scan if one has been requested */
3698 if (test_bit(STATUS_SCAN_ABORTING
, &priv
->status
)) {
3699 IWL_DEBUG_INFO("Aborted scan completed.\n");
3700 clear_bit(STATUS_SCAN_ABORTING
, &priv
->status
);
3702 /* If there are more bands on this scan pass reschedule */
3703 if (priv
->scan_bands
> 0)
3707 priv
->last_scan_jiffies
= jiffies
;
3708 priv
->next_scan_jiffies
= 0;
3709 IWL_DEBUG_INFO("Setting scan to off\n");
3711 clear_bit(STATUS_SCANNING
, &priv
->status
);
3713 IWL_DEBUG_INFO("Scan took %dms\n",
3714 jiffies_to_msecs(elapsed_jiffies(priv
->scan_start
, jiffies
)));
3716 queue_work(priv
->workqueue
, &priv
->scan_completed
);
3721 priv
->scan_pass_start
= jiffies
;
3722 queue_work(priv
->workqueue
, &priv
->request_scan
);
3725 /* Handle notification from uCode that card's power state is changing
3726 * due to software, hardware, or critical temperature RFKILL */
3727 static void iwl3945_rx_card_state_notif(struct iwl3945_priv
*priv
,
3728 struct iwl3945_rx_mem_buffer
*rxb
)
3730 struct iwl3945_rx_packet
*pkt
= (void *)rxb
->skb
->data
;
3731 u32 flags
= le32_to_cpu(pkt
->u
.card_state_notif
.flags
);
3732 unsigned long status
= priv
->status
;
3734 IWL_DEBUG_RF_KILL("Card state received: HW:%s SW:%s\n",
3735 (flags
& HW_CARD_DISABLED
) ? "Kill" : "On",
3736 (flags
& SW_CARD_DISABLED
) ? "Kill" : "On");
3738 iwl3945_write32(priv
, CSR_UCODE_DRV_GP1_SET
,
3739 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED
);
3741 if (flags
& HW_CARD_DISABLED
)
3742 set_bit(STATUS_RF_KILL_HW
, &priv
->status
);
3744 clear_bit(STATUS_RF_KILL_HW
, &priv
->status
);
3747 if (flags
& SW_CARD_DISABLED
)
3748 set_bit(STATUS_RF_KILL_SW
, &priv
->status
);
3750 clear_bit(STATUS_RF_KILL_SW
, &priv
->status
);
3752 iwl3945_scan_cancel(priv
);
3754 if ((test_bit(STATUS_RF_KILL_HW
, &status
) !=
3755 test_bit(STATUS_RF_KILL_HW
, &priv
->status
)) ||
3756 (test_bit(STATUS_RF_KILL_SW
, &status
) !=
3757 test_bit(STATUS_RF_KILL_SW
, &priv
->status
)))
3758 queue_work(priv
->workqueue
, &priv
->rf_kill
);
3760 wake_up_interruptible(&priv
->wait_command_queue
);
3764 * iwl3945_setup_rx_handlers - Initialize Rx handler callbacks
3766 * Setup the RX handlers for each of the reply types sent from the uCode
3769 * This function chains into the hardware specific files for them to setup
3770 * any hardware specific handlers as well.
3772 static void iwl3945_setup_rx_handlers(struct iwl3945_priv
*priv
)
3774 priv
->rx_handlers
[REPLY_ALIVE
] = iwl3945_rx_reply_alive
;
3775 priv
->rx_handlers
[REPLY_ADD_STA
] = iwl3945_rx_reply_add_sta
;
3776 priv
->rx_handlers
[REPLY_ERROR
] = iwl3945_rx_reply_error
;
3777 priv
->rx_handlers
[CHANNEL_SWITCH_NOTIFICATION
] = iwl3945_rx_csa
;
3778 priv
->rx_handlers
[SPECTRUM_MEASURE_NOTIFICATION
] =
3779 iwl3945_rx_spectrum_measure_notif
;
3780 priv
->rx_handlers
[PM_SLEEP_NOTIFICATION
] = iwl3945_rx_pm_sleep_notif
;
3781 priv
->rx_handlers
[PM_DEBUG_STATISTIC_NOTIFIC
] =
3782 iwl3945_rx_pm_debug_statistics_notif
;
3783 priv
->rx_handlers
[BEACON_NOTIFICATION
] = iwl3945_rx_beacon_notif
;
3786 * The same handler is used for both the REPLY to a discrete
3787 * statistics request from the host as well as for the periodic
3788 * statistics notifications (after received beacons) from the uCode.
3790 priv
->rx_handlers
[REPLY_STATISTICS_CMD
] = iwl3945_hw_rx_statistics
;
3791 priv
->rx_handlers
[STATISTICS_NOTIFICATION
] = iwl3945_hw_rx_statistics
;
3793 priv
->rx_handlers
[REPLY_SCAN_CMD
] = iwl3945_rx_reply_scan
;
3794 priv
->rx_handlers
[SCAN_START_NOTIFICATION
] = iwl3945_rx_scan_start_notif
;
3795 priv
->rx_handlers
[SCAN_RESULTS_NOTIFICATION
] =
3796 iwl3945_rx_scan_results_notif
;
3797 priv
->rx_handlers
[SCAN_COMPLETE_NOTIFICATION
] =
3798 iwl3945_rx_scan_complete_notif
;
3799 priv
->rx_handlers
[CARD_STATE_NOTIFICATION
] = iwl3945_rx_card_state_notif
;
3800 priv
->rx_handlers
[REPLY_TX
] = iwl3945_rx_reply_tx
;
3802 /* Set up hardware specific Rx handlers */
3803 iwl3945_hw_rx_handler_setup(priv
);
3807 * iwl3945_tx_cmd_complete - Pull unused buffers off the queue and reclaim them
3808 * @rxb: Rx buffer to reclaim
3810 * If an Rx buffer has an async callback associated with it the callback
3811 * will be executed. The attached skb (if present) will only be freed
3812 * if the callback returns 1
3814 static void iwl3945_tx_cmd_complete(struct iwl3945_priv
*priv
,
3815 struct iwl3945_rx_mem_buffer
*rxb
)
3817 struct iwl3945_rx_packet
*pkt
= (struct iwl3945_rx_packet
*)rxb
->skb
->data
;
3818 u16 sequence
= le16_to_cpu(pkt
->hdr
.sequence
);
3819 int txq_id
= SEQ_TO_QUEUE(sequence
);
3820 int index
= SEQ_TO_INDEX(sequence
);
3821 int huge
= sequence
& SEQ_HUGE_FRAME
;
3823 struct iwl3945_cmd
*cmd
;
3825 /* If a Tx command is being handled and it isn't in the actual
3826 * command queue then there a command routing bug has been introduced
3827 * in the queue management code. */
3828 if (txq_id
!= IWL_CMD_QUEUE_NUM
)
3829 IWL_ERROR("Error wrong command queue %d command id 0x%X\n",
3830 txq_id
, pkt
->hdr
.cmd
);
3831 BUG_ON(txq_id
!= IWL_CMD_QUEUE_NUM
);
3833 cmd_index
= get_cmd_index(&priv
->txq
[IWL_CMD_QUEUE_NUM
].q
, index
, huge
);
3834 cmd
= &priv
->txq
[IWL_CMD_QUEUE_NUM
].cmd
[cmd_index
];
3836 /* Input error checking is done when commands are added to queue. */
3837 if (cmd
->meta
.flags
& CMD_WANT_SKB
) {
3838 cmd
->meta
.source
->u
.skb
= rxb
->skb
;
3840 } else if (cmd
->meta
.u
.callback
&&
3841 !cmd
->meta
.u
.callback(priv
, cmd
, rxb
->skb
))
3844 iwl3945_tx_queue_reclaim(priv
, txq_id
, index
);
3846 if (!(cmd
->meta
.flags
& CMD_ASYNC
)) {
3847 clear_bit(STATUS_HCMD_ACTIVE
, &priv
->status
);
3848 wake_up_interruptible(&priv
->wait_command_queue
);
3852 /************************** RX-FUNCTIONS ****************************/
3854 * Rx theory of operation
3856 * The host allocates 32 DMA target addresses and passes the host address
3857 * to the firmware at register IWL_RFDS_TABLE_LOWER + N * RFD_SIZE where N is
3861 * The host/firmware share two index registers for managing the Rx buffers.
3863 * The READ index maps to the first position that the firmware may be writing
3864 * to -- the driver can read up to (but not including) this position and get
3866 * The READ index is managed by the firmware once the card is enabled.
3868 * The WRITE index maps to the last position the driver has read from -- the
3869 * position preceding WRITE is the last slot the firmware can place a packet.
3871 * The queue is empty (no good data) if WRITE = READ - 1, and is full if
3874 * During initialization, the host sets up the READ queue position to the first
3875 * INDEX position, and WRITE to the last (READ - 1 wrapped)
3877 * When the firmware places a packet in a buffer, it will advance the READ index
3878 * and fire the RX interrupt. The driver can then query the READ index and
3879 * process as many packets as possible, moving the WRITE index forward as it
3880 * resets the Rx queue buffers with new memory.
3882 * The management in the driver is as follows:
3883 * + A list of pre-allocated SKBs is stored in iwl->rxq->rx_free. When
3884 * iwl->rxq->free_count drops to or below RX_LOW_WATERMARK, work is scheduled
3885 * to replenish the iwl->rxq->rx_free.
3886 * + In iwl3945_rx_replenish (scheduled) if 'processed' != 'read' then the
3887 * iwl->rxq is replenished and the READ INDEX is updated (updating the
3888 * 'processed' and 'read' driver indexes as well)
3889 * + A received packet is processed and handed to the kernel network stack,
3890 * detached from the iwl->rxq. The driver 'processed' index is updated.
3891 * + The Host/Firmware iwl->rxq is replenished at tasklet time from the rx_free
3892 * list. If there are no allocated buffers in iwl->rxq->rx_free, the READ
3893 * INDEX is not incremented and iwl->status(RX_STALLED) is set. If there
3894 * were enough free buffers and RX_STALLED is set it is cleared.
3899 * iwl3945_rx_queue_alloc() Allocates rx_free
3900 * iwl3945_rx_replenish() Replenishes rx_free list from rx_used, and calls
3901 * iwl3945_rx_queue_restock
3902 * iwl3945_rx_queue_restock() Moves available buffers from rx_free into Rx
3903 * queue, updates firmware pointers, and updates
3904 * the WRITE index. If insufficient rx_free buffers
3905 * are available, schedules iwl3945_rx_replenish
3907 * -- enable interrupts --
3908 * ISR - iwl3945_rx() Detach iwl3945_rx_mem_buffers from pool up to the
3909 * READ INDEX, detaching the SKB from the pool.
3910 * Moves the packet buffer from queue to rx_used.
3911 * Calls iwl3945_rx_queue_restock to refill any empty
3918 * iwl3945_rx_queue_space - Return number of free slots available in queue.
3920 static int iwl3945_rx_queue_space(const struct iwl3945_rx_queue
*q
)
3922 int s
= q
->read
- q
->write
;
3925 /* keep some buffer to not confuse full and empty queue */
3933 * iwl3945_rx_queue_update_write_ptr - Update the write pointer for the RX queue
3935 int iwl3945_rx_queue_update_write_ptr(struct iwl3945_priv
*priv
, struct iwl3945_rx_queue
*q
)
3939 unsigned long flags
;
3941 spin_lock_irqsave(&q
->lock
, flags
);
3943 if (q
->need_update
== 0)
3946 /* If power-saving is in use, make sure device is awake */
3947 if (test_bit(STATUS_POWER_PMI
, &priv
->status
)) {
3948 reg
= iwl3945_read32(priv
, CSR_UCODE_DRV_GP1
);
3950 if (reg
& CSR_UCODE_DRV_GP1_BIT_MAC_SLEEP
) {
3951 iwl3945_set_bit(priv
, CSR_GP_CNTRL
,
3952 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ
);
3956 rc
= iwl3945_grab_nic_access(priv
);
3960 /* Device expects a multiple of 8 */
3961 iwl3945_write_direct32(priv
, FH_RSCSR_CHNL0_WPTR
,
3963 iwl3945_release_nic_access(priv
);
3965 /* Else device is assumed to be awake */
3967 /* Device expects a multiple of 8 */
3968 iwl3945_write32(priv
, FH_RSCSR_CHNL0_WPTR
, q
->write
& ~0x7);
3974 spin_unlock_irqrestore(&q
->lock
, flags
);
3979 * iwl3945_dma_addr2rbd_ptr - convert a DMA address to a uCode read buffer ptr
3981 static inline __le32
iwl3945_dma_addr2rbd_ptr(struct iwl3945_priv
*priv
,
3982 dma_addr_t dma_addr
)
3984 return cpu_to_le32((u32
)dma_addr
);
3988 * iwl3945_rx_queue_restock - refill RX queue from pre-allocated pool
3990 * If there are slots in the RX queue that need to be restocked,
3991 * and we have free pre-allocated buffers, fill the ranks as much
3992 * as we can, pulling from rx_free.
3994 * This moves the 'write' index forward to catch up with 'processed', and
3995 * also updates the memory address in the firmware to reference the new
3998 static int iwl3945_rx_queue_restock(struct iwl3945_priv
*priv
)
4000 struct iwl3945_rx_queue
*rxq
= &priv
->rxq
;
4001 struct list_head
*element
;
4002 struct iwl3945_rx_mem_buffer
*rxb
;
4003 unsigned long flags
;
4006 spin_lock_irqsave(&rxq
->lock
, flags
);
4007 write
= rxq
->write
& ~0x7;
4008 while ((iwl3945_rx_queue_space(rxq
) > 0) && (rxq
->free_count
)) {
4009 /* Get next free Rx buffer, remove from free list */
4010 element
= rxq
->rx_free
.next
;
4011 rxb
= list_entry(element
, struct iwl3945_rx_mem_buffer
, list
);
4014 /* Point to Rx buffer via next RBD in circular buffer */
4015 rxq
->bd
[rxq
->write
] = iwl3945_dma_addr2rbd_ptr(priv
, rxb
->dma_addr
);
4016 rxq
->queue
[rxq
->write
] = rxb
;
4017 rxq
->write
= (rxq
->write
+ 1) & RX_QUEUE_MASK
;
4020 spin_unlock_irqrestore(&rxq
->lock
, flags
);
4021 /* If the pre-allocated buffer pool is dropping low, schedule to
4023 if (rxq
->free_count
<= RX_LOW_WATERMARK
)
4024 queue_work(priv
->workqueue
, &priv
->rx_replenish
);
4027 /* If we've added more space for the firmware to place data, tell it.
4028 * Increment device's write pointer in multiples of 8. */
4029 if ((write
!= (rxq
->write
& ~0x7))
4030 || (abs(rxq
->write
- rxq
->read
) > 7)) {
4031 spin_lock_irqsave(&rxq
->lock
, flags
);
4032 rxq
->need_update
= 1;
4033 spin_unlock_irqrestore(&rxq
->lock
, flags
);
4034 rc
= iwl3945_rx_queue_update_write_ptr(priv
, rxq
);
4043 * iwl3945_rx_replenish - Move all used packet from rx_used to rx_free
4045 * When moving to rx_free an SKB is allocated for the slot.
4047 * Also restock the Rx queue via iwl3945_rx_queue_restock.
4048 * This is called as a scheduled work item (except for during initialization)
4050 static void iwl3945_rx_allocate(struct iwl3945_priv
*priv
)
4052 struct iwl3945_rx_queue
*rxq
= &priv
->rxq
;
4053 struct list_head
*element
;
4054 struct iwl3945_rx_mem_buffer
*rxb
;
4055 unsigned long flags
;
4056 spin_lock_irqsave(&rxq
->lock
, flags
);
4057 while (!list_empty(&rxq
->rx_used
)) {
4058 element
= rxq
->rx_used
.next
;
4059 rxb
= list_entry(element
, struct iwl3945_rx_mem_buffer
, list
);
4061 /* Alloc a new receive buffer */
4063 alloc_skb(IWL_RX_BUF_SIZE
, __GFP_NOWARN
| GFP_ATOMIC
);
4065 if (net_ratelimit())
4066 printk(KERN_CRIT DRV_NAME
4067 ": Can not allocate SKB buffers\n");
4068 /* We don't reschedule replenish work here -- we will
4069 * call the restock method and if it still needs
4070 * more buffers it will schedule replenish */
4074 /* If radiotap head is required, reserve some headroom here.
4075 * The physical head count is a variable rx_stats->phy_count.
4076 * We reserve 4 bytes here. Plus these extra bytes, the
4077 * headroom of the physical head should be enough for the
4078 * radiotap head that iwl3945 supported. See iwl3945_rt.
4080 skb_reserve(rxb
->skb
, 4);
4082 priv
->alloc_rxb_skb
++;
4085 /* Get physical address of RB/SKB */
4087 pci_map_single(priv
->pci_dev
, rxb
->skb
->data
,
4088 IWL_RX_BUF_SIZE
, PCI_DMA_FROMDEVICE
);
4089 list_add_tail(&rxb
->list
, &rxq
->rx_free
);
4092 spin_unlock_irqrestore(&rxq
->lock
, flags
);
4096 * this should be called while priv->lock is locked
4098 static void __iwl3945_rx_replenish(void *data
)
4100 struct iwl3945_priv
*priv
= data
;
4102 iwl3945_rx_allocate(priv
);
4103 iwl3945_rx_queue_restock(priv
);
4107 void iwl3945_rx_replenish(void *data
)
4109 struct iwl3945_priv
*priv
= data
;
4110 unsigned long flags
;
4112 iwl3945_rx_allocate(priv
);
4114 spin_lock_irqsave(&priv
->lock
, flags
);
4115 iwl3945_rx_queue_restock(priv
);
4116 spin_unlock_irqrestore(&priv
->lock
, flags
);
4119 /* Assumes that the skb field of the buffers in 'pool' is kept accurate.
4120 * If an SKB has been detached, the POOL needs to have its SKB set to NULL
4121 * This free routine walks the list of POOL entries and if SKB is set to
4122 * non NULL it is unmapped and freed
4124 static void iwl3945_rx_queue_free(struct iwl3945_priv
*priv
, struct iwl3945_rx_queue
*rxq
)
4127 for (i
= 0; i
< RX_QUEUE_SIZE
+ RX_FREE_BUFFERS
; i
++) {
4128 if (rxq
->pool
[i
].skb
!= NULL
) {
4129 pci_unmap_single(priv
->pci_dev
,
4130 rxq
->pool
[i
].dma_addr
,
4131 IWL_RX_BUF_SIZE
, PCI_DMA_FROMDEVICE
);
4132 dev_kfree_skb(rxq
->pool
[i
].skb
);
4136 pci_free_consistent(priv
->pci_dev
, 4 * RX_QUEUE_SIZE
, rxq
->bd
,
4141 int iwl3945_rx_queue_alloc(struct iwl3945_priv
*priv
)
4143 struct iwl3945_rx_queue
*rxq
= &priv
->rxq
;
4144 struct pci_dev
*dev
= priv
->pci_dev
;
4147 spin_lock_init(&rxq
->lock
);
4148 INIT_LIST_HEAD(&rxq
->rx_free
);
4149 INIT_LIST_HEAD(&rxq
->rx_used
);
4151 /* Alloc the circular buffer of Read Buffer Descriptors (RBDs) */
4152 rxq
->bd
= pci_alloc_consistent(dev
, 4 * RX_QUEUE_SIZE
, &rxq
->dma_addr
);
4156 /* Fill the rx_used queue with _all_ of the Rx buffers */
4157 for (i
= 0; i
< RX_FREE_BUFFERS
+ RX_QUEUE_SIZE
; i
++)
4158 list_add_tail(&rxq
->pool
[i
].list
, &rxq
->rx_used
);
4160 /* Set us so that we have processed and used all buffers, but have
4161 * not restocked the Rx queue with fresh buffers */
4162 rxq
->read
= rxq
->write
= 0;
4163 rxq
->free_count
= 0;
4164 rxq
->need_update
= 0;
4168 void iwl3945_rx_queue_reset(struct iwl3945_priv
*priv
, struct iwl3945_rx_queue
*rxq
)
4170 unsigned long flags
;
4172 spin_lock_irqsave(&rxq
->lock
, flags
);
4173 INIT_LIST_HEAD(&rxq
->rx_free
);
4174 INIT_LIST_HEAD(&rxq
->rx_used
);
4175 /* Fill the rx_used queue with _all_ of the Rx buffers */
4176 for (i
= 0; i
< RX_FREE_BUFFERS
+ RX_QUEUE_SIZE
; i
++) {
4177 /* In the reset function, these buffers may have been allocated
4178 * to an SKB, so we need to unmap and free potential storage */
4179 if (rxq
->pool
[i
].skb
!= NULL
) {
4180 pci_unmap_single(priv
->pci_dev
,
4181 rxq
->pool
[i
].dma_addr
,
4182 IWL_RX_BUF_SIZE
, PCI_DMA_FROMDEVICE
);
4183 priv
->alloc_rxb_skb
--;
4184 dev_kfree_skb(rxq
->pool
[i
].skb
);
4185 rxq
->pool
[i
].skb
= NULL
;
4187 list_add_tail(&rxq
->pool
[i
].list
, &rxq
->rx_used
);
4190 /* Set us so that we have processed and used all buffers, but have
4191 * not restocked the Rx queue with fresh buffers */
4192 rxq
->read
= rxq
->write
= 0;
4193 rxq
->free_count
= 0;
4194 spin_unlock_irqrestore(&rxq
->lock
, flags
);
4197 /* Convert linear signal-to-noise ratio into dB */
4198 static u8 ratio2dB
[100] = {
4199 /* 0 1 2 3 4 5 6 7 8 9 */
4200 0, 0, 6, 10, 12, 14, 16, 17, 18, 19, /* 00 - 09 */
4201 20, 21, 22, 22, 23, 23, 24, 25, 26, 26, /* 10 - 19 */
4202 26, 26, 26, 27, 27, 28, 28, 28, 29, 29, /* 20 - 29 */
4203 29, 30, 30, 30, 31, 31, 31, 31, 32, 32, /* 30 - 39 */
4204 32, 32, 32, 33, 33, 33, 33, 33, 34, 34, /* 40 - 49 */
4205 34, 34, 34, 34, 35, 35, 35, 35, 35, 35, /* 50 - 59 */
4206 36, 36, 36, 36, 36, 36, 36, 37, 37, 37, /* 60 - 69 */
4207 37, 37, 37, 37, 37, 38, 38, 38, 38, 38, /* 70 - 79 */
4208 38, 38, 38, 38, 38, 39, 39, 39, 39, 39, /* 80 - 89 */
4209 39, 39, 39, 39, 39, 40, 40, 40, 40, 40 /* 90 - 99 */
4212 /* Calculates a relative dB value from a ratio of linear
4213 * (i.e. not dB) signal levels.
4214 * Conversion assumes that levels are voltages (20*log), not powers (10*log). */
4215 int iwl3945_calc_db_from_ratio(int sig_ratio
)
4217 /* 1000:1 or higher just report as 60 dB */
4218 if (sig_ratio
>= 1000)
4221 /* 100:1 or higher, divide by 10 and use table,
4222 * add 20 dB to make up for divide by 10 */
4223 if (sig_ratio
>= 100)
4224 return (20 + (int)ratio2dB
[sig_ratio
/10]);
4226 /* We shouldn't see this */
4230 /* Use table for ratios 1:1 - 99:1 */
4231 return (int)ratio2dB
[sig_ratio
];
4234 #define PERFECT_RSSI (-20) /* dBm */
4235 #define WORST_RSSI (-95) /* dBm */
4236 #define RSSI_RANGE (PERFECT_RSSI - WORST_RSSI)
4238 /* Calculate an indication of rx signal quality (a percentage, not dBm!).
4239 * See http://www.ces.clemson.edu/linux/signal_quality.shtml for info
4240 * about formulas used below. */
4241 int iwl3945_calc_sig_qual(int rssi_dbm
, int noise_dbm
)
4244 int degradation
= PERFECT_RSSI
- rssi_dbm
;
4246 /* If we get a noise measurement, use signal-to-noise ratio (SNR)
4247 * as indicator; formula is (signal dbm - noise dbm).
4248 * SNR at or above 40 is a great signal (100%).
4249 * Below that, scale to fit SNR of 0 - 40 dB within 0 - 100% indicator.
4250 * Weakest usable signal is usually 10 - 15 dB SNR. */
4252 if (rssi_dbm
- noise_dbm
>= 40)
4254 else if (rssi_dbm
< noise_dbm
)
4256 sig_qual
= ((rssi_dbm
- noise_dbm
) * 5) / 2;
4258 /* Else use just the signal level.
4259 * This formula is a least squares fit of data points collected and
4260 * compared with a reference system that had a percentage (%) display
4261 * for signal quality. */
4263 sig_qual
= (100 * (RSSI_RANGE
* RSSI_RANGE
) - degradation
*
4264 (15 * RSSI_RANGE
+ 62 * degradation
)) /
4265 (RSSI_RANGE
* RSSI_RANGE
);
4269 else if (sig_qual
< 1)
4276 * iwl3945_rx_handle - Main entry function for receiving responses from uCode
4278 * Uses the priv->rx_handlers callback function array to invoke
4279 * the appropriate handlers, including command responses,
4280 * frame-received notifications, and other notifications.
4282 static void iwl3945_rx_handle(struct iwl3945_priv
*priv
)
4284 struct iwl3945_rx_mem_buffer
*rxb
;
4285 struct iwl3945_rx_packet
*pkt
;
4286 struct iwl3945_rx_queue
*rxq
= &priv
->rxq
;
4289 unsigned long flags
;
4293 /* uCode's read index (stored in shared DRAM) indicates the last Rx
4294 * buffer that the driver may process (last buffer filled by ucode). */
4295 r
= iwl3945_hw_get_rx_read(priv
);
4298 if (iwl3945_rx_queue_space(rxq
) > (RX_QUEUE_SIZE
/ 2))
4300 /* Rx interrupt, but nothing sent from uCode */
4302 IWL_DEBUG(IWL_DL_RX
| IWL_DL_ISR
, "r = %d, i = %d\n", r
, i
);
4305 rxb
= rxq
->queue
[i
];
4307 /* If an RXB doesn't have a Rx queue slot associated with it,
4308 * then a bug has been introduced in the queue refilling
4309 * routines -- catch it here */
4310 BUG_ON(rxb
== NULL
);
4312 rxq
->queue
[i
] = NULL
;
4314 pci_dma_sync_single_for_cpu(priv
->pci_dev
, rxb
->dma_addr
,
4316 PCI_DMA_FROMDEVICE
);
4317 pkt
= (struct iwl3945_rx_packet
*)rxb
->skb
->data
;
4319 /* Reclaim a command buffer only if this packet is a response
4320 * to a (driver-originated) command.
4321 * If the packet (e.g. Rx frame) originated from uCode,
4322 * there is no command buffer to reclaim.
4323 * Ucode should set SEQ_RX_FRAME bit if ucode-originated,
4324 * but apparently a few don't get set; catch them here. */
4325 reclaim
= !(pkt
->hdr
.sequence
& SEQ_RX_FRAME
) &&
4326 (pkt
->hdr
.cmd
!= STATISTICS_NOTIFICATION
) &&
4327 (pkt
->hdr
.cmd
!= REPLY_TX
);
4329 /* Based on type of command response or notification,
4330 * handle those that need handling via function in
4331 * rx_handlers table. See iwl3945_setup_rx_handlers() */
4332 if (priv
->rx_handlers
[pkt
->hdr
.cmd
]) {
4333 IWL_DEBUG(IWL_DL_HOST_COMMAND
| IWL_DL_RX
| IWL_DL_ISR
,
4334 "r = %d, i = %d, %s, 0x%02x\n", r
, i
,
4335 get_cmd_string(pkt
->hdr
.cmd
), pkt
->hdr
.cmd
);
4336 priv
->rx_handlers
[pkt
->hdr
.cmd
] (priv
, rxb
);
4338 /* No handling needed */
4339 IWL_DEBUG(IWL_DL_HOST_COMMAND
| IWL_DL_RX
| IWL_DL_ISR
,
4340 "r %d i %d No handler needed for %s, 0x%02x\n",
4341 r
, i
, get_cmd_string(pkt
->hdr
.cmd
),
4346 /* Invoke any callbacks, transfer the skb to caller, and
4347 * fire off the (possibly) blocking iwl3945_send_cmd()
4348 * as we reclaim the driver command queue */
4349 if (rxb
&& rxb
->skb
)
4350 iwl3945_tx_cmd_complete(priv
, rxb
);
4352 IWL_WARNING("Claim null rxb?\n");
4355 /* For now we just don't re-use anything. We can tweak this
4356 * later to try and re-use notification packets and SKBs that
4357 * fail to Rx correctly */
4358 if (rxb
->skb
!= NULL
) {
4359 priv
->alloc_rxb_skb
--;
4360 dev_kfree_skb_any(rxb
->skb
);
4364 pci_unmap_single(priv
->pci_dev
, rxb
->dma_addr
,
4365 IWL_RX_BUF_SIZE
, PCI_DMA_FROMDEVICE
);
4366 spin_lock_irqsave(&rxq
->lock
, flags
);
4367 list_add_tail(&rxb
->list
, &priv
->rxq
.rx_used
);
4368 spin_unlock_irqrestore(&rxq
->lock
, flags
);
4369 i
= (i
+ 1) & RX_QUEUE_MASK
;
4370 /* If there are a lot of unused frames,
4371 * restock the Rx queue so ucode won't assert. */
4376 __iwl3945_rx_replenish(priv
);
4382 /* Backtrack one entry */
4384 iwl3945_rx_queue_restock(priv
);
4388 * iwl3945_tx_queue_update_write_ptr - Send new write index to hardware
4390 static int iwl3945_tx_queue_update_write_ptr(struct iwl3945_priv
*priv
,
4391 struct iwl3945_tx_queue
*txq
)
4395 int txq_id
= txq
->q
.id
;
4397 if (txq
->need_update
== 0)
4400 /* if we're trying to save power */
4401 if (test_bit(STATUS_POWER_PMI
, &priv
->status
)) {
4402 /* wake up nic if it's powered down ...
4403 * uCode will wake up, and interrupt us again, so next
4404 * time we'll skip this part. */
4405 reg
= iwl3945_read32(priv
, CSR_UCODE_DRV_GP1
);
4407 if (reg
& CSR_UCODE_DRV_GP1_BIT_MAC_SLEEP
) {
4408 IWL_DEBUG_INFO("Requesting wakeup, GP1 = 0x%x\n", reg
);
4409 iwl3945_set_bit(priv
, CSR_GP_CNTRL
,
4410 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ
);
4414 /* restore this queue's parameters in nic hardware. */
4415 rc
= iwl3945_grab_nic_access(priv
);
4418 iwl3945_write_direct32(priv
, HBUS_TARG_WRPTR
,
4419 txq
->q
.write_ptr
| (txq_id
<< 8));
4420 iwl3945_release_nic_access(priv
);
4422 /* else not in power-save mode, uCode will never sleep when we're
4423 * trying to tx (during RFKILL, we're not trying to tx). */
4425 iwl3945_write32(priv
, HBUS_TARG_WRPTR
,
4426 txq
->q
.write_ptr
| (txq_id
<< 8));
4428 txq
->need_update
= 0;
4433 #ifdef CONFIG_IWL3945_DEBUG
4434 static void iwl3945_print_rx_config_cmd(struct iwl3945_rxon_cmd
*rxon
)
4436 DECLARE_MAC_BUF(mac
);
4438 IWL_DEBUG_RADIO("RX CONFIG:\n");
4439 iwl3945_print_hex_dump(IWL_DL_RADIO
, (u8
*) rxon
, sizeof(*rxon
));
4440 IWL_DEBUG_RADIO("u16 channel: 0x%x\n", le16_to_cpu(rxon
->channel
));
4441 IWL_DEBUG_RADIO("u32 flags: 0x%08X\n", le32_to_cpu(rxon
->flags
));
4442 IWL_DEBUG_RADIO("u32 filter_flags: 0x%08x\n",
4443 le32_to_cpu(rxon
->filter_flags
));
4444 IWL_DEBUG_RADIO("u8 dev_type: 0x%x\n", rxon
->dev_type
);
4445 IWL_DEBUG_RADIO("u8 ofdm_basic_rates: 0x%02x\n",
4446 rxon
->ofdm_basic_rates
);
4447 IWL_DEBUG_RADIO("u8 cck_basic_rates: 0x%02x\n", rxon
->cck_basic_rates
);
4448 IWL_DEBUG_RADIO("u8[6] node_addr: %s\n",
4449 print_mac(mac
, rxon
->node_addr
));
4450 IWL_DEBUG_RADIO("u8[6] bssid_addr: %s\n",
4451 print_mac(mac
, rxon
->bssid_addr
));
4452 IWL_DEBUG_RADIO("u16 assoc_id: 0x%x\n", le16_to_cpu(rxon
->assoc_id
));
4456 static void iwl3945_enable_interrupts(struct iwl3945_priv
*priv
)
4458 IWL_DEBUG_ISR("Enabling interrupts\n");
4459 set_bit(STATUS_INT_ENABLED
, &priv
->status
);
4460 iwl3945_write32(priv
, CSR_INT_MASK
, CSR_INI_SET_MASK
);
4463 static inline void iwl3945_disable_interrupts(struct iwl3945_priv
*priv
)
4465 clear_bit(STATUS_INT_ENABLED
, &priv
->status
);
4467 /* disable interrupts from uCode/NIC to host */
4468 iwl3945_write32(priv
, CSR_INT_MASK
, 0x00000000);
4470 /* acknowledge/clear/reset any interrupts still pending
4471 * from uCode or flow handler (Rx/Tx DMA) */
4472 iwl3945_write32(priv
, CSR_INT
, 0xffffffff);
4473 iwl3945_write32(priv
, CSR_FH_INT_STATUS
, 0xffffffff);
4474 IWL_DEBUG_ISR("Disabled interrupts\n");
4477 static const char *desc_lookup(int i
)
4485 return "BAD_CHECKSUM";
4487 return "NMI_INTERRUPT";
4491 return "FATAL_ERROR";
4497 #define ERROR_START_OFFSET (1 * sizeof(u32))
4498 #define ERROR_ELEM_SIZE (7 * sizeof(u32))
4500 static void iwl3945_dump_nic_error_log(struct iwl3945_priv
*priv
)
4503 u32 desc
, time
, count
, base
, data1
;
4504 u32 blink1
, blink2
, ilink1
, ilink2
;
4507 base
= le32_to_cpu(priv
->card_alive
.error_event_table_ptr
);
4509 if (!iwl3945_hw_valid_rtc_data_addr(base
)) {
4510 IWL_ERROR("Not valid error log pointer 0x%08X\n", base
);
4514 rc
= iwl3945_grab_nic_access(priv
);
4516 IWL_WARNING("Can not read from adapter at this time.\n");
4520 count
= iwl3945_read_targ_mem(priv
, base
);
4522 if (ERROR_START_OFFSET
<= count
* ERROR_ELEM_SIZE
) {
4523 IWL_ERROR("Start IWL Error Log Dump:\n");
4524 IWL_ERROR("Status: 0x%08lX, Config: %08X count: %d\n",
4525 priv
->status
, priv
->config
, count
);
4528 IWL_ERROR("Desc Time asrtPC blink2 "
4529 "ilink1 nmiPC Line\n");
4530 for (i
= ERROR_START_OFFSET
;
4531 i
< (count
* ERROR_ELEM_SIZE
) + ERROR_START_OFFSET
;
4532 i
+= ERROR_ELEM_SIZE
) {
4533 desc
= iwl3945_read_targ_mem(priv
, base
+ i
);
4535 iwl3945_read_targ_mem(priv
, base
+ i
+ 1 * sizeof(u32
));
4537 iwl3945_read_targ_mem(priv
, base
+ i
+ 2 * sizeof(u32
));
4539 iwl3945_read_targ_mem(priv
, base
+ i
+ 3 * sizeof(u32
));
4541 iwl3945_read_targ_mem(priv
, base
+ i
+ 4 * sizeof(u32
));
4543 iwl3945_read_targ_mem(priv
, base
+ i
+ 5 * sizeof(u32
));
4545 iwl3945_read_targ_mem(priv
, base
+ i
+ 6 * sizeof(u32
));
4548 ("%-13s (#%d) %010u 0x%05X 0x%05X 0x%05X 0x%05X %u\n\n",
4549 desc_lookup(desc
), desc
, time
, blink1
, blink2
,
4550 ilink1
, ilink2
, data1
);
4553 iwl3945_release_nic_access(priv
);
4557 #define EVENT_START_OFFSET (6 * sizeof(u32))
4560 * iwl3945_print_event_log - Dump error event log to syslog
4562 * NOTE: Must be called with iwl3945_grab_nic_access() already obtained!
4564 static void iwl3945_print_event_log(struct iwl3945_priv
*priv
, u32 start_idx
,
4565 u32 num_events
, u32 mode
)
4568 u32 base
; /* SRAM byte address of event log header */
4569 u32 event_size
; /* 2 u32s, or 3 u32s if timestamp recorded */
4570 u32 ptr
; /* SRAM byte address of log data */
4571 u32 ev
, time
, data
; /* event log data */
4573 if (num_events
== 0)
4576 base
= le32_to_cpu(priv
->card_alive
.log_event_table_ptr
);
4579 event_size
= 2 * sizeof(u32
);
4581 event_size
= 3 * sizeof(u32
);
4583 ptr
= base
+ EVENT_START_OFFSET
+ (start_idx
* event_size
);
4585 /* "time" is actually "data" for mode 0 (no timestamp).
4586 * place event id # at far right for easier visual parsing. */
4587 for (i
= 0; i
< num_events
; i
++) {
4588 ev
= iwl3945_read_targ_mem(priv
, ptr
);
4590 time
= iwl3945_read_targ_mem(priv
, ptr
);
4593 IWL_ERROR("0x%08x\t%04u\n", time
, ev
); /* data, ev */
4595 data
= iwl3945_read_targ_mem(priv
, ptr
);
4597 IWL_ERROR("%010u\t0x%08x\t%04u\n", time
, data
, ev
);
4602 static void iwl3945_dump_nic_event_log(struct iwl3945_priv
*priv
)
4605 u32 base
; /* SRAM byte address of event log header */
4606 u32 capacity
; /* event log capacity in # entries */
4607 u32 mode
; /* 0 - no timestamp, 1 - timestamp recorded */
4608 u32 num_wraps
; /* # times uCode wrapped to top of log */
4609 u32 next_entry
; /* index of next entry to be written by uCode */
4610 u32 size
; /* # entries that we'll print */
4612 base
= le32_to_cpu(priv
->card_alive
.log_event_table_ptr
);
4613 if (!iwl3945_hw_valid_rtc_data_addr(base
)) {
4614 IWL_ERROR("Invalid event log pointer 0x%08X\n", base
);
4618 rc
= iwl3945_grab_nic_access(priv
);
4620 IWL_WARNING("Can not read from adapter at this time.\n");
4624 /* event log header */
4625 capacity
= iwl3945_read_targ_mem(priv
, base
);
4626 mode
= iwl3945_read_targ_mem(priv
, base
+ (1 * sizeof(u32
)));
4627 num_wraps
= iwl3945_read_targ_mem(priv
, base
+ (2 * sizeof(u32
)));
4628 next_entry
= iwl3945_read_targ_mem(priv
, base
+ (3 * sizeof(u32
)));
4630 size
= num_wraps
? capacity
: next_entry
;
4632 /* bail out if nothing in log */
4634 IWL_ERROR("Start IWL Event Log Dump: nothing in log\n");
4635 iwl3945_release_nic_access(priv
);
4639 IWL_ERROR("Start IWL Event Log Dump: display count %d, wraps %d\n",
4642 /* if uCode has wrapped back to top of log, start at the oldest entry,
4643 * i.e the next one that uCode would fill. */
4645 iwl3945_print_event_log(priv
, next_entry
,
4646 capacity
- next_entry
, mode
);
4648 /* (then/else) start at top of log */
4649 iwl3945_print_event_log(priv
, 0, next_entry
, mode
);
4651 iwl3945_release_nic_access(priv
);
4655 * iwl3945_irq_handle_error - called for HW or SW error interrupt from card
4657 static void iwl3945_irq_handle_error(struct iwl3945_priv
*priv
)
4659 /* Set the FW error flag -- cleared on iwl3945_down */
4660 set_bit(STATUS_FW_ERROR
, &priv
->status
);
4662 /* Cancel currently queued command. */
4663 clear_bit(STATUS_HCMD_ACTIVE
, &priv
->status
);
4665 #ifdef CONFIG_IWL3945_DEBUG
4666 if (iwl3945_debug_level
& IWL_DL_FW_ERRORS
) {
4667 iwl3945_dump_nic_error_log(priv
);
4668 iwl3945_dump_nic_event_log(priv
);
4669 iwl3945_print_rx_config_cmd(&priv
->staging_rxon
);
4673 wake_up_interruptible(&priv
->wait_command_queue
);
4675 /* Keep the restart process from trying to send host
4676 * commands by clearing the INIT status bit */
4677 clear_bit(STATUS_READY
, &priv
->status
);
4679 if (!test_bit(STATUS_EXIT_PENDING
, &priv
->status
)) {
4680 IWL_DEBUG(IWL_DL_INFO
| IWL_DL_FW_ERRORS
,
4681 "Restarting adapter due to uCode error.\n");
4683 if (iwl3945_is_associated(priv
)) {
4684 memcpy(&priv
->recovery_rxon
, &priv
->active_rxon
,
4685 sizeof(priv
->recovery_rxon
));
4686 priv
->error_recovering
= 1;
4688 queue_work(priv
->workqueue
, &priv
->restart
);
4692 static void iwl3945_error_recovery(struct iwl3945_priv
*priv
)
4694 unsigned long flags
;
4696 memcpy(&priv
->staging_rxon
, &priv
->recovery_rxon
,
4697 sizeof(priv
->staging_rxon
));
4698 priv
->staging_rxon
.filter_flags
&= ~RXON_FILTER_ASSOC_MSK
;
4699 iwl3945_commit_rxon(priv
);
4701 iwl3945_add_station(priv
, priv
->bssid
, 1, 0);
4703 spin_lock_irqsave(&priv
->lock
, flags
);
4704 priv
->assoc_id
= le16_to_cpu(priv
->staging_rxon
.assoc_id
);
4705 priv
->error_recovering
= 0;
4706 spin_unlock_irqrestore(&priv
->lock
, flags
);
4709 static void iwl3945_irq_tasklet(struct iwl3945_priv
*priv
)
4711 u32 inta
, handled
= 0;
4713 unsigned long flags
;
4714 #ifdef CONFIG_IWL3945_DEBUG
4718 spin_lock_irqsave(&priv
->lock
, flags
);
4720 /* Ack/clear/reset pending uCode interrupts.
4721 * Note: Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS,
4722 * and will clear only when CSR_FH_INT_STATUS gets cleared. */
4723 inta
= iwl3945_read32(priv
, CSR_INT
);
4724 iwl3945_write32(priv
, CSR_INT
, inta
);
4726 /* Ack/clear/reset pending flow-handler (DMA) interrupts.
4727 * Any new interrupts that happen after this, either while we're
4728 * in this tasklet, or later, will show up in next ISR/tasklet. */
4729 inta_fh
= iwl3945_read32(priv
, CSR_FH_INT_STATUS
);
4730 iwl3945_write32(priv
, CSR_FH_INT_STATUS
, inta_fh
);
4732 #ifdef CONFIG_IWL3945_DEBUG
4733 if (iwl3945_debug_level
& IWL_DL_ISR
) {
4734 /* just for debug */
4735 inta_mask
= iwl3945_read32(priv
, CSR_INT_MASK
);
4736 IWL_DEBUG_ISR("inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
4737 inta
, inta_mask
, inta_fh
);
4741 /* Since CSR_INT and CSR_FH_INT_STATUS reads and clears are not
4742 * atomic, make sure that inta covers all the interrupts that
4743 * we've discovered, even if FH interrupt came in just after
4744 * reading CSR_INT. */
4745 if (inta_fh
& CSR_FH_INT_RX_MASK
)
4746 inta
|= CSR_INT_BIT_FH_RX
;
4747 if (inta_fh
& CSR_FH_INT_TX_MASK
)
4748 inta
|= CSR_INT_BIT_FH_TX
;
4750 /* Now service all interrupt bits discovered above. */
4751 if (inta
& CSR_INT_BIT_HW_ERR
) {
4752 IWL_ERROR("Microcode HW error detected. Restarting.\n");
4754 /* Tell the device to stop sending interrupts */
4755 iwl3945_disable_interrupts(priv
);
4757 iwl3945_irq_handle_error(priv
);
4759 handled
|= CSR_INT_BIT_HW_ERR
;
4761 spin_unlock_irqrestore(&priv
->lock
, flags
);
4766 #ifdef CONFIG_IWL3945_DEBUG
4767 if (iwl3945_debug_level
& (IWL_DL_ISR
)) {
4768 /* NIC fires this, but we don't use it, redundant with WAKEUP */
4769 if (inta
& CSR_INT_BIT_SCD
)
4770 IWL_DEBUG_ISR("Scheduler finished to transmit "
4771 "the frame/frames.\n");
4773 /* Alive notification via Rx interrupt will do the real work */
4774 if (inta
& CSR_INT_BIT_ALIVE
)
4775 IWL_DEBUG_ISR("Alive interrupt\n");
4778 /* Safely ignore these bits for debug checks below */
4779 inta
&= ~(CSR_INT_BIT_SCD
| CSR_INT_BIT_ALIVE
);
4781 /* HW RF KILL switch toggled (4965 only) */
4782 if (inta
& CSR_INT_BIT_RF_KILL
) {
4784 if (!(iwl3945_read32(priv
, CSR_GP_CNTRL
) &
4785 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW
))
4788 IWL_DEBUG(IWL_DL_INFO
| IWL_DL_RF_KILL
| IWL_DL_ISR
,
4789 "RF_KILL bit toggled to %s.\n",
4790 hw_rf_kill
? "disable radio":"enable radio");
4792 /* Queue restart only if RF_KILL switch was set to "kill"
4793 * when we loaded driver, and is now set to "enable".
4794 * After we're Alive, RF_KILL gets handled by
4795 * iwl_rx_card_state_notif() */
4796 if (!hw_rf_kill
&& !test_bit(STATUS_ALIVE
, &priv
->status
)) {
4797 clear_bit(STATUS_RF_KILL_HW
, &priv
->status
);
4798 queue_work(priv
->workqueue
, &priv
->restart
);
4801 handled
|= CSR_INT_BIT_RF_KILL
;
4804 /* Chip got too hot and stopped itself (4965 only) */
4805 if (inta
& CSR_INT_BIT_CT_KILL
) {
4806 IWL_ERROR("Microcode CT kill error detected.\n");
4807 handled
|= CSR_INT_BIT_CT_KILL
;
4810 /* Error detected by uCode */
4811 if (inta
& CSR_INT_BIT_SW_ERR
) {
4812 IWL_ERROR("Microcode SW error detected. Restarting 0x%X.\n",
4814 iwl3945_irq_handle_error(priv
);
4815 handled
|= CSR_INT_BIT_SW_ERR
;
4818 /* uCode wakes up after power-down sleep */
4819 if (inta
& CSR_INT_BIT_WAKEUP
) {
4820 IWL_DEBUG_ISR("Wakeup interrupt\n");
4821 iwl3945_rx_queue_update_write_ptr(priv
, &priv
->rxq
);
4822 iwl3945_tx_queue_update_write_ptr(priv
, &priv
->txq
[0]);
4823 iwl3945_tx_queue_update_write_ptr(priv
, &priv
->txq
[1]);
4824 iwl3945_tx_queue_update_write_ptr(priv
, &priv
->txq
[2]);
4825 iwl3945_tx_queue_update_write_ptr(priv
, &priv
->txq
[3]);
4826 iwl3945_tx_queue_update_write_ptr(priv
, &priv
->txq
[4]);
4827 iwl3945_tx_queue_update_write_ptr(priv
, &priv
->txq
[5]);
4829 handled
|= CSR_INT_BIT_WAKEUP
;
4832 /* All uCode command responses, including Tx command responses,
4833 * Rx "responses" (frame-received notification), and other
4834 * notifications from uCode come through here*/
4835 if (inta
& (CSR_INT_BIT_FH_RX
| CSR_INT_BIT_SW_RX
)) {
4836 iwl3945_rx_handle(priv
);
4837 handled
|= (CSR_INT_BIT_FH_RX
| CSR_INT_BIT_SW_RX
);
4840 if (inta
& CSR_INT_BIT_FH_TX
) {
4841 IWL_DEBUG_ISR("Tx interrupt\n");
4843 iwl3945_write32(priv
, CSR_FH_INT_STATUS
, (1 << 6));
4844 if (!iwl3945_grab_nic_access(priv
)) {
4845 iwl3945_write_direct32(priv
,
4847 (ALM_FH_SRVC_CHNL
), 0x0);
4848 iwl3945_release_nic_access(priv
);
4850 handled
|= CSR_INT_BIT_FH_TX
;
4853 if (inta
& ~handled
)
4854 IWL_ERROR("Unhandled INTA bits 0x%08x\n", inta
& ~handled
);
4856 if (inta
& ~CSR_INI_SET_MASK
) {
4857 IWL_WARNING("Disabled INTA bits 0x%08x were pending\n",
4858 inta
& ~CSR_INI_SET_MASK
);
4859 IWL_WARNING(" with FH_INT = 0x%08x\n", inta_fh
);
4862 /* Re-enable all interrupts */
4863 iwl3945_enable_interrupts(priv
);
4865 #ifdef CONFIG_IWL3945_DEBUG
4866 if (iwl3945_debug_level
& (IWL_DL_ISR
)) {
4867 inta
= iwl3945_read32(priv
, CSR_INT
);
4868 inta_mask
= iwl3945_read32(priv
, CSR_INT_MASK
);
4869 inta_fh
= iwl3945_read32(priv
, CSR_FH_INT_STATUS
);
4870 IWL_DEBUG_ISR("End inta 0x%08x, enabled 0x%08x, fh 0x%08x, "
4871 "flags 0x%08lx\n", inta
, inta_mask
, inta_fh
, flags
);
4874 spin_unlock_irqrestore(&priv
->lock
, flags
);
4877 static irqreturn_t
iwl3945_isr(int irq
, void *data
)
4879 struct iwl3945_priv
*priv
= data
;
4880 u32 inta
, inta_mask
;
4885 spin_lock(&priv
->lock
);
4887 /* Disable (but don't clear!) interrupts here to avoid
4888 * back-to-back ISRs and sporadic interrupts from our NIC.
4889 * If we have something to service, the tasklet will re-enable ints.
4890 * If we *don't* have something, we'll re-enable before leaving here. */
4891 inta_mask
= iwl3945_read32(priv
, CSR_INT_MASK
); /* just for debug */
4892 iwl3945_write32(priv
, CSR_INT_MASK
, 0x00000000);
4894 /* Discover which interrupts are active/pending */
4895 inta
= iwl3945_read32(priv
, CSR_INT
);
4896 inta_fh
= iwl3945_read32(priv
, CSR_FH_INT_STATUS
);
4898 /* Ignore interrupt if there's nothing in NIC to service.
4899 * This may be due to IRQ shared with another device,
4900 * or due to sporadic interrupts thrown from our NIC. */
4901 if (!inta
&& !inta_fh
) {
4902 IWL_DEBUG_ISR("Ignore interrupt, inta == 0, inta_fh == 0\n");
4906 if ((inta
== 0xFFFFFFFF) || ((inta
& 0xFFFFFFF0) == 0xa5a5a5a0)) {
4907 /* Hardware disappeared */
4908 IWL_WARNING("HARDWARE GONE?? INTA == 0x%080x\n", inta
);
4912 IWL_DEBUG_ISR("ISR inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
4913 inta
, inta_mask
, inta_fh
);
4915 inta
&= ~CSR_INT_BIT_SCD
;
4917 /* iwl3945_irq_tasklet() will service interrupts and re-enable them */
4918 if (likely(inta
|| inta_fh
))
4919 tasklet_schedule(&priv
->irq_tasklet
);
4921 spin_unlock(&priv
->lock
);
4926 /* re-enable interrupts here since we don't have anything to service. */
4927 iwl3945_enable_interrupts(priv
);
4928 spin_unlock(&priv
->lock
);
4932 /************************** EEPROM BANDS ****************************
4934 * The iwl3945_eeprom_band definitions below provide the mapping from the
4935 * EEPROM contents to the specific channel number supported for each
4938 * For example, iwl3945_priv->eeprom.band_3_channels[4] from the band_3
4939 * definition below maps to physical channel 42 in the 5.2GHz spectrum.
4940 * The specific geography and calibration information for that channel
4941 * is contained in the eeprom map itself.
4943 * During init, we copy the eeprom information and channel map
4944 * information into priv->channel_info_24/52 and priv->channel_map_24/52
4946 * channel_map_24/52 provides the index in the channel_info array for a
4947 * given channel. We have to have two separate maps as there is channel
4948 * overlap with the 2.4GHz and 5.2GHz spectrum as seen in band_1 and
4951 * A value of 0xff stored in the channel_map indicates that the channel
4952 * is not supported by the hardware at all.
4954 * A value of 0xfe in the channel_map indicates that the channel is not
4955 * valid for Tx with the current hardware. This means that
4956 * while the system can tune and receive on a given channel, it may not
4957 * be able to associate or transmit any frames on that
4958 * channel. There is no corresponding channel information for that
4961 *********************************************************************/
4964 static const u8 iwl3945_eeprom_band_1
[14] = {
4965 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14
4969 static const u8 iwl3945_eeprom_band_2
[] = { /* 4915-5080MHz */
4970 183, 184, 185, 187, 188, 189, 192, 196, 7, 8, 11, 12, 16
4973 static const u8 iwl3945_eeprom_band_3
[] = { /* 5170-5320MHz */
4974 34, 36, 38, 40, 42, 44, 46, 48, 52, 56, 60, 64
4977 static const u8 iwl3945_eeprom_band_4
[] = { /* 5500-5700MHz */
4978 100, 104, 108, 112, 116, 120, 124, 128, 132, 136, 140
4981 static const u8 iwl3945_eeprom_band_5
[] = { /* 5725-5825MHz */
4982 145, 149, 153, 157, 161, 165
4985 static void iwl3945_init_band_reference(const struct iwl3945_priv
*priv
, int band
,
4986 int *eeprom_ch_count
,
4987 const struct iwl3945_eeprom_channel
4989 const u8
**eeprom_ch_index
)
4992 case 1: /* 2.4GHz band */
4993 *eeprom_ch_count
= ARRAY_SIZE(iwl3945_eeprom_band_1
);
4994 *eeprom_ch_info
= priv
->eeprom
.band_1_channels
;
4995 *eeprom_ch_index
= iwl3945_eeprom_band_1
;
4997 case 2: /* 4.9GHz band */
4998 *eeprom_ch_count
= ARRAY_SIZE(iwl3945_eeprom_band_2
);
4999 *eeprom_ch_info
= priv
->eeprom
.band_2_channels
;
5000 *eeprom_ch_index
= iwl3945_eeprom_band_2
;
5002 case 3: /* 5.2GHz band */
5003 *eeprom_ch_count
= ARRAY_SIZE(iwl3945_eeprom_band_3
);
5004 *eeprom_ch_info
= priv
->eeprom
.band_3_channels
;
5005 *eeprom_ch_index
= iwl3945_eeprom_band_3
;
5007 case 4: /* 5.5GHz band */
5008 *eeprom_ch_count
= ARRAY_SIZE(iwl3945_eeprom_band_4
);
5009 *eeprom_ch_info
= priv
->eeprom
.band_4_channels
;
5010 *eeprom_ch_index
= iwl3945_eeprom_band_4
;
5012 case 5: /* 5.7GHz band */
5013 *eeprom_ch_count
= ARRAY_SIZE(iwl3945_eeprom_band_5
);
5014 *eeprom_ch_info
= priv
->eeprom
.band_5_channels
;
5015 *eeprom_ch_index
= iwl3945_eeprom_band_5
;
5024 * iwl3945_get_channel_info - Find driver's private channel info
5026 * Based on band and channel number.
5028 const struct iwl3945_channel_info
*iwl3945_get_channel_info(const struct iwl3945_priv
*priv
,
5029 int phymode
, u16 channel
)
5034 case MODE_IEEE80211A
:
5035 for (i
= 14; i
< priv
->channel_count
; i
++) {
5036 if (priv
->channel_info
[i
].channel
== channel
)
5037 return &priv
->channel_info
[i
];
5041 case MODE_IEEE80211B
:
5042 case MODE_IEEE80211G
:
5043 if (channel
>= 1 && channel
<= 14)
5044 return &priv
->channel_info
[channel
- 1];
5052 #define CHECK_AND_PRINT(x) ((eeprom_ch_info[ch].flags & EEPROM_CHANNEL_##x) \
5056 * iwl3945_init_channel_map - Set up driver's info for all possible channels
5058 static int iwl3945_init_channel_map(struct iwl3945_priv
*priv
)
5060 int eeprom_ch_count
= 0;
5061 const u8
*eeprom_ch_index
= NULL
;
5062 const struct iwl3945_eeprom_channel
*eeprom_ch_info
= NULL
;
5064 struct iwl3945_channel_info
*ch_info
;
5066 if (priv
->channel_count
) {
5067 IWL_DEBUG_INFO("Channel map already initialized.\n");
5071 if (priv
->eeprom
.version
< 0x2f) {
5072 IWL_WARNING("Unsupported EEPROM version: 0x%04X\n",
5073 priv
->eeprom
.version
);
5077 IWL_DEBUG_INFO("Initializing regulatory info from EEPROM\n");
5079 priv
->channel_count
=
5080 ARRAY_SIZE(iwl3945_eeprom_band_1
) +
5081 ARRAY_SIZE(iwl3945_eeprom_band_2
) +
5082 ARRAY_SIZE(iwl3945_eeprom_band_3
) +
5083 ARRAY_SIZE(iwl3945_eeprom_band_4
) +
5084 ARRAY_SIZE(iwl3945_eeprom_band_5
);
5086 IWL_DEBUG_INFO("Parsing data for %d channels.\n", priv
->channel_count
);
5088 priv
->channel_info
= kzalloc(sizeof(struct iwl3945_channel_info
) *
5089 priv
->channel_count
, GFP_KERNEL
);
5090 if (!priv
->channel_info
) {
5091 IWL_ERROR("Could not allocate channel_info\n");
5092 priv
->channel_count
= 0;
5096 ch_info
= priv
->channel_info
;
5098 /* Loop through the 5 EEPROM bands adding them in order to the
5099 * channel map we maintain (that contains additional information than
5100 * what just in the EEPROM) */
5101 for (band
= 1; band
<= 5; band
++) {
5103 iwl3945_init_band_reference(priv
, band
, &eeprom_ch_count
,
5104 &eeprom_ch_info
, &eeprom_ch_index
);
5106 /* Loop through each band adding each of the channels */
5107 for (ch
= 0; ch
< eeprom_ch_count
; ch
++) {
5108 ch_info
->channel
= eeprom_ch_index
[ch
];
5109 ch_info
->phymode
= (band
== 1) ? MODE_IEEE80211B
:
5112 /* permanently store EEPROM's channel regulatory flags
5113 * and max power in channel info database. */
5114 ch_info
->eeprom
= eeprom_ch_info
[ch
];
5116 /* Copy the run-time flags so they are there even on
5117 * invalid channels */
5118 ch_info
->flags
= eeprom_ch_info
[ch
].flags
;
5120 if (!(is_channel_valid(ch_info
))) {
5121 IWL_DEBUG_INFO("Ch. %d Flags %x [%sGHz] - "
5125 is_channel_a_band(ch_info
) ?
5131 /* Initialize regulatory-based run-time data */
5132 ch_info
->max_power_avg
= ch_info
->curr_txpow
=
5133 eeprom_ch_info
[ch
].max_power_avg
;
5134 ch_info
->scan_power
= eeprom_ch_info
[ch
].max_power_avg
;
5135 ch_info
->min_power
= 0;
5137 IWL_DEBUG_INFO("Ch. %d [%sGHz] %s%s%s%s%s%s(0x%02x"
5138 " %ddBm): Ad-Hoc %ssupported\n",
5140 is_channel_a_band(ch_info
) ?
5142 CHECK_AND_PRINT(IBSS
),
5143 CHECK_AND_PRINT(ACTIVE
),
5144 CHECK_AND_PRINT(RADAR
),
5145 CHECK_AND_PRINT(WIDE
),
5146 CHECK_AND_PRINT(NARROW
),
5147 CHECK_AND_PRINT(DFS
),
5148 eeprom_ch_info
[ch
].flags
,
5149 eeprom_ch_info
[ch
].max_power_avg
,
5150 ((eeprom_ch_info
[ch
].
5151 flags
& EEPROM_CHANNEL_IBSS
)
5152 && !(eeprom_ch_info
[ch
].
5153 flags
& EEPROM_CHANNEL_RADAR
))
5156 /* Set the user_txpower_limit to the highest power
5157 * supported by any channel */
5158 if (eeprom_ch_info
[ch
].max_power_avg
>
5159 priv
->user_txpower_limit
)
5160 priv
->user_txpower_limit
=
5161 eeprom_ch_info
[ch
].max_power_avg
;
5167 /* Set up txpower settings in driver for all channels */
5168 if (iwl3945_txpower_set_from_eeprom(priv
))
5175 * iwl3945_free_channel_map - undo allocations in iwl3945_init_channel_map
5177 static void iwl3945_free_channel_map(struct iwl3945_priv
*priv
)
5179 kfree(priv
->channel_info
);
5180 priv
->channel_count
= 0;
5183 /* For active scan, listen ACTIVE_DWELL_TIME (msec) on each channel after
5184 * sending probe req. This should be set long enough to hear probe responses
5185 * from more than one AP. */
5186 #define IWL_ACTIVE_DWELL_TIME_24 (20) /* all times in msec */
5187 #define IWL_ACTIVE_DWELL_TIME_52 (10)
5189 /* For faster active scanning, scan will move to the next channel if fewer than
5190 * PLCP_QUIET_THRESH packets are heard on this channel within
5191 * ACTIVE_QUIET_TIME after sending probe request. This shortens the dwell
5192 * time if it's a quiet channel (nothing responded to our probe, and there's
5193 * no other traffic).
5194 * Disable "quiet" feature by setting PLCP_QUIET_THRESH to 0. */
5195 #define IWL_PLCP_QUIET_THRESH __constant_cpu_to_le16(1) /* packets */
5196 #define IWL_ACTIVE_QUIET_TIME __constant_cpu_to_le16(5) /* msec */
5198 /* For passive scan, listen PASSIVE_DWELL_TIME (msec) on each channel.
5199 * Must be set longer than active dwell time.
5200 * For the most reliable scan, set > AP beacon interval (typically 100msec). */
5201 #define IWL_PASSIVE_DWELL_TIME_24 (20) /* all times in msec */
5202 #define IWL_PASSIVE_DWELL_TIME_52 (10)
5203 #define IWL_PASSIVE_DWELL_BASE (100)
5204 #define IWL_CHANNEL_TUNE_TIME 5
5206 static inline u16
iwl3945_get_active_dwell_time(struct iwl3945_priv
*priv
, int phymode
)
5208 if (phymode
== MODE_IEEE80211A
)
5209 return IWL_ACTIVE_DWELL_TIME_52
;
5211 return IWL_ACTIVE_DWELL_TIME_24
;
5214 static u16
iwl3945_get_passive_dwell_time(struct iwl3945_priv
*priv
, int phymode
)
5216 u16 active
= iwl3945_get_active_dwell_time(priv
, phymode
);
5217 u16 passive
= (phymode
!= MODE_IEEE80211A
) ?
5218 IWL_PASSIVE_DWELL_BASE
+ IWL_PASSIVE_DWELL_TIME_24
:
5219 IWL_PASSIVE_DWELL_BASE
+ IWL_PASSIVE_DWELL_TIME_52
;
5221 if (iwl3945_is_associated(priv
)) {
5222 /* If we're associated, we clamp the maximum passive
5223 * dwell time to be 98% of the beacon interval (minus
5224 * 2 * channel tune time) */
5225 passive
= priv
->beacon_int
;
5226 if ((passive
> IWL_PASSIVE_DWELL_BASE
) || !passive
)
5227 passive
= IWL_PASSIVE_DWELL_BASE
;
5228 passive
= (passive
* 98) / 100 - IWL_CHANNEL_TUNE_TIME
* 2;
5231 if (passive
<= active
)
5232 passive
= active
+ 1;
5237 static int iwl3945_get_channels_for_scan(struct iwl3945_priv
*priv
, int phymode
,
5238 u8 is_active
, u8 direct_mask
,
5239 struct iwl3945_scan_channel
*scan_ch
)
5241 const struct ieee80211_channel
*channels
= NULL
;
5242 const struct ieee80211_hw_mode
*hw_mode
;
5243 const struct iwl3945_channel_info
*ch_info
;
5244 u16 passive_dwell
= 0;
5245 u16 active_dwell
= 0;
5248 hw_mode
= iwl3945_get_hw_mode(priv
, phymode
);
5252 channels
= hw_mode
->channels
;
5254 active_dwell
= iwl3945_get_active_dwell_time(priv
, phymode
);
5255 passive_dwell
= iwl3945_get_passive_dwell_time(priv
, phymode
);
5257 for (i
= 0, added
= 0; i
< hw_mode
->num_channels
; i
++) {
5258 if (channels
[i
].chan
==
5259 le16_to_cpu(priv
->active_rxon
.channel
)) {
5260 if (iwl3945_is_associated(priv
)) {
5262 ("Skipping current channel %d\n",
5263 le16_to_cpu(priv
->active_rxon
.channel
));
5266 } else if (priv
->only_active_channel
)
5269 scan_ch
->channel
= channels
[i
].chan
;
5271 ch_info
= iwl3945_get_channel_info(priv
, phymode
, scan_ch
->channel
);
5272 if (!is_channel_valid(ch_info
)) {
5273 IWL_DEBUG_SCAN("Channel %d is INVALID for this SKU.\n",
5278 if (!is_active
|| is_channel_passive(ch_info
) ||
5279 !(channels
[i
].flag
& IEEE80211_CHAN_W_ACTIVE_SCAN
))
5280 scan_ch
->type
= 0; /* passive */
5282 scan_ch
->type
= 1; /* active */
5284 if (scan_ch
->type
& 1)
5285 scan_ch
->type
|= (direct_mask
<< 1);
5287 if (is_channel_narrow(ch_info
))
5288 scan_ch
->type
|= (1 << 7);
5290 scan_ch
->active_dwell
= cpu_to_le16(active_dwell
);
5291 scan_ch
->passive_dwell
= cpu_to_le16(passive_dwell
);
5293 /* Set txpower levels to defaults */
5294 scan_ch
->tpc
.dsp_atten
= 110;
5295 /* scan_pwr_info->tpc.dsp_atten; */
5297 /*scan_pwr_info->tpc.tx_gain; */
5298 if (phymode
== MODE_IEEE80211A
)
5299 scan_ch
->tpc
.tx_gain
= ((1 << 5) | (3 << 3)) | 3;
5301 scan_ch
->tpc
.tx_gain
= ((1 << 5) | (5 << 3));
5302 /* NOTE: if we were doing 6Mb OFDM for scans we'd use
5304 * scan_ch->tpc.tx_gain = ((1 << 5) | (2 << 3)) | 3;
5308 IWL_DEBUG_SCAN("Scanning %d [%s %d]\n",
5310 (scan_ch
->type
& 1) ? "ACTIVE" : "PASSIVE",
5311 (scan_ch
->type
& 1) ?
5312 active_dwell
: passive_dwell
);
5318 IWL_DEBUG_SCAN("total channels to scan %d \n", added
);
5322 static void iwl3945_reset_channel_flag(struct iwl3945_priv
*priv
)
5325 for (i
= 0; i
< 3; i
++) {
5326 struct ieee80211_hw_mode
*hw_mode
= (void *)&priv
->modes
[i
];
5327 for (j
= 0; j
< hw_mode
->num_channels
; j
++)
5328 hw_mode
->channels
[j
].flag
= hw_mode
->channels
[j
].val
;
5332 static void iwl3945_init_hw_rates(struct iwl3945_priv
*priv
,
5333 struct ieee80211_rate
*rates
)
5337 for (i
= 0; i
< IWL_RATE_COUNT
; i
++) {
5338 rates
[i
].rate
= iwl3945_rates
[i
].ieee
* 5;
5339 rates
[i
].val
= i
; /* Rate scaling will work on indexes */
5341 rates
[i
].flags
= IEEE80211_RATE_SUPPORTED
;
5342 /* Only OFDM have the bits-per-symbol set */
5343 if ((i
<= IWL_LAST_OFDM_RATE
) && (i
>= IWL_FIRST_OFDM_RATE
))
5344 rates
[i
].flags
|= IEEE80211_RATE_OFDM
;
5347 * If CCK 1M then set rate flag to CCK else CCK_2
5348 * which is CCK | PREAMBLE2
5350 rates
[i
].flags
|= (iwl3945_rates
[i
].plcp
== 10) ?
5351 IEEE80211_RATE_CCK
: IEEE80211_RATE_CCK_2
;
5354 /* Set up which ones are basic rates... */
5355 if (IWL_BASIC_RATES_MASK
& (1 << i
))
5356 rates
[i
].flags
|= IEEE80211_RATE_BASIC
;
5361 * iwl3945_init_geos - Initialize mac80211's geo/channel info based from eeprom
5363 static int iwl3945_init_geos(struct iwl3945_priv
*priv
)
5365 struct iwl3945_channel_info
*ch
;
5366 struct ieee80211_hw_mode
*modes
;
5367 struct ieee80211_channel
*channels
;
5368 struct ieee80211_channel
*geo_ch
;
5369 struct ieee80211_rate
*rates
;
5379 IWL_DEBUG_INFO("Geography modes already initialized.\n");
5380 set_bit(STATUS_GEO_CONFIGURED
, &priv
->status
);
5384 modes
= kzalloc(sizeof(struct ieee80211_hw_mode
) * mode_count
,
5389 channels
= kzalloc(sizeof(struct ieee80211_channel
) *
5390 priv
->channel_count
, GFP_KERNEL
);
5396 rates
= kzalloc((sizeof(struct ieee80211_rate
) * (IWL_MAX_RATES
+ 1)),
5409 /* 5.2GHz channels start after the 2.4GHz channels */
5410 modes
[A
].mode
= MODE_IEEE80211A
;
5411 modes
[A
].channels
= &channels
[ARRAY_SIZE(iwl3945_eeprom_band_1
)];
5412 modes
[A
].rates
= &rates
[4];
5413 modes
[A
].num_rates
= 8; /* just OFDM */
5414 modes
[A
].num_channels
= 0;
5416 modes
[B
].mode
= MODE_IEEE80211B
;
5417 modes
[B
].channels
= channels
;
5418 modes
[B
].rates
= rates
;
5419 modes
[B
].num_rates
= 4; /* just CCK */
5420 modes
[B
].num_channels
= 0;
5422 modes
[G
].mode
= MODE_IEEE80211G
;
5423 modes
[G
].channels
= channels
;
5424 modes
[G
].rates
= rates
;
5425 modes
[G
].num_rates
= 12; /* OFDM & CCK */
5426 modes
[G
].num_channels
= 0;
5428 priv
->ieee_channels
= channels
;
5429 priv
->ieee_rates
= rates
;
5431 iwl3945_init_hw_rates(priv
, rates
);
5433 for (i
= 0, geo_ch
= channels
; i
< priv
->channel_count
; i
++) {
5434 ch
= &priv
->channel_info
[i
];
5436 if (!is_channel_valid(ch
)) {
5437 IWL_DEBUG_INFO("Channel %d [%sGHz] is restricted -- "
5439 ch
->channel
, is_channel_a_band(ch
) ?
5444 if (is_channel_a_band(ch
))
5445 geo_ch
= &modes
[A
].channels
[modes
[A
].num_channels
++];
5447 geo_ch
= &modes
[B
].channels
[modes
[B
].num_channels
++];
5448 modes
[G
].num_channels
++;
5451 geo_ch
->freq
= ieee80211chan2mhz(ch
->channel
);
5452 geo_ch
->chan
= ch
->channel
;
5453 geo_ch
->power_level
= ch
->max_power_avg
;
5454 geo_ch
->antenna_max
= 0xff;
5456 if (is_channel_valid(ch
)) {
5457 geo_ch
->flag
= IEEE80211_CHAN_W_SCAN
;
5458 if (ch
->flags
& EEPROM_CHANNEL_IBSS
)
5459 geo_ch
->flag
|= IEEE80211_CHAN_W_IBSS
;
5461 if (ch
->flags
& EEPROM_CHANNEL_ACTIVE
)
5462 geo_ch
->flag
|= IEEE80211_CHAN_W_ACTIVE_SCAN
;
5464 if (ch
->flags
& EEPROM_CHANNEL_RADAR
)
5465 geo_ch
->flag
|= IEEE80211_CHAN_W_RADAR_DETECT
;
5467 if (ch
->max_power_avg
> priv
->max_channel_txpower_limit
)
5468 priv
->max_channel_txpower_limit
=
5472 geo_ch
->val
= geo_ch
->flag
;
5475 if ((modes
[A
].num_channels
== 0) && priv
->is_abg
) {
5476 printk(KERN_INFO DRV_NAME
5477 ": Incorrectly detected BG card as ABG. Please send "
5478 "your PCI ID 0x%04X:0x%04X to maintainer.\n",
5479 priv
->pci_dev
->device
, priv
->pci_dev
->subsystem_device
);
5483 printk(KERN_INFO DRV_NAME
5484 ": Tunable channels: %d 802.11bg, %d 802.11a channels\n",
5485 modes
[G
].num_channels
, modes
[A
].num_channels
);
5488 * NOTE: We register these in preference of order -- the
5489 * stack doesn't currently (as of 7.0.6 / Apr 24 '07) pick
5490 * a phymode based on rates or AP capabilities but seems to
5491 * configure it purely on if the channel being configured
5492 * is supported by a mode -- and the first match is taken
5495 if (modes
[G
].num_channels
)
5496 ieee80211_register_hwmode(priv
->hw
, &modes
[G
]);
5497 if (modes
[B
].num_channels
)
5498 ieee80211_register_hwmode(priv
->hw
, &modes
[B
]);
5499 if (modes
[A
].num_channels
)
5500 ieee80211_register_hwmode(priv
->hw
, &modes
[A
]);
5502 priv
->modes
= modes
;
5503 set_bit(STATUS_GEO_CONFIGURED
, &priv
->status
);
5509 * iwl3945_free_geos - undo allocations in iwl3945_init_geos
5511 static void iwl3945_free_geos(struct iwl3945_priv
*priv
)
5514 kfree(priv
->ieee_channels
);
5515 kfree(priv
->ieee_rates
);
5516 clear_bit(STATUS_GEO_CONFIGURED
, &priv
->status
);
5519 /******************************************************************************
5521 * uCode download functions
5523 ******************************************************************************/
5525 static void iwl3945_dealloc_ucode_pci(struct iwl3945_priv
*priv
)
5527 iwl_free_fw_desc(priv
->pci_dev
, &priv
->ucode_code
);
5528 iwl_free_fw_desc(priv
->pci_dev
, &priv
->ucode_data
);
5529 iwl_free_fw_desc(priv
->pci_dev
, &priv
->ucode_data_backup
);
5530 iwl_free_fw_desc(priv
->pci_dev
, &priv
->ucode_init
);
5531 iwl_free_fw_desc(priv
->pci_dev
, &priv
->ucode_init_data
);
5532 iwl_free_fw_desc(priv
->pci_dev
, &priv
->ucode_boot
);
5536 * iwl3945_verify_inst_full - verify runtime uCode image in card vs. host,
5537 * looking at all data.
5539 static int iwl3945_verify_inst_full(struct iwl3945_priv
*priv
, __le32
* image
, u32 len
)
5546 IWL_DEBUG_INFO("ucode inst image size is %u\n", len
);
5548 rc
= iwl3945_grab_nic_access(priv
);
5552 iwl3945_write_direct32(priv
, HBUS_TARG_MEM_RADDR
, RTC_INST_LOWER_BOUND
);
5555 for (; len
> 0; len
-= sizeof(u32
), image
++) {
5556 /* read data comes through single port, auto-incr addr */
5557 /* NOTE: Use the debugless read so we don't flood kernel log
5558 * if IWL_DL_IO is set */
5559 val
= _iwl3945_read_direct32(priv
, HBUS_TARG_MEM_RDAT
);
5560 if (val
!= le32_to_cpu(*image
)) {
5561 IWL_ERROR("uCode INST section is invalid at "
5562 "offset 0x%x, is 0x%x, s/b 0x%x\n",
5563 save_len
- len
, val
, le32_to_cpu(*image
));
5571 iwl3945_release_nic_access(priv
);
5574 IWL_DEBUG_INFO("ucode image in INSTRUCTION memory is good\n");
5581 * iwl3945_verify_inst_sparse - verify runtime uCode image in card vs. host,
5582 * using sample data 100 bytes apart. If these sample points are good,
5583 * it's a pretty good bet that everything between them is good, too.
5585 static int iwl3945_verify_inst_sparse(struct iwl3945_priv
*priv
, __le32
*image
, u32 len
)
5592 IWL_DEBUG_INFO("ucode inst image size is %u\n", len
);
5594 rc
= iwl3945_grab_nic_access(priv
);
5598 for (i
= 0; i
< len
; i
+= 100, image
+= 100/sizeof(u32
)) {
5599 /* read data comes through single port, auto-incr addr */
5600 /* NOTE: Use the debugless read so we don't flood kernel log
5601 * if IWL_DL_IO is set */
5602 iwl3945_write_direct32(priv
, HBUS_TARG_MEM_RADDR
,
5603 i
+ RTC_INST_LOWER_BOUND
);
5604 val
= _iwl3945_read_direct32(priv
, HBUS_TARG_MEM_RDAT
);
5605 if (val
!= le32_to_cpu(*image
)) {
5606 #if 0 /* Enable this if you want to see details */
5607 IWL_ERROR("uCode INST section is invalid at "
5608 "offset 0x%x, is 0x%x, s/b 0x%x\n",
5618 iwl3945_release_nic_access(priv
);
5625 * iwl3945_verify_ucode - determine which instruction image is in SRAM,
5626 * and verify its contents
5628 static int iwl3945_verify_ucode(struct iwl3945_priv
*priv
)
5635 image
= (__le32
*)priv
->ucode_boot
.v_addr
;
5636 len
= priv
->ucode_boot
.len
;
5637 rc
= iwl3945_verify_inst_sparse(priv
, image
, len
);
5639 IWL_DEBUG_INFO("Bootstrap uCode is good in inst SRAM\n");
5643 /* Try initialize */
5644 image
= (__le32
*)priv
->ucode_init
.v_addr
;
5645 len
= priv
->ucode_init
.len
;
5646 rc
= iwl3945_verify_inst_sparse(priv
, image
, len
);
5648 IWL_DEBUG_INFO("Initialize uCode is good in inst SRAM\n");
5652 /* Try runtime/protocol */
5653 image
= (__le32
*)priv
->ucode_code
.v_addr
;
5654 len
= priv
->ucode_code
.len
;
5655 rc
= iwl3945_verify_inst_sparse(priv
, image
, len
);
5657 IWL_DEBUG_INFO("Runtime uCode is good in inst SRAM\n");
5661 IWL_ERROR("NO VALID UCODE IMAGE IN INSTRUCTION SRAM!!\n");
5663 /* Since nothing seems to match, show first several data entries in
5664 * instruction SRAM, so maybe visual inspection will give a clue.
5665 * Selection of bootstrap image (vs. other images) is arbitrary. */
5666 image
= (__le32
*)priv
->ucode_boot
.v_addr
;
5667 len
= priv
->ucode_boot
.len
;
5668 rc
= iwl3945_verify_inst_full(priv
, image
, len
);
5674 /* check contents of special bootstrap uCode SRAM */
5675 static int iwl3945_verify_bsm(struct iwl3945_priv
*priv
)
5677 __le32
*image
= priv
->ucode_boot
.v_addr
;
5678 u32 len
= priv
->ucode_boot
.len
;
5682 IWL_DEBUG_INFO("Begin verify bsm\n");
5684 /* verify BSM SRAM contents */
5685 val
= iwl3945_read_prph(priv
, BSM_WR_DWCOUNT_REG
);
5686 for (reg
= BSM_SRAM_LOWER_BOUND
;
5687 reg
< BSM_SRAM_LOWER_BOUND
+ len
;
5688 reg
+= sizeof(u32
), image
++) {
5689 val
= iwl3945_read_prph(priv
, reg
);
5690 if (val
!= le32_to_cpu(*image
)) {
5691 IWL_ERROR("BSM uCode verification failed at "
5692 "addr 0x%08X+%u (of %u), is 0x%x, s/b 0x%x\n",
5693 BSM_SRAM_LOWER_BOUND
,
5694 reg
- BSM_SRAM_LOWER_BOUND
, len
,
5695 val
, le32_to_cpu(*image
));
5700 IWL_DEBUG_INFO("BSM bootstrap uCode image OK\n");
5706 * iwl3945_load_bsm - Load bootstrap instructions
5710 * The Bootstrap State Machine (BSM) stores a short bootstrap uCode program
5711 * in special SRAM that does not power down during RFKILL. When powering back
5712 * up after power-saving sleeps (or during initial uCode load), the BSM loads
5713 * the bootstrap program into the on-board processor, and starts it.
5715 * The bootstrap program loads (via DMA) instructions and data for a new
5716 * program from host DRAM locations indicated by the host driver in the
5717 * BSM_DRAM_* registers. Once the new program is loaded, it starts
5720 * When initializing the NIC, the host driver points the BSM to the
5721 * "initialize" uCode image. This uCode sets up some internal data, then
5722 * notifies host via "initialize alive" that it is complete.
5724 * The host then replaces the BSM_DRAM_* pointer values to point to the
5725 * normal runtime uCode instructions and a backup uCode data cache buffer
5726 * (filled initially with starting data values for the on-board processor),
5727 * then triggers the "initialize" uCode to load and launch the runtime uCode,
5728 * which begins normal operation.
5730 * When doing a power-save shutdown, runtime uCode saves data SRAM into
5731 * the backup data cache in DRAM before SRAM is powered down.
5733 * When powering back up, the BSM loads the bootstrap program. This reloads
5734 * the runtime uCode instructions and the backup data cache into SRAM,
5735 * and re-launches the runtime uCode from where it left off.
5737 static int iwl3945_load_bsm(struct iwl3945_priv
*priv
)
5739 __le32
*image
= priv
->ucode_boot
.v_addr
;
5740 u32 len
= priv
->ucode_boot
.len
;
5750 IWL_DEBUG_INFO("Begin load bsm\n");
5752 /* make sure bootstrap program is no larger than BSM's SRAM size */
5753 if (len
> IWL_MAX_BSM_SIZE
)
5756 /* Tell bootstrap uCode where to find the "Initialize" uCode
5757 * in host DRAM ... host DRAM physical address bits 31:0 for 3945.
5758 * NOTE: iwl3945_initialize_alive_start() will replace these values,
5759 * after the "initialize" uCode has run, to point to
5760 * runtime/protocol instructions and backup data cache. */
5761 pinst
= priv
->ucode_init
.p_addr
;
5762 pdata
= priv
->ucode_init_data
.p_addr
;
5763 inst_len
= priv
->ucode_init
.len
;
5764 data_len
= priv
->ucode_init_data
.len
;
5766 rc
= iwl3945_grab_nic_access(priv
);
5770 iwl3945_write_prph(priv
, BSM_DRAM_INST_PTR_REG
, pinst
);
5771 iwl3945_write_prph(priv
, BSM_DRAM_DATA_PTR_REG
, pdata
);
5772 iwl3945_write_prph(priv
, BSM_DRAM_INST_BYTECOUNT_REG
, inst_len
);
5773 iwl3945_write_prph(priv
, BSM_DRAM_DATA_BYTECOUNT_REG
, data_len
);
5775 /* Fill BSM memory with bootstrap instructions */
5776 for (reg_offset
= BSM_SRAM_LOWER_BOUND
;
5777 reg_offset
< BSM_SRAM_LOWER_BOUND
+ len
;
5778 reg_offset
+= sizeof(u32
), image
++)
5779 _iwl3945_write_prph(priv
, reg_offset
,
5780 le32_to_cpu(*image
));
5782 rc
= iwl3945_verify_bsm(priv
);
5784 iwl3945_release_nic_access(priv
);
5788 /* Tell BSM to copy from BSM SRAM into instruction SRAM, when asked */
5789 iwl3945_write_prph(priv
, BSM_WR_MEM_SRC_REG
, 0x0);
5790 iwl3945_write_prph(priv
, BSM_WR_MEM_DST_REG
,
5791 RTC_INST_LOWER_BOUND
);
5792 iwl3945_write_prph(priv
, BSM_WR_DWCOUNT_REG
, len
/ sizeof(u32
));
5794 /* Load bootstrap code into instruction SRAM now,
5795 * to prepare to load "initialize" uCode */
5796 iwl3945_write_prph(priv
, BSM_WR_CTRL_REG
,
5797 BSM_WR_CTRL_REG_BIT_START
);
5799 /* Wait for load of bootstrap uCode to finish */
5800 for (i
= 0; i
< 100; i
++) {
5801 done
= iwl3945_read_prph(priv
, BSM_WR_CTRL_REG
);
5802 if (!(done
& BSM_WR_CTRL_REG_BIT_START
))
5807 IWL_DEBUG_INFO("BSM write complete, poll %d iterations\n", i
);
5809 IWL_ERROR("BSM write did not complete!\n");
5813 /* Enable future boot loads whenever power management unit triggers it
5814 * (e.g. when powering back up after power-save shutdown) */
5815 iwl3945_write_prph(priv
, BSM_WR_CTRL_REG
,
5816 BSM_WR_CTRL_REG_BIT_START_EN
);
5818 iwl3945_release_nic_access(priv
);
5823 static void iwl3945_nic_start(struct iwl3945_priv
*priv
)
5825 /* Remove all resets to allow NIC to operate */
5826 iwl3945_write32(priv
, CSR_RESET
, 0);
5830 * iwl3945_read_ucode - Read uCode images from disk file.
5832 * Copy into buffers for card to fetch via bus-mastering
5834 static int iwl3945_read_ucode(struct iwl3945_priv
*priv
)
5836 struct iwl3945_ucode
*ucode
;
5838 const struct firmware
*ucode_raw
;
5839 /* firmware file name contains uCode/driver compatibility version */
5840 const char *name
= "iwlwifi-3945" IWL3945_UCODE_API
".ucode";
5843 u32 ver
, inst_size
, data_size
, init_size
, init_data_size
, boot_size
;
5845 /* Ask kernel firmware_class module to get the boot firmware off disk.
5846 * request_firmware() is synchronous, file is in memory on return. */
5847 ret
= request_firmware(&ucode_raw
, name
, &priv
->pci_dev
->dev
);
5849 IWL_ERROR("%s firmware file req failed: Reason %d\n",
5854 IWL_DEBUG_INFO("Got firmware '%s' file (%zd bytes) from disk\n",
5855 name
, ucode_raw
->size
);
5857 /* Make sure that we got at least our header! */
5858 if (ucode_raw
->size
< sizeof(*ucode
)) {
5859 IWL_ERROR("File size way too small!\n");
5864 /* Data from ucode file: header followed by uCode images */
5865 ucode
= (void *)ucode_raw
->data
;
5867 ver
= le32_to_cpu(ucode
->ver
);
5868 inst_size
= le32_to_cpu(ucode
->inst_size
);
5869 data_size
= le32_to_cpu(ucode
->data_size
);
5870 init_size
= le32_to_cpu(ucode
->init_size
);
5871 init_data_size
= le32_to_cpu(ucode
->init_data_size
);
5872 boot_size
= le32_to_cpu(ucode
->boot_size
);
5874 IWL_DEBUG_INFO("f/w package hdr ucode version = 0x%x\n", ver
);
5875 IWL_DEBUG_INFO("f/w package hdr runtime inst size = %u\n", inst_size
);
5876 IWL_DEBUG_INFO("f/w package hdr runtime data size = %u\n", data_size
);
5877 IWL_DEBUG_INFO("f/w package hdr init inst size = %u\n", init_size
);
5878 IWL_DEBUG_INFO("f/w package hdr init data size = %u\n", init_data_size
);
5879 IWL_DEBUG_INFO("f/w package hdr boot inst size = %u\n", boot_size
);
5881 /* Verify size of file vs. image size info in file's header */
5882 if (ucode_raw
->size
< sizeof(*ucode
) +
5883 inst_size
+ data_size
+ init_size
+
5884 init_data_size
+ boot_size
) {
5886 IWL_DEBUG_INFO("uCode file size %d too small\n",
5887 (int)ucode_raw
->size
);
5892 /* Verify that uCode images will fit in card's SRAM */
5893 if (inst_size
> IWL_MAX_INST_SIZE
) {
5894 IWL_DEBUG_INFO("uCode instr len %d too large to fit in\n",
5900 if (data_size
> IWL_MAX_DATA_SIZE
) {
5901 IWL_DEBUG_INFO("uCode data len %d too large to fit in\n",
5906 if (init_size
> IWL_MAX_INST_SIZE
) {
5907 IWL_DEBUG_INFO("uCode init instr len %d too large to fit in\n",
5912 if (init_data_size
> IWL_MAX_DATA_SIZE
) {
5913 IWL_DEBUG_INFO("uCode init data len %d too large to fit in\n",
5918 if (boot_size
> IWL_MAX_BSM_SIZE
) {
5919 IWL_DEBUG_INFO("uCode boot instr len %d too large to fit in\n",
5925 /* Allocate ucode buffers for card's bus-master loading ... */
5927 /* Runtime instructions and 2 copies of data:
5928 * 1) unmodified from disk
5929 * 2) backup cache for save/restore during power-downs */
5930 priv
->ucode_code
.len
= inst_size
;
5931 iwl_alloc_fw_desc(priv
->pci_dev
, &priv
->ucode_code
);
5933 priv
->ucode_data
.len
= data_size
;
5934 iwl_alloc_fw_desc(priv
->pci_dev
, &priv
->ucode_data
);
5936 priv
->ucode_data_backup
.len
= data_size
;
5937 iwl_alloc_fw_desc(priv
->pci_dev
, &priv
->ucode_data_backup
);
5939 if (!priv
->ucode_code
.v_addr
|| !priv
->ucode_data
.v_addr
||
5940 !priv
->ucode_data_backup
.v_addr
)
5943 /* Initialization instructions and data */
5944 if (init_size
&& init_data_size
) {
5945 priv
->ucode_init
.len
= init_size
;
5946 iwl_alloc_fw_desc(priv
->pci_dev
, &priv
->ucode_init
);
5948 priv
->ucode_init_data
.len
= init_data_size
;
5949 iwl_alloc_fw_desc(priv
->pci_dev
, &priv
->ucode_init_data
);
5951 if (!priv
->ucode_init
.v_addr
|| !priv
->ucode_init_data
.v_addr
)
5955 /* Bootstrap (instructions only, no data) */
5957 priv
->ucode_boot
.len
= boot_size
;
5958 iwl_alloc_fw_desc(priv
->pci_dev
, &priv
->ucode_boot
);
5960 if (!priv
->ucode_boot
.v_addr
)
5964 /* Copy images into buffers for card's bus-master reads ... */
5966 /* Runtime instructions (first block of data in file) */
5967 src
= &ucode
->data
[0];
5968 len
= priv
->ucode_code
.len
;
5969 IWL_DEBUG_INFO("Copying (but not loading) uCode instr len %Zd\n", len
);
5970 memcpy(priv
->ucode_code
.v_addr
, src
, len
);
5971 IWL_DEBUG_INFO("uCode instr buf vaddr = 0x%p, paddr = 0x%08x\n",
5972 priv
->ucode_code
.v_addr
, (u32
)priv
->ucode_code
.p_addr
);
5974 /* Runtime data (2nd block)
5975 * NOTE: Copy into backup buffer will be done in iwl3945_up() */
5976 src
= &ucode
->data
[inst_size
];
5977 len
= priv
->ucode_data
.len
;
5978 IWL_DEBUG_INFO("Copying (but not loading) uCode data len %Zd\n", len
);
5979 memcpy(priv
->ucode_data
.v_addr
, src
, len
);
5980 memcpy(priv
->ucode_data_backup
.v_addr
, src
, len
);
5982 /* Initialization instructions (3rd block) */
5984 src
= &ucode
->data
[inst_size
+ data_size
];
5985 len
= priv
->ucode_init
.len
;
5986 IWL_DEBUG_INFO("Copying (but not loading) init instr len %Zd\n",
5988 memcpy(priv
->ucode_init
.v_addr
, src
, len
);
5991 /* Initialization data (4th block) */
5992 if (init_data_size
) {
5993 src
= &ucode
->data
[inst_size
+ data_size
+ init_size
];
5994 len
= priv
->ucode_init_data
.len
;
5995 IWL_DEBUG_INFO("Copying (but not loading) init data len %d\n",
5997 memcpy(priv
->ucode_init_data
.v_addr
, src
, len
);
6000 /* Bootstrap instructions (5th block) */
6001 src
= &ucode
->data
[inst_size
+ data_size
+ init_size
+ init_data_size
];
6002 len
= priv
->ucode_boot
.len
;
6003 IWL_DEBUG_INFO("Copying (but not loading) boot instr len %d\n",
6005 memcpy(priv
->ucode_boot
.v_addr
, src
, len
);
6007 /* We have our copies now, allow OS release its copies */
6008 release_firmware(ucode_raw
);
6012 IWL_ERROR("failed to allocate pci memory\n");
6014 iwl3945_dealloc_ucode_pci(priv
);
6017 release_firmware(ucode_raw
);
6025 * iwl3945_set_ucode_ptrs - Set uCode address location
6027 * Tell initialization uCode where to find runtime uCode.
6029 * BSM registers initially contain pointers to initialization uCode.
6030 * We need to replace them to load runtime uCode inst and data,
6031 * and to save runtime data when powering down.
6033 static int iwl3945_set_ucode_ptrs(struct iwl3945_priv
*priv
)
6038 unsigned long flags
;
6040 /* bits 31:0 for 3945 */
6041 pinst
= priv
->ucode_code
.p_addr
;
6042 pdata
= priv
->ucode_data_backup
.p_addr
;
6044 spin_lock_irqsave(&priv
->lock
, flags
);
6045 rc
= iwl3945_grab_nic_access(priv
);
6047 spin_unlock_irqrestore(&priv
->lock
, flags
);
6051 /* Tell bootstrap uCode where to find image to load */
6052 iwl3945_write_prph(priv
, BSM_DRAM_INST_PTR_REG
, pinst
);
6053 iwl3945_write_prph(priv
, BSM_DRAM_DATA_PTR_REG
, pdata
);
6054 iwl3945_write_prph(priv
, BSM_DRAM_DATA_BYTECOUNT_REG
,
6055 priv
->ucode_data
.len
);
6057 /* Inst bytecount must be last to set up, bit 31 signals uCode
6058 * that all new ptr/size info is in place */
6059 iwl3945_write_prph(priv
, BSM_DRAM_INST_BYTECOUNT_REG
,
6060 priv
->ucode_code
.len
| BSM_DRAM_INST_LOAD
);
6062 iwl3945_release_nic_access(priv
);
6064 spin_unlock_irqrestore(&priv
->lock
, flags
);
6066 IWL_DEBUG_INFO("Runtime uCode pointers are set.\n");
6072 * iwl3945_init_alive_start - Called after REPLY_ALIVE notification received
6074 * Called after REPLY_ALIVE notification received from "initialize" uCode.
6076 * Tell "initialize" uCode to go ahead and load the runtime uCode.
6078 static void iwl3945_init_alive_start(struct iwl3945_priv
*priv
)
6080 /* Check alive response for "valid" sign from uCode */
6081 if (priv
->card_alive_init
.is_valid
!= UCODE_VALID_OK
) {
6082 /* We had an error bringing up the hardware, so take it
6083 * all the way back down so we can try again */
6084 IWL_DEBUG_INFO("Initialize Alive failed.\n");
6088 /* Bootstrap uCode has loaded initialize uCode ... verify inst image.
6089 * This is a paranoid check, because we would not have gotten the
6090 * "initialize" alive if code weren't properly loaded. */
6091 if (iwl3945_verify_ucode(priv
)) {
6092 /* Runtime instruction load was bad;
6093 * take it all the way back down so we can try again */
6094 IWL_DEBUG_INFO("Bad \"initialize\" uCode load.\n");
6098 /* Send pointers to protocol/runtime uCode image ... init code will
6099 * load and launch runtime uCode, which will send us another "Alive"
6101 IWL_DEBUG_INFO("Initialization Alive received.\n");
6102 if (iwl3945_set_ucode_ptrs(priv
)) {
6103 /* Runtime instruction load won't happen;
6104 * take it all the way back down so we can try again */
6105 IWL_DEBUG_INFO("Couldn't set up uCode pointers.\n");
6111 queue_work(priv
->workqueue
, &priv
->restart
);
6116 * iwl3945_alive_start - called after REPLY_ALIVE notification received
6117 * from protocol/runtime uCode (initialization uCode's
6118 * Alive gets handled by iwl3945_init_alive_start()).
6120 static void iwl3945_alive_start(struct iwl3945_priv
*priv
)
6123 int thermal_spin
= 0;
6126 IWL_DEBUG_INFO("Runtime Alive received.\n");
6128 if (priv
->card_alive
.is_valid
!= UCODE_VALID_OK
) {
6129 /* We had an error bringing up the hardware, so take it
6130 * all the way back down so we can try again */
6131 IWL_DEBUG_INFO("Alive failed.\n");
6135 /* Initialize uCode has loaded Runtime uCode ... verify inst image.
6136 * This is a paranoid check, because we would not have gotten the
6137 * "runtime" alive if code weren't properly loaded. */
6138 if (iwl3945_verify_ucode(priv
)) {
6139 /* Runtime instruction load was bad;
6140 * take it all the way back down so we can try again */
6141 IWL_DEBUG_INFO("Bad runtime uCode load.\n");
6145 iwl3945_clear_stations_table(priv
);
6147 rc
= iwl3945_grab_nic_access(priv
);
6149 IWL_WARNING("Can not read rfkill status from adapter\n");
6153 rfkill
= iwl3945_read_prph(priv
, APMG_RFKILL_REG
);
6154 IWL_DEBUG_INFO("RFKILL status: 0x%x\n", rfkill
);
6155 iwl3945_release_nic_access(priv
);
6158 clear_bit(STATUS_RF_KILL_HW
, &priv
->status
);
6159 /* if rfkill is not on, then wait for thermal
6160 * sensor in adapter to kick in */
6161 while (iwl3945_hw_get_temperature(priv
) == 0) {
6167 IWL_DEBUG_INFO("Thermal calibration took %dus\n",
6170 set_bit(STATUS_RF_KILL_HW
, &priv
->status
);
6172 /* After the ALIVE response, we can send commands to 3945 uCode */
6173 set_bit(STATUS_ALIVE
, &priv
->status
);
6175 /* Clear out the uCode error bit if it is set */
6176 clear_bit(STATUS_FW_ERROR
, &priv
->status
);
6178 if (iwl3945_is_rfkill(priv
))
6181 ieee80211_start_queues(priv
->hw
);
6183 priv
->active_rate
= priv
->rates_mask
;
6184 priv
->active_rate_basic
= priv
->rates_mask
& IWL_BASIC_RATES_MASK
;
6186 iwl3945_send_power_mode(priv
, IWL_POWER_LEVEL(priv
->power_mode
));
6188 if (iwl3945_is_associated(priv
)) {
6189 struct iwl3945_rxon_cmd
*active_rxon
=
6190 (struct iwl3945_rxon_cmd
*)(&priv
->active_rxon
);
6192 memcpy(&priv
->staging_rxon
, &priv
->active_rxon
,
6193 sizeof(priv
->staging_rxon
));
6194 active_rxon
->filter_flags
&= ~RXON_FILTER_ASSOC_MSK
;
6196 /* Initialize our rx_config data */
6197 iwl3945_connection_init_rx_config(priv
);
6198 memcpy(priv
->staging_rxon
.node_addr
, priv
->mac_addr
, ETH_ALEN
);
6201 /* Configure Bluetooth device coexistence support */
6202 iwl3945_send_bt_config(priv
);
6204 /* Configure the adapter for unassociated operation */
6205 iwl3945_commit_rxon(priv
);
6207 /* At this point, the NIC is initialized and operational */
6208 priv
->notif_missed_beacons
= 0;
6209 set_bit(STATUS_READY
, &priv
->status
);
6211 iwl3945_reg_txpower_periodic(priv
);
6213 IWL_DEBUG_INFO("ALIVE processing complete.\n");
6214 wake_up_interruptible(&priv
->wait_command_queue
);
6216 if (priv
->error_recovering
)
6217 iwl3945_error_recovery(priv
);
6222 queue_work(priv
->workqueue
, &priv
->restart
);
6225 static void iwl3945_cancel_deferred_work(struct iwl3945_priv
*priv
);
6227 static void __iwl3945_down(struct iwl3945_priv
*priv
)
6229 unsigned long flags
;
6230 int exit_pending
= test_bit(STATUS_EXIT_PENDING
, &priv
->status
);
6231 struct ieee80211_conf
*conf
= NULL
;
6233 IWL_DEBUG_INFO(DRV_NAME
" is going down\n");
6235 conf
= ieee80211_get_hw_conf(priv
->hw
);
6238 set_bit(STATUS_EXIT_PENDING
, &priv
->status
);
6240 iwl3945_clear_stations_table(priv
);
6242 /* Unblock any waiting calls */
6243 wake_up_interruptible_all(&priv
->wait_command_queue
);
6245 /* Wipe out the EXIT_PENDING status bit if we are not actually
6246 * exiting the module */
6248 clear_bit(STATUS_EXIT_PENDING
, &priv
->status
);
6250 /* stop and reset the on-board processor */
6251 iwl3945_write32(priv
, CSR_RESET
, CSR_RESET_REG_FLAG_NEVO_RESET
);
6253 /* tell the device to stop sending interrupts */
6254 iwl3945_disable_interrupts(priv
);
6256 if (priv
->mac80211_registered
)
6257 ieee80211_stop_queues(priv
->hw
);
6259 /* If we have not previously called iwl3945_init() then
6260 * clear all bits but the RF Kill and SUSPEND bits and return */
6261 if (!iwl3945_is_init(priv
)) {
6262 priv
->status
= test_bit(STATUS_RF_KILL_HW
, &priv
->status
) <<
6264 test_bit(STATUS_RF_KILL_SW
, &priv
->status
) <<
6266 test_bit(STATUS_GEO_CONFIGURED
, &priv
->status
) <<
6267 STATUS_GEO_CONFIGURED
|
6268 test_bit(STATUS_IN_SUSPEND
, &priv
->status
) <<
6273 /* ...otherwise clear out all the status bits but the RF Kill and
6274 * SUSPEND bits and continue taking the NIC down. */
6275 priv
->status
&= test_bit(STATUS_RF_KILL_HW
, &priv
->status
) <<
6277 test_bit(STATUS_RF_KILL_SW
, &priv
->status
) <<
6279 test_bit(STATUS_GEO_CONFIGURED
, &priv
->status
) <<
6280 STATUS_GEO_CONFIGURED
|
6281 test_bit(STATUS_IN_SUSPEND
, &priv
->status
) <<
6283 test_bit(STATUS_FW_ERROR
, &priv
->status
) <<
6286 spin_lock_irqsave(&priv
->lock
, flags
);
6287 iwl3945_clear_bit(priv
, CSR_GP_CNTRL
, CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ
);
6288 spin_unlock_irqrestore(&priv
->lock
, flags
);
6290 iwl3945_hw_txq_ctx_stop(priv
);
6291 iwl3945_hw_rxq_stop(priv
);
6293 spin_lock_irqsave(&priv
->lock
, flags
);
6294 if (!iwl3945_grab_nic_access(priv
)) {
6295 iwl3945_write_prph(priv
, APMG_CLK_DIS_REG
,
6296 APMG_CLK_VAL_DMA_CLK_RQT
);
6297 iwl3945_release_nic_access(priv
);
6299 spin_unlock_irqrestore(&priv
->lock
, flags
);
6303 iwl3945_hw_nic_stop_master(priv
);
6304 iwl3945_set_bit(priv
, CSR_RESET
, CSR_RESET_REG_FLAG_SW_RESET
);
6305 iwl3945_hw_nic_reset(priv
);
6308 memset(&priv
->card_alive
, 0, sizeof(struct iwl3945_alive_resp
));
6310 if (priv
->ibss_beacon
)
6311 dev_kfree_skb(priv
->ibss_beacon
);
6312 priv
->ibss_beacon
= NULL
;
6314 /* clear out any free frames */
6315 iwl3945_clear_free_frames(priv
);
6318 static void iwl3945_down(struct iwl3945_priv
*priv
)
6320 mutex_lock(&priv
->mutex
);
6321 __iwl3945_down(priv
);
6322 mutex_unlock(&priv
->mutex
);
6324 iwl3945_cancel_deferred_work(priv
);
6327 #define MAX_HW_RESTARTS 5
6329 static int __iwl3945_up(struct iwl3945_priv
*priv
)
6333 if (test_bit(STATUS_EXIT_PENDING
, &priv
->status
)) {
6334 IWL_WARNING("Exit pending; will not bring the NIC up\n");
6338 if (test_bit(STATUS_RF_KILL_SW
, &priv
->status
)) {
6339 IWL_WARNING("Radio disabled by SW RF kill (module "
6344 if (!priv
->ucode_data_backup
.v_addr
|| !priv
->ucode_data
.v_addr
) {
6345 IWL_ERROR("ucode not available for device bringup\n");
6349 /* If platform's RF_KILL switch is NOT set to KILL */
6350 if (iwl3945_read32(priv
, CSR_GP_CNTRL
) &
6351 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW
)
6352 clear_bit(STATUS_RF_KILL_HW
, &priv
->status
);
6354 set_bit(STATUS_RF_KILL_HW
, &priv
->status
);
6355 if (!test_bit(STATUS_IN_SUSPEND
, &priv
->status
)) {
6356 IWL_WARNING("Radio disabled by HW RF Kill switch\n");
6361 iwl3945_write32(priv
, CSR_INT
, 0xFFFFFFFF);
6363 rc
= iwl3945_hw_nic_init(priv
);
6365 IWL_ERROR("Unable to int nic\n");
6369 /* make sure rfkill handshake bits are cleared */
6370 iwl3945_write32(priv
, CSR_UCODE_DRV_GP1_CLR
, CSR_UCODE_SW_BIT_RFKILL
);
6371 iwl3945_write32(priv
, CSR_UCODE_DRV_GP1_CLR
,
6372 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED
);
6374 /* clear (again), then enable host interrupts */
6375 iwl3945_write32(priv
, CSR_INT
, 0xFFFFFFFF);
6376 iwl3945_enable_interrupts(priv
);
6378 /* really make sure rfkill handshake bits are cleared */
6379 iwl3945_write32(priv
, CSR_UCODE_DRV_GP1_CLR
, CSR_UCODE_SW_BIT_RFKILL
);
6380 iwl3945_write32(priv
, CSR_UCODE_DRV_GP1_CLR
, CSR_UCODE_SW_BIT_RFKILL
);
6382 /* Copy original ucode data image from disk into backup cache.
6383 * This will be used to initialize the on-board processor's
6384 * data SRAM for a clean start when the runtime program first loads. */
6385 memcpy(priv
->ucode_data_backup
.v_addr
, priv
->ucode_data
.v_addr
,
6386 priv
->ucode_data
.len
);
6388 /* We return success when we resume from suspend and rf_kill is on. */
6389 if (test_bit(STATUS_RF_KILL_HW
, &priv
->status
))
6392 for (i
= 0; i
< MAX_HW_RESTARTS
; i
++) {
6394 iwl3945_clear_stations_table(priv
);
6396 /* load bootstrap state machine,
6397 * load bootstrap program into processor's memory,
6398 * prepare to load the "initialize" uCode */
6399 rc
= iwl3945_load_bsm(priv
);
6402 IWL_ERROR("Unable to set up bootstrap uCode: %d\n", rc
);
6406 /* start card; "initialize" will load runtime ucode */
6407 iwl3945_nic_start(priv
);
6409 IWL_DEBUG_INFO(DRV_NAME
" is coming up\n");
6414 set_bit(STATUS_EXIT_PENDING
, &priv
->status
);
6415 __iwl3945_down(priv
);
6417 /* tried to restart and config the device for as long as our
6418 * patience could withstand */
6419 IWL_ERROR("Unable to initialize device after %d attempts.\n", i
);
6424 /*****************************************************************************
6426 * Workqueue callbacks
6428 *****************************************************************************/
6430 static void iwl3945_bg_init_alive_start(struct work_struct
*data
)
6432 struct iwl3945_priv
*priv
=
6433 container_of(data
, struct iwl3945_priv
, init_alive_start
.work
);
6435 if (test_bit(STATUS_EXIT_PENDING
, &priv
->status
))
6438 mutex_lock(&priv
->mutex
);
6439 iwl3945_init_alive_start(priv
);
6440 mutex_unlock(&priv
->mutex
);
6443 static void iwl3945_bg_alive_start(struct work_struct
*data
)
6445 struct iwl3945_priv
*priv
=
6446 container_of(data
, struct iwl3945_priv
, alive_start
.work
);
6448 if (test_bit(STATUS_EXIT_PENDING
, &priv
->status
))
6451 mutex_lock(&priv
->mutex
);
6452 iwl3945_alive_start(priv
);
6453 mutex_unlock(&priv
->mutex
);
6456 static void iwl3945_bg_rf_kill(struct work_struct
*work
)
6458 struct iwl3945_priv
*priv
= container_of(work
, struct iwl3945_priv
, rf_kill
);
6460 wake_up_interruptible(&priv
->wait_command_queue
);
6462 if (test_bit(STATUS_EXIT_PENDING
, &priv
->status
))
6465 mutex_lock(&priv
->mutex
);
6467 if (!iwl3945_is_rfkill(priv
)) {
6468 IWL_DEBUG(IWL_DL_INFO
| IWL_DL_RF_KILL
,
6469 "HW and/or SW RF Kill no longer active, restarting "
6471 if (!test_bit(STATUS_EXIT_PENDING
, &priv
->status
))
6472 queue_work(priv
->workqueue
, &priv
->restart
);
6475 if (!test_bit(STATUS_RF_KILL_HW
, &priv
->status
))
6476 IWL_DEBUG_RF_KILL("Can not turn radio back on - "
6477 "disabled by SW switch\n");
6479 IWL_WARNING("Radio Frequency Kill Switch is On:\n"
6480 "Kill switch must be turned off for "
6481 "wireless networking to work.\n");
6483 mutex_unlock(&priv
->mutex
);
6486 #define IWL_SCAN_CHECK_WATCHDOG (7 * HZ)
6488 static void iwl3945_bg_scan_check(struct work_struct
*data
)
6490 struct iwl3945_priv
*priv
=
6491 container_of(data
, struct iwl3945_priv
, scan_check
.work
);
6493 if (test_bit(STATUS_EXIT_PENDING
, &priv
->status
))
6496 mutex_lock(&priv
->mutex
);
6497 if (test_bit(STATUS_SCANNING
, &priv
->status
) ||
6498 test_bit(STATUS_SCAN_ABORTING
, &priv
->status
)) {
6499 IWL_DEBUG(IWL_DL_INFO
| IWL_DL_SCAN
,
6500 "Scan completion watchdog resetting adapter (%dms)\n",
6501 jiffies_to_msecs(IWL_SCAN_CHECK_WATCHDOG
));
6503 if (!test_bit(STATUS_EXIT_PENDING
, &priv
->status
))
6504 iwl3945_send_scan_abort(priv
);
6506 mutex_unlock(&priv
->mutex
);
6509 static void iwl3945_bg_request_scan(struct work_struct
*data
)
6511 struct iwl3945_priv
*priv
=
6512 container_of(data
, struct iwl3945_priv
, request_scan
);
6513 struct iwl3945_host_cmd cmd
= {
6514 .id
= REPLY_SCAN_CMD
,
6515 .len
= sizeof(struct iwl3945_scan_cmd
),
6516 .meta
.flags
= CMD_SIZE_HUGE
,
6519 struct iwl3945_scan_cmd
*scan
;
6520 struct ieee80211_conf
*conf
= NULL
;
6524 conf
= ieee80211_get_hw_conf(priv
->hw
);
6526 mutex_lock(&priv
->mutex
);
6528 if (!iwl3945_is_ready(priv
)) {
6529 IWL_WARNING("request scan called when driver not ready.\n");
6533 /* Make sure the scan wasn't cancelled before this queued work
6534 * was given the chance to run... */
6535 if (!test_bit(STATUS_SCANNING
, &priv
->status
))
6538 /* This should never be called or scheduled if there is currently
6539 * a scan active in the hardware. */
6540 if (test_bit(STATUS_SCAN_HW
, &priv
->status
)) {
6541 IWL_DEBUG_INFO("Multiple concurrent scan requests in parallel. "
6542 "Ignoring second request.\n");
6547 if (test_bit(STATUS_EXIT_PENDING
, &priv
->status
)) {
6548 IWL_DEBUG_SCAN("Aborting scan due to device shutdown\n");
6552 if (test_bit(STATUS_SCAN_ABORTING
, &priv
->status
)) {
6553 IWL_DEBUG_HC("Scan request while abort pending. Queuing.\n");
6557 if (iwl3945_is_rfkill(priv
)) {
6558 IWL_DEBUG_HC("Aborting scan due to RF Kill activation\n");
6562 if (!test_bit(STATUS_READY
, &priv
->status
)) {
6563 IWL_DEBUG_HC("Scan request while uninitialized. Queuing.\n");
6567 if (!priv
->scan_bands
) {
6568 IWL_DEBUG_HC("Aborting scan due to no requested bands\n");
6573 priv
->scan
= kmalloc(sizeof(struct iwl3945_scan_cmd
) +
6574 IWL_MAX_SCAN_SIZE
, GFP_KERNEL
);
6581 memset(scan
, 0, sizeof(struct iwl3945_scan_cmd
) + IWL_MAX_SCAN_SIZE
);
6583 scan
->quiet_plcp_th
= IWL_PLCP_QUIET_THRESH
;
6584 scan
->quiet_time
= IWL_ACTIVE_QUIET_TIME
;
6586 if (iwl3945_is_associated(priv
)) {
6589 u32 suspend_time
= 100;
6590 u32 scan_suspend_time
= 100;
6591 unsigned long flags
;
6593 IWL_DEBUG_INFO("Scanning while associated...\n");
6595 spin_lock_irqsave(&priv
->lock
, flags
);
6596 interval
= priv
->beacon_int
;
6597 spin_unlock_irqrestore(&priv
->lock
, flags
);
6599 scan
->suspend_time
= 0;
6600 scan
->max_out_time
= cpu_to_le32(200 * 1024);
6602 interval
= suspend_time
;
6604 * suspend time format:
6605 * 0-19: beacon interval in usec (time before exec.)
6607 * 24-31: number of beacons (suspend between channels)
6610 extra
= (suspend_time
/ interval
) << 24;
6611 scan_suspend_time
= 0xFF0FFFFF &
6612 (extra
| ((suspend_time
% interval
) * 1024));
6614 scan
->suspend_time
= cpu_to_le32(scan_suspend_time
);
6615 IWL_DEBUG_SCAN("suspend_time 0x%X beacon interval %d\n",
6616 scan_suspend_time
, interval
);
6619 /* We should add the ability for user to lock to PASSIVE ONLY */
6620 if (priv
->one_direct_scan
) {
6622 ("Kicking off one direct scan for '%s'\n",
6623 iwl3945_escape_essid(priv
->direct_ssid
,
6624 priv
->direct_ssid_len
));
6625 scan
->direct_scan
[0].id
= WLAN_EID_SSID
;
6626 scan
->direct_scan
[0].len
= priv
->direct_ssid_len
;
6627 memcpy(scan
->direct_scan
[0].ssid
,
6628 priv
->direct_ssid
, priv
->direct_ssid_len
);
6630 } else if (!iwl3945_is_associated(priv
) && priv
->essid_len
) {
6631 scan
->direct_scan
[0].id
= WLAN_EID_SSID
;
6632 scan
->direct_scan
[0].len
= priv
->essid_len
;
6633 memcpy(scan
->direct_scan
[0].ssid
, priv
->essid
, priv
->essid_len
);
6638 /* We don't build a direct scan probe request; the uCode will do
6639 * that based on the direct_mask added to each channel entry */
6640 scan
->tx_cmd
.len
= cpu_to_le16(
6641 iwl3945_fill_probe_req(priv
, (struct ieee80211_mgmt
*)scan
->data
,
6642 IWL_MAX_SCAN_SIZE
- sizeof(*scan
), 0));
6643 scan
->tx_cmd
.tx_flags
= TX_CMD_FLG_SEQ_CTL_MSK
;
6644 scan
->tx_cmd
.sta_id
= priv
->hw_setting
.bcast_sta_id
;
6645 scan
->tx_cmd
.stop_time
.life_time
= TX_CMD_LIFE_TIME_INFINITE
;
6647 /* flags + rate selection */
6649 switch (priv
->scan_bands
) {
6651 scan
->flags
= RXON_FLG_BAND_24G_MSK
| RXON_FLG_AUTO_DETECT_MSK
;
6652 scan
->tx_cmd
.rate
= IWL_RATE_1M_PLCP
;
6653 scan
->good_CRC_th
= 0;
6654 phymode
= MODE_IEEE80211G
;
6658 scan
->tx_cmd
.rate
= IWL_RATE_6M_PLCP
;
6659 scan
->good_CRC_th
= IWL_GOOD_CRC_TH
;
6660 phymode
= MODE_IEEE80211A
;
6664 IWL_WARNING("Invalid scan band count\n");
6668 /* select Rx antennas */
6669 scan
->flags
|= iwl3945_get_antenna_flags(priv
);
6671 if (priv
->iw_mode
== IEEE80211_IF_TYPE_MNTR
)
6672 scan
->filter_flags
= RXON_FILTER_PROMISC_MSK
;
6676 ("Initiating direct scan for %s.\n",
6677 iwl3945_escape_essid(priv
->essid
, priv
->essid_len
));
6679 IWL_DEBUG_SCAN("Initiating indirect scan.\n");
6681 scan
->channel_count
=
6682 iwl3945_get_channels_for_scan(
6683 priv
, phymode
, 1, /* active */
6685 (void *)&scan
->data
[le16_to_cpu(scan
->tx_cmd
.len
)]);
6687 cmd
.len
+= le16_to_cpu(scan
->tx_cmd
.len
) +
6688 scan
->channel_count
* sizeof(struct iwl3945_scan_channel
);
6690 scan
->len
= cpu_to_le16(cmd
.len
);
6692 set_bit(STATUS_SCAN_HW
, &priv
->status
);
6693 rc
= iwl3945_send_cmd_sync(priv
, &cmd
);
6697 queue_delayed_work(priv
->workqueue
, &priv
->scan_check
,
6698 IWL_SCAN_CHECK_WATCHDOG
);
6700 mutex_unlock(&priv
->mutex
);
6704 /* inform mac80211 scan aborted */
6705 queue_work(priv
->workqueue
, &priv
->scan_completed
);
6706 mutex_unlock(&priv
->mutex
);
6709 static void iwl3945_bg_up(struct work_struct
*data
)
6711 struct iwl3945_priv
*priv
= container_of(data
, struct iwl3945_priv
, up
);
6713 if (test_bit(STATUS_EXIT_PENDING
, &priv
->status
))
6716 mutex_lock(&priv
->mutex
);
6718 mutex_unlock(&priv
->mutex
);
6721 static void iwl3945_bg_restart(struct work_struct
*data
)
6723 struct iwl3945_priv
*priv
= container_of(data
, struct iwl3945_priv
, restart
);
6725 if (test_bit(STATUS_EXIT_PENDING
, &priv
->status
))
6729 queue_work(priv
->workqueue
, &priv
->up
);
6732 static void iwl3945_bg_rx_replenish(struct work_struct
*data
)
6734 struct iwl3945_priv
*priv
=
6735 container_of(data
, struct iwl3945_priv
, rx_replenish
);
6737 if (test_bit(STATUS_EXIT_PENDING
, &priv
->status
))
6740 mutex_lock(&priv
->mutex
);
6741 iwl3945_rx_replenish(priv
);
6742 mutex_unlock(&priv
->mutex
);
6745 #define IWL_DELAY_NEXT_SCAN (HZ*2)
6747 static void iwl3945_bg_post_associate(struct work_struct
*data
)
6749 struct iwl3945_priv
*priv
= container_of(data
, struct iwl3945_priv
,
6750 post_associate
.work
);
6753 struct ieee80211_conf
*conf
= NULL
;
6754 DECLARE_MAC_BUF(mac
);
6756 if (priv
->iw_mode
== IEEE80211_IF_TYPE_AP
) {
6757 IWL_ERROR("%s Should not be called in AP mode\n", __FUNCTION__
);
6762 IWL_DEBUG_ASSOC("Associated as %d to: %s\n",
6764 print_mac(mac
, priv
->active_rxon
.bssid_addr
));
6766 if (test_bit(STATUS_EXIT_PENDING
, &priv
->status
))
6769 mutex_lock(&priv
->mutex
);
6771 if (!priv
->vif
|| !priv
->is_open
) {
6772 mutex_unlock(&priv
->mutex
);
6775 iwl3945_scan_cancel_timeout(priv
, 200);
6777 conf
= ieee80211_get_hw_conf(priv
->hw
);
6779 priv
->staging_rxon
.filter_flags
&= ~RXON_FILTER_ASSOC_MSK
;
6780 iwl3945_commit_rxon(priv
);
6782 memset(&priv
->rxon_timing
, 0, sizeof(struct iwl3945_rxon_time_cmd
));
6783 iwl3945_setup_rxon_timing(priv
);
6784 rc
= iwl3945_send_cmd_pdu(priv
, REPLY_RXON_TIMING
,
6785 sizeof(priv
->rxon_timing
), &priv
->rxon_timing
);
6787 IWL_WARNING("REPLY_RXON_TIMING failed - "
6788 "Attempting to continue.\n");
6790 priv
->staging_rxon
.filter_flags
|= RXON_FILTER_ASSOC_MSK
;
6792 priv
->staging_rxon
.assoc_id
= cpu_to_le16(priv
->assoc_id
);
6794 IWL_DEBUG_ASSOC("assoc id %d beacon interval %d\n",
6795 priv
->assoc_id
, priv
->beacon_int
);
6797 if (priv
->assoc_capability
& WLAN_CAPABILITY_SHORT_PREAMBLE
)
6798 priv
->staging_rxon
.flags
|= RXON_FLG_SHORT_PREAMBLE_MSK
;
6800 priv
->staging_rxon
.flags
&= ~RXON_FLG_SHORT_PREAMBLE_MSK
;
6802 if (priv
->staging_rxon
.flags
& RXON_FLG_BAND_24G_MSK
) {
6803 if (priv
->assoc_capability
& WLAN_CAPABILITY_SHORT_SLOT_TIME
)
6804 priv
->staging_rxon
.flags
|= RXON_FLG_SHORT_SLOT_MSK
;
6806 priv
->staging_rxon
.flags
&= ~RXON_FLG_SHORT_SLOT_MSK
;
6808 if (priv
->iw_mode
== IEEE80211_IF_TYPE_IBSS
)
6809 priv
->staging_rxon
.flags
&= ~RXON_FLG_SHORT_SLOT_MSK
;
6813 iwl3945_commit_rxon(priv
);
6815 switch (priv
->iw_mode
) {
6816 case IEEE80211_IF_TYPE_STA
:
6817 iwl3945_rate_scale_init(priv
->hw
, IWL_AP_ID
);
6820 case IEEE80211_IF_TYPE_IBSS
:
6822 /* clear out the station table */
6823 iwl3945_clear_stations_table(priv
);
6825 iwl3945_add_station(priv
, iwl3945_broadcast_addr
, 0, 0);
6826 iwl3945_add_station(priv
, priv
->bssid
, 0, 0);
6827 iwl3945_sync_sta(priv
, IWL_STA_ID
,
6828 (priv
->phymode
== MODE_IEEE80211A
)?
6829 IWL_RATE_6M_PLCP
: IWL_RATE_1M_PLCP
,
6831 iwl3945_rate_scale_init(priv
->hw
, IWL_STA_ID
);
6832 iwl3945_send_beacon_cmd(priv
);
6837 IWL_ERROR("%s Should not be called in %d mode\n",
6838 __FUNCTION__
, priv
->iw_mode
);
6842 iwl3945_sequence_reset(priv
);
6844 #ifdef CONFIG_IWL3945_QOS
6845 iwl3945_activate_qos(priv
, 0);
6846 #endif /* CONFIG_IWL3945_QOS */
6847 /* we have just associated, don't start scan too early */
6848 priv
->next_scan_jiffies
= jiffies
+ IWL_DELAY_NEXT_SCAN
;
6849 mutex_unlock(&priv
->mutex
);
6852 static void iwl3945_bg_abort_scan(struct work_struct
*work
)
6854 struct iwl3945_priv
*priv
= container_of(work
, struct iwl3945_priv
, abort_scan
);
6856 if (!iwl3945_is_ready(priv
))
6859 mutex_lock(&priv
->mutex
);
6861 set_bit(STATUS_SCAN_ABORTING
, &priv
->status
);
6862 iwl3945_send_scan_abort(priv
);
6864 mutex_unlock(&priv
->mutex
);
6867 static int iwl3945_mac_config(struct ieee80211_hw
*hw
, struct ieee80211_conf
*conf
);
6869 static void iwl3945_bg_scan_completed(struct work_struct
*work
)
6871 struct iwl3945_priv
*priv
=
6872 container_of(work
, struct iwl3945_priv
, scan_completed
);
6874 IWL_DEBUG(IWL_DL_INFO
| IWL_DL_SCAN
, "SCAN complete scan\n");
6876 if (test_bit(STATUS_EXIT_PENDING
, &priv
->status
))
6879 if (test_bit(STATUS_CONF_PENDING
, &priv
->status
))
6880 iwl3945_mac_config(priv
->hw
, ieee80211_get_hw_conf(priv
->hw
));
6882 ieee80211_scan_completed(priv
->hw
);
6884 /* Since setting the TXPOWER may have been deferred while
6885 * performing the scan, fire one off */
6886 mutex_lock(&priv
->mutex
);
6887 iwl3945_hw_reg_send_txpower(priv
);
6888 mutex_unlock(&priv
->mutex
);
6891 /*****************************************************************************
6893 * mac80211 entry point functions
6895 *****************************************************************************/
6897 #define UCODE_READY_TIMEOUT (2 * HZ)
6899 static int iwl3945_mac_start(struct ieee80211_hw
*hw
)
6901 struct iwl3945_priv
*priv
= hw
->priv
;
6904 IWL_DEBUG_MAC80211("enter\n");
6906 if (pci_enable_device(priv
->pci_dev
)) {
6907 IWL_ERROR("Fail to pci_enable_device\n");
6910 pci_restore_state(priv
->pci_dev
);
6911 pci_enable_msi(priv
->pci_dev
);
6913 ret
= request_irq(priv
->pci_dev
->irq
, iwl3945_isr
, IRQF_SHARED
,
6916 IWL_ERROR("Error allocating IRQ %d\n", priv
->pci_dev
->irq
);
6917 goto out_disable_msi
;
6920 /* we should be verifying the device is ready to be opened */
6921 mutex_lock(&priv
->mutex
);
6923 memset(&priv
->staging_rxon
, 0, sizeof(struct iwl3945_rxon_cmd
));
6924 /* fetch ucode file from disk, alloc and copy to bus-master buffers ...
6925 * ucode filename and max sizes are card-specific. */
6927 if (!priv
->ucode_code
.len
) {
6928 ret
= iwl3945_read_ucode(priv
);
6930 IWL_ERROR("Could not read microcode: %d\n", ret
);
6931 mutex_unlock(&priv
->mutex
);
6932 goto out_release_irq
;
6936 ret
= __iwl3945_up(priv
);
6938 mutex_unlock(&priv
->mutex
);
6941 goto out_release_irq
;
6943 IWL_DEBUG_INFO("Start UP work.\n");
6945 if (test_bit(STATUS_IN_SUSPEND
, &priv
->status
))
6948 /* Wait for START_ALIVE from ucode. Otherwise callbacks from
6949 * mac80211 will not be run successfully. */
6950 ret
= wait_event_interruptible_timeout(priv
->wait_command_queue
,
6951 test_bit(STATUS_READY
, &priv
->status
),
6952 UCODE_READY_TIMEOUT
);
6954 if (!test_bit(STATUS_READY
, &priv
->status
)) {
6955 IWL_ERROR("Wait for START_ALIVE timeout after %dms.\n",
6956 jiffies_to_msecs(UCODE_READY_TIMEOUT
));
6958 goto out_release_irq
;
6963 IWL_DEBUG_MAC80211("leave\n");
6967 free_irq(priv
->pci_dev
->irq
, priv
);
6969 pci_disable_msi(priv
->pci_dev
);
6970 pci_disable_device(priv
->pci_dev
);
6972 IWL_DEBUG_MAC80211("leave - failed\n");
6976 static void iwl3945_mac_stop(struct ieee80211_hw
*hw
)
6978 struct iwl3945_priv
*priv
= hw
->priv
;
6980 IWL_DEBUG_MAC80211("enter\n");
6982 if (!priv
->is_open
) {
6983 IWL_DEBUG_MAC80211("leave - skip\n");
6989 if (iwl3945_is_ready_rf(priv
)) {
6990 /* stop mac, cancel any scan request and clear
6991 * RXON_FILTER_ASSOC_MSK BIT
6993 mutex_lock(&priv
->mutex
);
6994 iwl3945_scan_cancel_timeout(priv
, 100);
6995 cancel_delayed_work(&priv
->post_associate
);
6996 mutex_unlock(&priv
->mutex
);
7001 flush_workqueue(priv
->workqueue
);
7002 free_irq(priv
->pci_dev
->irq
, priv
);
7003 pci_disable_msi(priv
->pci_dev
);
7004 pci_save_state(priv
->pci_dev
);
7005 pci_disable_device(priv
->pci_dev
);
7007 IWL_DEBUG_MAC80211("leave\n");
7010 static int iwl3945_mac_tx(struct ieee80211_hw
*hw
, struct sk_buff
*skb
,
7011 struct ieee80211_tx_control
*ctl
)
7013 struct iwl3945_priv
*priv
= hw
->priv
;
7015 IWL_DEBUG_MAC80211("enter\n");
7017 if (priv
->iw_mode
== IEEE80211_IF_TYPE_MNTR
) {
7018 IWL_DEBUG_MAC80211("leave - monitor\n");
7022 IWL_DEBUG_TX("dev->xmit(%d bytes) at rate 0x%02x\n", skb
->len
,
7025 if (iwl3945_tx_skb(priv
, skb
, ctl
))
7026 dev_kfree_skb_any(skb
);
7028 IWL_DEBUG_MAC80211("leave\n");
7032 static int iwl3945_mac_add_interface(struct ieee80211_hw
*hw
,
7033 struct ieee80211_if_init_conf
*conf
)
7035 struct iwl3945_priv
*priv
= hw
->priv
;
7036 unsigned long flags
;
7037 DECLARE_MAC_BUF(mac
);
7039 IWL_DEBUG_MAC80211("enter: type %d\n", conf
->type
);
7042 IWL_DEBUG_MAC80211("leave - vif != NULL\n");
7046 spin_lock_irqsave(&priv
->lock
, flags
);
7047 priv
->vif
= conf
->vif
;
7049 spin_unlock_irqrestore(&priv
->lock
, flags
);
7051 mutex_lock(&priv
->mutex
);
7053 if (conf
->mac_addr
) {
7054 IWL_DEBUG_MAC80211("Set: %s\n", print_mac(mac
, conf
->mac_addr
));
7055 memcpy(priv
->mac_addr
, conf
->mac_addr
, ETH_ALEN
);
7058 if (iwl3945_is_ready(priv
))
7059 iwl3945_set_mode(priv
, conf
->type
);
7061 mutex_unlock(&priv
->mutex
);
7063 IWL_DEBUG_MAC80211("leave\n");
7068 * iwl3945_mac_config - mac80211 config callback
7070 * We ignore conf->flags & IEEE80211_CONF_SHORT_SLOT_TIME since it seems to
7071 * be set inappropriately and the driver currently sets the hardware up to
7072 * use it whenever needed.
7074 static int iwl3945_mac_config(struct ieee80211_hw
*hw
, struct ieee80211_conf
*conf
)
7076 struct iwl3945_priv
*priv
= hw
->priv
;
7077 const struct iwl3945_channel_info
*ch_info
;
7078 unsigned long flags
;
7081 mutex_lock(&priv
->mutex
);
7082 IWL_DEBUG_MAC80211("enter to channel %d\n", conf
->channel
);
7084 priv
->add_radiotap
= !!(conf
->flags
& IEEE80211_CONF_RADIOTAP
);
7086 if (!iwl3945_is_ready(priv
)) {
7087 IWL_DEBUG_MAC80211("leave - not ready\n");
7092 if (unlikely(!iwl3945_param_disable_hw_scan
&&
7093 test_bit(STATUS_SCANNING
, &priv
->status
))) {
7094 IWL_DEBUG_MAC80211("leave - scanning\n");
7095 set_bit(STATUS_CONF_PENDING
, &priv
->status
);
7096 mutex_unlock(&priv
->mutex
);
7100 spin_lock_irqsave(&priv
->lock
, flags
);
7102 ch_info
= iwl3945_get_channel_info(priv
, conf
->phymode
, conf
->channel
);
7103 if (!is_channel_valid(ch_info
)) {
7104 IWL_DEBUG_SCAN("Channel %d [%d] is INVALID for this SKU.\n",
7105 conf
->channel
, conf
->phymode
);
7106 IWL_DEBUG_MAC80211("leave - invalid channel\n");
7107 spin_unlock_irqrestore(&priv
->lock
, flags
);
7112 iwl3945_set_rxon_channel(priv
, conf
->phymode
, conf
->channel
);
7114 iwl3945_set_flags_for_phymode(priv
, conf
->phymode
);
7116 /* The list of supported rates and rate mask can be different
7117 * for each phymode; since the phymode may have changed, reset
7118 * the rate mask to what mac80211 lists */
7119 iwl3945_set_rate(priv
);
7121 spin_unlock_irqrestore(&priv
->lock
, flags
);
7123 #ifdef IEEE80211_CONF_CHANNEL_SWITCH
7124 if (conf
->flags
& IEEE80211_CONF_CHANNEL_SWITCH
) {
7125 iwl3945_hw_channel_switch(priv
, conf
->channel
);
7130 iwl3945_radio_kill_sw(priv
, !conf
->radio_enabled
);
7132 if (!conf
->radio_enabled
) {
7133 IWL_DEBUG_MAC80211("leave - radio disabled\n");
7137 if (iwl3945_is_rfkill(priv
)) {
7138 IWL_DEBUG_MAC80211("leave - RF kill\n");
7143 iwl3945_set_rate(priv
);
7145 if (memcmp(&priv
->active_rxon
,
7146 &priv
->staging_rxon
, sizeof(priv
->staging_rxon
)))
7147 iwl3945_commit_rxon(priv
);
7149 IWL_DEBUG_INFO("No re-sending same RXON configuration.\n");
7151 IWL_DEBUG_MAC80211("leave\n");
7154 clear_bit(STATUS_CONF_PENDING
, &priv
->status
);
7155 mutex_unlock(&priv
->mutex
);
7159 static void iwl3945_config_ap(struct iwl3945_priv
*priv
)
7163 if (test_bit(STATUS_EXIT_PENDING
, &priv
->status
))
7166 /* The following should be done only at AP bring up */
7167 if ((priv
->active_rxon
.filter_flags
& RXON_FILTER_ASSOC_MSK
) == 0) {
7169 /* RXON - unassoc (to set timing command) */
7170 priv
->staging_rxon
.filter_flags
&= ~RXON_FILTER_ASSOC_MSK
;
7171 iwl3945_commit_rxon(priv
);
7174 memset(&priv
->rxon_timing
, 0, sizeof(struct iwl3945_rxon_time_cmd
));
7175 iwl3945_setup_rxon_timing(priv
);
7176 rc
= iwl3945_send_cmd_pdu(priv
, REPLY_RXON_TIMING
,
7177 sizeof(priv
->rxon_timing
), &priv
->rxon_timing
);
7179 IWL_WARNING("REPLY_RXON_TIMING failed - "
7180 "Attempting to continue.\n");
7182 /* FIXME: what should be the assoc_id for AP? */
7183 priv
->staging_rxon
.assoc_id
= cpu_to_le16(priv
->assoc_id
);
7184 if (priv
->assoc_capability
& WLAN_CAPABILITY_SHORT_PREAMBLE
)
7185 priv
->staging_rxon
.flags
|=
7186 RXON_FLG_SHORT_PREAMBLE_MSK
;
7188 priv
->staging_rxon
.flags
&=
7189 ~RXON_FLG_SHORT_PREAMBLE_MSK
;
7191 if (priv
->staging_rxon
.flags
& RXON_FLG_BAND_24G_MSK
) {
7192 if (priv
->assoc_capability
&
7193 WLAN_CAPABILITY_SHORT_SLOT_TIME
)
7194 priv
->staging_rxon
.flags
|=
7195 RXON_FLG_SHORT_SLOT_MSK
;
7197 priv
->staging_rxon
.flags
&=
7198 ~RXON_FLG_SHORT_SLOT_MSK
;
7200 if (priv
->iw_mode
== IEEE80211_IF_TYPE_IBSS
)
7201 priv
->staging_rxon
.flags
&=
7202 ~RXON_FLG_SHORT_SLOT_MSK
;
7204 /* restore RXON assoc */
7205 priv
->staging_rxon
.filter_flags
|= RXON_FILTER_ASSOC_MSK
;
7206 iwl3945_commit_rxon(priv
);
7207 iwl3945_add_station(priv
, iwl3945_broadcast_addr
, 0, 0);
7209 iwl3945_send_beacon_cmd(priv
);
7211 /* FIXME - we need to add code here to detect a totally new
7212 * configuration, reset the AP, unassoc, rxon timing, assoc,
7213 * clear sta table, add BCAST sta... */
7216 static int iwl3945_mac_config_interface(struct ieee80211_hw
*hw
,
7217 struct ieee80211_vif
*vif
,
7218 struct ieee80211_if_conf
*conf
)
7220 struct iwl3945_priv
*priv
= hw
->priv
;
7221 DECLARE_MAC_BUF(mac
);
7222 unsigned long flags
;
7228 /* XXX: this MUST use conf->mac_addr */
7230 if ((priv
->iw_mode
== IEEE80211_IF_TYPE_AP
) &&
7231 (!conf
->beacon
|| !conf
->ssid_len
)) {
7233 ("Leaving in AP mode because HostAPD is not ready.\n");
7237 if (!iwl3945_is_alive(priv
))
7240 mutex_lock(&priv
->mutex
);
7243 IWL_DEBUG_MAC80211("bssid: %s\n",
7244 print_mac(mac
, conf
->bssid
));
7247 * very dubious code was here; the probe filtering flag is never set:
7249 if (unlikely(test_bit(STATUS_SCANNING, &priv->status)) &&
7250 !(priv->hw->flags & IEEE80211_HW_NO_PROBE_FILTERING)) {
7252 if (unlikely(test_bit(STATUS_SCANNING
, &priv
->status
))) {
7253 IWL_DEBUG_MAC80211("leave - scanning\n");
7254 mutex_unlock(&priv
->mutex
);
7258 if (priv
->vif
!= vif
) {
7259 IWL_DEBUG_MAC80211("leave - priv->vif != vif\n");
7260 mutex_unlock(&priv
->mutex
);
7264 if (priv
->iw_mode
== IEEE80211_IF_TYPE_AP
) {
7266 conf
->bssid
= priv
->mac_addr
;
7267 memcpy(priv
->bssid
, priv
->mac_addr
, ETH_ALEN
);
7268 IWL_DEBUG_MAC80211("bssid was set to: %s\n",
7269 print_mac(mac
, conf
->bssid
));
7271 if (priv
->ibss_beacon
)
7272 dev_kfree_skb(priv
->ibss_beacon
);
7274 priv
->ibss_beacon
= conf
->beacon
;
7277 if (iwl3945_is_rfkill(priv
))
7280 if (conf
->bssid
&& !is_zero_ether_addr(conf
->bssid
) &&
7281 !is_multicast_ether_addr(conf
->bssid
)) {
7282 /* If there is currently a HW scan going on in the background
7283 * then we need to cancel it else the RXON below will fail. */
7284 if (iwl3945_scan_cancel_timeout(priv
, 100)) {
7285 IWL_WARNING("Aborted scan still in progress "
7287 IWL_DEBUG_MAC80211("leaving - scan abort failed.\n");
7288 mutex_unlock(&priv
->mutex
);
7291 memcpy(priv
->staging_rxon
.bssid_addr
, conf
->bssid
, ETH_ALEN
);
7293 /* TODO: Audit driver for usage of these members and see
7294 * if mac80211 deprecates them (priv->bssid looks like it
7295 * shouldn't be there, but I haven't scanned the IBSS code
7296 * to verify) - jpk */
7297 memcpy(priv
->bssid
, conf
->bssid
, ETH_ALEN
);
7299 if (priv
->iw_mode
== IEEE80211_IF_TYPE_AP
)
7300 iwl3945_config_ap(priv
);
7302 rc
= iwl3945_commit_rxon(priv
);
7303 if ((priv
->iw_mode
== IEEE80211_IF_TYPE_STA
) && rc
)
7304 iwl3945_add_station(priv
,
7305 priv
->active_rxon
.bssid_addr
, 1, 0);
7309 iwl3945_scan_cancel_timeout(priv
, 100);
7310 priv
->staging_rxon
.filter_flags
&= ~RXON_FILTER_ASSOC_MSK
;
7311 iwl3945_commit_rxon(priv
);
7315 spin_lock_irqsave(&priv
->lock
, flags
);
7316 if (!conf
->ssid_len
)
7317 memset(priv
->essid
, 0, IW_ESSID_MAX_SIZE
);
7319 memcpy(priv
->essid
, conf
->ssid
, conf
->ssid_len
);
7321 priv
->essid_len
= conf
->ssid_len
;
7322 spin_unlock_irqrestore(&priv
->lock
, flags
);
7324 IWL_DEBUG_MAC80211("leave\n");
7325 mutex_unlock(&priv
->mutex
);
7330 static void iwl3945_configure_filter(struct ieee80211_hw
*hw
,
7331 unsigned int changed_flags
,
7332 unsigned int *total_flags
,
7333 int mc_count
, struct dev_addr_list
*mc_list
)
7337 * see also iwl3945_connection_init_rx_config
7342 static void iwl3945_mac_remove_interface(struct ieee80211_hw
*hw
,
7343 struct ieee80211_if_init_conf
*conf
)
7345 struct iwl3945_priv
*priv
= hw
->priv
;
7347 IWL_DEBUG_MAC80211("enter\n");
7349 mutex_lock(&priv
->mutex
);
7351 if (iwl3945_is_ready_rf(priv
)) {
7352 iwl3945_scan_cancel_timeout(priv
, 100);
7353 cancel_delayed_work(&priv
->post_associate
);
7354 priv
->staging_rxon
.filter_flags
&= ~RXON_FILTER_ASSOC_MSK
;
7355 iwl3945_commit_rxon(priv
);
7357 if (priv
->vif
== conf
->vif
) {
7359 memset(priv
->bssid
, 0, ETH_ALEN
);
7360 memset(priv
->essid
, 0, IW_ESSID_MAX_SIZE
);
7361 priv
->essid_len
= 0;
7363 mutex_unlock(&priv
->mutex
);
7365 IWL_DEBUG_MAC80211("leave\n");
7368 static int iwl3945_mac_hw_scan(struct ieee80211_hw
*hw
, u8
*ssid
, size_t len
)
7371 unsigned long flags
;
7372 struct iwl3945_priv
*priv
= hw
->priv
;
7374 IWL_DEBUG_MAC80211("enter\n");
7376 mutex_lock(&priv
->mutex
);
7377 spin_lock_irqsave(&priv
->lock
, flags
);
7379 if (!iwl3945_is_ready_rf(priv
)) {
7381 IWL_DEBUG_MAC80211("leave - not ready or exit pending\n");
7385 if (priv
->iw_mode
== IEEE80211_IF_TYPE_AP
) { /* APs don't scan */
7387 IWL_ERROR("ERROR: APs don't scan\n");
7391 /* we don't schedule scan within next_scan_jiffies period */
7392 if (priv
->next_scan_jiffies
&&
7393 time_after(priv
->next_scan_jiffies
, jiffies
)) {
7397 /* if we just finished scan ask for delay */
7398 if (priv
->last_scan_jiffies
&& time_after(priv
->last_scan_jiffies
+
7399 IWL_DELAY_NEXT_SCAN
, jiffies
)) {
7404 IWL_DEBUG_SCAN("direct scan for %s [%d]\n ",
7405 iwl3945_escape_essid(ssid
, len
), (int)len
);
7407 priv
->one_direct_scan
= 1;
7408 priv
->direct_ssid_len
= (u8
)
7409 min((u8
) len
, (u8
) IW_ESSID_MAX_SIZE
);
7410 memcpy(priv
->direct_ssid
, ssid
, priv
->direct_ssid_len
);
7412 priv
->one_direct_scan
= 0;
7414 rc
= iwl3945_scan_initiate(priv
);
7416 IWL_DEBUG_MAC80211("leave\n");
7419 spin_unlock_irqrestore(&priv
->lock
, flags
);
7420 mutex_unlock(&priv
->mutex
);
7425 static int iwl3945_mac_set_key(struct ieee80211_hw
*hw
, enum set_key_cmd cmd
,
7426 const u8
*local_addr
, const u8
*addr
,
7427 struct ieee80211_key_conf
*key
)
7429 struct iwl3945_priv
*priv
= hw
->priv
;
7433 IWL_DEBUG_MAC80211("enter\n");
7435 if (!iwl3945_param_hwcrypto
) {
7436 IWL_DEBUG_MAC80211("leave - hwcrypto disabled\n");
7440 if (is_zero_ether_addr(addr
))
7441 /* only support pairwise keys */
7444 sta_id
= iwl3945_hw_find_station(priv
, addr
);
7445 if (sta_id
== IWL_INVALID_STATION
) {
7446 DECLARE_MAC_BUF(mac
);
7448 IWL_DEBUG_MAC80211("leave - %s not in station map.\n",
7449 print_mac(mac
, addr
));
7453 mutex_lock(&priv
->mutex
);
7455 iwl3945_scan_cancel_timeout(priv
, 100);
7459 rc
= iwl3945_update_sta_key_info(priv
, key
, sta_id
);
7461 iwl3945_set_rxon_hwcrypto(priv
, 1);
7462 iwl3945_commit_rxon(priv
);
7463 key
->hw_key_idx
= sta_id
;
7464 IWL_DEBUG_MAC80211("set_key success, using hwcrypto\n");
7465 key
->flags
|= IEEE80211_KEY_FLAG_GENERATE_IV
;
7469 rc
= iwl3945_clear_sta_key_info(priv
, sta_id
);
7471 iwl3945_set_rxon_hwcrypto(priv
, 0);
7472 iwl3945_commit_rxon(priv
);
7473 IWL_DEBUG_MAC80211("disable hwcrypto key\n");
7480 IWL_DEBUG_MAC80211("leave\n");
7481 mutex_unlock(&priv
->mutex
);
7486 static int iwl3945_mac_conf_tx(struct ieee80211_hw
*hw
, int queue
,
7487 const struct ieee80211_tx_queue_params
*params
)
7489 struct iwl3945_priv
*priv
= hw
->priv
;
7490 #ifdef CONFIG_IWL3945_QOS
7491 unsigned long flags
;
7493 #endif /* CONFIG_IWL3945_QOS */
7495 IWL_DEBUG_MAC80211("enter\n");
7497 if (!iwl3945_is_ready_rf(priv
)) {
7498 IWL_DEBUG_MAC80211("leave - RF not ready\n");
7502 if (queue
>= AC_NUM
) {
7503 IWL_DEBUG_MAC80211("leave - queue >= AC_NUM %d\n", queue
);
7507 #ifdef CONFIG_IWL3945_QOS
7508 if (!priv
->qos_data
.qos_enable
) {
7509 priv
->qos_data
.qos_active
= 0;
7510 IWL_DEBUG_MAC80211("leave - qos not enabled\n");
7513 q
= AC_NUM
- 1 - queue
;
7515 spin_lock_irqsave(&priv
->lock
, flags
);
7517 priv
->qos_data
.def_qos_parm
.ac
[q
].cw_min
= cpu_to_le16(params
->cw_min
);
7518 priv
->qos_data
.def_qos_parm
.ac
[q
].cw_max
= cpu_to_le16(params
->cw_max
);
7519 priv
->qos_data
.def_qos_parm
.ac
[q
].aifsn
= params
->aifs
;
7520 priv
->qos_data
.def_qos_parm
.ac
[q
].edca_txop
=
7521 cpu_to_le16((params
->burst_time
* 100));
7523 priv
->qos_data
.def_qos_parm
.ac
[q
].reserved1
= 0;
7524 priv
->qos_data
.qos_active
= 1;
7526 spin_unlock_irqrestore(&priv
->lock
, flags
);
7528 mutex_lock(&priv
->mutex
);
7529 if (priv
->iw_mode
== IEEE80211_IF_TYPE_AP
)
7530 iwl3945_activate_qos(priv
, 1);
7531 else if (priv
->assoc_id
&& iwl3945_is_associated(priv
))
7532 iwl3945_activate_qos(priv
, 0);
7534 mutex_unlock(&priv
->mutex
);
7536 #endif /*CONFIG_IWL3945_QOS */
7538 IWL_DEBUG_MAC80211("leave\n");
7542 static int iwl3945_mac_get_tx_stats(struct ieee80211_hw
*hw
,
7543 struct ieee80211_tx_queue_stats
*stats
)
7545 struct iwl3945_priv
*priv
= hw
->priv
;
7547 struct iwl3945_tx_queue
*txq
;
7548 struct iwl3945_queue
*q
;
7549 unsigned long flags
;
7551 IWL_DEBUG_MAC80211("enter\n");
7553 if (!iwl3945_is_ready_rf(priv
)) {
7554 IWL_DEBUG_MAC80211("leave - RF not ready\n");
7558 spin_lock_irqsave(&priv
->lock
, flags
);
7560 for (i
= 0; i
< AC_NUM
; i
++) {
7561 txq
= &priv
->txq
[i
];
7563 avail
= iwl3945_queue_space(q
);
7565 stats
->data
[i
].len
= q
->n_window
- avail
;
7566 stats
->data
[i
].limit
= q
->n_window
- q
->high_mark
;
7567 stats
->data
[i
].count
= q
->n_window
;
7570 spin_unlock_irqrestore(&priv
->lock
, flags
);
7572 IWL_DEBUG_MAC80211("leave\n");
7577 static int iwl3945_mac_get_stats(struct ieee80211_hw
*hw
,
7578 struct ieee80211_low_level_stats
*stats
)
7580 IWL_DEBUG_MAC80211("enter\n");
7581 IWL_DEBUG_MAC80211("leave\n");
7586 static u64
iwl3945_mac_get_tsf(struct ieee80211_hw
*hw
)
7588 IWL_DEBUG_MAC80211("enter\n");
7589 IWL_DEBUG_MAC80211("leave\n");
7594 static void iwl3945_mac_reset_tsf(struct ieee80211_hw
*hw
)
7596 struct iwl3945_priv
*priv
= hw
->priv
;
7597 unsigned long flags
;
7599 mutex_lock(&priv
->mutex
);
7600 IWL_DEBUG_MAC80211("enter\n");
7602 #ifdef CONFIG_IWL3945_QOS
7603 iwl3945_reset_qos(priv
);
7605 cancel_delayed_work(&priv
->post_associate
);
7607 spin_lock_irqsave(&priv
->lock
, flags
);
7609 priv
->assoc_capability
= 0;
7610 priv
->call_post_assoc_from_beacon
= 0;
7612 /* new association get rid of ibss beacon skb */
7613 if (priv
->ibss_beacon
)
7614 dev_kfree_skb(priv
->ibss_beacon
);
7616 priv
->ibss_beacon
= NULL
;
7618 priv
->beacon_int
= priv
->hw
->conf
.beacon_int
;
7619 priv
->timestamp1
= 0;
7620 priv
->timestamp0
= 0;
7621 if ((priv
->iw_mode
== IEEE80211_IF_TYPE_STA
))
7622 priv
->beacon_int
= 0;
7624 spin_unlock_irqrestore(&priv
->lock
, flags
);
7626 if (!iwl3945_is_ready_rf(priv
)) {
7627 IWL_DEBUG_MAC80211("leave - not ready\n");
7628 mutex_unlock(&priv
->mutex
);
7632 /* we are restarting association process
7633 * clear RXON_FILTER_ASSOC_MSK bit
7635 if (priv
->iw_mode
!= IEEE80211_IF_TYPE_AP
) {
7636 iwl3945_scan_cancel_timeout(priv
, 100);
7637 priv
->staging_rxon
.filter_flags
&= ~RXON_FILTER_ASSOC_MSK
;
7638 iwl3945_commit_rxon(priv
);
7641 /* Per mac80211.h: This is only used in IBSS mode... */
7642 if (priv
->iw_mode
!= IEEE80211_IF_TYPE_IBSS
) {
7644 IWL_DEBUG_MAC80211("leave - not in IBSS\n");
7645 mutex_unlock(&priv
->mutex
);
7649 priv
->only_active_channel
= 0;
7651 iwl3945_set_rate(priv
);
7653 mutex_unlock(&priv
->mutex
);
7655 IWL_DEBUG_MAC80211("leave\n");
7659 static int iwl3945_mac_beacon_update(struct ieee80211_hw
*hw
, struct sk_buff
*skb
,
7660 struct ieee80211_tx_control
*control
)
7662 struct iwl3945_priv
*priv
= hw
->priv
;
7663 unsigned long flags
;
7665 mutex_lock(&priv
->mutex
);
7666 IWL_DEBUG_MAC80211("enter\n");
7668 if (!iwl3945_is_ready_rf(priv
)) {
7669 IWL_DEBUG_MAC80211("leave - RF not ready\n");
7670 mutex_unlock(&priv
->mutex
);
7674 if (priv
->iw_mode
!= IEEE80211_IF_TYPE_IBSS
) {
7675 IWL_DEBUG_MAC80211("leave - not IBSS\n");
7676 mutex_unlock(&priv
->mutex
);
7680 spin_lock_irqsave(&priv
->lock
, flags
);
7682 if (priv
->ibss_beacon
)
7683 dev_kfree_skb(priv
->ibss_beacon
);
7685 priv
->ibss_beacon
= skb
;
7689 IWL_DEBUG_MAC80211("leave\n");
7690 spin_unlock_irqrestore(&priv
->lock
, flags
);
7692 #ifdef CONFIG_IWL3945_QOS
7693 iwl3945_reset_qos(priv
);
7696 queue_work(priv
->workqueue
, &priv
->post_associate
.work
);
7698 mutex_unlock(&priv
->mutex
);
7703 /*****************************************************************************
7707 *****************************************************************************/
7709 #ifdef CONFIG_IWL3945_DEBUG
7712 * The following adds a new attribute to the sysfs representation
7713 * of this device driver (i.e. a new file in /sys/bus/pci/drivers/iwl/)
7714 * used for controlling the debug level.
7716 * See the level definitions in iwl for details.
7719 static ssize_t
show_debug_level(struct device_driver
*d
, char *buf
)
7721 return sprintf(buf
, "0x%08X\n", iwl3945_debug_level
);
7723 static ssize_t
store_debug_level(struct device_driver
*d
,
7724 const char *buf
, size_t count
)
7726 char *p
= (char *)buf
;
7729 val
= simple_strtoul(p
, &p
, 0);
7731 printk(KERN_INFO DRV_NAME
7732 ": %s is not in hex or decimal form.\n", buf
);
7734 iwl3945_debug_level
= val
;
7736 return strnlen(buf
, count
);
7739 static DRIVER_ATTR(debug_level
, S_IWUSR
| S_IRUGO
,
7740 show_debug_level
, store_debug_level
);
7742 #endif /* CONFIG_IWL3945_DEBUG */
7744 static ssize_t
show_rf_kill(struct device
*d
,
7745 struct device_attribute
*attr
, char *buf
)
7748 * 0 - RF kill not enabled
7749 * 1 - SW based RF kill active (sysfs)
7750 * 2 - HW based RF kill active
7751 * 3 - Both HW and SW based RF kill active
7753 struct iwl3945_priv
*priv
= (struct iwl3945_priv
*)d
->driver_data
;
7754 int val
= (test_bit(STATUS_RF_KILL_SW
, &priv
->status
) ? 0x1 : 0x0) |
7755 (test_bit(STATUS_RF_KILL_HW
, &priv
->status
) ? 0x2 : 0x0);
7757 return sprintf(buf
, "%i\n", val
);
7760 static ssize_t
store_rf_kill(struct device
*d
,
7761 struct device_attribute
*attr
,
7762 const char *buf
, size_t count
)
7764 struct iwl3945_priv
*priv
= (struct iwl3945_priv
*)d
->driver_data
;
7766 mutex_lock(&priv
->mutex
);
7767 iwl3945_radio_kill_sw(priv
, buf
[0] == '1');
7768 mutex_unlock(&priv
->mutex
);
7773 static DEVICE_ATTR(rf_kill
, S_IWUSR
| S_IRUGO
, show_rf_kill
, store_rf_kill
);
7775 static ssize_t
show_temperature(struct device
*d
,
7776 struct device_attribute
*attr
, char *buf
)
7778 struct iwl3945_priv
*priv
= (struct iwl3945_priv
*)d
->driver_data
;
7780 if (!iwl3945_is_alive(priv
))
7783 return sprintf(buf
, "%d\n", iwl3945_hw_get_temperature(priv
));
7786 static DEVICE_ATTR(temperature
, S_IRUGO
, show_temperature
, NULL
);
7788 static ssize_t
show_rs_window(struct device
*d
,
7789 struct device_attribute
*attr
,
7792 struct iwl3945_priv
*priv
= d
->driver_data
;
7793 return iwl3945_fill_rs_info(priv
->hw
, buf
, IWL_AP_ID
);
7795 static DEVICE_ATTR(rs_window
, S_IRUGO
, show_rs_window
, NULL
);
7797 static ssize_t
show_tx_power(struct device
*d
,
7798 struct device_attribute
*attr
, char *buf
)
7800 struct iwl3945_priv
*priv
= (struct iwl3945_priv
*)d
->driver_data
;
7801 return sprintf(buf
, "%d\n", priv
->user_txpower_limit
);
7804 static ssize_t
store_tx_power(struct device
*d
,
7805 struct device_attribute
*attr
,
7806 const char *buf
, size_t count
)
7808 struct iwl3945_priv
*priv
= (struct iwl3945_priv
*)d
->driver_data
;
7809 char *p
= (char *)buf
;
7812 val
= simple_strtoul(p
, &p
, 10);
7814 printk(KERN_INFO DRV_NAME
7815 ": %s is not in decimal form.\n", buf
);
7817 iwl3945_hw_reg_set_txpower(priv
, val
);
7822 static DEVICE_ATTR(tx_power
, S_IWUSR
| S_IRUGO
, show_tx_power
, store_tx_power
);
7824 static ssize_t
show_flags(struct device
*d
,
7825 struct device_attribute
*attr
, char *buf
)
7827 struct iwl3945_priv
*priv
= (struct iwl3945_priv
*)d
->driver_data
;
7829 return sprintf(buf
, "0x%04X\n", priv
->active_rxon
.flags
);
7832 static ssize_t
store_flags(struct device
*d
,
7833 struct device_attribute
*attr
,
7834 const char *buf
, size_t count
)
7836 struct iwl3945_priv
*priv
= (struct iwl3945_priv
*)d
->driver_data
;
7837 u32 flags
= simple_strtoul(buf
, NULL
, 0);
7839 mutex_lock(&priv
->mutex
);
7840 if (le32_to_cpu(priv
->staging_rxon
.flags
) != flags
) {
7841 /* Cancel any currently running scans... */
7842 if (iwl3945_scan_cancel_timeout(priv
, 100))
7843 IWL_WARNING("Could not cancel scan.\n");
7845 IWL_DEBUG_INFO("Committing rxon.flags = 0x%04X\n",
7847 priv
->staging_rxon
.flags
= cpu_to_le32(flags
);
7848 iwl3945_commit_rxon(priv
);
7851 mutex_unlock(&priv
->mutex
);
7856 static DEVICE_ATTR(flags
, S_IWUSR
| S_IRUGO
, show_flags
, store_flags
);
7858 static ssize_t
show_filter_flags(struct device
*d
,
7859 struct device_attribute
*attr
, char *buf
)
7861 struct iwl3945_priv
*priv
= (struct iwl3945_priv
*)d
->driver_data
;
7863 return sprintf(buf
, "0x%04X\n",
7864 le32_to_cpu(priv
->active_rxon
.filter_flags
));
7867 static ssize_t
store_filter_flags(struct device
*d
,
7868 struct device_attribute
*attr
,
7869 const char *buf
, size_t count
)
7871 struct iwl3945_priv
*priv
= (struct iwl3945_priv
*)d
->driver_data
;
7872 u32 filter_flags
= simple_strtoul(buf
, NULL
, 0);
7874 mutex_lock(&priv
->mutex
);
7875 if (le32_to_cpu(priv
->staging_rxon
.filter_flags
) != filter_flags
) {
7876 /* Cancel any currently running scans... */
7877 if (iwl3945_scan_cancel_timeout(priv
, 100))
7878 IWL_WARNING("Could not cancel scan.\n");
7880 IWL_DEBUG_INFO("Committing rxon.filter_flags = "
7881 "0x%04X\n", filter_flags
);
7882 priv
->staging_rxon
.filter_flags
=
7883 cpu_to_le32(filter_flags
);
7884 iwl3945_commit_rxon(priv
);
7887 mutex_unlock(&priv
->mutex
);
7892 static DEVICE_ATTR(filter_flags
, S_IWUSR
| S_IRUGO
, show_filter_flags
,
7893 store_filter_flags
);
7895 static ssize_t
show_tune(struct device
*d
,
7896 struct device_attribute
*attr
, char *buf
)
7898 struct iwl3945_priv
*priv
= (struct iwl3945_priv
*)d
->driver_data
;
7900 return sprintf(buf
, "0x%04X\n",
7901 (priv
->phymode
<< 8) |
7902 le16_to_cpu(priv
->active_rxon
.channel
));
7905 static void iwl3945_set_flags_for_phymode(struct iwl3945_priv
*priv
, u8 phymode
);
7907 static ssize_t
store_tune(struct device
*d
,
7908 struct device_attribute
*attr
,
7909 const char *buf
, size_t count
)
7911 struct iwl3945_priv
*priv
= (struct iwl3945_priv
*)d
->driver_data
;
7912 char *p
= (char *)buf
;
7913 u16 tune
= simple_strtoul(p
, &p
, 0);
7914 u8 phymode
= (tune
>> 8) & 0xff;
7915 u16 channel
= tune
& 0xff;
7917 IWL_DEBUG_INFO("Tune request to:%d channel:%d\n", phymode
, channel
);
7919 mutex_lock(&priv
->mutex
);
7920 if ((le16_to_cpu(priv
->staging_rxon
.channel
) != channel
) ||
7921 (priv
->phymode
!= phymode
)) {
7922 const struct iwl3945_channel_info
*ch_info
;
7924 ch_info
= iwl3945_get_channel_info(priv
, phymode
, channel
);
7926 IWL_WARNING("Requested invalid phymode/channel "
7927 "combination: %d %d\n", phymode
, channel
);
7928 mutex_unlock(&priv
->mutex
);
7932 /* Cancel any currently running scans... */
7933 if (iwl3945_scan_cancel_timeout(priv
, 100))
7934 IWL_WARNING("Could not cancel scan.\n");
7936 IWL_DEBUG_INFO("Committing phymode and "
7937 "rxon.channel = %d %d\n",
7940 iwl3945_set_rxon_channel(priv
, phymode
, channel
);
7941 iwl3945_set_flags_for_phymode(priv
, phymode
);
7943 iwl3945_set_rate(priv
);
7944 iwl3945_commit_rxon(priv
);
7947 mutex_unlock(&priv
->mutex
);
7952 static DEVICE_ATTR(tune
, S_IWUSR
| S_IRUGO
, show_tune
, store_tune
);
7954 #ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
7956 static ssize_t
show_measurement(struct device
*d
,
7957 struct device_attribute
*attr
, char *buf
)
7959 struct iwl3945_priv
*priv
= dev_get_drvdata(d
);
7960 struct iwl3945_spectrum_notification measure_report
;
7961 u32 size
= sizeof(measure_report
), len
= 0, ofs
= 0;
7962 u8
*data
= (u8
*) & measure_report
;
7963 unsigned long flags
;
7965 spin_lock_irqsave(&priv
->lock
, flags
);
7966 if (!(priv
->measurement_status
& MEASUREMENT_READY
)) {
7967 spin_unlock_irqrestore(&priv
->lock
, flags
);
7970 memcpy(&measure_report
, &priv
->measure_report
, size
);
7971 priv
->measurement_status
= 0;
7972 spin_unlock_irqrestore(&priv
->lock
, flags
);
7974 while (size
&& (PAGE_SIZE
- len
)) {
7975 hex_dump_to_buffer(data
+ ofs
, size
, 16, 1, buf
+ len
,
7976 PAGE_SIZE
- len
, 1);
7978 if (PAGE_SIZE
- len
)
7982 size
-= min(size
, 16U);
7988 static ssize_t
store_measurement(struct device
*d
,
7989 struct device_attribute
*attr
,
7990 const char *buf
, size_t count
)
7992 struct iwl3945_priv
*priv
= dev_get_drvdata(d
);
7993 struct ieee80211_measurement_params params
= {
7994 .channel
= le16_to_cpu(priv
->active_rxon
.channel
),
7995 .start_time
= cpu_to_le64(priv
->last_tsf
),
7996 .duration
= cpu_to_le16(1),
7998 u8 type
= IWL_MEASURE_BASIC
;
8004 strncpy(buffer
, buf
, min(sizeof(buffer
), count
));
8005 channel
= simple_strtoul(p
, NULL
, 0);
8007 params
.channel
= channel
;
8010 while (*p
&& *p
!= ' ')
8013 type
= simple_strtoul(p
+ 1, NULL
, 0);
8016 IWL_DEBUG_INFO("Invoking measurement of type %d on "
8017 "channel %d (for '%s')\n", type
, params
.channel
, buf
);
8018 iwl3945_get_measurement(priv
, ¶ms
, type
);
8023 static DEVICE_ATTR(measurement
, S_IRUSR
| S_IWUSR
,
8024 show_measurement
, store_measurement
);
8025 #endif /* CONFIG_IWL3945_SPECTRUM_MEASUREMENT */
8027 static ssize_t
show_rate(struct device
*d
,
8028 struct device_attribute
*attr
, char *buf
)
8030 struct iwl3945_priv
*priv
= dev_get_drvdata(d
);
8031 unsigned long flags
;
8034 spin_lock_irqsave(&priv
->sta_lock
, flags
);
8035 if (priv
->iw_mode
== IEEE80211_IF_TYPE_STA
)
8036 i
= priv
->stations
[IWL_AP_ID
].current_rate
.s
.rate
;
8038 i
= priv
->stations
[IWL_STA_ID
].current_rate
.s
.rate
;
8039 spin_unlock_irqrestore(&priv
->sta_lock
, flags
);
8041 i
= iwl3945_rate_index_from_plcp(i
);
8043 return sprintf(buf
, "0\n");
8045 return sprintf(buf
, "%d%s\n",
8046 (iwl3945_rates
[i
].ieee
>> 1),
8047 (iwl3945_rates
[i
].ieee
& 0x1) ? ".5" : "");
8050 static DEVICE_ATTR(rate
, S_IRUSR
, show_rate
, NULL
);
8052 static ssize_t
store_retry_rate(struct device
*d
,
8053 struct device_attribute
*attr
,
8054 const char *buf
, size_t count
)
8056 struct iwl3945_priv
*priv
= dev_get_drvdata(d
);
8058 priv
->retry_rate
= simple_strtoul(buf
, NULL
, 0);
8059 if (priv
->retry_rate
<= 0)
8060 priv
->retry_rate
= 1;
8065 static ssize_t
show_retry_rate(struct device
*d
,
8066 struct device_attribute
*attr
, char *buf
)
8068 struct iwl3945_priv
*priv
= dev_get_drvdata(d
);
8069 return sprintf(buf
, "%d", priv
->retry_rate
);
8072 static DEVICE_ATTR(retry_rate
, S_IWUSR
| S_IRUSR
, show_retry_rate
,
8075 static ssize_t
store_power_level(struct device
*d
,
8076 struct device_attribute
*attr
,
8077 const char *buf
, size_t count
)
8079 struct iwl3945_priv
*priv
= dev_get_drvdata(d
);
8083 mode
= simple_strtoul(buf
, NULL
, 0);
8084 mutex_lock(&priv
->mutex
);
8086 if (!iwl3945_is_ready(priv
)) {
8091 if ((mode
< 1) || (mode
> IWL_POWER_LIMIT
) || (mode
== IWL_POWER_AC
))
8092 mode
= IWL_POWER_AC
;
8094 mode
|= IWL_POWER_ENABLED
;
8096 if (mode
!= priv
->power_mode
) {
8097 rc
= iwl3945_send_power_mode(priv
, IWL_POWER_LEVEL(mode
));
8099 IWL_DEBUG_MAC80211("failed setting power mode.\n");
8102 priv
->power_mode
= mode
;
8108 mutex_unlock(&priv
->mutex
);
8112 #define MAX_WX_STRING 80
8114 /* Values are in microsecond */
8115 static const s32 timeout_duration
[] = {
8122 static const s32 period_duration
[] = {
8130 static ssize_t
show_power_level(struct device
*d
,
8131 struct device_attribute
*attr
, char *buf
)
8133 struct iwl3945_priv
*priv
= dev_get_drvdata(d
);
8134 int level
= IWL_POWER_LEVEL(priv
->power_mode
);
8137 p
+= sprintf(p
, "%d ", level
);
8139 case IWL_POWER_MODE_CAM
:
8141 p
+= sprintf(p
, "(AC)");
8143 case IWL_POWER_BATTERY
:
8144 p
+= sprintf(p
, "(BATTERY)");
8148 "(Timeout %dms, Period %dms)",
8149 timeout_duration
[level
- 1] / 1000,
8150 period_duration
[level
- 1] / 1000);
8153 if (!(priv
->power_mode
& IWL_POWER_ENABLED
))
8154 p
+= sprintf(p
, " OFF\n");
8156 p
+= sprintf(p
, " \n");
8158 return (p
- buf
+ 1);
8162 static DEVICE_ATTR(power_level
, S_IWUSR
| S_IRUSR
, show_power_level
,
8165 static ssize_t
show_channels(struct device
*d
,
8166 struct device_attribute
*attr
, char *buf
)
8168 struct iwl3945_priv
*priv
= dev_get_drvdata(d
);
8170 struct ieee80211_channel
*channels
= NULL
;
8171 const struct ieee80211_hw_mode
*hw_mode
= NULL
;
8174 if (!iwl3945_is_ready(priv
))
8177 hw_mode
= iwl3945_get_hw_mode(priv
, MODE_IEEE80211G
);
8179 hw_mode
= iwl3945_get_hw_mode(priv
, MODE_IEEE80211B
);
8181 channels
= hw_mode
->channels
;
8182 count
= hw_mode
->num_channels
;
8187 "Displaying %d channels in 2.4GHz band "
8188 "(802.11bg):\n", count
);
8190 for (i
= 0; i
< count
; i
++)
8191 len
+= sprintf(&buf
[len
], "%d: %ddBm: BSS%s%s, %s.\n",
8193 channels
[i
].power_level
,
8195 flag
& IEEE80211_CHAN_W_RADAR_DETECT
?
8196 " (IEEE 802.11h required)" : "",
8197 (!(channels
[i
].flag
& IEEE80211_CHAN_W_IBSS
)
8200 IEEE80211_CHAN_W_RADAR_DETECT
)) ? "" :
8203 flag
& IEEE80211_CHAN_W_ACTIVE_SCAN
?
8204 "active/passive" : "passive only");
8206 hw_mode
= iwl3945_get_hw_mode(priv
, MODE_IEEE80211A
);
8208 channels
= hw_mode
->channels
;
8209 count
= hw_mode
->num_channels
;
8215 len
+= sprintf(&buf
[len
], "Displaying %d channels in 5.2GHz band "
8216 "(802.11a):\n", count
);
8218 for (i
= 0; i
< count
; i
++)
8219 len
+= sprintf(&buf
[len
], "%d: %ddBm: BSS%s%s, %s.\n",
8221 channels
[i
].power_level
,
8223 flag
& IEEE80211_CHAN_W_RADAR_DETECT
?
8224 " (IEEE 802.11h required)" : "",
8225 (!(channels
[i
].flag
& IEEE80211_CHAN_W_IBSS
)
8228 IEEE80211_CHAN_W_RADAR_DETECT
)) ? "" :
8231 flag
& IEEE80211_CHAN_W_ACTIVE_SCAN
?
8232 "active/passive" : "passive only");
8237 static DEVICE_ATTR(channels
, S_IRUSR
, show_channels
, NULL
);
8239 static ssize_t
show_statistics(struct device
*d
,
8240 struct device_attribute
*attr
, char *buf
)
8242 struct iwl3945_priv
*priv
= dev_get_drvdata(d
);
8243 u32 size
= sizeof(struct iwl3945_notif_statistics
);
8244 u32 len
= 0, ofs
= 0;
8245 u8
*data
= (u8
*) & priv
->statistics
;
8248 if (!iwl3945_is_alive(priv
))
8251 mutex_lock(&priv
->mutex
);
8252 rc
= iwl3945_send_statistics_request(priv
);
8253 mutex_unlock(&priv
->mutex
);
8257 "Error sending statistics request: 0x%08X\n", rc
);
8261 while (size
&& (PAGE_SIZE
- len
)) {
8262 hex_dump_to_buffer(data
+ ofs
, size
, 16, 1, buf
+ len
,
8263 PAGE_SIZE
- len
, 1);
8265 if (PAGE_SIZE
- len
)
8269 size
-= min(size
, 16U);
8275 static DEVICE_ATTR(statistics
, S_IRUGO
, show_statistics
, NULL
);
8277 static ssize_t
show_antenna(struct device
*d
,
8278 struct device_attribute
*attr
, char *buf
)
8280 struct iwl3945_priv
*priv
= dev_get_drvdata(d
);
8282 if (!iwl3945_is_alive(priv
))
8285 return sprintf(buf
, "%d\n", priv
->antenna
);
8288 static ssize_t
store_antenna(struct device
*d
,
8289 struct device_attribute
*attr
,
8290 const char *buf
, size_t count
)
8293 struct iwl3945_priv
*priv
= dev_get_drvdata(d
);
8298 if (sscanf(buf
, "%1i", &ant
) != 1) {
8299 IWL_DEBUG_INFO("not in hex or decimal form.\n");
8303 if ((ant
>= 0) && (ant
<= 2)) {
8304 IWL_DEBUG_INFO("Setting antenna select to %d.\n", ant
);
8305 priv
->antenna
= (enum iwl3945_antenna
)ant
;
8307 IWL_DEBUG_INFO("Bad antenna select value %d.\n", ant
);
8313 static DEVICE_ATTR(antenna
, S_IWUSR
| S_IRUGO
, show_antenna
, store_antenna
);
8315 static ssize_t
show_status(struct device
*d
,
8316 struct device_attribute
*attr
, char *buf
)
8318 struct iwl3945_priv
*priv
= (struct iwl3945_priv
*)d
->driver_data
;
8319 if (!iwl3945_is_alive(priv
))
8321 return sprintf(buf
, "0x%08x\n", (int)priv
->status
);
8324 static DEVICE_ATTR(status
, S_IRUGO
, show_status
, NULL
);
8326 static ssize_t
dump_error_log(struct device
*d
,
8327 struct device_attribute
*attr
,
8328 const char *buf
, size_t count
)
8330 char *p
= (char *)buf
;
8333 iwl3945_dump_nic_error_log((struct iwl3945_priv
*)d
->driver_data
);
8335 return strnlen(buf
, count
);
8338 static DEVICE_ATTR(dump_errors
, S_IWUSR
, NULL
, dump_error_log
);
8340 static ssize_t
dump_event_log(struct device
*d
,
8341 struct device_attribute
*attr
,
8342 const char *buf
, size_t count
)
8344 char *p
= (char *)buf
;
8347 iwl3945_dump_nic_event_log((struct iwl3945_priv
*)d
->driver_data
);
8349 return strnlen(buf
, count
);
8352 static DEVICE_ATTR(dump_events
, S_IWUSR
, NULL
, dump_event_log
);
8354 /*****************************************************************************
8356 * driver setup and teardown
8358 *****************************************************************************/
8360 static void iwl3945_setup_deferred_work(struct iwl3945_priv
*priv
)
8362 priv
->workqueue
= create_workqueue(DRV_NAME
);
8364 init_waitqueue_head(&priv
->wait_command_queue
);
8366 INIT_WORK(&priv
->up
, iwl3945_bg_up
);
8367 INIT_WORK(&priv
->restart
, iwl3945_bg_restart
);
8368 INIT_WORK(&priv
->rx_replenish
, iwl3945_bg_rx_replenish
);
8369 INIT_WORK(&priv
->scan_completed
, iwl3945_bg_scan_completed
);
8370 INIT_WORK(&priv
->request_scan
, iwl3945_bg_request_scan
);
8371 INIT_WORK(&priv
->abort_scan
, iwl3945_bg_abort_scan
);
8372 INIT_WORK(&priv
->rf_kill
, iwl3945_bg_rf_kill
);
8373 INIT_WORK(&priv
->beacon_update
, iwl3945_bg_beacon_update
);
8374 INIT_DELAYED_WORK(&priv
->post_associate
, iwl3945_bg_post_associate
);
8375 INIT_DELAYED_WORK(&priv
->init_alive_start
, iwl3945_bg_init_alive_start
);
8376 INIT_DELAYED_WORK(&priv
->alive_start
, iwl3945_bg_alive_start
);
8377 INIT_DELAYED_WORK(&priv
->scan_check
, iwl3945_bg_scan_check
);
8379 iwl3945_hw_setup_deferred_work(priv
);
8381 tasklet_init(&priv
->irq_tasklet
, (void (*)(unsigned long))
8382 iwl3945_irq_tasklet
, (unsigned long)priv
);
8385 static void iwl3945_cancel_deferred_work(struct iwl3945_priv
*priv
)
8387 iwl3945_hw_cancel_deferred_work(priv
);
8389 cancel_delayed_work_sync(&priv
->init_alive_start
);
8390 cancel_delayed_work(&priv
->scan_check
);
8391 cancel_delayed_work(&priv
->alive_start
);
8392 cancel_delayed_work(&priv
->post_associate
);
8393 cancel_work_sync(&priv
->beacon_update
);
8396 static struct attribute
*iwl3945_sysfs_entries
[] = {
8397 &dev_attr_antenna
.attr
,
8398 &dev_attr_channels
.attr
,
8399 &dev_attr_dump_errors
.attr
,
8400 &dev_attr_dump_events
.attr
,
8401 &dev_attr_flags
.attr
,
8402 &dev_attr_filter_flags
.attr
,
8403 #ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
8404 &dev_attr_measurement
.attr
,
8406 &dev_attr_power_level
.attr
,
8407 &dev_attr_rate
.attr
,
8408 &dev_attr_retry_rate
.attr
,
8409 &dev_attr_rf_kill
.attr
,
8410 &dev_attr_rs_window
.attr
,
8411 &dev_attr_statistics
.attr
,
8412 &dev_attr_status
.attr
,
8413 &dev_attr_temperature
.attr
,
8414 &dev_attr_tune
.attr
,
8415 &dev_attr_tx_power
.attr
,
8420 static struct attribute_group iwl3945_attribute_group
= {
8421 .name
= NULL
, /* put in device directory */
8422 .attrs
= iwl3945_sysfs_entries
,
8425 static struct ieee80211_ops iwl3945_hw_ops
= {
8426 .tx
= iwl3945_mac_tx
,
8427 .start
= iwl3945_mac_start
,
8428 .stop
= iwl3945_mac_stop
,
8429 .add_interface
= iwl3945_mac_add_interface
,
8430 .remove_interface
= iwl3945_mac_remove_interface
,
8431 .config
= iwl3945_mac_config
,
8432 .config_interface
= iwl3945_mac_config_interface
,
8433 .configure_filter
= iwl3945_configure_filter
,
8434 .set_key
= iwl3945_mac_set_key
,
8435 .get_stats
= iwl3945_mac_get_stats
,
8436 .get_tx_stats
= iwl3945_mac_get_tx_stats
,
8437 .conf_tx
= iwl3945_mac_conf_tx
,
8438 .get_tsf
= iwl3945_mac_get_tsf
,
8439 .reset_tsf
= iwl3945_mac_reset_tsf
,
8440 .beacon_update
= iwl3945_mac_beacon_update
,
8441 .hw_scan
= iwl3945_mac_hw_scan
8444 static int iwl3945_pci_probe(struct pci_dev
*pdev
, const struct pci_device_id
*ent
)
8448 struct iwl3945_priv
*priv
;
8449 struct ieee80211_hw
*hw
;
8451 DECLARE_MAC_BUF(mac
);
8453 /* Disabling hardware scan means that mac80211 will perform scans
8454 * "the hard way", rather than using device's scan. */
8455 if (iwl3945_param_disable_hw_scan
) {
8456 IWL_DEBUG_INFO("Disabling hw_scan\n");
8457 iwl3945_hw_ops
.hw_scan
= NULL
;
8460 if ((iwl3945_param_queues_num
> IWL_MAX_NUM_QUEUES
) ||
8461 (iwl3945_param_queues_num
< IWL_MIN_NUM_QUEUES
)) {
8462 IWL_ERROR("invalid queues_num, should be between %d and %d\n",
8463 IWL_MIN_NUM_QUEUES
, IWL_MAX_NUM_QUEUES
);
8468 /* mac80211 allocates memory for this device instance, including
8469 * space for this driver's private structure */
8470 hw
= ieee80211_alloc_hw(sizeof(struct iwl3945_priv
), &iwl3945_hw_ops
);
8472 IWL_ERROR("Can not allocate network device\n");
8476 SET_IEEE80211_DEV(hw
, &pdev
->dev
);
8478 hw
->rate_control_algorithm
= "iwl-3945-rs";
8480 IWL_DEBUG_INFO("*** LOAD DRIVER ***\n");
8484 priv
->pci_dev
= pdev
;
8486 /* Select antenna (may be helpful if only one antenna is connected) */
8487 priv
->antenna
= (enum iwl3945_antenna
)iwl3945_param_antenna
;
8488 #ifdef CONFIG_IWL3945_DEBUG
8489 iwl3945_debug_level
= iwl3945_param_debug
;
8490 atomic_set(&priv
->restrict_refcnt
, 0);
8492 priv
->retry_rate
= 1;
8494 priv
->ibss_beacon
= NULL
;
8496 /* Tell mac80211 and its clients (e.g. Wireless Extensions)
8497 * the range of signal quality values that we'll provide.
8498 * Negative values for level/noise indicate that we'll provide dBm.
8499 * For WE, at least, non-0 values here *enable* display of values
8500 * in app (iwconfig). */
8501 hw
->max_rssi
= -20; /* signal level, negative indicates dBm */
8502 hw
->max_noise
= -20; /* noise level, negative indicates dBm */
8503 hw
->max_signal
= 100; /* link quality indication (%) */
8505 /* Tell mac80211 our Tx characteristics */
8506 hw
->flags
= IEEE80211_HW_HOST_GEN_BEACON_TEMPLATE
;
8508 /* 4 EDCA QOS priorities */
8511 spin_lock_init(&priv
->lock
);
8512 spin_lock_init(&priv
->power_data
.lock
);
8513 spin_lock_init(&priv
->sta_lock
);
8514 spin_lock_init(&priv
->hcmd_lock
);
8516 for (i
= 0; i
< IWL_IBSS_MAC_HASH_SIZE
; i
++)
8517 INIT_LIST_HEAD(&priv
->ibss_mac_hash
[i
]);
8519 INIT_LIST_HEAD(&priv
->free_frames
);
8521 mutex_init(&priv
->mutex
);
8522 if (pci_enable_device(pdev
)) {
8524 goto out_ieee80211_free_hw
;
8527 pci_set_master(pdev
);
8529 /* Clear the driver's (not device's) station table */
8530 iwl3945_clear_stations_table(priv
);
8532 priv
->data_retry_limit
= -1;
8533 priv
->ieee_channels
= NULL
;
8534 priv
->ieee_rates
= NULL
;
8537 err
= pci_set_dma_mask(pdev
, DMA_32BIT_MASK
);
8539 err
= pci_set_consistent_dma_mask(pdev
, DMA_32BIT_MASK
);
8541 printk(KERN_WARNING DRV_NAME
": No suitable DMA available.\n");
8542 goto out_pci_disable_device
;
8545 pci_set_drvdata(pdev
, priv
);
8546 err
= pci_request_regions(pdev
, DRV_NAME
);
8548 goto out_pci_disable_device
;
8550 /* We disable the RETRY_TIMEOUT register (0x41) to keep
8551 * PCI Tx retries from interfering with C3 CPU state */
8552 pci_write_config_byte(pdev
, 0x41, 0x00);
8554 priv
->hw_base
= pci_iomap(pdev
, 0, 0);
8555 if (!priv
->hw_base
) {
8557 goto out_pci_release_regions
;
8560 IWL_DEBUG_INFO("pci_resource_len = 0x%08llx\n",
8561 (unsigned long long) pci_resource_len(pdev
, 0));
8562 IWL_DEBUG_INFO("pci_resource_base = %p\n", priv
->hw_base
);
8564 /* Initialize module parameter values here */
8566 /* Disable radio (SW RF KILL) via parameter when loading driver */
8567 if (iwl3945_param_disable
) {
8568 set_bit(STATUS_RF_KILL_SW
, &priv
->status
);
8569 IWL_DEBUG_INFO("Radio disabled.\n");
8572 priv
->iw_mode
= IEEE80211_IF_TYPE_STA
;
8575 (priv
->pci_dev
->device
<< 16) | priv
->pci_dev
->subsystem_device
;
8578 case 0x42221005: /* 0x4222 0x8086 0x1005 is BG SKU */
8579 case 0x42221034: /* 0x4222 0x8086 0x1034 is BG SKU */
8580 case 0x42271014: /* 0x4227 0x8086 0x1014 is BG SKU */
8581 case 0x42221044: /* 0x4222 0x8086 0x1044 is BG SKU */
8586 * Rest are assumed ABG SKU -- if this is not the
8587 * case then the card will get the wrong 'Detected'
8588 * line in the kernel log however the code that
8589 * initializes the GEO table will detect no A-band
8590 * channels and remove the is_abg mask.
8597 printk(KERN_INFO DRV_NAME
8598 ": Detected Intel PRO/Wireless 3945%sBG Network Connection\n",
8599 priv
->is_abg
? "A" : "");
8601 /* Device-specific setup */
8602 if (iwl3945_hw_set_hw_setting(priv
)) {
8603 IWL_ERROR("failed to set hw settings\n");
8607 #ifdef CONFIG_IWL3945_QOS
8608 if (iwl3945_param_qos_enable
)
8609 priv
->qos_data
.qos_enable
= 1;
8611 iwl3945_reset_qos(priv
);
8613 priv
->qos_data
.qos_active
= 0;
8614 priv
->qos_data
.qos_cap
.val
= 0;
8615 #endif /* CONFIG_IWL3945_QOS */
8617 iwl3945_set_rxon_channel(priv
, MODE_IEEE80211G
, 6);
8618 iwl3945_setup_deferred_work(priv
);
8619 iwl3945_setup_rx_handlers(priv
);
8621 priv
->rates_mask
= IWL_RATES_MASK
;
8622 /* If power management is turned on, default to AC mode */
8623 priv
->power_mode
= IWL_POWER_AC
;
8624 priv
->user_txpower_limit
= IWL_DEFAULT_TX_POWER
;
8626 iwl3945_disable_interrupts(priv
);
8628 err
= sysfs_create_group(&pdev
->dev
.kobj
, &iwl3945_attribute_group
);
8630 IWL_ERROR("failed to create sysfs device attributes\n");
8631 goto out_release_irq
;
8635 iwl3945_set_bit(priv
, CSR_GIO_CHICKEN_BITS
,
8636 CSR_GIO_CHICKEN_BITS_REG_BIT_DIS_L0S_EXIT_TIMER
);
8638 iwl3945_set_bit(priv
, CSR_GP_CNTRL
, CSR_GP_CNTRL_REG_FLAG_INIT_DONE
);
8639 err
= iwl3945_poll_bit(priv
, CSR_GP_CNTRL
,
8640 CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY
,
8641 CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY
, 25000);
8643 IWL_DEBUG_INFO("Failed to init the card\n");
8644 goto out_remove_sysfs
;
8646 /* Read the EEPROM */
8647 err
= iwl3945_eeprom_init(priv
);
8649 IWL_ERROR("Unable to init EEPROM\n");
8650 goto out_remove_sysfs
;
8652 /* MAC Address location in EEPROM same for 3945/4965 */
8653 get_eeprom_mac(priv
, priv
->mac_addr
);
8654 IWL_DEBUG_INFO("MAC address: %s\n", print_mac(mac
, priv
->mac_addr
));
8655 SET_IEEE80211_PERM_ADDR(priv
->hw
, priv
->mac_addr
);
8657 err
= iwl3945_init_channel_map(priv
);
8659 IWL_ERROR("initializing regulatory failed: %d\n", err
);
8660 goto out_remove_sysfs
;
8663 err
= iwl3945_init_geos(priv
);
8665 IWL_ERROR("initializing geos failed: %d\n", err
);
8666 goto out_free_channel_map
;
8668 iwl3945_reset_channel_flag(priv
);
8670 iwl3945_rate_control_register(priv
->hw
);
8671 err
= ieee80211_register_hw(priv
->hw
);
8673 IWL_ERROR("Failed to register network device (error %d)\n", err
);
8677 priv
->hw
->conf
.beacon_int
= 100;
8678 priv
->mac80211_registered
= 1;
8679 pci_save_state(pdev
);
8680 pci_disable_device(pdev
);
8685 iwl3945_free_geos(priv
);
8686 out_free_channel_map
:
8687 iwl3945_free_channel_map(priv
);
8689 sysfs_remove_group(&pdev
->dev
.kobj
, &iwl3945_attribute_group
);
8692 destroy_workqueue(priv
->workqueue
);
8693 priv
->workqueue
= NULL
;
8694 iwl3945_unset_hw_setting(priv
);
8697 pci_iounmap(pdev
, priv
->hw_base
);
8698 out_pci_release_regions
:
8699 pci_release_regions(pdev
);
8700 out_pci_disable_device
:
8701 pci_disable_device(pdev
);
8702 pci_set_drvdata(pdev
, NULL
);
8703 out_ieee80211_free_hw
:
8704 ieee80211_free_hw(priv
->hw
);
8709 static void iwl3945_pci_remove(struct pci_dev
*pdev
)
8711 struct iwl3945_priv
*priv
= pci_get_drvdata(pdev
);
8712 struct list_head
*p
, *q
;
8718 IWL_DEBUG_INFO("*** UNLOAD DRIVER ***\n");
8720 set_bit(STATUS_EXIT_PENDING
, &priv
->status
);
8724 /* Free MAC hash list for ADHOC */
8725 for (i
= 0; i
< IWL_IBSS_MAC_HASH_SIZE
; i
++) {
8726 list_for_each_safe(p
, q
, &priv
->ibss_mac_hash
[i
]) {
8728 kfree(list_entry(p
, struct iwl3945_ibss_seq
, list
));
8732 sysfs_remove_group(&pdev
->dev
.kobj
, &iwl3945_attribute_group
);
8734 iwl3945_dealloc_ucode_pci(priv
);
8737 iwl3945_rx_queue_free(priv
, &priv
->rxq
);
8738 iwl3945_hw_txq_ctx_free(priv
);
8740 iwl3945_unset_hw_setting(priv
);
8741 iwl3945_clear_stations_table(priv
);
8743 if (priv
->mac80211_registered
) {
8744 ieee80211_unregister_hw(priv
->hw
);
8745 iwl3945_rate_control_unregister(priv
->hw
);
8748 /*netif_stop_queue(dev); */
8749 flush_workqueue(priv
->workqueue
);
8751 /* ieee80211_unregister_hw calls iwl3945_mac_stop, which flushes
8752 * priv->workqueue... so we can't take down the workqueue
8754 destroy_workqueue(priv
->workqueue
);
8755 priv
->workqueue
= NULL
;
8757 pci_iounmap(pdev
, priv
->hw_base
);
8758 pci_release_regions(pdev
);
8759 pci_disable_device(pdev
);
8760 pci_set_drvdata(pdev
, NULL
);
8762 iwl3945_free_channel_map(priv
);
8763 iwl3945_free_geos(priv
);
8765 if (priv
->ibss_beacon
)
8766 dev_kfree_skb(priv
->ibss_beacon
);
8768 ieee80211_free_hw(priv
->hw
);
8773 static int iwl3945_pci_suspend(struct pci_dev
*pdev
, pm_message_t state
)
8775 struct iwl3945_priv
*priv
= pci_get_drvdata(pdev
);
8777 if (priv
->is_open
) {
8778 set_bit(STATUS_IN_SUSPEND
, &priv
->status
);
8779 iwl3945_mac_stop(priv
->hw
);
8783 pci_set_power_state(pdev
, PCI_D3hot
);
8788 static int iwl3945_pci_resume(struct pci_dev
*pdev
)
8790 struct iwl3945_priv
*priv
= pci_get_drvdata(pdev
);
8792 pci_set_power_state(pdev
, PCI_D0
);
8795 iwl3945_mac_start(priv
->hw
);
8797 clear_bit(STATUS_IN_SUSPEND
, &priv
->status
);
8801 #endif /* CONFIG_PM */
8803 /*****************************************************************************
8805 * driver and module entry point
8807 *****************************************************************************/
8809 static struct pci_driver iwl3945_driver
= {
8811 .id_table
= iwl3945_hw_card_ids
,
8812 .probe
= iwl3945_pci_probe
,
8813 .remove
= __devexit_p(iwl3945_pci_remove
),
8815 .suspend
= iwl3945_pci_suspend
,
8816 .resume
= iwl3945_pci_resume
,
8820 static int __init
iwl3945_init(void)
8824 printk(KERN_INFO DRV_NAME
": " DRV_DESCRIPTION
", " DRV_VERSION
"\n");
8825 printk(KERN_INFO DRV_NAME
": " DRV_COPYRIGHT
"\n");
8826 ret
= pci_register_driver(&iwl3945_driver
);
8828 IWL_ERROR("Unable to initialize PCI module\n");
8831 #ifdef CONFIG_IWL3945_DEBUG
8832 ret
= driver_create_file(&iwl3945_driver
.driver
, &driver_attr_debug_level
);
8834 IWL_ERROR("Unable to create driver sysfs file\n");
8835 pci_unregister_driver(&iwl3945_driver
);
8843 static void __exit
iwl3945_exit(void)
8845 #ifdef CONFIG_IWL3945_DEBUG
8846 driver_remove_file(&iwl3945_driver
.driver
, &driver_attr_debug_level
);
8848 pci_unregister_driver(&iwl3945_driver
);
8851 module_param_named(antenna
, iwl3945_param_antenna
, int, 0444);
8852 MODULE_PARM_DESC(antenna
, "select antenna (1=Main, 2=Aux, default 0 [both])");
8853 module_param_named(disable
, iwl3945_param_disable
, int, 0444);
8854 MODULE_PARM_DESC(disable
, "manually disable the radio (default 0 [radio on])");
8855 module_param_named(hwcrypto
, iwl3945_param_hwcrypto
, int, 0444);
8856 MODULE_PARM_DESC(hwcrypto
,
8857 "using hardware crypto engine (default 0 [software])\n");
8858 module_param_named(debug
, iwl3945_param_debug
, int, 0444);
8859 MODULE_PARM_DESC(debug
, "debug output mask");
8860 module_param_named(disable_hw_scan
, iwl3945_param_disable_hw_scan
, int, 0444);
8861 MODULE_PARM_DESC(disable_hw_scan
, "disable hardware scanning (default 0)");
8863 module_param_named(queues_num
, iwl3945_param_queues_num
, int, 0444);
8864 MODULE_PARM_DESC(queues_num
, "number of hw queues.");
8867 module_param_named(qos_enable
, iwl3945_param_qos_enable
, int, 0444);
8868 MODULE_PARM_DESC(qos_enable
, "enable all QoS functionality");
8870 module_exit(iwl3945_exit
);
8871 module_init(iwl3945_init
);