1 /******************************************************************************
3 * Copyright(c) 2003 - 2009 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 * Intel Linux Wireless <ilw@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/init.h>
33 #include <linux/pci.h>
34 #include <linux/dma-mapping.h>
35 #include <linux/delay.h>
36 #include <linux/skbuff.h>
37 #include <linux/netdevice.h>
38 #include <linux/wireless.h>
39 #include <linux/firmware.h>
40 #include <linux/etherdevice.h>
41 #include <linux/if_arp.h>
43 #include <net/mac80211.h>
45 #include <asm/div64.h>
47 #define DRV_NAME "iwlagn"
49 #include "iwl-eeprom.h"
53 #include "iwl-helpers.h"
55 #include "iwl-calib.h"
58 /******************************************************************************
62 ******************************************************************************/
65 * module name, copyright, version, etc.
67 #define DRV_DESCRIPTION "Intel(R) Wireless WiFi Link AGN driver for Linux"
69 #ifdef CONFIG_IWLWIFI_DEBUG
75 #ifdef CONFIG_IWLWIFI_SPECTRUM_MEASUREMENT
81 #define DRV_VERSION IWLWIFI_VERSION VD VS
84 MODULE_DESCRIPTION(DRV_DESCRIPTION
);
85 MODULE_VERSION(DRV_VERSION
);
86 MODULE_AUTHOR(DRV_COPYRIGHT
" " DRV_AUTHOR
);
87 MODULE_LICENSE("GPL");
88 MODULE_ALIAS("iwl4965");
90 /*************** STATION TABLE MANAGEMENT ****
91 * mac80211 should be examined to determine if sta_info is duplicating
92 * the functionality provided here
95 /**************************************************************/
98 * iwl_commit_rxon - commit staging_rxon to hardware
100 * The RXON command in staging_rxon is committed to the hardware and
101 * the active_rxon structure is updated with the new data. This
102 * function correctly transitions out of the RXON_ASSOC_MSK state if
103 * a HW tune is required based on the RXON structure changes.
105 int iwl_commit_rxon(struct iwl_priv
*priv
)
107 /* cast away the const for active_rxon in this function */
108 struct iwl_rxon_cmd
*active_rxon
= (void *)&priv
->active_rxon
;
111 !!(priv
->staging_rxon
.filter_flags
& RXON_FILTER_ASSOC_MSK
);
113 if (!iwl_is_alive(priv
))
116 /* always get timestamp with Rx frame */
117 priv
->staging_rxon
.flags
|= RXON_FLG_TSF2HOST_MSK
;
118 /* allow CTS-to-self if possible. this is relevant only for
119 * 5000, but will not damage 4965 */
120 priv
->staging_rxon
.flags
|= RXON_FLG_SELF_CTS_EN
;
122 ret
= iwl_check_rxon_cmd(priv
);
124 IWL_ERR(priv
, "Invalid RXON configuration. Not committing.\n");
128 /* If we don't need to send a full RXON, we can use
129 * iwl_rxon_assoc_cmd which is used to reconfigure filter
130 * and other flags for the current radio configuration. */
131 if (!iwl_full_rxon_required(priv
)) {
132 ret
= iwl_send_rxon_assoc(priv
);
134 IWL_ERR(priv
, "Error setting RXON_ASSOC (%d)\n", ret
);
138 memcpy(active_rxon
, &priv
->staging_rxon
, sizeof(*active_rxon
));
142 /* station table will be cleared */
143 priv
->assoc_station_added
= 0;
145 /* If we are currently associated and the new config requires
146 * an RXON_ASSOC and the new config wants the associated mask enabled,
147 * we must clear the associated from the active configuration
148 * before we apply the new config */
149 if (iwl_is_associated(priv
) && new_assoc
) {
150 IWL_DEBUG_INFO(priv
, "Toggling associated bit on current RXON\n");
151 active_rxon
->filter_flags
&= ~RXON_FILTER_ASSOC_MSK
;
153 ret
= iwl_send_cmd_pdu(priv
, REPLY_RXON
,
154 sizeof(struct iwl_rxon_cmd
),
157 /* If the mask clearing failed then we set
158 * active_rxon back to what it was previously */
160 active_rxon
->filter_flags
|= RXON_FILTER_ASSOC_MSK
;
161 IWL_ERR(priv
, "Error clearing ASSOC_MSK (%d)\n", ret
);
166 IWL_DEBUG_INFO(priv
, "Sending RXON\n"
167 "* with%s RXON_FILTER_ASSOC_MSK\n"
170 (new_assoc
? "" : "out"),
171 le16_to_cpu(priv
->staging_rxon
.channel
),
172 priv
->staging_rxon
.bssid_addr
);
174 iwl_set_rxon_hwcrypto(priv
, !priv
->hw_params
.sw_crypto
);
176 /* Apply the new configuration
177 * RXON unassoc clears the station table in uCode, send it before
178 * we add the bcast station. If assoc bit is set, we will send RXON
179 * after having added the bcast and bssid station.
182 ret
= iwl_send_cmd_pdu(priv
, REPLY_RXON
,
183 sizeof(struct iwl_rxon_cmd
), &priv
->staging_rxon
);
185 IWL_ERR(priv
, "Error setting new RXON (%d)\n", ret
);
188 memcpy(active_rxon
, &priv
->staging_rxon
, sizeof(*active_rxon
));
191 priv
->cfg
->ops
->smgmt
->clear_station_table(priv
);
193 priv
->start_calib
= 0;
195 /* Add the broadcast address so we can send broadcast frames */
196 if (iwl_rxon_add_station(priv
, iwl_bcast_addr
, 0) ==
197 IWL_INVALID_STATION
) {
198 IWL_ERR(priv
, "Error adding BROADCAST address for transmit.\n");
202 /* If we have set the ASSOC_MSK and we are in BSS mode then
203 * add the IWL_AP_ID to the station rate table */
205 if (priv
->iw_mode
== NL80211_IFTYPE_STATION
) {
206 ret
= iwl_rxon_add_station(priv
,
207 priv
->active_rxon
.bssid_addr
, 1);
208 if (ret
== IWL_INVALID_STATION
) {
210 "Error adding AP address for TX.\n");
213 priv
->assoc_station_added
= 1;
214 if (priv
->default_wep_key
&&
215 iwl_send_static_wepkey_cmd(priv
, 0))
217 "Could not send WEP static key.\n");
220 /* Apply the new configuration
221 * RXON assoc doesn't clear the station table in uCode,
223 ret
= iwl_send_cmd_pdu(priv
, REPLY_RXON
,
224 sizeof(struct iwl_rxon_cmd
), &priv
->staging_rxon
);
226 IWL_ERR(priv
, "Error setting new RXON (%d)\n", ret
);
229 memcpy(active_rxon
, &priv
->staging_rxon
, sizeof(*active_rxon
));
232 iwl_init_sensitivity(priv
);
234 /* If we issue a new RXON command which required a tune then we must
235 * send a new TXPOWER command or we won't be able to Tx any frames */
236 ret
= iwl_set_tx_power(priv
, priv
->tx_power_user_lmt
, true);
238 IWL_ERR(priv
, "Error sending TX power (%d)\n", ret
);
245 void iwl_update_chain_flags(struct iwl_priv
*priv
)
248 if (priv
->cfg
->ops
->hcmd
->set_rxon_chain
)
249 priv
->cfg
->ops
->hcmd
->set_rxon_chain(priv
);
250 iwlcore_commit_rxon(priv
);
253 static void iwl_clear_free_frames(struct iwl_priv
*priv
)
255 struct list_head
*element
;
257 IWL_DEBUG_INFO(priv
, "%d frames on pre-allocated heap on clear.\n",
260 while (!list_empty(&priv
->free_frames
)) {
261 element
= priv
->free_frames
.next
;
263 kfree(list_entry(element
, struct iwl_frame
, list
));
264 priv
->frames_count
--;
267 if (priv
->frames_count
) {
268 IWL_WARN(priv
, "%d frames still in use. Did we lose one?\n",
270 priv
->frames_count
= 0;
274 static struct iwl_frame
*iwl_get_free_frame(struct iwl_priv
*priv
)
276 struct iwl_frame
*frame
;
277 struct list_head
*element
;
278 if (list_empty(&priv
->free_frames
)) {
279 frame
= kzalloc(sizeof(*frame
), GFP_KERNEL
);
281 IWL_ERR(priv
, "Could not allocate frame!\n");
285 priv
->frames_count
++;
289 element
= priv
->free_frames
.next
;
291 return list_entry(element
, struct iwl_frame
, list
);
294 static void iwl_free_frame(struct iwl_priv
*priv
, struct iwl_frame
*frame
)
296 memset(frame
, 0, sizeof(*frame
));
297 list_add(&frame
->list
, &priv
->free_frames
);
300 static unsigned int iwl_fill_beacon_frame(struct iwl_priv
*priv
,
301 struct ieee80211_hdr
*hdr
,
304 if (!iwl_is_associated(priv
) || !priv
->ibss_beacon
||
305 ((priv
->iw_mode
!= NL80211_IFTYPE_ADHOC
) &&
306 (priv
->iw_mode
!= NL80211_IFTYPE_AP
)))
309 if (priv
->ibss_beacon
->len
> left
)
312 memcpy(hdr
, priv
->ibss_beacon
->data
, priv
->ibss_beacon
->len
);
314 return priv
->ibss_beacon
->len
;
317 static unsigned int iwl_hw_get_beacon_cmd(struct iwl_priv
*priv
,
318 struct iwl_frame
*frame
, u8 rate
)
320 struct iwl_tx_beacon_cmd
*tx_beacon_cmd
;
321 unsigned int frame_size
;
323 tx_beacon_cmd
= &frame
->u
.beacon
;
324 memset(tx_beacon_cmd
, 0, sizeof(*tx_beacon_cmd
));
326 tx_beacon_cmd
->tx
.sta_id
= priv
->hw_params
.bcast_sta_id
;
327 tx_beacon_cmd
->tx
.stop_time
.life_time
= TX_CMD_LIFE_TIME_INFINITE
;
329 frame_size
= iwl_fill_beacon_frame(priv
, tx_beacon_cmd
->frame
,
330 sizeof(frame
->u
) - sizeof(*tx_beacon_cmd
));
332 BUG_ON(frame_size
> MAX_MPDU_SIZE
);
333 tx_beacon_cmd
->tx
.len
= cpu_to_le16((u16
)frame_size
);
335 if ((rate
== IWL_RATE_1M_PLCP
) || (rate
>= IWL_RATE_2M_PLCP
))
336 tx_beacon_cmd
->tx
.rate_n_flags
=
337 iwl_hw_set_rate_n_flags(rate
, RATE_MCS_CCK_MSK
);
339 tx_beacon_cmd
->tx
.rate_n_flags
=
340 iwl_hw_set_rate_n_flags(rate
, 0);
342 tx_beacon_cmd
->tx
.tx_flags
= TX_CMD_FLG_SEQ_CTL_MSK
|
344 TX_CMD_FLG_STA_RATE_MSK
;
346 return sizeof(*tx_beacon_cmd
) + frame_size
;
348 static int iwl_send_beacon_cmd(struct iwl_priv
*priv
)
350 struct iwl_frame
*frame
;
351 unsigned int frame_size
;
355 frame
= iwl_get_free_frame(priv
);
358 IWL_ERR(priv
, "Could not obtain free frame buffer for beacon "
363 rate
= iwl_rate_get_lowest_plcp(priv
);
365 frame_size
= iwl_hw_get_beacon_cmd(priv
, frame
, rate
);
367 rc
= iwl_send_cmd_pdu(priv
, REPLY_TX_BEACON
, frame_size
,
370 iwl_free_frame(priv
, frame
);
375 static inline dma_addr_t
iwl_tfd_tb_get_addr(struct iwl_tfd
*tfd
, u8 idx
)
377 struct iwl_tfd_tb
*tb
= &tfd
->tbs
[idx
];
379 dma_addr_t addr
= get_unaligned_le32(&tb
->lo
);
380 if (sizeof(dma_addr_t
) > sizeof(u32
))
382 ((dma_addr_t
)(le16_to_cpu(tb
->hi_n_len
) & 0xF) << 16) << 16;
387 static inline u16
iwl_tfd_tb_get_len(struct iwl_tfd
*tfd
, u8 idx
)
389 struct iwl_tfd_tb
*tb
= &tfd
->tbs
[idx
];
391 return le16_to_cpu(tb
->hi_n_len
) >> 4;
394 static inline void iwl_tfd_set_tb(struct iwl_tfd
*tfd
, u8 idx
,
395 dma_addr_t addr
, u16 len
)
397 struct iwl_tfd_tb
*tb
= &tfd
->tbs
[idx
];
398 u16 hi_n_len
= len
<< 4;
400 put_unaligned_le32(addr
, &tb
->lo
);
401 if (sizeof(dma_addr_t
) > sizeof(u32
))
402 hi_n_len
|= ((addr
>> 16) >> 16) & 0xF;
404 tb
->hi_n_len
= cpu_to_le16(hi_n_len
);
406 tfd
->num_tbs
= idx
+ 1;
409 static inline u8
iwl_tfd_get_num_tbs(struct iwl_tfd
*tfd
)
411 return tfd
->num_tbs
& 0x1f;
415 * iwl_hw_txq_free_tfd - Free all chunks referenced by TFD [txq->q.read_ptr]
416 * @priv - driver private data
419 * Does NOT advance any TFD circular buffer read/write indexes
420 * Does NOT free the TFD itself (which is within circular buffer)
422 void iwl_hw_txq_free_tfd(struct iwl_priv
*priv
, struct iwl_tx_queue
*txq
)
424 struct iwl_tfd
*tfd_tmp
= (struct iwl_tfd
*)txq
->tfds
;
426 struct pci_dev
*dev
= priv
->pci_dev
;
427 int index
= txq
->q
.read_ptr
;
431 tfd
= &tfd_tmp
[index
];
433 /* Sanity check on number of chunks */
434 num_tbs
= iwl_tfd_get_num_tbs(tfd
);
436 if (num_tbs
>= IWL_NUM_OF_TBS
) {
437 IWL_ERR(priv
, "Too many chunks: %i\n", num_tbs
);
438 /* @todo issue fatal error, it is quite serious situation */
444 pci_unmap_single(dev
,
445 pci_unmap_addr(&txq
->cmd
[index
]->meta
, mapping
),
446 pci_unmap_len(&txq
->cmd
[index
]->meta
, len
),
447 PCI_DMA_BIDIRECTIONAL
);
449 /* Unmap chunks, if any. */
450 for (i
= 1; i
< num_tbs
; i
++) {
451 pci_unmap_single(dev
, iwl_tfd_tb_get_addr(tfd
, i
),
452 iwl_tfd_tb_get_len(tfd
, i
), PCI_DMA_TODEVICE
);
455 dev_kfree_skb(txq
->txb
[txq
->q
.read_ptr
].skb
[i
- 1]);
456 txq
->txb
[txq
->q
.read_ptr
].skb
[i
- 1] = NULL
;
461 int iwl_hw_txq_attach_buf_to_tfd(struct iwl_priv
*priv
,
462 struct iwl_tx_queue
*txq
,
463 dma_addr_t addr
, u16 len
,
467 struct iwl_tfd
*tfd
, *tfd_tmp
;
471 tfd_tmp
= (struct iwl_tfd
*)txq
->tfds
;
472 tfd
= &tfd_tmp
[q
->write_ptr
];
475 memset(tfd
, 0, sizeof(*tfd
));
477 num_tbs
= iwl_tfd_get_num_tbs(tfd
);
479 /* Each TFD can point to a maximum 20 Tx buffers */
480 if (num_tbs
>= IWL_NUM_OF_TBS
) {
481 IWL_ERR(priv
, "Error can not send more than %d chunks\n",
486 BUG_ON(addr
& ~DMA_BIT_MASK(36));
487 if (unlikely(addr
& ~IWL_TX_DMA_MASK
))
488 IWL_ERR(priv
, "Unaligned address = %llx\n",
489 (unsigned long long)addr
);
491 iwl_tfd_set_tb(tfd
, num_tbs
, addr
, len
);
497 * Tell nic where to find circular buffer of Tx Frame Descriptors for
498 * given Tx queue, and enable the DMA channel used for that queue.
500 * 4965 supports up to 16 Tx queues in DRAM, mapped to up to 8 Tx DMA
501 * channels supported in hardware.
503 int iwl_hw_tx_queue_init(struct iwl_priv
*priv
,
504 struct iwl_tx_queue
*txq
)
508 int txq_id
= txq
->q
.id
;
510 spin_lock_irqsave(&priv
->lock
, flags
);
511 ret
= iwl_grab_nic_access(priv
);
513 spin_unlock_irqrestore(&priv
->lock
, flags
);
517 /* Circular buffer (TFD queue in DRAM) physical base address */
518 iwl_write_direct32(priv
, FH_MEM_CBBC_QUEUE(txq_id
),
519 txq
->q
.dma_addr
>> 8);
521 iwl_release_nic_access(priv
);
522 spin_unlock_irqrestore(&priv
->lock
, flags
);
528 /******************************************************************************
530 * Misc. internal state and helper functions
532 ******************************************************************************/
534 #define MAX_UCODE_BEACON_INTERVAL 4096
536 static u16
iwl_adjust_beacon_interval(u16 beacon_val
)
539 u16 beacon_factor
= 0;
541 beacon_factor
= (beacon_val
+ MAX_UCODE_BEACON_INTERVAL
)
542 / MAX_UCODE_BEACON_INTERVAL
;
543 new_val
= beacon_val
/ beacon_factor
;
546 new_val
= MAX_UCODE_BEACON_INTERVAL
;
551 static void iwl_setup_rxon_timing(struct iwl_priv
*priv
)
554 s32 interval_tm
, rem
;
556 struct ieee80211_conf
*conf
= NULL
;
559 conf
= ieee80211_get_hw_conf(priv
->hw
);
561 spin_lock_irqsave(&priv
->lock
, flags
);
562 priv
->rxon_timing
.timestamp
= cpu_to_le64(priv
->timestamp
);
563 priv
->rxon_timing
.listen_interval
= cpu_to_le16(conf
->listen_interval
);
565 if (priv
->iw_mode
== NL80211_IFTYPE_STATION
) {
566 beacon_int
= iwl_adjust_beacon_interval(priv
->beacon_int
);
567 priv
->rxon_timing
.atim_window
= 0;
569 beacon_int
= iwl_adjust_beacon_interval(
570 priv
->vif
->bss_conf
.beacon_int
);
572 /* TODO: we need to get atim_window from upper stack
573 * for now we set to 0 */
574 priv
->rxon_timing
.atim_window
= 0;
577 priv
->rxon_timing
.beacon_interval
= cpu_to_le16(beacon_int
);
579 tsf
= priv
->timestamp
; /* tsf is modifed by do_div: copy it */
580 interval_tm
= beacon_int
* 1024;
581 rem
= do_div(tsf
, interval_tm
);
582 priv
->rxon_timing
.beacon_init_val
= cpu_to_le32(interval_tm
- rem
);
584 spin_unlock_irqrestore(&priv
->lock
, flags
);
585 IWL_DEBUG_ASSOC(priv
, "beacon interval %d beacon timer %d beacon tim %d\n",
586 le16_to_cpu(priv
->rxon_timing
.beacon_interval
),
587 le32_to_cpu(priv
->rxon_timing
.beacon_init_val
),
588 le16_to_cpu(priv
->rxon_timing
.atim_window
));
591 /******************************************************************************
593 * Generic RX handler implementations
595 ******************************************************************************/
596 static void iwl_rx_reply_alive(struct iwl_priv
*priv
,
597 struct iwl_rx_mem_buffer
*rxb
)
599 struct iwl_rx_packet
*pkt
= (struct iwl_rx_packet
*)rxb
->skb
->data
;
600 struct iwl_alive_resp
*palive
;
601 struct delayed_work
*pwork
;
603 palive
= &pkt
->u
.alive_frame
;
605 IWL_DEBUG_INFO(priv
, "Alive ucode status 0x%08X revision "
607 palive
->is_valid
, palive
->ver_type
,
608 palive
->ver_subtype
);
610 if (palive
->ver_subtype
== INITIALIZE_SUBTYPE
) {
611 IWL_DEBUG_INFO(priv
, "Initialization Alive received.\n");
612 memcpy(&priv
->card_alive_init
,
614 sizeof(struct iwl_init_alive_resp
));
615 pwork
= &priv
->init_alive_start
;
617 IWL_DEBUG_INFO(priv
, "Runtime Alive received.\n");
618 memcpy(&priv
->card_alive
, &pkt
->u
.alive_frame
,
619 sizeof(struct iwl_alive_resp
));
620 pwork
= &priv
->alive_start
;
623 /* We delay the ALIVE response by 5ms to
624 * give the HW RF Kill time to activate... */
625 if (palive
->is_valid
== UCODE_VALID_OK
)
626 queue_delayed_work(priv
->workqueue
, pwork
,
627 msecs_to_jiffies(5));
629 IWL_WARN(priv
, "uCode did not respond OK.\n");
632 static void iwl_bg_beacon_update(struct work_struct
*work
)
634 struct iwl_priv
*priv
=
635 container_of(work
, struct iwl_priv
, beacon_update
);
636 struct sk_buff
*beacon
;
638 /* Pull updated AP beacon from mac80211. will fail if not in AP mode */
639 beacon
= ieee80211_beacon_get(priv
->hw
, priv
->vif
);
642 IWL_ERR(priv
, "update beacon failed\n");
646 mutex_lock(&priv
->mutex
);
647 /* new beacon skb is allocated every time; dispose previous.*/
648 if (priv
->ibss_beacon
)
649 dev_kfree_skb(priv
->ibss_beacon
);
651 priv
->ibss_beacon
= beacon
;
652 mutex_unlock(&priv
->mutex
);
654 iwl_send_beacon_cmd(priv
);
658 * iwl_bg_statistics_periodic - Timer callback to queue statistics
660 * This callback is provided in order to send a statistics request.
662 * This timer function is continually reset to execute within
663 * REG_RECALIB_PERIOD seconds since the last STATISTICS_NOTIFICATION
664 * was received. We need to ensure we receive the statistics in order
665 * to update the temperature used for calibrating the TXPOWER.
667 static void iwl_bg_statistics_periodic(unsigned long data
)
669 struct iwl_priv
*priv
= (struct iwl_priv
*)data
;
671 if (test_bit(STATUS_EXIT_PENDING
, &priv
->status
))
674 /* dont send host command if rf-kill is on */
675 if (!iwl_is_ready_rf(priv
))
678 iwl_send_statistics_request(priv
, CMD_ASYNC
);
681 static void iwl_rx_beacon_notif(struct iwl_priv
*priv
,
682 struct iwl_rx_mem_buffer
*rxb
)
684 #ifdef CONFIG_IWLWIFI_DEBUG
685 struct iwl_rx_packet
*pkt
= (struct iwl_rx_packet
*)rxb
->skb
->data
;
686 struct iwl4965_beacon_notif
*beacon
=
687 (struct iwl4965_beacon_notif
*)pkt
->u
.raw
;
688 u8 rate
= iwl_hw_get_rate(beacon
->beacon_notify_hdr
.rate_n_flags
);
690 IWL_DEBUG_RX(priv
, "beacon status %x retries %d iss %d "
691 "tsf %d %d rate %d\n",
692 le32_to_cpu(beacon
->beacon_notify_hdr
.u
.status
) & TX_STATUS_MSK
,
693 beacon
->beacon_notify_hdr
.failure_frame
,
694 le32_to_cpu(beacon
->ibss_mgr_status
),
695 le32_to_cpu(beacon
->high_tsf
),
696 le32_to_cpu(beacon
->low_tsf
), rate
);
699 if ((priv
->iw_mode
== NL80211_IFTYPE_AP
) &&
700 (!test_bit(STATUS_EXIT_PENDING
, &priv
->status
)))
701 queue_work(priv
->workqueue
, &priv
->beacon_update
);
704 /* Handle notification from uCode that card's power state is changing
705 * due to software, hardware, or critical temperature RFKILL */
706 static void iwl_rx_card_state_notif(struct iwl_priv
*priv
,
707 struct iwl_rx_mem_buffer
*rxb
)
709 struct iwl_rx_packet
*pkt
= (struct iwl_rx_packet
*)rxb
->skb
->data
;
710 u32 flags
= le32_to_cpu(pkt
->u
.card_state_notif
.flags
);
711 unsigned long status
= priv
->status
;
713 IWL_DEBUG_RF_KILL(priv
, "Card state received: HW:%s SW:%s\n",
714 (flags
& HW_CARD_DISABLED
) ? "Kill" : "On",
715 (flags
& SW_CARD_DISABLED
) ? "Kill" : "On");
717 if (flags
& (SW_CARD_DISABLED
| HW_CARD_DISABLED
|
720 iwl_write32(priv
, CSR_UCODE_DRV_GP1_SET
,
721 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED
);
723 if (!iwl_grab_nic_access(priv
)) {
725 priv
, HBUS_TARG_MBX_C
,
726 HBUS_TARG_MBX_C_REG_BIT_CMD_BLOCKED
);
728 iwl_release_nic_access(priv
);
731 if (!(flags
& RXON_CARD_DISABLED
)) {
732 iwl_write32(priv
, CSR_UCODE_DRV_GP1_CLR
,
733 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED
);
734 if (!iwl_grab_nic_access(priv
)) {
736 priv
, HBUS_TARG_MBX_C
,
737 HBUS_TARG_MBX_C_REG_BIT_CMD_BLOCKED
);
739 iwl_release_nic_access(priv
);
743 if (flags
& RF_CARD_DISABLED
) {
744 iwl_write32(priv
, CSR_UCODE_DRV_GP1_SET
,
745 CSR_UCODE_DRV_GP1_REG_BIT_CT_KILL_EXIT
);
746 iwl_read32(priv
, CSR_UCODE_DRV_GP1
);
747 if (!iwl_grab_nic_access(priv
))
748 iwl_release_nic_access(priv
);
752 if (flags
& HW_CARD_DISABLED
)
753 set_bit(STATUS_RF_KILL_HW
, &priv
->status
);
755 clear_bit(STATUS_RF_KILL_HW
, &priv
->status
);
758 if (flags
& SW_CARD_DISABLED
)
759 set_bit(STATUS_RF_KILL_SW
, &priv
->status
);
761 clear_bit(STATUS_RF_KILL_SW
, &priv
->status
);
763 if (!(flags
& RXON_CARD_DISABLED
))
764 iwl_scan_cancel(priv
);
766 if ((test_bit(STATUS_RF_KILL_HW
, &status
) !=
767 test_bit(STATUS_RF_KILL_HW
, &priv
->status
)) ||
768 (test_bit(STATUS_RF_KILL_SW
, &status
) !=
769 test_bit(STATUS_RF_KILL_SW
, &priv
->status
)))
770 queue_work(priv
->workqueue
, &priv
->rf_kill
);
772 wake_up_interruptible(&priv
->wait_command_queue
);
775 int iwl_set_pwr_src(struct iwl_priv
*priv
, enum iwl_pwr_src src
)
780 spin_lock_irqsave(&priv
->lock
, flags
);
781 ret
= iwl_grab_nic_access(priv
);
785 if (src
== IWL_PWR_SRC_VAUX
) {
786 if (pci_pme_capable(priv
->pci_dev
, PCI_D3cold
))
787 iwl_set_bits_mask_prph(priv
, APMG_PS_CTRL_REG
,
788 APMG_PS_CTRL_VAL_PWR_SRC_VAUX
,
789 ~APMG_PS_CTRL_MSK_PWR_SRC
);
791 iwl_set_bits_mask_prph(priv
, APMG_PS_CTRL_REG
,
792 APMG_PS_CTRL_VAL_PWR_SRC_VMAIN
,
793 ~APMG_PS_CTRL_MSK_PWR_SRC
);
796 iwl_release_nic_access(priv
);
798 spin_unlock_irqrestore(&priv
->lock
, flags
);
803 * iwl_setup_rx_handlers - Initialize Rx handler callbacks
805 * Setup the RX handlers for each of the reply types sent from the uCode
808 * This function chains into the hardware specific files for them to setup
809 * any hardware specific handlers as well.
811 static void iwl_setup_rx_handlers(struct iwl_priv
*priv
)
813 priv
->rx_handlers
[REPLY_ALIVE
] = iwl_rx_reply_alive
;
814 priv
->rx_handlers
[REPLY_ERROR
] = iwl_rx_reply_error
;
815 priv
->rx_handlers
[CHANNEL_SWITCH_NOTIFICATION
] = iwl_rx_csa
;
816 priv
->rx_handlers
[PM_SLEEP_NOTIFICATION
] = iwl_rx_pm_sleep_notif
;
817 priv
->rx_handlers
[PM_DEBUG_STATISTIC_NOTIFIC
] =
818 iwl_rx_pm_debug_statistics_notif
;
819 priv
->rx_handlers
[BEACON_NOTIFICATION
] = iwl_rx_beacon_notif
;
822 * The same handler is used for both the REPLY to a discrete
823 * statistics request from the host as well as for the periodic
824 * statistics notifications (after received beacons) from the uCode.
826 priv
->rx_handlers
[REPLY_STATISTICS_CMD
] = iwl_rx_statistics
;
827 priv
->rx_handlers
[STATISTICS_NOTIFICATION
] = iwl_rx_statistics
;
829 iwl_setup_spectrum_handlers(priv
);
830 iwl_setup_rx_scan_handlers(priv
);
832 /* status change handler */
833 priv
->rx_handlers
[CARD_STATE_NOTIFICATION
] = iwl_rx_card_state_notif
;
835 priv
->rx_handlers
[MISSED_BEACONS_NOTIFICATION
] =
836 iwl_rx_missed_beacon_notif
;
838 priv
->rx_handlers
[REPLY_RX_PHY_CMD
] = iwl_rx_reply_rx_phy
;
839 priv
->rx_handlers
[REPLY_RX_MPDU_CMD
] = iwl_rx_reply_rx
;
841 priv
->rx_handlers
[REPLY_COMPRESSED_BA
] = iwl_rx_reply_compressed_ba
;
842 /* Set up hardware specific Rx handlers */
843 priv
->cfg
->ops
->lib
->rx_handler_setup(priv
);
847 * iwl_rx_handle - Main entry function for receiving responses from uCode
849 * Uses the priv->rx_handlers callback function array to invoke
850 * the appropriate handlers, including command responses,
851 * frame-received notifications, and other notifications.
853 void iwl_rx_handle(struct iwl_priv
*priv
)
855 struct iwl_rx_mem_buffer
*rxb
;
856 struct iwl_rx_packet
*pkt
;
857 struct iwl_rx_queue
*rxq
= &priv
->rxq
;
864 /* uCode's read index (stored in shared DRAM) indicates the last Rx
865 * buffer that the driver may process (last buffer filled by ucode). */
866 r
= le16_to_cpu(rxq
->rb_stts
->closed_rb_num
) & 0x0FFF;
869 /* Rx interrupt, but nothing sent from uCode */
871 IWL_DEBUG_RX(priv
, "r = %d, i = %d\n", r
, i
);
873 if (iwl_rx_queue_space(rxq
) > (RX_QUEUE_SIZE
/ 2))
879 /* If an RXB doesn't have a Rx queue slot associated with it,
880 * then a bug has been introduced in the queue refilling
881 * routines -- catch it here */
884 rxq
->queue
[i
] = NULL
;
886 pci_unmap_single(priv
->pci_dev
, rxb
->real_dma_addr
,
887 priv
->hw_params
.rx_buf_size
+ 256,
889 pkt
= (struct iwl_rx_packet
*)rxb
->skb
->data
;
891 /* Reclaim a command buffer only if this packet is a response
892 * to a (driver-originated) command.
893 * If the packet (e.g. Rx frame) originated from uCode,
894 * there is no command buffer to reclaim.
895 * Ucode should set SEQ_RX_FRAME bit if ucode-originated,
896 * but apparently a few don't get set; catch them here. */
897 reclaim
= !(pkt
->hdr
.sequence
& SEQ_RX_FRAME
) &&
898 (pkt
->hdr
.cmd
!= REPLY_RX_PHY_CMD
) &&
899 (pkt
->hdr
.cmd
!= REPLY_RX
) &&
900 (pkt
->hdr
.cmd
!= REPLY_RX_MPDU_CMD
) &&
901 (pkt
->hdr
.cmd
!= REPLY_COMPRESSED_BA
) &&
902 (pkt
->hdr
.cmd
!= STATISTICS_NOTIFICATION
) &&
903 (pkt
->hdr
.cmd
!= REPLY_TX
);
905 /* Based on type of command response or notification,
906 * handle those that need handling via function in
907 * rx_handlers table. See iwl_setup_rx_handlers() */
908 if (priv
->rx_handlers
[pkt
->hdr
.cmd
]) {
909 IWL_DEBUG_RX(priv
, "r = %d, i = %d, %s, 0x%02x\n", r
,
910 i
, get_cmd_string(pkt
->hdr
.cmd
), pkt
->hdr
.cmd
);
911 priv
->rx_handlers
[pkt
->hdr
.cmd
] (priv
, rxb
);
912 priv
->isr_stats
.rx_handlers
[pkt
->hdr
.cmd
]++;
914 /* No handling needed */
916 "r %d i %d No handler needed for %s, 0x%02x\n",
917 r
, i
, get_cmd_string(pkt
->hdr
.cmd
),
922 /* Invoke any callbacks, transfer the skb to caller, and
923 * fire off the (possibly) blocking iwl_send_cmd()
924 * as we reclaim the driver command queue */
926 iwl_tx_cmd_complete(priv
, rxb
);
928 IWL_WARN(priv
, "Claim null rxb?\n");
931 /* For now we just don't re-use anything. We can tweak this
932 * later to try and re-use notification packets and SKBs that
933 * fail to Rx correctly */
934 if (rxb
->skb
!= NULL
) {
935 priv
->alloc_rxb_skb
--;
936 dev_kfree_skb_any(rxb
->skb
);
940 spin_lock_irqsave(&rxq
->lock
, flags
);
941 list_add_tail(&rxb
->list
, &priv
->rxq
.rx_used
);
942 spin_unlock_irqrestore(&rxq
->lock
, flags
);
943 i
= (i
+ 1) & RX_QUEUE_MASK
;
944 /* If there are a lot of unused frames,
945 * restock the Rx queue so ucode wont assert. */
950 iwl_rx_queue_restock(priv
);
956 /* Backtrack one entry */
958 iwl_rx_queue_restock(priv
);
961 /* call this function to flush any scheduled tasklet */
962 static inline void iwl_synchronize_irq(struct iwl_priv
*priv
)
964 /* wait to make sure we flush pending tasklet*/
965 synchronize_irq(priv
->pci_dev
->irq
);
966 tasklet_kill(&priv
->irq_tasklet
);
969 static void iwl_irq_tasklet(struct iwl_priv
*priv
)
971 u32 inta
, handled
= 0;
974 #ifdef CONFIG_IWLWIFI_DEBUG
978 spin_lock_irqsave(&priv
->lock
, flags
);
980 /* Ack/clear/reset pending uCode interrupts.
981 * Note: Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS,
982 * and will clear only when CSR_FH_INT_STATUS gets cleared. */
983 inta
= iwl_read32(priv
, CSR_INT
);
984 iwl_write32(priv
, CSR_INT
, inta
);
986 /* Ack/clear/reset pending flow-handler (DMA) interrupts.
987 * Any new interrupts that happen after this, either while we're
988 * in this tasklet, or later, will show up in next ISR/tasklet. */
989 inta_fh
= iwl_read32(priv
, CSR_FH_INT_STATUS
);
990 iwl_write32(priv
, CSR_FH_INT_STATUS
, inta_fh
);
992 #ifdef CONFIG_IWLWIFI_DEBUG
993 if (priv
->debug_level
& IWL_DL_ISR
) {
995 inta_mask
= iwl_read32(priv
, CSR_INT_MASK
);
996 IWL_DEBUG_ISR(priv
, "inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
997 inta
, inta_mask
, inta_fh
);
1001 /* Since CSR_INT and CSR_FH_INT_STATUS reads and clears are not
1002 * atomic, make sure that inta covers all the interrupts that
1003 * we've discovered, even if FH interrupt came in just after
1004 * reading CSR_INT. */
1005 if (inta_fh
& CSR49_FH_INT_RX_MASK
)
1006 inta
|= CSR_INT_BIT_FH_RX
;
1007 if (inta_fh
& CSR49_FH_INT_TX_MASK
)
1008 inta
|= CSR_INT_BIT_FH_TX
;
1010 /* Now service all interrupt bits discovered above. */
1011 if (inta
& CSR_INT_BIT_HW_ERR
) {
1012 IWL_ERR(priv
, "Microcode HW error detected. Restarting.\n");
1014 /* Tell the device to stop sending interrupts */
1015 iwl_disable_interrupts(priv
);
1017 priv
->isr_stats
.hw
++;
1018 iwl_irq_handle_error(priv
);
1020 handled
|= CSR_INT_BIT_HW_ERR
;
1022 spin_unlock_irqrestore(&priv
->lock
, flags
);
1027 #ifdef CONFIG_IWLWIFI_DEBUG
1028 if (priv
->debug_level
& (IWL_DL_ISR
)) {
1029 /* NIC fires this, but we don't use it, redundant with WAKEUP */
1030 if (inta
& CSR_INT_BIT_SCD
) {
1031 IWL_DEBUG_ISR(priv
, "Scheduler finished to transmit "
1032 "the frame/frames.\n");
1033 priv
->isr_stats
.sch
++;
1036 /* Alive notification via Rx interrupt will do the real work */
1037 if (inta
& CSR_INT_BIT_ALIVE
) {
1038 IWL_DEBUG_ISR(priv
, "Alive interrupt\n");
1039 priv
->isr_stats
.alive
++;
1043 /* Safely ignore these bits for debug checks below */
1044 inta
&= ~(CSR_INT_BIT_SCD
| CSR_INT_BIT_ALIVE
);
1046 /* HW RF KILL switch toggled */
1047 if (inta
& CSR_INT_BIT_RF_KILL
) {
1049 if (!(iwl_read32(priv
, CSR_GP_CNTRL
) &
1050 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW
))
1053 IWL_DEBUG_RF_KILL(priv
, "RF_KILL bit toggled to %s.\n",
1054 hw_rf_kill
? "disable radio" : "enable radio");
1056 priv
->isr_stats
.rfkill
++;
1058 /* driver only loads ucode once setting the interface up.
1059 * the driver allows loading the ucode even if the radio
1060 * is killed. Hence update the killswitch state here. The
1061 * rfkill handler will care about restarting if needed.
1063 if (!test_bit(STATUS_ALIVE
, &priv
->status
)) {
1065 set_bit(STATUS_RF_KILL_HW
, &priv
->status
);
1067 clear_bit(STATUS_RF_KILL_HW
, &priv
->status
);
1068 queue_work(priv
->workqueue
, &priv
->rf_kill
);
1071 handled
|= CSR_INT_BIT_RF_KILL
;
1074 /* Chip got too hot and stopped itself */
1075 if (inta
& CSR_INT_BIT_CT_KILL
) {
1076 IWL_ERR(priv
, "Microcode CT kill error detected.\n");
1077 priv
->isr_stats
.ctkill
++;
1078 handled
|= CSR_INT_BIT_CT_KILL
;
1081 /* Error detected by uCode */
1082 if (inta
& CSR_INT_BIT_SW_ERR
) {
1083 IWL_ERR(priv
, "Microcode SW error detected. "
1084 " Restarting 0x%X.\n", inta
);
1085 priv
->isr_stats
.sw
++;
1086 priv
->isr_stats
.sw_err
= inta
;
1087 iwl_irq_handle_error(priv
);
1088 handled
|= CSR_INT_BIT_SW_ERR
;
1091 /* uCode wakes up after power-down sleep */
1092 if (inta
& CSR_INT_BIT_WAKEUP
) {
1093 IWL_DEBUG_ISR(priv
, "Wakeup interrupt\n");
1094 iwl_rx_queue_update_write_ptr(priv
, &priv
->rxq
);
1095 iwl_txq_update_write_ptr(priv
, &priv
->txq
[0]);
1096 iwl_txq_update_write_ptr(priv
, &priv
->txq
[1]);
1097 iwl_txq_update_write_ptr(priv
, &priv
->txq
[2]);
1098 iwl_txq_update_write_ptr(priv
, &priv
->txq
[3]);
1099 iwl_txq_update_write_ptr(priv
, &priv
->txq
[4]);
1100 iwl_txq_update_write_ptr(priv
, &priv
->txq
[5]);
1102 priv
->isr_stats
.wakeup
++;
1104 handled
|= CSR_INT_BIT_WAKEUP
;
1107 /* All uCode command responses, including Tx command responses,
1108 * Rx "responses" (frame-received notification), and other
1109 * notifications from uCode come through here*/
1110 if (inta
& (CSR_INT_BIT_FH_RX
| CSR_INT_BIT_SW_RX
)) {
1111 iwl_rx_handle(priv
);
1112 priv
->isr_stats
.rx
++;
1113 handled
|= (CSR_INT_BIT_FH_RX
| CSR_INT_BIT_SW_RX
);
1116 if (inta
& CSR_INT_BIT_FH_TX
) {
1117 IWL_DEBUG_ISR(priv
, "Tx interrupt\n");
1118 priv
->isr_stats
.tx
++;
1119 handled
|= CSR_INT_BIT_FH_TX
;
1120 /* FH finished to write, send event */
1121 priv
->ucode_write_complete
= 1;
1122 wake_up_interruptible(&priv
->wait_command_queue
);
1125 if (inta
& ~handled
) {
1126 IWL_ERR(priv
, "Unhandled INTA bits 0x%08x\n", inta
& ~handled
);
1127 priv
->isr_stats
.unhandled
++;
1130 if (inta
& ~CSR_INI_SET_MASK
) {
1131 IWL_WARN(priv
, "Disabled INTA bits 0x%08x were pending\n",
1132 inta
& ~CSR_INI_SET_MASK
);
1133 IWL_WARN(priv
, " with FH_INT = 0x%08x\n", inta_fh
);
1136 /* Re-enable all interrupts */
1137 /* only Re-enable if diabled by irq */
1138 if (test_bit(STATUS_INT_ENABLED
, &priv
->status
))
1139 iwl_enable_interrupts(priv
);
1141 #ifdef CONFIG_IWLWIFI_DEBUG
1142 if (priv
->debug_level
& (IWL_DL_ISR
)) {
1143 inta
= iwl_read32(priv
, CSR_INT
);
1144 inta_mask
= iwl_read32(priv
, CSR_INT_MASK
);
1145 inta_fh
= iwl_read32(priv
, CSR_FH_INT_STATUS
);
1146 IWL_DEBUG_ISR(priv
, "End inta 0x%08x, enabled 0x%08x, fh 0x%08x, "
1147 "flags 0x%08lx\n", inta
, inta_mask
, inta_fh
, flags
);
1150 spin_unlock_irqrestore(&priv
->lock
, flags
);
1154 /******************************************************************************
1156 * uCode download functions
1158 ******************************************************************************/
1160 static void iwl_dealloc_ucode_pci(struct iwl_priv
*priv
)
1162 iwl_free_fw_desc(priv
->pci_dev
, &priv
->ucode_code
);
1163 iwl_free_fw_desc(priv
->pci_dev
, &priv
->ucode_data
);
1164 iwl_free_fw_desc(priv
->pci_dev
, &priv
->ucode_data_backup
);
1165 iwl_free_fw_desc(priv
->pci_dev
, &priv
->ucode_init
);
1166 iwl_free_fw_desc(priv
->pci_dev
, &priv
->ucode_init_data
);
1167 iwl_free_fw_desc(priv
->pci_dev
, &priv
->ucode_boot
);
1170 static void iwl_nic_start(struct iwl_priv
*priv
)
1172 /* Remove all resets to allow NIC to operate */
1173 iwl_write32(priv
, CSR_RESET
, 0);
1178 * iwl_read_ucode - Read uCode images from disk file.
1180 * Copy into buffers for card to fetch via bus-mastering
1182 static int iwl_read_ucode(struct iwl_priv
*priv
)
1184 struct iwl_ucode
*ucode
;
1185 int ret
= -EINVAL
, index
;
1186 const struct firmware
*ucode_raw
;
1187 const char *name_pre
= priv
->cfg
->fw_name_pre
;
1188 const unsigned int api_max
= priv
->cfg
->ucode_api_max
;
1189 const unsigned int api_min
= priv
->cfg
->ucode_api_min
;
1193 u32 api_ver
, inst_size
, data_size
, init_size
, init_data_size
, boot_size
;
1195 /* Ask kernel firmware_class module to get the boot firmware off disk.
1196 * request_firmware() is synchronous, file is in memory on return. */
1197 for (index
= api_max
; index
>= api_min
; index
--) {
1198 sprintf(buf
, "%s%d%s", name_pre
, index
, ".ucode");
1199 ret
= request_firmware(&ucode_raw
, buf
, &priv
->pci_dev
->dev
);
1201 IWL_ERR(priv
, "%s firmware file req failed: %d\n",
1208 if (index
< api_max
)
1209 IWL_ERR(priv
, "Loaded firmware %s, "
1210 "which is deprecated. "
1211 "Please use API v%u instead.\n",
1214 IWL_DEBUG_INFO(priv
, "Got firmware '%s' file (%zd bytes) from disk\n",
1215 buf
, ucode_raw
->size
);
1223 /* Make sure that we got at least our header! */
1224 if (ucode_raw
->size
< sizeof(*ucode
)) {
1225 IWL_ERR(priv
, "File size way too small!\n");
1230 /* Data from ucode file: header followed by uCode images */
1231 ucode
= (void *)ucode_raw
->data
;
1233 priv
->ucode_ver
= le32_to_cpu(ucode
->ver
);
1234 api_ver
= IWL_UCODE_API(priv
->ucode_ver
);
1235 inst_size
= le32_to_cpu(ucode
->inst_size
);
1236 data_size
= le32_to_cpu(ucode
->data_size
);
1237 init_size
= le32_to_cpu(ucode
->init_size
);
1238 init_data_size
= le32_to_cpu(ucode
->init_data_size
);
1239 boot_size
= le32_to_cpu(ucode
->boot_size
);
1241 /* api_ver should match the api version forming part of the
1242 * firmware filename ... but we don't check for that and only rely
1243 * on the API version read from firmware header from here on forward */
1245 if (api_ver
< api_min
|| api_ver
> api_max
) {
1246 IWL_ERR(priv
, "Driver unable to support your firmware API. "
1247 "Driver supports v%u, firmware is v%u.\n",
1249 priv
->ucode_ver
= 0;
1253 if (api_ver
!= api_max
)
1254 IWL_ERR(priv
, "Firmware has old API version. Expected v%u, "
1255 "got v%u. New firmware can be obtained "
1256 "from http://www.intellinuxwireless.org.\n",
1259 IWL_INFO(priv
, "loaded firmware version %u.%u.%u.%u\n",
1260 IWL_UCODE_MAJOR(priv
->ucode_ver
),
1261 IWL_UCODE_MINOR(priv
->ucode_ver
),
1262 IWL_UCODE_API(priv
->ucode_ver
),
1263 IWL_UCODE_SERIAL(priv
->ucode_ver
));
1265 IWL_DEBUG_INFO(priv
, "f/w package hdr ucode version raw = 0x%x\n",
1267 IWL_DEBUG_INFO(priv
, "f/w package hdr runtime inst size = %u\n",
1269 IWL_DEBUG_INFO(priv
, "f/w package hdr runtime data size = %u\n",
1271 IWL_DEBUG_INFO(priv
, "f/w package hdr init inst size = %u\n",
1273 IWL_DEBUG_INFO(priv
, "f/w package hdr init data size = %u\n",
1275 IWL_DEBUG_INFO(priv
, "f/w package hdr boot inst size = %u\n",
1278 /* Verify size of file vs. image size info in file's header */
1279 if (ucode_raw
->size
< sizeof(*ucode
) +
1280 inst_size
+ data_size
+ init_size
+
1281 init_data_size
+ boot_size
) {
1283 IWL_DEBUG_INFO(priv
, "uCode file size %d too small\n",
1284 (int)ucode_raw
->size
);
1289 /* Verify that uCode images will fit in card's SRAM */
1290 if (inst_size
> priv
->hw_params
.max_inst_size
) {
1291 IWL_DEBUG_INFO(priv
, "uCode instr len %d too large to fit in\n",
1297 if (data_size
> priv
->hw_params
.max_data_size
) {
1298 IWL_DEBUG_INFO(priv
, "uCode data len %d too large to fit in\n",
1303 if (init_size
> priv
->hw_params
.max_inst_size
) {
1304 IWL_INFO(priv
, "uCode init instr len %d too large to fit in\n",
1309 if (init_data_size
> priv
->hw_params
.max_data_size
) {
1310 IWL_INFO(priv
, "uCode init data len %d too large to fit in\n",
1315 if (boot_size
> priv
->hw_params
.max_bsm_size
) {
1316 IWL_INFO(priv
, "uCode boot instr len %d too large to fit in\n",
1322 /* Allocate ucode buffers for card's bus-master loading ... */
1324 /* Runtime instructions and 2 copies of data:
1325 * 1) unmodified from disk
1326 * 2) backup cache for save/restore during power-downs */
1327 priv
->ucode_code
.len
= inst_size
;
1328 iwl_alloc_fw_desc(priv
->pci_dev
, &priv
->ucode_code
);
1330 priv
->ucode_data
.len
= data_size
;
1331 iwl_alloc_fw_desc(priv
->pci_dev
, &priv
->ucode_data
);
1333 priv
->ucode_data_backup
.len
= data_size
;
1334 iwl_alloc_fw_desc(priv
->pci_dev
, &priv
->ucode_data_backup
);
1336 if (!priv
->ucode_code
.v_addr
|| !priv
->ucode_data
.v_addr
||
1337 !priv
->ucode_data_backup
.v_addr
)
1340 /* Initialization instructions and data */
1341 if (init_size
&& init_data_size
) {
1342 priv
->ucode_init
.len
= init_size
;
1343 iwl_alloc_fw_desc(priv
->pci_dev
, &priv
->ucode_init
);
1345 priv
->ucode_init_data
.len
= init_data_size
;
1346 iwl_alloc_fw_desc(priv
->pci_dev
, &priv
->ucode_init_data
);
1348 if (!priv
->ucode_init
.v_addr
|| !priv
->ucode_init_data
.v_addr
)
1352 /* Bootstrap (instructions only, no data) */
1354 priv
->ucode_boot
.len
= boot_size
;
1355 iwl_alloc_fw_desc(priv
->pci_dev
, &priv
->ucode_boot
);
1357 if (!priv
->ucode_boot
.v_addr
)
1361 /* Copy images into buffers for card's bus-master reads ... */
1363 /* Runtime instructions (first block of data in file) */
1364 src
= &ucode
->data
[0];
1365 len
= priv
->ucode_code
.len
;
1366 IWL_DEBUG_INFO(priv
, "Copying (but not loading) uCode instr len %Zd\n", len
);
1367 memcpy(priv
->ucode_code
.v_addr
, src
, len
);
1368 IWL_DEBUG_INFO(priv
, "uCode instr buf vaddr = 0x%p, paddr = 0x%08x\n",
1369 priv
->ucode_code
.v_addr
, (u32
)priv
->ucode_code
.p_addr
);
1371 /* Runtime data (2nd block)
1372 * NOTE: Copy into backup buffer will be done in iwl_up() */
1373 src
= &ucode
->data
[inst_size
];
1374 len
= priv
->ucode_data
.len
;
1375 IWL_DEBUG_INFO(priv
, "Copying (but not loading) uCode data len %Zd\n", len
);
1376 memcpy(priv
->ucode_data
.v_addr
, src
, len
);
1377 memcpy(priv
->ucode_data_backup
.v_addr
, src
, len
);
1379 /* Initialization instructions (3rd block) */
1381 src
= &ucode
->data
[inst_size
+ data_size
];
1382 len
= priv
->ucode_init
.len
;
1383 IWL_DEBUG_INFO(priv
, "Copying (but not loading) init instr len %Zd\n",
1385 memcpy(priv
->ucode_init
.v_addr
, src
, len
);
1388 /* Initialization data (4th block) */
1389 if (init_data_size
) {
1390 src
= &ucode
->data
[inst_size
+ data_size
+ init_size
];
1391 len
= priv
->ucode_init_data
.len
;
1392 IWL_DEBUG_INFO(priv
, "Copying (but not loading) init data len %Zd\n",
1394 memcpy(priv
->ucode_init_data
.v_addr
, src
, len
);
1397 /* Bootstrap instructions (5th block) */
1398 src
= &ucode
->data
[inst_size
+ data_size
+ init_size
+ init_data_size
];
1399 len
= priv
->ucode_boot
.len
;
1400 IWL_DEBUG_INFO(priv
, "Copying (but not loading) boot instr len %Zd\n", len
);
1401 memcpy(priv
->ucode_boot
.v_addr
, src
, len
);
1403 /* We have our copies now, allow OS release its copies */
1404 release_firmware(ucode_raw
);
1408 IWL_ERR(priv
, "failed to allocate pci memory\n");
1410 iwl_dealloc_ucode_pci(priv
);
1413 release_firmware(ucode_raw
);
1420 * iwl_alive_start - called after REPLY_ALIVE notification received
1421 * from protocol/runtime uCode (initialization uCode's
1422 * Alive gets handled by iwl_init_alive_start()).
1424 static void iwl_alive_start(struct iwl_priv
*priv
)
1428 IWL_DEBUG_INFO(priv
, "Runtime Alive received.\n");
1430 if (priv
->card_alive
.is_valid
!= UCODE_VALID_OK
) {
1431 /* We had an error bringing up the hardware, so take it
1432 * all the way back down so we can try again */
1433 IWL_DEBUG_INFO(priv
, "Alive failed.\n");
1437 /* Initialize uCode has loaded Runtime uCode ... verify inst image.
1438 * This is a paranoid check, because we would not have gotten the
1439 * "runtime" alive if code weren't properly loaded. */
1440 if (iwl_verify_ucode(priv
)) {
1441 /* Runtime instruction load was bad;
1442 * take it all the way back down so we can try again */
1443 IWL_DEBUG_INFO(priv
, "Bad runtime uCode load.\n");
1447 priv
->cfg
->ops
->smgmt
->clear_station_table(priv
);
1448 ret
= priv
->cfg
->ops
->lib
->alive_notify(priv
);
1451 "Could not complete ALIVE transition [ntf]: %d\n", ret
);
1455 /* After the ALIVE response, we can send host commands to the uCode */
1456 set_bit(STATUS_ALIVE
, &priv
->status
);
1458 if (iwl_is_rfkill(priv
))
1461 ieee80211_wake_queues(priv
->hw
);
1463 priv
->active_rate
= priv
->rates_mask
;
1464 priv
->active_rate_basic
= priv
->rates_mask
& IWL_BASIC_RATES_MASK
;
1466 if (iwl_is_associated(priv
)) {
1467 struct iwl_rxon_cmd
*active_rxon
=
1468 (struct iwl_rxon_cmd
*)&priv
->active_rxon
;
1469 /* apply any changes in staging */
1470 priv
->staging_rxon
.filter_flags
|= RXON_FILTER_ASSOC_MSK
;
1471 active_rxon
->filter_flags
&= ~RXON_FILTER_ASSOC_MSK
;
1473 /* Initialize our rx_config data */
1474 iwl_connection_init_rx_config(priv
, priv
->iw_mode
);
1476 if (priv
->cfg
->ops
->hcmd
->set_rxon_chain
)
1477 priv
->cfg
->ops
->hcmd
->set_rxon_chain(priv
);
1479 memcpy(priv
->staging_rxon
.node_addr
, priv
->mac_addr
, ETH_ALEN
);
1482 /* Configure Bluetooth device coexistence support */
1483 iwl_send_bt_config(priv
);
1485 iwl_reset_run_time_calib(priv
);
1487 /* Configure the adapter for unassociated operation */
1488 iwlcore_commit_rxon(priv
);
1490 /* At this point, the NIC is initialized and operational */
1491 iwl_rf_kill_ct_config(priv
);
1493 iwl_leds_register(priv
);
1495 IWL_DEBUG_INFO(priv
, "ALIVE processing complete.\n");
1496 set_bit(STATUS_READY
, &priv
->status
);
1497 wake_up_interruptible(&priv
->wait_command_queue
);
1499 iwl_power_update_mode(priv
, 1);
1501 /* reassociate for ADHOC mode */
1502 if (priv
->vif
&& (priv
->iw_mode
== NL80211_IFTYPE_ADHOC
)) {
1503 struct sk_buff
*beacon
= ieee80211_beacon_get(priv
->hw
,
1506 iwl_mac_beacon_update(priv
->hw
, beacon
);
1510 if (test_and_clear_bit(STATUS_MODE_PENDING
, &priv
->status
))
1511 iwl_set_mode(priv
, priv
->iw_mode
);
1516 queue_work(priv
->workqueue
, &priv
->restart
);
1519 static void iwl_cancel_deferred_work(struct iwl_priv
*priv
);
1521 static void __iwl_down(struct iwl_priv
*priv
)
1523 unsigned long flags
;
1524 int exit_pending
= test_bit(STATUS_EXIT_PENDING
, &priv
->status
);
1526 IWL_DEBUG_INFO(priv
, DRV_NAME
" is going down\n");
1529 set_bit(STATUS_EXIT_PENDING
, &priv
->status
);
1531 iwl_leds_unregister(priv
);
1533 priv
->cfg
->ops
->smgmt
->clear_station_table(priv
);
1535 /* Unblock any waiting calls */
1536 wake_up_interruptible_all(&priv
->wait_command_queue
);
1538 /* Wipe out the EXIT_PENDING status bit if we are not actually
1539 * exiting the module */
1541 clear_bit(STATUS_EXIT_PENDING
, &priv
->status
);
1543 /* stop and reset the on-board processor */
1544 iwl_write32(priv
, CSR_RESET
, CSR_RESET_REG_FLAG_NEVO_RESET
);
1546 /* tell the device to stop sending interrupts */
1547 spin_lock_irqsave(&priv
->lock
, flags
);
1548 iwl_disable_interrupts(priv
);
1549 spin_unlock_irqrestore(&priv
->lock
, flags
);
1550 iwl_synchronize_irq(priv
);
1552 if (priv
->mac80211_registered
)
1553 ieee80211_stop_queues(priv
->hw
);
1555 /* If we have not previously called iwl_init() then
1556 * clear all bits but the RF Kill bits and return */
1557 if (!iwl_is_init(priv
)) {
1558 priv
->status
= test_bit(STATUS_RF_KILL_HW
, &priv
->status
) <<
1560 test_bit(STATUS_RF_KILL_SW
, &priv
->status
) <<
1562 test_bit(STATUS_GEO_CONFIGURED
, &priv
->status
) <<
1563 STATUS_GEO_CONFIGURED
|
1564 test_bit(STATUS_EXIT_PENDING
, &priv
->status
) <<
1565 STATUS_EXIT_PENDING
;
1569 /* ...otherwise clear out all the status bits but the RF Kill
1570 * bits and continue taking the NIC down. */
1571 priv
->status
&= test_bit(STATUS_RF_KILL_HW
, &priv
->status
) <<
1573 test_bit(STATUS_RF_KILL_SW
, &priv
->status
) <<
1575 test_bit(STATUS_GEO_CONFIGURED
, &priv
->status
) <<
1576 STATUS_GEO_CONFIGURED
|
1577 test_bit(STATUS_FW_ERROR
, &priv
->status
) <<
1579 test_bit(STATUS_EXIT_PENDING
, &priv
->status
) <<
1580 STATUS_EXIT_PENDING
;
1582 spin_lock_irqsave(&priv
->lock
, flags
);
1583 iwl_clear_bit(priv
, CSR_GP_CNTRL
,
1584 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ
);
1585 spin_unlock_irqrestore(&priv
->lock
, flags
);
1587 iwl_txq_ctx_stop(priv
);
1590 spin_lock_irqsave(&priv
->lock
, flags
);
1591 if (!iwl_grab_nic_access(priv
)) {
1592 iwl_write_prph(priv
, APMG_CLK_DIS_REG
,
1593 APMG_CLK_VAL_DMA_CLK_RQT
);
1594 iwl_release_nic_access(priv
);
1596 spin_unlock_irqrestore(&priv
->lock
, flags
);
1600 /* FIXME: apm_ops.suspend(priv) */
1602 priv
->cfg
->ops
->lib
->apm_ops
.stop(priv
);
1604 priv
->cfg
->ops
->lib
->apm_ops
.reset(priv
);
1606 memset(&priv
->card_alive
, 0, sizeof(struct iwl_alive_resp
));
1608 if (priv
->ibss_beacon
)
1609 dev_kfree_skb(priv
->ibss_beacon
);
1610 priv
->ibss_beacon
= NULL
;
1612 /* clear out any free frames */
1613 iwl_clear_free_frames(priv
);
1616 static void iwl_down(struct iwl_priv
*priv
)
1618 mutex_lock(&priv
->mutex
);
1620 mutex_unlock(&priv
->mutex
);
1622 iwl_cancel_deferred_work(priv
);
1625 #define MAX_HW_RESTARTS 5
1627 static int __iwl_up(struct iwl_priv
*priv
)
1632 if (test_bit(STATUS_EXIT_PENDING
, &priv
->status
)) {
1633 IWL_WARN(priv
, "Exit pending; will not bring the NIC up\n");
1637 if (!priv
->ucode_data_backup
.v_addr
|| !priv
->ucode_data
.v_addr
) {
1638 IWL_ERR(priv
, "ucode not available for device bringup\n");
1642 /* If platform's RF_KILL switch is NOT set to KILL */
1643 if (iwl_read32(priv
, CSR_GP_CNTRL
) & CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW
)
1644 clear_bit(STATUS_RF_KILL_HW
, &priv
->status
);
1646 set_bit(STATUS_RF_KILL_HW
, &priv
->status
);
1648 if (iwl_is_rfkill(priv
)) {
1649 iwl_enable_interrupts(priv
);
1650 IWL_WARN(priv
, "Radio disabled by %s RF Kill switch\n",
1651 test_bit(STATUS_RF_KILL_HW
, &priv
->status
) ? "HW" : "SW");
1655 iwl_write32(priv
, CSR_INT
, 0xFFFFFFFF);
1657 ret
= iwl_hw_nic_init(priv
);
1659 IWL_ERR(priv
, "Unable to init nic\n");
1663 /* make sure rfkill handshake bits are cleared */
1664 iwl_write32(priv
, CSR_UCODE_DRV_GP1_CLR
, CSR_UCODE_SW_BIT_RFKILL
);
1665 iwl_write32(priv
, CSR_UCODE_DRV_GP1_CLR
,
1666 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED
);
1668 /* clear (again), then enable host interrupts */
1669 iwl_write32(priv
, CSR_INT
, 0xFFFFFFFF);
1670 iwl_enable_interrupts(priv
);
1672 /* really make sure rfkill handshake bits are cleared */
1673 iwl_write32(priv
, CSR_UCODE_DRV_GP1_CLR
, CSR_UCODE_SW_BIT_RFKILL
);
1674 iwl_write32(priv
, CSR_UCODE_DRV_GP1_CLR
, CSR_UCODE_SW_BIT_RFKILL
);
1676 /* Copy original ucode data image from disk into backup cache.
1677 * This will be used to initialize the on-board processor's
1678 * data SRAM for a clean start when the runtime program first loads. */
1679 memcpy(priv
->ucode_data_backup
.v_addr
, priv
->ucode_data
.v_addr
,
1680 priv
->ucode_data
.len
);
1682 for (i
= 0; i
< MAX_HW_RESTARTS
; i
++) {
1684 priv
->cfg
->ops
->smgmt
->clear_station_table(priv
);
1686 /* load bootstrap state machine,
1687 * load bootstrap program into processor's memory,
1688 * prepare to load the "initialize" uCode */
1689 ret
= priv
->cfg
->ops
->lib
->load_ucode(priv
);
1692 IWL_ERR(priv
, "Unable to set up bootstrap uCode: %d\n",
1697 /* start card; "initialize" will load runtime ucode */
1698 iwl_nic_start(priv
);
1700 IWL_DEBUG_INFO(priv
, DRV_NAME
" is coming up\n");
1705 set_bit(STATUS_EXIT_PENDING
, &priv
->status
);
1707 clear_bit(STATUS_EXIT_PENDING
, &priv
->status
);
1709 /* tried to restart and config the device for as long as our
1710 * patience could withstand */
1711 IWL_ERR(priv
, "Unable to initialize device after %d attempts.\n", i
);
1716 /*****************************************************************************
1718 * Workqueue callbacks
1720 *****************************************************************************/
1722 static void iwl_bg_init_alive_start(struct work_struct
*data
)
1724 struct iwl_priv
*priv
=
1725 container_of(data
, struct iwl_priv
, init_alive_start
.work
);
1727 if (test_bit(STATUS_EXIT_PENDING
, &priv
->status
))
1730 mutex_lock(&priv
->mutex
);
1731 priv
->cfg
->ops
->lib
->init_alive_start(priv
);
1732 mutex_unlock(&priv
->mutex
);
1735 static void iwl_bg_alive_start(struct work_struct
*data
)
1737 struct iwl_priv
*priv
=
1738 container_of(data
, struct iwl_priv
, alive_start
.work
);
1740 if (test_bit(STATUS_EXIT_PENDING
, &priv
->status
))
1743 mutex_lock(&priv
->mutex
);
1744 iwl_alive_start(priv
);
1745 mutex_unlock(&priv
->mutex
);
1748 static void iwl_bg_run_time_calib_work(struct work_struct
*work
)
1750 struct iwl_priv
*priv
= container_of(work
, struct iwl_priv
,
1751 run_time_calib_work
);
1753 mutex_lock(&priv
->mutex
);
1755 if (test_bit(STATUS_EXIT_PENDING
, &priv
->status
) ||
1756 test_bit(STATUS_SCANNING
, &priv
->status
)) {
1757 mutex_unlock(&priv
->mutex
);
1761 if (priv
->start_calib
) {
1762 iwl_chain_noise_calibration(priv
, &priv
->statistics
);
1764 iwl_sensitivity_calibration(priv
, &priv
->statistics
);
1767 mutex_unlock(&priv
->mutex
);
1771 static void iwl_bg_up(struct work_struct
*data
)
1773 struct iwl_priv
*priv
= container_of(data
, struct iwl_priv
, up
);
1775 if (test_bit(STATUS_EXIT_PENDING
, &priv
->status
))
1778 mutex_lock(&priv
->mutex
);
1780 mutex_unlock(&priv
->mutex
);
1781 iwl_rfkill_set_hw_state(priv
);
1784 static void iwl_bg_restart(struct work_struct
*data
)
1786 struct iwl_priv
*priv
= container_of(data
, struct iwl_priv
, restart
);
1788 if (test_bit(STATUS_EXIT_PENDING
, &priv
->status
))
1791 if (test_and_clear_bit(STATUS_FW_ERROR
, &priv
->status
)) {
1792 mutex_lock(&priv
->mutex
);
1795 mutex_unlock(&priv
->mutex
);
1797 ieee80211_restart_hw(priv
->hw
);
1800 queue_work(priv
->workqueue
, &priv
->up
);
1804 static void iwl_bg_rx_replenish(struct work_struct
*data
)
1806 struct iwl_priv
*priv
=
1807 container_of(data
, struct iwl_priv
, rx_replenish
);
1809 if (test_bit(STATUS_EXIT_PENDING
, &priv
->status
))
1812 mutex_lock(&priv
->mutex
);
1813 iwl_rx_replenish(priv
);
1814 mutex_unlock(&priv
->mutex
);
1817 #define IWL_DELAY_NEXT_SCAN (HZ*2)
1819 void iwl_post_associate(struct iwl_priv
*priv
)
1821 struct ieee80211_conf
*conf
= NULL
;
1823 unsigned long flags
;
1825 if (priv
->iw_mode
== NL80211_IFTYPE_AP
) {
1826 IWL_ERR(priv
, "%s Should not be called in AP mode\n", __func__
);
1830 IWL_DEBUG_ASSOC(priv
, "Associated as %d to: %pM\n",
1831 priv
->assoc_id
, priv
->active_rxon
.bssid_addr
);
1834 if (test_bit(STATUS_EXIT_PENDING
, &priv
->status
))
1838 if (!priv
->vif
|| !priv
->is_open
)
1841 iwl_scan_cancel_timeout(priv
, 200);
1843 conf
= ieee80211_get_hw_conf(priv
->hw
);
1845 priv
->staging_rxon
.filter_flags
&= ~RXON_FILTER_ASSOC_MSK
;
1846 iwlcore_commit_rxon(priv
);
1848 iwl_setup_rxon_timing(priv
);
1849 ret
= iwl_send_cmd_pdu(priv
, REPLY_RXON_TIMING
,
1850 sizeof(priv
->rxon_timing
), &priv
->rxon_timing
);
1852 IWL_WARN(priv
, "REPLY_RXON_TIMING failed - "
1853 "Attempting to continue.\n");
1855 priv
->staging_rxon
.filter_flags
|= RXON_FILTER_ASSOC_MSK
;
1857 iwl_set_rxon_ht(priv
, &priv
->current_ht_config
);
1859 if (priv
->cfg
->ops
->hcmd
->set_rxon_chain
)
1860 priv
->cfg
->ops
->hcmd
->set_rxon_chain(priv
);
1862 priv
->staging_rxon
.assoc_id
= cpu_to_le16(priv
->assoc_id
);
1864 IWL_DEBUG_ASSOC(priv
, "assoc id %d beacon interval %d\n",
1865 priv
->assoc_id
, priv
->beacon_int
);
1867 if (priv
->assoc_capability
& WLAN_CAPABILITY_SHORT_PREAMBLE
)
1868 priv
->staging_rxon
.flags
|= RXON_FLG_SHORT_PREAMBLE_MSK
;
1870 priv
->staging_rxon
.flags
&= ~RXON_FLG_SHORT_PREAMBLE_MSK
;
1872 if (priv
->staging_rxon
.flags
& RXON_FLG_BAND_24G_MSK
) {
1873 if (priv
->assoc_capability
& WLAN_CAPABILITY_SHORT_SLOT_TIME
)
1874 priv
->staging_rxon
.flags
|= RXON_FLG_SHORT_SLOT_MSK
;
1876 priv
->staging_rxon
.flags
&= ~RXON_FLG_SHORT_SLOT_MSK
;
1878 if (priv
->iw_mode
== NL80211_IFTYPE_ADHOC
)
1879 priv
->staging_rxon
.flags
&= ~RXON_FLG_SHORT_SLOT_MSK
;
1883 iwlcore_commit_rxon(priv
);
1885 switch (priv
->iw_mode
) {
1886 case NL80211_IFTYPE_STATION
:
1889 case NL80211_IFTYPE_ADHOC
:
1891 /* assume default assoc id */
1894 iwl_rxon_add_station(priv
, priv
->bssid
, 0);
1895 iwl_send_beacon_cmd(priv
);
1900 IWL_ERR(priv
, "%s Should not be called in %d mode\n",
1901 __func__
, priv
->iw_mode
);
1905 if (priv
->iw_mode
== NL80211_IFTYPE_ADHOC
)
1906 priv
->assoc_station_added
= 1;
1908 spin_lock_irqsave(&priv
->lock
, flags
);
1909 iwl_activate_qos(priv
, 0);
1910 spin_unlock_irqrestore(&priv
->lock
, flags
);
1912 /* the chain noise calibration will enabled PM upon completion
1913 * If chain noise has already been run, then we need to enable
1914 * power management here */
1915 if (priv
->chain_noise_data
.state
== IWL_CHAIN_NOISE_DONE
)
1916 iwl_power_update_mode(priv
, 0);
1918 /* Enable Rx differential gain and sensitivity calibrations */
1919 iwl_chain_noise_reset(priv
);
1920 priv
->start_calib
= 1;
1924 /*****************************************************************************
1926 * mac80211 entry point functions
1928 *****************************************************************************/
1930 #define UCODE_READY_TIMEOUT (4 * HZ)
1932 static int iwl_mac_start(struct ieee80211_hw
*hw
)
1934 struct iwl_priv
*priv
= hw
->priv
;
1937 IWL_DEBUG_MAC80211(priv
, "enter\n");
1939 /* we should be verifying the device is ready to be opened */
1940 mutex_lock(&priv
->mutex
);
1942 memset(&priv
->staging_rxon
, 0, sizeof(struct iwl_rxon_cmd
));
1943 /* fetch ucode file from disk, alloc and copy to bus-master buffers ...
1944 * ucode filename and max sizes are card-specific. */
1946 if (!priv
->ucode_code
.len
) {
1947 ret
= iwl_read_ucode(priv
);
1949 IWL_ERR(priv
, "Could not read microcode: %d\n", ret
);
1950 mutex_unlock(&priv
->mutex
);
1955 ret
= __iwl_up(priv
);
1957 mutex_unlock(&priv
->mutex
);
1959 iwl_rfkill_set_hw_state(priv
);
1964 if (iwl_is_rfkill(priv
))
1967 IWL_DEBUG_INFO(priv
, "Start UP work done.\n");
1969 /* Wait for START_ALIVE from Run Time ucode. Otherwise callbacks from
1970 * mac80211 will not be run successfully. */
1971 ret
= wait_event_interruptible_timeout(priv
->wait_command_queue
,
1972 test_bit(STATUS_READY
, &priv
->status
),
1973 UCODE_READY_TIMEOUT
);
1975 if (!test_bit(STATUS_READY
, &priv
->status
)) {
1976 IWL_ERR(priv
, "START_ALIVE timeout after %dms.\n",
1977 jiffies_to_msecs(UCODE_READY_TIMEOUT
));
1984 IWL_DEBUG_MAC80211(priv
, "leave\n");
1988 static void iwl_mac_stop(struct ieee80211_hw
*hw
)
1990 struct iwl_priv
*priv
= hw
->priv
;
1992 IWL_DEBUG_MAC80211(priv
, "enter\n");
1999 if (iwl_is_ready_rf(priv
)) {
2000 /* stop mac, cancel any scan request and clear
2001 * RXON_FILTER_ASSOC_MSK BIT
2003 mutex_lock(&priv
->mutex
);
2004 iwl_scan_cancel_timeout(priv
, 100);
2005 mutex_unlock(&priv
->mutex
);
2010 flush_workqueue(priv
->workqueue
);
2012 /* enable interrupts again in order to receive rfkill changes */
2013 iwl_write32(priv
, CSR_INT
, 0xFFFFFFFF);
2014 iwl_enable_interrupts(priv
);
2016 IWL_DEBUG_MAC80211(priv
, "leave\n");
2019 static int iwl_mac_tx(struct ieee80211_hw
*hw
, struct sk_buff
*skb
)
2021 struct iwl_priv
*priv
= hw
->priv
;
2023 IWL_DEBUG_MACDUMP(priv
, "enter\n");
2025 IWL_DEBUG_TX(priv
, "dev->xmit(%d bytes) at rate 0x%02x\n", skb
->len
,
2026 ieee80211_get_tx_rate(hw
, IEEE80211_SKB_CB(skb
))->bitrate
);
2028 if (iwl_tx_skb(priv
, skb
))
2029 dev_kfree_skb_any(skb
);
2031 IWL_DEBUG_MACDUMP(priv
, "leave\n");
2032 return NETDEV_TX_OK
;
2035 void iwl_config_ap(struct iwl_priv
*priv
)
2038 unsigned long flags
;
2040 if (test_bit(STATUS_EXIT_PENDING
, &priv
->status
))
2043 /* The following should be done only at AP bring up */
2044 if (!iwl_is_associated(priv
)) {
2046 /* RXON - unassoc (to set timing command) */
2047 priv
->staging_rxon
.filter_flags
&= ~RXON_FILTER_ASSOC_MSK
;
2048 iwlcore_commit_rxon(priv
);
2051 iwl_setup_rxon_timing(priv
);
2052 ret
= iwl_send_cmd_pdu(priv
, REPLY_RXON_TIMING
,
2053 sizeof(priv
->rxon_timing
), &priv
->rxon_timing
);
2055 IWL_WARN(priv
, "REPLY_RXON_TIMING failed - "
2056 "Attempting to continue.\n");
2058 if (priv
->cfg
->ops
->hcmd
->set_rxon_chain
)
2059 priv
->cfg
->ops
->hcmd
->set_rxon_chain(priv
);
2061 /* FIXME: what should be the assoc_id for AP? */
2062 priv
->staging_rxon
.assoc_id
= cpu_to_le16(priv
->assoc_id
);
2063 if (priv
->assoc_capability
& WLAN_CAPABILITY_SHORT_PREAMBLE
)
2064 priv
->staging_rxon
.flags
|=
2065 RXON_FLG_SHORT_PREAMBLE_MSK
;
2067 priv
->staging_rxon
.flags
&=
2068 ~RXON_FLG_SHORT_PREAMBLE_MSK
;
2070 if (priv
->staging_rxon
.flags
& RXON_FLG_BAND_24G_MSK
) {
2071 if (priv
->assoc_capability
&
2072 WLAN_CAPABILITY_SHORT_SLOT_TIME
)
2073 priv
->staging_rxon
.flags
|=
2074 RXON_FLG_SHORT_SLOT_MSK
;
2076 priv
->staging_rxon
.flags
&=
2077 ~RXON_FLG_SHORT_SLOT_MSK
;
2079 if (priv
->iw_mode
== NL80211_IFTYPE_ADHOC
)
2080 priv
->staging_rxon
.flags
&=
2081 ~RXON_FLG_SHORT_SLOT_MSK
;
2083 /* restore RXON assoc */
2084 priv
->staging_rxon
.filter_flags
|= RXON_FILTER_ASSOC_MSK
;
2085 iwlcore_commit_rxon(priv
);
2086 spin_lock_irqsave(&priv
->lock
, flags
);
2087 iwl_activate_qos(priv
, 1);
2088 spin_unlock_irqrestore(&priv
->lock
, flags
);
2089 iwl_rxon_add_station(priv
, iwl_bcast_addr
, 0);
2091 iwl_send_beacon_cmd(priv
);
2093 /* FIXME - we need to add code here to detect a totally new
2094 * configuration, reset the AP, unassoc, rxon timing, assoc,
2095 * clear sta table, add BCAST sta... */
2098 static void iwl_mac_update_tkip_key(struct ieee80211_hw
*hw
,
2099 struct ieee80211_key_conf
*keyconf
, const u8
*addr
,
2100 u32 iv32
, u16
*phase1key
)
2103 struct iwl_priv
*priv
= hw
->priv
;
2104 IWL_DEBUG_MAC80211(priv
, "enter\n");
2106 iwl_update_tkip_key(priv
, keyconf
, addr
, iv32
, phase1key
);
2108 IWL_DEBUG_MAC80211(priv
, "leave\n");
2111 static int iwl_mac_set_key(struct ieee80211_hw
*hw
, enum set_key_cmd cmd
,
2112 struct ieee80211_vif
*vif
,
2113 struct ieee80211_sta
*sta
,
2114 struct ieee80211_key_conf
*key
)
2116 struct iwl_priv
*priv
= hw
->priv
;
2120 bool is_default_wep_key
= false;
2122 IWL_DEBUG_MAC80211(priv
, "enter\n");
2124 if (priv
->hw_params
.sw_crypto
) {
2125 IWL_DEBUG_MAC80211(priv
, "leave - hwcrypto disabled\n");
2128 addr
= sta
? sta
->addr
: iwl_bcast_addr
;
2129 sta_id
= priv
->cfg
->ops
->smgmt
->find_station(priv
, addr
);
2130 if (sta_id
== IWL_INVALID_STATION
) {
2131 IWL_DEBUG_MAC80211(priv
, "leave - %pM not in station map.\n",
2137 mutex_lock(&priv
->mutex
);
2138 iwl_scan_cancel_timeout(priv
, 100);
2139 mutex_unlock(&priv
->mutex
);
2141 /* If we are getting WEP group key and we didn't receive any key mapping
2142 * so far, we are in legacy wep mode (group key only), otherwise we are
2144 * In legacy wep mode, we use another host command to the uCode */
2145 if (key
->alg
== ALG_WEP
&& sta_id
== priv
->hw_params
.bcast_sta_id
&&
2146 priv
->iw_mode
!= NL80211_IFTYPE_AP
) {
2148 is_default_wep_key
= !priv
->key_mapping_key
;
2150 is_default_wep_key
=
2151 (key
->hw_key_idx
== HW_KEY_DEFAULT
);
2156 if (is_default_wep_key
)
2157 ret
= iwl_set_default_wep_key(priv
, key
);
2159 ret
= iwl_set_dynamic_key(priv
, key
, sta_id
);
2161 IWL_DEBUG_MAC80211(priv
, "enable hwcrypto key\n");
2164 if (is_default_wep_key
)
2165 ret
= iwl_remove_default_wep_key(priv
, key
);
2167 ret
= iwl_remove_dynamic_key(priv
, key
, sta_id
);
2169 IWL_DEBUG_MAC80211(priv
, "disable hwcrypto key\n");
2175 IWL_DEBUG_MAC80211(priv
, "leave\n");
2180 static int iwl_mac_ampdu_action(struct ieee80211_hw
*hw
,
2181 enum ieee80211_ampdu_mlme_action action
,
2182 struct ieee80211_sta
*sta
, u16 tid
, u16
*ssn
)
2184 struct iwl_priv
*priv
= hw
->priv
;
2187 IWL_DEBUG_HT(priv
, "A-MPDU action on addr %pM tid %d\n",
2190 if (!(priv
->cfg
->sku
& IWL_SKU_N
))
2194 case IEEE80211_AMPDU_RX_START
:
2195 IWL_DEBUG_HT(priv
, "start Rx\n");
2196 return iwl_sta_rx_agg_start(priv
, sta
->addr
, tid
, *ssn
);
2197 case IEEE80211_AMPDU_RX_STOP
:
2198 IWL_DEBUG_HT(priv
, "stop Rx\n");
2199 ret
= iwl_sta_rx_agg_stop(priv
, sta
->addr
, tid
);
2200 if (test_bit(STATUS_EXIT_PENDING
, &priv
->status
))
2204 case IEEE80211_AMPDU_TX_START
:
2205 IWL_DEBUG_HT(priv
, "start Tx\n");
2206 return iwl_tx_agg_start(priv
, sta
->addr
, tid
, ssn
);
2207 case IEEE80211_AMPDU_TX_STOP
:
2208 IWL_DEBUG_HT(priv
, "stop Tx\n");
2209 ret
= iwl_tx_agg_stop(priv
, sta
->addr
, tid
);
2210 if (test_bit(STATUS_EXIT_PENDING
, &priv
->status
))
2215 IWL_DEBUG_HT(priv
, "unknown\n");
2222 static int iwl_mac_get_stats(struct ieee80211_hw
*hw
,
2223 struct ieee80211_low_level_stats
*stats
)
2225 struct iwl_priv
*priv
= hw
->priv
;
2228 IWL_DEBUG_MAC80211(priv
, "enter\n");
2229 IWL_DEBUG_MAC80211(priv
, "leave\n");
2234 /*****************************************************************************
2238 *****************************************************************************/
2240 #ifdef CONFIG_IWLWIFI_DEBUG
2243 * The following adds a new attribute to the sysfs representation
2244 * of this device driver (i.e. a new file in /sys/class/net/wlan0/device/)
2245 * used for controlling the debug level.
2247 * See the level definitions in iwl for details.
2250 static ssize_t
show_debug_level(struct device
*d
,
2251 struct device_attribute
*attr
, char *buf
)
2253 struct iwl_priv
*priv
= dev_get_drvdata(d
);
2255 return sprintf(buf
, "0x%08X\n", priv
->debug_level
);
2257 static ssize_t
store_debug_level(struct device
*d
,
2258 struct device_attribute
*attr
,
2259 const char *buf
, size_t count
)
2261 struct iwl_priv
*priv
= dev_get_drvdata(d
);
2265 ret
= strict_strtoul(buf
, 0, &val
);
2267 IWL_ERR(priv
, "%s is not in hex or decimal form.\n", buf
);
2269 priv
->debug_level
= val
;
2271 return strnlen(buf
, count
);
2274 static DEVICE_ATTR(debug_level
, S_IWUSR
| S_IRUGO
,
2275 show_debug_level
, store_debug_level
);
2278 #endif /* CONFIG_IWLWIFI_DEBUG */
2281 static ssize_t
show_version(struct device
*d
,
2282 struct device_attribute
*attr
, char *buf
)
2284 struct iwl_priv
*priv
= dev_get_drvdata(d
);
2285 struct iwl_alive_resp
*palive
= &priv
->card_alive
;
2289 if (palive
->is_valid
)
2290 pos
+= sprintf(buf
+ pos
,
2291 "fw version: 0x%01X.0x%01X.0x%01X.0x%01X\n"
2292 "fw type: 0x%01X 0x%01X\n",
2293 palive
->ucode_major
, palive
->ucode_minor
,
2294 palive
->sw_rev
[0], palive
->sw_rev
[1],
2295 palive
->ver_type
, palive
->ver_subtype
);
2297 pos
+= sprintf(buf
+ pos
, "fw not loaded\n");
2300 eeprom_ver
= iwl_eeprom_query16(priv
, EEPROM_VERSION
);
2301 pos
+= sprintf(buf
+ pos
, "EEPROM version: 0x%x\n",
2304 pos
+= sprintf(buf
+ pos
, "EEPROM not initialzed\n");
2310 static DEVICE_ATTR(version
, S_IWUSR
| S_IRUGO
, show_version
, NULL
);
2312 static ssize_t
show_temperature(struct device
*d
,
2313 struct device_attribute
*attr
, char *buf
)
2315 struct iwl_priv
*priv
= dev_get_drvdata(d
);
2317 if (!iwl_is_alive(priv
))
2320 return sprintf(buf
, "%d\n", priv
->temperature
);
2323 static DEVICE_ATTR(temperature
, S_IRUGO
, show_temperature
, NULL
);
2325 static ssize_t
show_tx_power(struct device
*d
,
2326 struct device_attribute
*attr
, char *buf
)
2328 struct iwl_priv
*priv
= dev_get_drvdata(d
);
2330 if (!iwl_is_ready_rf(priv
))
2331 return sprintf(buf
, "off\n");
2333 return sprintf(buf
, "%d\n", priv
->tx_power_user_lmt
);
2336 static ssize_t
store_tx_power(struct device
*d
,
2337 struct device_attribute
*attr
,
2338 const char *buf
, size_t count
)
2340 struct iwl_priv
*priv
= dev_get_drvdata(d
);
2344 ret
= strict_strtoul(buf
, 10, &val
);
2346 IWL_INFO(priv
, "%s is not in decimal form.\n", buf
);
2348 iwl_set_tx_power(priv
, val
, false);
2353 static DEVICE_ATTR(tx_power
, S_IWUSR
| S_IRUGO
, show_tx_power
, store_tx_power
);
2355 static ssize_t
show_flags(struct device
*d
,
2356 struct device_attribute
*attr
, char *buf
)
2358 struct iwl_priv
*priv
= dev_get_drvdata(d
);
2360 return sprintf(buf
, "0x%04X\n", priv
->active_rxon
.flags
);
2363 static ssize_t
store_flags(struct device
*d
,
2364 struct device_attribute
*attr
,
2365 const char *buf
, size_t count
)
2367 struct iwl_priv
*priv
= dev_get_drvdata(d
);
2370 int ret
= strict_strtoul(buf
, 0, &val
);
2375 mutex_lock(&priv
->mutex
);
2376 if (le32_to_cpu(priv
->staging_rxon
.flags
) != flags
) {
2377 /* Cancel any currently running scans... */
2378 if (iwl_scan_cancel_timeout(priv
, 100))
2379 IWL_WARN(priv
, "Could not cancel scan.\n");
2381 IWL_DEBUG_INFO(priv
, "Commit rxon.flags = 0x%04X\n", flags
);
2382 priv
->staging_rxon
.flags
= cpu_to_le32(flags
);
2383 iwlcore_commit_rxon(priv
);
2386 mutex_unlock(&priv
->mutex
);
2391 static DEVICE_ATTR(flags
, S_IWUSR
| S_IRUGO
, show_flags
, store_flags
);
2393 static ssize_t
show_filter_flags(struct device
*d
,
2394 struct device_attribute
*attr
, char *buf
)
2396 struct iwl_priv
*priv
= dev_get_drvdata(d
);
2398 return sprintf(buf
, "0x%04X\n",
2399 le32_to_cpu(priv
->active_rxon
.filter_flags
));
2402 static ssize_t
store_filter_flags(struct device
*d
,
2403 struct device_attribute
*attr
,
2404 const char *buf
, size_t count
)
2406 struct iwl_priv
*priv
= dev_get_drvdata(d
);
2409 int ret
= strict_strtoul(buf
, 0, &val
);
2412 filter_flags
= (u32
)val
;
2414 mutex_lock(&priv
->mutex
);
2415 if (le32_to_cpu(priv
->staging_rxon
.filter_flags
) != filter_flags
) {
2416 /* Cancel any currently running scans... */
2417 if (iwl_scan_cancel_timeout(priv
, 100))
2418 IWL_WARN(priv
, "Could not cancel scan.\n");
2420 IWL_DEBUG_INFO(priv
, "Committing rxon.filter_flags = "
2421 "0x%04X\n", filter_flags
);
2422 priv
->staging_rxon
.filter_flags
=
2423 cpu_to_le32(filter_flags
);
2424 iwlcore_commit_rxon(priv
);
2427 mutex_unlock(&priv
->mutex
);
2432 static DEVICE_ATTR(filter_flags
, S_IWUSR
| S_IRUGO
, show_filter_flags
,
2433 store_filter_flags
);
2435 static ssize_t
store_power_level(struct device
*d
,
2436 struct device_attribute
*attr
,
2437 const char *buf
, size_t count
)
2439 struct iwl_priv
*priv
= dev_get_drvdata(d
);
2444 mutex_lock(&priv
->mutex
);
2446 ret
= strict_strtoul(buf
, 10, &mode
);
2450 ret
= iwl_power_set_user_mode(priv
, mode
);
2452 IWL_DEBUG_MAC80211(priv
, "failed setting power mode.\n");
2458 mutex_unlock(&priv
->mutex
);
2462 static ssize_t
show_power_level(struct device
*d
,
2463 struct device_attribute
*attr
, char *buf
)
2465 struct iwl_priv
*priv
= dev_get_drvdata(d
);
2466 int mode
= priv
->power_data
.user_power_setting
;
2467 int level
= priv
->power_data
.power_mode
;
2470 p
+= sprintf(p
, "INDEX:%d\t", level
);
2471 p
+= sprintf(p
, "USER:%d\n", mode
);
2475 static DEVICE_ATTR(power_level
, S_IWUSR
| S_IRUSR
, show_power_level
,
2479 static ssize_t
show_statistics(struct device
*d
,
2480 struct device_attribute
*attr
, char *buf
)
2482 struct iwl_priv
*priv
= dev_get_drvdata(d
);
2483 u32 size
= sizeof(struct iwl_notif_statistics
);
2484 u32 len
= 0, ofs
= 0;
2485 u8
*data
= (u8
*)&priv
->statistics
;
2488 if (!iwl_is_alive(priv
))
2491 mutex_lock(&priv
->mutex
);
2492 rc
= iwl_send_statistics_request(priv
, 0);
2493 mutex_unlock(&priv
->mutex
);
2497 "Error sending statistics request: 0x%08X\n", rc
);
2501 while (size
&& (PAGE_SIZE
- len
)) {
2502 hex_dump_to_buffer(data
+ ofs
, size
, 16, 1, buf
+ len
,
2503 PAGE_SIZE
- len
, 1);
2505 if (PAGE_SIZE
- len
)
2509 size
-= min(size
, 16U);
2515 static DEVICE_ATTR(statistics
, S_IRUGO
, show_statistics
, NULL
);
2518 /*****************************************************************************
2520 * driver setup and teardown
2522 *****************************************************************************/
2524 static void iwl_setup_deferred_work(struct iwl_priv
*priv
)
2526 priv
->workqueue
= create_singlethread_workqueue(DRV_NAME
);
2528 init_waitqueue_head(&priv
->wait_command_queue
);
2530 INIT_WORK(&priv
->up
, iwl_bg_up
);
2531 INIT_WORK(&priv
->restart
, iwl_bg_restart
);
2532 INIT_WORK(&priv
->rx_replenish
, iwl_bg_rx_replenish
);
2533 INIT_WORK(&priv
->rf_kill
, iwl_bg_rf_kill
);
2534 INIT_WORK(&priv
->beacon_update
, iwl_bg_beacon_update
);
2535 INIT_WORK(&priv
->run_time_calib_work
, iwl_bg_run_time_calib_work
);
2536 INIT_DELAYED_WORK(&priv
->init_alive_start
, iwl_bg_init_alive_start
);
2537 INIT_DELAYED_WORK(&priv
->alive_start
, iwl_bg_alive_start
);
2539 iwl_setup_scan_deferred_work(priv
);
2541 if (priv
->cfg
->ops
->lib
->setup_deferred_work
)
2542 priv
->cfg
->ops
->lib
->setup_deferred_work(priv
);
2544 init_timer(&priv
->statistics_periodic
);
2545 priv
->statistics_periodic
.data
= (unsigned long)priv
;
2546 priv
->statistics_periodic
.function
= iwl_bg_statistics_periodic
;
2548 tasklet_init(&priv
->irq_tasklet
, (void (*)(unsigned long))
2549 iwl_irq_tasklet
, (unsigned long)priv
);
2552 static void iwl_cancel_deferred_work(struct iwl_priv
*priv
)
2554 if (priv
->cfg
->ops
->lib
->cancel_deferred_work
)
2555 priv
->cfg
->ops
->lib
->cancel_deferred_work(priv
);
2557 cancel_delayed_work_sync(&priv
->init_alive_start
);
2558 cancel_delayed_work(&priv
->scan_check
);
2559 cancel_delayed_work(&priv
->alive_start
);
2560 cancel_work_sync(&priv
->beacon_update
);
2561 del_timer_sync(&priv
->statistics_periodic
);
2564 static struct attribute
*iwl_sysfs_entries
[] = {
2565 &dev_attr_flags
.attr
,
2566 &dev_attr_filter_flags
.attr
,
2567 &dev_attr_power_level
.attr
,
2568 &dev_attr_statistics
.attr
,
2569 &dev_attr_temperature
.attr
,
2570 &dev_attr_tx_power
.attr
,
2571 #ifdef CONFIG_IWLWIFI_DEBUG
2572 &dev_attr_debug_level
.attr
,
2574 &dev_attr_version
.attr
,
2579 static struct attribute_group iwl_attribute_group
= {
2580 .name
= NULL
, /* put in device directory */
2581 .attrs
= iwl_sysfs_entries
,
2584 static struct ieee80211_ops iwl_hw_ops
= {
2586 .start
= iwl_mac_start
,
2587 .stop
= iwl_mac_stop
,
2588 .add_interface
= iwl_mac_add_interface
,
2589 .remove_interface
= iwl_mac_remove_interface
,
2590 .config
= iwl_mac_config
,
2591 .configure_filter
= iwl_configure_filter
,
2592 .set_key
= iwl_mac_set_key
,
2593 .update_tkip_key
= iwl_mac_update_tkip_key
,
2594 .get_stats
= iwl_mac_get_stats
,
2595 .get_tx_stats
= iwl_mac_get_tx_stats
,
2596 .conf_tx
= iwl_mac_conf_tx
,
2597 .reset_tsf
= iwl_mac_reset_tsf
,
2598 .bss_info_changed
= iwl_bss_info_changed
,
2599 .ampdu_action
= iwl_mac_ampdu_action
,
2600 .hw_scan
= iwl_mac_hw_scan
2603 static int iwl_pci_probe(struct pci_dev
*pdev
, const struct pci_device_id
*ent
)
2606 struct iwl_priv
*priv
;
2607 struct ieee80211_hw
*hw
;
2608 struct iwl_cfg
*cfg
= (struct iwl_cfg
*)(ent
->driver_data
);
2609 unsigned long flags
;
2612 /************************
2613 * 1. Allocating HW data
2614 ************************/
2616 /* Disabling hardware scan means that mac80211 will perform scans
2617 * "the hard way", rather than using device's scan. */
2618 if (cfg
->mod_params
->disable_hw_scan
) {
2619 if (cfg
->mod_params
->debug
& IWL_DL_INFO
)
2620 dev_printk(KERN_DEBUG
, &(pdev
->dev
),
2621 "Disabling hw_scan\n");
2622 iwl_hw_ops
.hw_scan
= NULL
;
2625 hw
= iwl_alloc_all(cfg
, &iwl_hw_ops
);
2631 /* At this point both hw and priv are allocated. */
2633 SET_IEEE80211_DEV(hw
, &pdev
->dev
);
2635 IWL_DEBUG_INFO(priv
, "*** LOAD DRIVER ***\n");
2637 priv
->pci_dev
= pdev
;
2639 #ifdef CONFIG_IWLWIFI_DEBUG
2640 priv
->debug_level
= priv
->cfg
->mod_params
->debug
;
2641 atomic_set(&priv
->restrict_refcnt
, 0);
2644 /**************************
2645 * 2. Initializing PCI bus
2646 **************************/
2647 if (pci_enable_device(pdev
)) {
2649 goto out_ieee80211_free_hw
;
2652 pci_set_master(pdev
);
2654 err
= pci_set_dma_mask(pdev
, DMA_BIT_MASK(36));
2656 err
= pci_set_consistent_dma_mask(pdev
, DMA_BIT_MASK(36));
2658 err
= pci_set_dma_mask(pdev
, DMA_BIT_MASK(32));
2660 err
= pci_set_consistent_dma_mask(pdev
, DMA_BIT_MASK(32));
2661 /* both attempts failed: */
2663 IWL_WARN(priv
, "No suitable DMA available.\n");
2664 goto out_pci_disable_device
;
2668 err
= pci_request_regions(pdev
, DRV_NAME
);
2670 goto out_pci_disable_device
;
2672 pci_set_drvdata(pdev
, priv
);
2675 /***********************
2676 * 3. Read REV register
2677 ***********************/
2678 priv
->hw_base
= pci_iomap(pdev
, 0, 0);
2679 if (!priv
->hw_base
) {
2681 goto out_pci_release_regions
;
2684 IWL_DEBUG_INFO(priv
, "pci_resource_len = 0x%08llx\n",
2685 (unsigned long long) pci_resource_len(pdev
, 0));
2686 IWL_DEBUG_INFO(priv
, "pci_resource_base = %p\n", priv
->hw_base
);
2688 iwl_hw_detect(priv
);
2689 IWL_INFO(priv
, "Detected Intel Wireless WiFi Link %s REV=0x%X\n",
2690 priv
->cfg
->name
, priv
->hw_rev
);
2692 /* We disable the RETRY_TIMEOUT register (0x41) to keep
2693 * PCI Tx retries from interfering with C3 CPU state */
2694 pci_write_config_byte(pdev
, PCI_CFG_RETRY_TIMEOUT
, 0x00);
2697 err
= priv
->cfg
->ops
->lib
->apm_ops
.init(priv
);
2699 IWL_ERR(priv
, "Failed to init APMG\n");
2705 /* Read the EEPROM */
2706 err
= iwl_eeprom_init(priv
);
2708 IWL_ERR(priv
, "Unable to init EEPROM\n");
2711 err
= iwl_eeprom_check_version(priv
);
2713 goto out_free_eeprom
;
2715 /* extract MAC Address */
2716 iwl_eeprom_get_mac(priv
, priv
->mac_addr
);
2717 IWL_DEBUG_INFO(priv
, "MAC address: %pM\n", priv
->mac_addr
);
2718 SET_IEEE80211_PERM_ADDR(priv
->hw
, priv
->mac_addr
);
2720 /************************
2721 * 5. Setup HW constants
2722 ************************/
2723 if (iwl_set_hw_params(priv
)) {
2724 IWL_ERR(priv
, "failed to set hw parameters\n");
2725 goto out_free_eeprom
;
2728 /*******************
2730 *******************/
2732 err
= iwl_init_drv(priv
);
2734 goto out_free_eeprom
;
2735 /* At this point both hw and priv are initialized. */
2737 /********************
2739 ********************/
2740 spin_lock_irqsave(&priv
->lock
, flags
);
2741 iwl_disable_interrupts(priv
);
2742 spin_unlock_irqrestore(&priv
->lock
, flags
);
2744 pci_enable_msi(priv
->pci_dev
);
2746 err
= request_irq(priv
->pci_dev
->irq
, iwl_isr
, IRQF_SHARED
,
2749 IWL_ERR(priv
, "Error allocating IRQ %d\n", priv
->pci_dev
->irq
);
2750 goto out_disable_msi
;
2752 err
= sysfs_create_group(&pdev
->dev
.kobj
, &iwl_attribute_group
);
2754 IWL_ERR(priv
, "failed to create sysfs device attributes\n");
2758 iwl_setup_deferred_work(priv
);
2759 iwl_setup_rx_handlers(priv
);
2761 /**********************************
2762 * 8. Setup and register mac80211
2763 **********************************/
2765 /* enable interrupts if needed: hw bug w/a */
2766 pci_read_config_word(priv
->pci_dev
, PCI_COMMAND
, &pci_cmd
);
2767 if (pci_cmd
& PCI_COMMAND_INTX_DISABLE
) {
2768 pci_cmd
&= ~PCI_COMMAND_INTX_DISABLE
;
2769 pci_write_config_word(priv
->pci_dev
, PCI_COMMAND
, pci_cmd
);
2772 iwl_enable_interrupts(priv
);
2774 err
= iwl_setup_mac(priv
);
2776 goto out_remove_sysfs
;
2778 err
= iwl_dbgfs_register(priv
, DRV_NAME
);
2780 IWL_ERR(priv
, "failed to create debugfs files. Ignoring error: %d\n", err
);
2782 /* If platform's RF_KILL switch is NOT set to KILL */
2783 if (iwl_read32(priv
, CSR_GP_CNTRL
) & CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW
)
2784 clear_bit(STATUS_RF_KILL_HW
, &priv
->status
);
2786 set_bit(STATUS_RF_KILL_HW
, &priv
->status
);
2788 err
= iwl_rfkill_init(priv
);
2790 IWL_ERR(priv
, "Unable to initialize RFKILL system. "
2791 "Ignoring error: %d\n", err
);
2793 iwl_rfkill_set_hw_state(priv
);
2795 iwl_power_initialize(priv
);
2799 destroy_workqueue(priv
->workqueue
);
2800 priv
->workqueue
= NULL
;
2801 sysfs_remove_group(&pdev
->dev
.kobj
, &iwl_attribute_group
);
2803 free_irq(priv
->pci_dev
->irq
, priv
);
2805 pci_disable_msi(priv
->pci_dev
);
2806 iwl_uninit_drv(priv
);
2808 iwl_eeprom_free(priv
);
2810 pci_iounmap(pdev
, priv
->hw_base
);
2811 out_pci_release_regions
:
2812 pci_set_drvdata(pdev
, NULL
);
2813 pci_release_regions(pdev
);
2814 out_pci_disable_device
:
2815 pci_disable_device(pdev
);
2816 out_ieee80211_free_hw
:
2817 ieee80211_free_hw(priv
->hw
);
2822 static void __devexit
iwl_pci_remove(struct pci_dev
*pdev
)
2824 struct iwl_priv
*priv
= pci_get_drvdata(pdev
);
2825 unsigned long flags
;
2830 IWL_DEBUG_INFO(priv
, "*** UNLOAD DRIVER ***\n");
2832 iwl_dbgfs_unregister(priv
);
2833 sysfs_remove_group(&pdev
->dev
.kobj
, &iwl_attribute_group
);
2835 /* ieee80211_unregister_hw call wil cause iwl_mac_stop to
2836 * to be called and iwl_down since we are removing the device
2837 * we need to set STATUS_EXIT_PENDING bit.
2839 set_bit(STATUS_EXIT_PENDING
, &priv
->status
);
2840 if (priv
->mac80211_registered
) {
2841 ieee80211_unregister_hw(priv
->hw
);
2842 priv
->mac80211_registered
= 0;
2847 /* make sure we flush any pending irq or
2848 * tasklet for the driver
2850 spin_lock_irqsave(&priv
->lock
, flags
);
2851 iwl_disable_interrupts(priv
);
2852 spin_unlock_irqrestore(&priv
->lock
, flags
);
2854 iwl_synchronize_irq(priv
);
2856 iwl_rfkill_unregister(priv
);
2857 iwl_dealloc_ucode_pci(priv
);
2860 iwl_rx_queue_free(priv
, &priv
->rxq
);
2861 iwl_hw_txq_ctx_free(priv
);
2863 priv
->cfg
->ops
->smgmt
->clear_station_table(priv
);
2864 iwl_eeprom_free(priv
);
2867 /*netif_stop_queue(dev); */
2868 flush_workqueue(priv
->workqueue
);
2870 /* ieee80211_unregister_hw calls iwl_mac_stop, which flushes
2871 * priv->workqueue... so we can't take down the workqueue
2873 destroy_workqueue(priv
->workqueue
);
2874 priv
->workqueue
= NULL
;
2876 free_irq(priv
->pci_dev
->irq
, priv
);
2877 pci_disable_msi(priv
->pci_dev
);
2878 pci_iounmap(pdev
, priv
->hw_base
);
2879 pci_release_regions(pdev
);
2880 pci_disable_device(pdev
);
2881 pci_set_drvdata(pdev
, NULL
);
2883 iwl_uninit_drv(priv
);
2885 if (priv
->ibss_beacon
)
2886 dev_kfree_skb(priv
->ibss_beacon
);
2888 ieee80211_free_hw(priv
->hw
);
2892 /*****************************************************************************
2894 * driver and module entry point
2896 *****************************************************************************/
2898 /* Hardware specific file defines the PCI IDs table for that hardware module */
2899 static struct pci_device_id iwl_hw_card_ids
[] = {
2900 #ifdef CONFIG_IWL4965
2901 {IWL_PCI_DEVICE(0x4229, PCI_ANY_ID
, iwl4965_agn_cfg
)},
2902 {IWL_PCI_DEVICE(0x4230, PCI_ANY_ID
, iwl4965_agn_cfg
)},
2903 #endif /* CONFIG_IWL4965 */
2904 #ifdef CONFIG_IWL5000
2905 {IWL_PCI_DEVICE(0x4232, 0x1205, iwl5100_bg_cfg
)},
2906 {IWL_PCI_DEVICE(0x4232, 0x1305, iwl5100_bg_cfg
)},
2907 {IWL_PCI_DEVICE(0x4232, 0x1206, iwl5100_abg_cfg
)},
2908 {IWL_PCI_DEVICE(0x4232, 0x1306, iwl5100_abg_cfg
)},
2909 {IWL_PCI_DEVICE(0x4232, 0x1326, iwl5100_abg_cfg
)},
2910 {IWL_PCI_DEVICE(0x4237, 0x1216, iwl5100_abg_cfg
)},
2911 {IWL_PCI_DEVICE(0x4232, PCI_ANY_ID
, iwl5100_agn_cfg
)},
2912 {IWL_PCI_DEVICE(0x4235, PCI_ANY_ID
, iwl5300_agn_cfg
)},
2913 {IWL_PCI_DEVICE(0x4236, PCI_ANY_ID
, iwl5300_agn_cfg
)},
2914 {IWL_PCI_DEVICE(0x4237, PCI_ANY_ID
, iwl5100_agn_cfg
)},
2915 /* 5350 WiFi/WiMax */
2916 {IWL_PCI_DEVICE(0x423A, 0x1001, iwl5350_agn_cfg
)},
2917 {IWL_PCI_DEVICE(0x423A, 0x1021, iwl5350_agn_cfg
)},
2918 {IWL_PCI_DEVICE(0x423B, 0x1011, iwl5350_agn_cfg
)},
2919 /* 5150 Wifi/WiMax */
2920 {IWL_PCI_DEVICE(0x423C, PCI_ANY_ID
, iwl5150_agn_cfg
)},
2921 {IWL_PCI_DEVICE(0x423D, PCI_ANY_ID
, iwl5150_agn_cfg
)},
2922 /* 6000/6050 Series */
2923 {IWL_PCI_DEVICE(0x0082, 0x1102, iwl6000_2ag_cfg
)},
2924 {IWL_PCI_DEVICE(0x0085, 0x1112, iwl6000_2ag_cfg
)},
2925 {IWL_PCI_DEVICE(0x0082, 0x1122, iwl6000_2ag_cfg
)},
2926 {IWL_PCI_DEVICE(0x422B, PCI_ANY_ID
, iwl6000_3agn_cfg
)},
2927 {IWL_PCI_DEVICE(0x4238, PCI_ANY_ID
, iwl6000_3agn_cfg
)},
2928 {IWL_PCI_DEVICE(0x0082, PCI_ANY_ID
, iwl6000_2agn_cfg
)},
2929 {IWL_PCI_DEVICE(0x0085, PCI_ANY_ID
, iwl6000_3agn_cfg
)},
2930 {IWL_PCI_DEVICE(0x0086, PCI_ANY_ID
, iwl6050_3agn_cfg
)},
2931 {IWL_PCI_DEVICE(0x0087, PCI_ANY_ID
, iwl6050_2agn_cfg
)},
2932 {IWL_PCI_DEVICE(0x0088, PCI_ANY_ID
, iwl6050_3agn_cfg
)},
2933 {IWL_PCI_DEVICE(0x0089, PCI_ANY_ID
, iwl6050_2agn_cfg
)},
2934 /* 1000 Series WiFi */
2935 {IWL_PCI_DEVICE(0x0083, PCI_ANY_ID
, iwl1000_bgn_cfg
)},
2936 {IWL_PCI_DEVICE(0x0084, PCI_ANY_ID
, iwl1000_bgn_cfg
)},
2937 #endif /* CONFIG_IWL5000 */
2941 MODULE_DEVICE_TABLE(pci
, iwl_hw_card_ids
);
2943 static struct pci_driver iwl_driver
= {
2945 .id_table
= iwl_hw_card_ids
,
2946 .probe
= iwl_pci_probe
,
2947 .remove
= __devexit_p(iwl_pci_remove
),
2949 .suspend
= iwl_pci_suspend
,
2950 .resume
= iwl_pci_resume
,
2954 static int __init
iwl_init(void)
2958 printk(KERN_INFO DRV_NAME
": " DRV_DESCRIPTION
", " DRV_VERSION
"\n");
2959 printk(KERN_INFO DRV_NAME
": " DRV_COPYRIGHT
"\n");
2961 ret
= iwlagn_rate_control_register();
2963 printk(KERN_ERR DRV_NAME
2964 "Unable to register rate control algorithm: %d\n", ret
);
2968 ret
= pci_register_driver(&iwl_driver
);
2970 printk(KERN_ERR DRV_NAME
"Unable to initialize PCI module\n");
2971 goto error_register
;
2977 iwlagn_rate_control_unregister();
2981 static void __exit
iwl_exit(void)
2983 pci_unregister_driver(&iwl_driver
);
2984 iwlagn_rate_control_unregister();
2987 module_exit(iwl_exit
);
2988 module_init(iwl_init
);