1 /******************************************************************************
3 * Copyright(c) 2003 - 2008 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/ieee80211_radiotap.h>
44 #include <net/lib80211.h>
45 #include <net/mac80211.h>
47 #include <asm/div64.h>
49 #define DRV_NAME "iwl3945"
52 #include "iwl-3945-fh.h"
53 #include "iwl-commands.h"
55 #include "iwl-helpers.h"
59 static int iwl3945_tx_queue_update_write_ptr(struct iwl_priv *priv,
60 struct iwl_tx_queue *txq);
63 * module name, copyright, version, etc.
66 #define DRV_DESCRIPTION \
67 "Intel(R) PRO/Wireless 3945ABG/BG Network Connection driver for Linux"
69 #ifdef CONFIG_IWL3945_DEBUG
75 #ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
81 #define IWL39_VERSION "1.2.26k" VD VS
82 #define DRV_COPYRIGHT "Copyright(c) 2003-2008 Intel Corporation"
83 #define DRV_AUTHOR "<ilw@linux.intel.com>"
84 #define DRV_VERSION IWL39_VERSION
87 MODULE_DESCRIPTION(DRV_DESCRIPTION);
88 MODULE_VERSION(DRV_VERSION);
89 MODULE_AUTHOR(DRV_COPYRIGHT " " DRV_AUTHOR);
90 MODULE_LICENSE("GPL");
92 /* module parameters */
93 struct iwl_mod_params iwl3945_mod_params = {
94 .num_of_queues = IWL39_MAX_NUM_QUEUES,
95 /* the rest are 0 by default */
98 /*************** DMA-QUEUE-GENERAL-FUNCTIONS *****
101 * Theory of operation
103 * A Tx or Rx queue resides in host DRAM, and is comprised of a circular buffer
104 * of buffer descriptors, each of which points to one or more data buffers for
105 * the device to read from or fill. Driver and device exchange status of each
106 * queue via "read" and "write" pointers. Driver keeps minimum of 2 empty
107 * entries in each circular buffer, to protect against confusing empty and full
110 * The device reads or writes the data in the queues via the device's several
111 * DMA/FIFO channels. Each queue is mapped to a single DMA channel.
113 * For Tx queue, there are low mark and high mark limits. If, after queuing
114 * the packet for Tx, free space become < low mark, Tx queue stopped. When
115 * reclaiming packets (on 'tx done IRQ), if free space become > high mark,
118 * The 3945 operates with six queues: One receive queue, one transmit queue
119 * (#4) for sending commands to the device firmware, and four transmit queues
120 * (#0-3) for data tx via EDCA. An additional 2 HCCA queues are unused.
121 ***************************************************/
123 int iwl3945_x2_queue_used(const struct iwl_queue *q, int i)
125 return q->write_ptr > q->read_ptr ?
126 (i >= q->read_ptr && i < q->write_ptr) :
127 !(i < q->read_ptr && i >= q->write_ptr);
131 * iwl3945_queue_init - Initialize queue's high/low-water and read/write indexes
133 static int iwl3945_queue_init(struct iwl_priv *priv, struct iwl_queue *q,
134 int count, int slots_num, u32 id)
137 q->n_window = slots_num;
140 /* count must be power-of-two size, otherwise iwl_queue_inc_wrap
141 * and iwl_queue_dec_wrap are broken. */
142 BUG_ON(!is_power_of_2(count));
144 /* slots_num must be power-of-two size, otherwise
145 * get_cmd_index is broken. */
146 BUG_ON(!is_power_of_2(slots_num));
148 q->low_mark = q->n_window / 4;
152 q->high_mark = q->n_window / 8;
153 if (q->high_mark < 2)
156 q->write_ptr = q->read_ptr = 0;
162 * iwl3945_tx_queue_alloc - Alloc driver data and TFD CB for one Tx/cmd queue
164 static int iwl3945_tx_queue_alloc(struct iwl_priv *priv,
165 struct iwl_tx_queue *txq, u32 id)
167 struct pci_dev *dev = priv->pci_dev;
169 /* Driver private data, only for Tx (not command) queues,
170 * not shared with device. */
171 if (id != IWL_CMD_QUEUE_NUM) {
172 txq->txb = kmalloc(sizeof(txq->txb[0]) *
173 TFD_QUEUE_SIZE_MAX, GFP_KERNEL);
175 IWL_ERR(priv, "kmalloc for auxiliary BD "
176 "structures failed\n");
182 /* Circular buffer of transmit frame descriptors (TFDs),
183 * shared with device */
184 txq->tfds39 = pci_alloc_consistent(dev,
185 sizeof(txq->tfds39[0]) * TFD_QUEUE_SIZE_MAX,
189 IWL_ERR(priv, "pci_alloc_consistent(%zd) failed\n",
190 sizeof(txq->tfds39[0]) * TFD_QUEUE_SIZE_MAX);
205 * iwl3945_tx_queue_init - Allocate and initialize one tx/cmd queue
207 int iwl3945_tx_queue_init(struct iwl_priv *priv,
208 struct iwl_tx_queue *txq, int slots_num, u32 txq_id)
214 * Alloc buffer array for commands (Tx or other types of commands).
215 * For the command queue (#4), allocate command space + one big
216 * command for scan, since scan command is very huge; the system will
217 * not have two scans at the same time, so only one is needed.
218 * For data Tx queues (all other queues), no super-size command
221 len = sizeof(struct iwl_cmd);
222 for (i = 0; i <= slots_num; i++) {
223 if (i == slots_num) {
224 if (txq_id == IWL_CMD_QUEUE_NUM)
225 len += IWL_MAX_SCAN_SIZE;
230 txq->cmd[i] = kmalloc(len, GFP_KERNEL);
235 /* Alloc driver data array and TFD circular buffer */
236 rc = iwl3945_tx_queue_alloc(priv, txq, txq_id);
240 txq->need_update = 0;
242 /* TFD_QUEUE_SIZE_MAX must be power-of-two size, otherwise
243 * iwl_queue_inc_wrap and iwl_queue_dec_wrap are broken. */
244 BUILD_BUG_ON(TFD_QUEUE_SIZE_MAX & (TFD_QUEUE_SIZE_MAX - 1));
246 /* Initialize queue high/low-water, head/tail indexes */
247 iwl3945_queue_init(priv, &txq->q, TFD_QUEUE_SIZE_MAX, slots_num, txq_id);
249 /* Tell device where to find queue, enable DMA channel. */
250 iwl3945_hw_tx_queue_init(priv, txq);
254 for (i = 0; i < slots_num; i++) {
259 if (txq_id == IWL_CMD_QUEUE_NUM) {
260 kfree(txq->cmd[slots_num]);
261 txq->cmd[slots_num] = NULL;
267 * iwl3945_tx_queue_free - Deallocate DMA queue.
268 * @txq: Transmit queue to deallocate.
270 * Empty queue by removing and destroying all BD's.
272 * 0-fill, but do not free "txq" descriptor structure.
274 void iwl3945_tx_queue_free(struct iwl_priv *priv, struct iwl_tx_queue *txq)
276 struct iwl_queue *q = &txq->q;
277 struct pci_dev *dev = priv->pci_dev;
283 /* first, empty all BD's */
284 for (; q->write_ptr != q->read_ptr;
285 q->read_ptr = iwl_queue_inc_wrap(q->read_ptr, q->n_bd))
286 iwl3945_hw_txq_free_tfd(priv, txq);
288 len = sizeof(struct iwl_cmd) * q->n_window;
289 if (q->id == IWL_CMD_QUEUE_NUM)
290 len += IWL_MAX_SCAN_SIZE;
292 /* De-alloc array of command/tx buffers */
293 for (i = 0; i < TFD_TX_CMD_SLOTS; i++)
296 /* De-alloc circular buffer of TFDs */
298 pci_free_consistent(dev, sizeof(struct iwl3945_tfd) *
299 txq->q.n_bd, txq->tfds39, txq->q.dma_addr);
301 /* De-alloc array of per-TFD driver data */
305 /* 0-fill queue descriptor structure */
306 memset(txq, 0, sizeof(*txq));
309 /*************** STATION TABLE MANAGEMENT ****
310 * mac80211 should be examined to determine if sta_info is duplicating
311 * the functionality provided here
314 /**************************************************************/
315 #if 0 /* temporary disable till we add real remove station */
317 * iwl3945_remove_station - Remove driver's knowledge of station.
319 * NOTE: This does not remove station from device's station table.
321 static u8 iwl3945_remove_station(struct iwl_priv *priv, const u8 *addr, int is_ap)
323 int index = IWL_INVALID_STATION;
327 spin_lock_irqsave(&priv->sta_lock, flags);
331 else if (is_broadcast_ether_addr(addr))
332 index = priv->hw_params.bcast_sta_id;
334 for (i = IWL_STA_ID; i < priv->hw_params.max_stations; i++)
335 if (priv->stations_39[i].used &&
336 !compare_ether_addr(priv->stations_39[i].sta.sta.addr,
342 if (unlikely(index == IWL_INVALID_STATION))
345 if (priv->stations_39[index].used) {
346 priv->stations_39[index].used = 0;
347 priv->num_stations--;
350 BUG_ON(priv->num_stations < 0);
353 spin_unlock_irqrestore(&priv->sta_lock, flags);
359 * iwl3945_clear_stations_table - Clear the driver's station table
361 * NOTE: This does not clear or otherwise alter the device's station table.
363 static void iwl3945_clear_stations_table(struct iwl_priv *priv)
367 spin_lock_irqsave(&priv->sta_lock, flags);
369 priv->num_stations = 0;
370 memset(priv->stations_39, 0, sizeof(priv->stations_39));
372 spin_unlock_irqrestore(&priv->sta_lock, flags);
376 * iwl3945_add_station - Add station to station tables in driver and device
378 u8 iwl3945_add_station(struct iwl_priv *priv, const u8 *addr, int is_ap, u8 flags)
381 int index = IWL_INVALID_STATION;
382 struct iwl3945_station_entry *station;
383 unsigned long flags_spin;
386 spin_lock_irqsave(&priv->sta_lock, flags_spin);
389 else if (is_broadcast_ether_addr(addr))
390 index = priv->hw_params.bcast_sta_id;
392 for (i = IWL_STA_ID; i < priv->hw_params.max_stations; i++) {
393 if (!compare_ether_addr(priv->stations_39[i].sta.sta.addr,
399 if (!priv->stations_39[i].used &&
400 index == IWL_INVALID_STATION)
404 /* These two conditions has the same outcome but keep them separate
405 since they have different meaning */
406 if (unlikely(index == IWL_INVALID_STATION)) {
407 spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
411 if (priv->stations_39[index].used &&
412 !compare_ether_addr(priv->stations_39[index].sta.sta.addr, addr)) {
413 spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
417 IWL_DEBUG_ASSOC("Add STA ID %d: %pM\n", index, addr);
418 station = &priv->stations_39[index];
420 priv->num_stations++;
422 /* Set up the REPLY_ADD_STA command to send to device */
423 memset(&station->sta, 0, sizeof(struct iwl3945_addsta_cmd));
424 memcpy(station->sta.sta.addr, addr, ETH_ALEN);
425 station->sta.mode = 0;
426 station->sta.sta.sta_id = index;
427 station->sta.station_flags = 0;
429 if (priv->band == IEEE80211_BAND_5GHZ)
430 rate = IWL_RATE_6M_PLCP;
432 rate = IWL_RATE_1M_PLCP;
434 /* Turn on both antennas for the station... */
435 station->sta.rate_n_flags =
436 iwl3945_hw_set_rate_n_flags(rate, RATE_MCS_ANT_AB_MSK);
438 spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
440 /* Add station to device's station table */
441 iwl3945_send_add_station(priv, &station->sta, flags);
447 /*************** HOST COMMAND QUEUE FUNCTIONS *****/
449 #define IWL_CMD(x) case x: return #x
450 #define HOST_COMPLETE_TIMEOUT (HZ / 2)
453 * iwl3945_enqueue_hcmd - enqueue a uCode command
454 * @priv: device private data point
455 * @cmd: a point to the ucode command structure
457 * The function returns < 0 values to indicate the operation is
458 * failed. On success, it turns the index (> 0) of command in the
461 static int iwl3945_enqueue_hcmd(struct iwl_priv *priv, struct iwl_host_cmd *cmd)
463 struct iwl_tx_queue *txq = &priv->txq[IWL_CMD_QUEUE_NUM];
464 struct iwl_queue *q = &txq->q;
465 struct iwl3945_tfd *tfd;
466 struct iwl_cmd *out_cmd;
468 u16 fix_size = (u16)(cmd->len + sizeof(out_cmd->hdr));
469 dma_addr_t phys_addr;
474 /* If any of the command structures end up being larger than
475 * the TFD_MAX_PAYLOAD_SIZE, and it sent as a 'small' command then
476 * we will need to increase the size of the TFD entries */
477 BUG_ON((fix_size > TFD_MAX_PAYLOAD_SIZE) &&
478 !(cmd->meta.flags & CMD_SIZE_HUGE));
481 if (iwl_is_rfkill(priv)) {
482 IWL_DEBUG_INFO("Not sending command - RF KILL");
486 if (iwl_queue_space(q) < ((cmd->meta.flags & CMD_ASYNC) ? 2 : 1)) {
487 IWL_ERR(priv, "No space for Tx\n");
491 spin_lock_irqsave(&priv->hcmd_lock, flags);
493 tfd = &txq->tfds39[q->write_ptr];
494 memset(tfd, 0, sizeof(*tfd));
496 idx = get_cmd_index(q, q->write_ptr, cmd->meta.flags & CMD_SIZE_HUGE);
497 out_cmd = txq->cmd[idx];
499 out_cmd->hdr.cmd = cmd->id;
500 memcpy(&out_cmd->meta, &cmd->meta, sizeof(cmd->meta));
501 memcpy(&out_cmd->cmd.payload, cmd->data, cmd->len);
503 /* At this point, the out_cmd now has all of the incoming cmd
506 out_cmd->hdr.flags = 0;
507 out_cmd->hdr.sequence = cpu_to_le16(QUEUE_TO_SEQ(IWL_CMD_QUEUE_NUM) |
508 INDEX_TO_SEQ(q->write_ptr));
509 if (out_cmd->meta.flags & CMD_SIZE_HUGE)
510 out_cmd->hdr.sequence |= SEQ_HUGE_FRAME;
512 len = (idx == TFD_CMD_SLOTS) ?
513 IWL_MAX_SCAN_SIZE : sizeof(struct iwl_cmd);
515 phys_addr = pci_map_single(priv->pci_dev, out_cmd,
516 len, PCI_DMA_TODEVICE);
517 pci_unmap_addr_set(&out_cmd->meta, mapping, phys_addr);
518 pci_unmap_len_set(&out_cmd->meta, len, len);
519 phys_addr += offsetof(struct iwl_cmd, hdr);
521 iwl3945_hw_txq_attach_buf_to_tfd(priv, tfd, phys_addr, fix_size);
523 pad = U32_PAD(cmd->len);
524 tfd->control_flags |= cpu_to_le32(TFD_CTL_PAD_SET(pad));
526 IWL_DEBUG_HC("Sending command %s (#%x), seq: 0x%04X, "
527 "%d bytes at %d[%d]:%d\n",
528 get_cmd_string(out_cmd->hdr.cmd),
529 out_cmd->hdr.cmd, le16_to_cpu(out_cmd->hdr.sequence),
530 fix_size, q->write_ptr, idx, IWL_CMD_QUEUE_NUM);
532 txq->need_update = 1;
534 /* Increment and update queue's write index */
535 q->write_ptr = iwl_queue_inc_wrap(q->write_ptr, q->n_bd);
536 ret = iwl3945_tx_queue_update_write_ptr(priv, txq);
538 spin_unlock_irqrestore(&priv->hcmd_lock, flags);
539 return ret ? ret : idx;
542 static int iwl3945_send_cmd_async(struct iwl_priv *priv,
543 struct iwl_host_cmd *cmd)
547 BUG_ON(!(cmd->meta.flags & CMD_ASYNC));
549 /* An asynchronous command can not expect an SKB to be set. */
550 BUG_ON(cmd->meta.flags & CMD_WANT_SKB);
552 /* An asynchronous command MUST have a callback. */
553 BUG_ON(!cmd->meta.u.callback);
555 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
558 ret = iwl3945_enqueue_hcmd(priv, cmd);
561 "Error sending %s: iwl3945_enqueue_hcmd failed: %d\n",
562 get_cmd_string(cmd->id), ret);
568 static int iwl3945_send_cmd_sync(struct iwl_priv *priv,
569 struct iwl_host_cmd *cmd)
574 BUG_ON(cmd->meta.flags & CMD_ASYNC);
576 /* A synchronous command can not have a callback set. */
577 BUG_ON(cmd->meta.u.callback != NULL);
579 if (test_and_set_bit(STATUS_HCMD_SYNC_ACTIVE, &priv->status)) {
581 "Error sending %s: Already sending a host command\n",
582 get_cmd_string(cmd->id));
587 set_bit(STATUS_HCMD_ACTIVE, &priv->status);
589 if (cmd->meta.flags & CMD_WANT_SKB)
590 cmd->meta.source = &cmd->meta;
592 cmd_idx = iwl3945_enqueue_hcmd(priv, cmd);
596 "Error sending %s: iwl3945_enqueue_hcmd failed: %d\n",
597 get_cmd_string(cmd->id), ret);
601 ret = wait_event_interruptible_timeout(priv->wait_command_queue,
602 !test_bit(STATUS_HCMD_ACTIVE, &priv->status),
603 HOST_COMPLETE_TIMEOUT);
605 if (test_bit(STATUS_HCMD_ACTIVE, &priv->status)) {
606 IWL_ERR(priv, "Error sending %s: time out after %dms\n",
607 get_cmd_string(cmd->id),
608 jiffies_to_msecs(HOST_COMPLETE_TIMEOUT));
610 clear_bit(STATUS_HCMD_ACTIVE, &priv->status);
616 if (test_bit(STATUS_RF_KILL_HW, &priv->status)) {
617 IWL_DEBUG_INFO("Command %s aborted: RF KILL Switch\n",
618 get_cmd_string(cmd->id));
622 if (test_bit(STATUS_FW_ERROR, &priv->status)) {
623 IWL_DEBUG_INFO("Command %s failed: FW Error\n",
624 get_cmd_string(cmd->id));
628 if ((cmd->meta.flags & CMD_WANT_SKB) && !cmd->meta.u.skb) {
629 IWL_ERR(priv, "Error: Response NULL in '%s'\n",
630 get_cmd_string(cmd->id));
639 if (cmd->meta.flags & CMD_WANT_SKB) {
640 struct iwl_cmd *qcmd;
642 /* Cancel the CMD_WANT_SKB flag for the cmd in the
643 * TX cmd queue. Otherwise in case the cmd comes
644 * in later, it will possibly set an invalid
645 * address (cmd->meta.source). */
646 qcmd = priv->txq[IWL_CMD_QUEUE_NUM].cmd[cmd_idx];
647 qcmd->meta.flags &= ~CMD_WANT_SKB;
650 if (cmd->meta.u.skb) {
651 dev_kfree_skb_any(cmd->meta.u.skb);
652 cmd->meta.u.skb = NULL;
655 clear_bit(STATUS_HCMD_SYNC_ACTIVE, &priv->status);
659 int iwl3945_send_cmd(struct iwl_priv *priv, struct iwl_host_cmd *cmd)
661 if (cmd->meta.flags & CMD_ASYNC)
662 return iwl3945_send_cmd_async(priv, cmd);
664 return iwl3945_send_cmd_sync(priv, cmd);
667 int iwl3945_send_cmd_pdu(struct iwl_priv *priv, u8 id, u16 len, const void *data)
669 struct iwl_host_cmd cmd = {
675 return iwl3945_send_cmd_sync(priv, &cmd);
678 static int __must_check iwl3945_send_cmd_u32(struct iwl_priv *priv, u8 id, u32 val)
680 struct iwl_host_cmd cmd = {
686 return iwl3945_send_cmd_sync(priv, &cmd);
689 int iwl3945_send_statistics_request(struct iwl_priv *priv)
691 return iwl3945_send_cmd_u32(priv, REPLY_STATISTICS_CMD, 0);
695 * iwl3945_set_rxon_channel - Set the phymode and channel values in staging RXON
696 * @band: 2.4 or 5 GHz band
697 * @channel: Any channel valid for the requested band
699 * In addition to setting the staging RXON, priv->band is also set.
701 * NOTE: Does not commit to the hardware; it sets appropriate bit fields
702 * in the staging RXON flag structure based on the band
704 static int iwl3945_set_rxon_channel(struct iwl_priv *priv,
705 enum ieee80211_band band,
708 if (!iwl3945_get_channel_info(priv, band, channel)) {
709 IWL_DEBUG_INFO("Could not set channel to %d [%d]\n",
714 if ((le16_to_cpu(priv->staging39_rxon.channel) == channel) &&
715 (priv->band == band))
718 priv->staging39_rxon.channel = cpu_to_le16(channel);
719 if (band == IEEE80211_BAND_5GHZ)
720 priv->staging39_rxon.flags &= ~RXON_FLG_BAND_24G_MSK;
722 priv->staging39_rxon.flags |= RXON_FLG_BAND_24G_MSK;
726 IWL_DEBUG_INFO("Staging channel set to %d [%d]\n", channel, band);
732 * iwl3945_check_rxon_cmd - validate RXON structure is valid
734 * NOTE: This is really only useful during development and can eventually
735 * be #ifdef'd out once the driver is stable and folks aren't actively
738 static int iwl3945_check_rxon_cmd(struct iwl_priv *priv)
742 struct iwl3945_rxon_cmd *rxon = &priv->staging39_rxon;
744 if (rxon->flags & RXON_FLG_BAND_24G_MSK) {
745 error |= le32_to_cpu(rxon->flags &
746 (RXON_FLG_TGJ_NARROW_BAND_MSK |
747 RXON_FLG_RADAR_DETECT_MSK));
749 IWL_WARN(priv, "check 24G fields %d | %d\n",
752 error |= (rxon->flags & RXON_FLG_SHORT_SLOT_MSK) ?
753 0 : le32_to_cpu(RXON_FLG_SHORT_SLOT_MSK);
755 IWL_WARN(priv, "check 52 fields %d | %d\n",
757 error |= le32_to_cpu(rxon->flags & RXON_FLG_CCK_MSK);
759 IWL_WARN(priv, "check 52 CCK %d | %d\n",
762 error |= (rxon->node_addr[0] | rxon->bssid_addr[0]) & 0x1;
764 IWL_WARN(priv, "check mac addr %d | %d\n", counter++, error);
766 /* make sure basic rates 6Mbps and 1Mbps are supported */
767 error |= (((rxon->ofdm_basic_rates & IWL_RATE_6M_MASK) == 0) &&
768 ((rxon->cck_basic_rates & IWL_RATE_1M_MASK) == 0));
770 IWL_WARN(priv, "check basic rate %d | %d\n", counter++, error);
772 error |= (le16_to_cpu(rxon->assoc_id) > 2007);
774 IWL_WARN(priv, "check assoc id %d | %d\n", counter++, error);
776 error |= ((rxon->flags & (RXON_FLG_CCK_MSK | RXON_FLG_SHORT_SLOT_MSK))
777 == (RXON_FLG_CCK_MSK | RXON_FLG_SHORT_SLOT_MSK));
779 IWL_WARN(priv, "check CCK and short slot %d | %d\n",
782 error |= ((rxon->flags & (RXON_FLG_CCK_MSK | RXON_FLG_AUTO_DETECT_MSK))
783 == (RXON_FLG_CCK_MSK | RXON_FLG_AUTO_DETECT_MSK));
785 IWL_WARN(priv, "check CCK & auto detect %d | %d\n",
788 error |= ((rxon->flags & (RXON_FLG_AUTO_DETECT_MSK |
789 RXON_FLG_TGG_PROTECT_MSK)) == RXON_FLG_TGG_PROTECT_MSK);
791 IWL_WARN(priv, "check TGG and auto detect %d | %d\n",
794 if ((rxon->flags & RXON_FLG_DIS_DIV_MSK))
795 error |= ((rxon->flags & (RXON_FLG_ANT_B_MSK |
796 RXON_FLG_ANT_A_MSK)) == 0);
798 IWL_WARN(priv, "check antenna %d %d\n", counter++, error);
801 IWL_WARN(priv, "Tuning to channel %d\n",
802 le16_to_cpu(rxon->channel));
805 IWL_ERR(priv, "Not a valid rxon_assoc_cmd field values\n");
812 * iwl3945_full_rxon_required - check if full RXON (vs RXON_ASSOC) cmd is needed
813 * @priv: staging_rxon is compared to active_rxon
815 * If the RXON structure is changing enough to require a new tune,
816 * or is clearing the RXON_FILTER_ASSOC_MSK, then return 1 to indicate that
817 * a new tune (full RXON command, rather than RXON_ASSOC cmd) is required.
819 static int iwl3945_full_rxon_required(struct iwl_priv *priv)
822 /* These items are only settable from the full RXON command */
823 if (!(iwl3945_is_associated(priv)) ||
824 compare_ether_addr(priv->staging39_rxon.bssid_addr,
825 priv->active39_rxon.bssid_addr) ||
826 compare_ether_addr(priv->staging39_rxon.node_addr,
827 priv->active39_rxon.node_addr) ||
828 compare_ether_addr(priv->staging39_rxon.wlap_bssid_addr,
829 priv->active39_rxon.wlap_bssid_addr) ||
830 (priv->staging39_rxon.dev_type != priv->active39_rxon.dev_type) ||
831 (priv->staging39_rxon.channel != priv->active39_rxon.channel) ||
832 (priv->staging39_rxon.air_propagation !=
833 priv->active39_rxon.air_propagation) ||
834 (priv->staging39_rxon.assoc_id != priv->active39_rxon.assoc_id))
837 /* flags, filter_flags, ofdm_basic_rates, and cck_basic_rates can
838 * be updated with the RXON_ASSOC command -- however only some
839 * flag transitions are allowed using RXON_ASSOC */
841 /* Check if we are not switching bands */
842 if ((priv->staging39_rxon.flags & RXON_FLG_BAND_24G_MSK) !=
843 (priv->active39_rxon.flags & RXON_FLG_BAND_24G_MSK))
846 /* Check if we are switching association toggle */
847 if ((priv->staging39_rxon.filter_flags & RXON_FILTER_ASSOC_MSK) !=
848 (priv->active39_rxon.filter_flags & RXON_FILTER_ASSOC_MSK))
854 static int iwl3945_send_rxon_assoc(struct iwl_priv *priv)
857 struct iwl_rx_packet *res = NULL;
858 struct iwl3945_rxon_assoc_cmd rxon_assoc;
859 struct iwl_host_cmd cmd = {
860 .id = REPLY_RXON_ASSOC,
861 .len = sizeof(rxon_assoc),
862 .meta.flags = CMD_WANT_SKB,
865 const struct iwl3945_rxon_cmd *rxon1 = &priv->staging39_rxon;
866 const struct iwl3945_rxon_cmd *rxon2 = &priv->active39_rxon;
868 if ((rxon1->flags == rxon2->flags) &&
869 (rxon1->filter_flags == rxon2->filter_flags) &&
870 (rxon1->cck_basic_rates == rxon2->cck_basic_rates) &&
871 (rxon1->ofdm_basic_rates == rxon2->ofdm_basic_rates)) {
872 IWL_DEBUG_INFO("Using current RXON_ASSOC. Not resending.\n");
876 rxon_assoc.flags = priv->staging39_rxon.flags;
877 rxon_assoc.filter_flags = priv->staging39_rxon.filter_flags;
878 rxon_assoc.ofdm_basic_rates = priv->staging39_rxon.ofdm_basic_rates;
879 rxon_assoc.cck_basic_rates = priv->staging39_rxon.cck_basic_rates;
880 rxon_assoc.reserved = 0;
882 rc = iwl3945_send_cmd_sync(priv, &cmd);
886 res = (struct iwl_rx_packet *)cmd.meta.u.skb->data;
887 if (res->hdr.flags & IWL_CMD_FAILED_MSK) {
888 IWL_ERR(priv, "Bad return from REPLY_RXON_ASSOC command\n");
892 priv->alloc_rxb_skb--;
893 dev_kfree_skb_any(cmd.meta.u.skb);
899 * iwl3945_commit_rxon - commit staging_rxon to hardware
901 * The RXON command in staging_rxon is committed to the hardware and
902 * the active_rxon structure is updated with the new data. This
903 * function correctly transitions out of the RXON_ASSOC_MSK state if
904 * a HW tune is required based on the RXON structure changes.
906 static int iwl3945_commit_rxon(struct iwl_priv *priv)
908 /* cast away the const for active_rxon in this function */
909 struct iwl3945_rxon_cmd *active_rxon = (void *)&priv->active39_rxon;
912 if (!iwl_is_alive(priv))
915 /* always get timestamp with Rx frame */
916 priv->staging39_rxon.flags |= RXON_FLG_TSF2HOST_MSK;
919 priv->staging39_rxon.flags &=
920 ~(RXON_FLG_DIS_DIV_MSK | RXON_FLG_ANT_SEL_MSK);
921 priv->staging39_rxon.flags |= iwl3945_get_antenna_flags(priv);
923 rc = iwl3945_check_rxon_cmd(priv);
925 IWL_ERR(priv, "Invalid RXON configuration. Not committing.\n");
929 /* If we don't need to send a full RXON, we can use
930 * iwl3945_rxon_assoc_cmd which is used to reconfigure filter
931 * and other flags for the current radio configuration. */
932 if (!iwl3945_full_rxon_required(priv)) {
933 rc = iwl3945_send_rxon_assoc(priv);
935 IWL_ERR(priv, "Error setting RXON_ASSOC "
936 "configuration (%d).\n", rc);
940 memcpy(active_rxon, &priv->staging39_rxon, sizeof(*active_rxon));
945 /* If we are currently associated and the new config requires
946 * an RXON_ASSOC and the new config wants the associated mask enabled,
947 * we must clear the associated from the active configuration
948 * before we apply the new config */
949 if (iwl3945_is_associated(priv) &&
950 (priv->staging39_rxon.filter_flags & RXON_FILTER_ASSOC_MSK)) {
951 IWL_DEBUG_INFO("Toggling associated bit on current RXON\n");
952 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
954 rc = iwl3945_send_cmd_pdu(priv, REPLY_RXON,
955 sizeof(struct iwl3945_rxon_cmd),
956 &priv->active39_rxon);
958 /* If the mask clearing failed then we set
959 * active_rxon back to what it was previously */
961 active_rxon->filter_flags |= RXON_FILTER_ASSOC_MSK;
962 IWL_ERR(priv, "Error clearing ASSOC_MSK on current "
963 "configuration (%d).\n", rc);
968 IWL_DEBUG_INFO("Sending RXON\n"
969 "* with%s RXON_FILTER_ASSOC_MSK\n"
972 ((priv->staging39_rxon.filter_flags &
973 RXON_FILTER_ASSOC_MSK) ? "" : "out"),
974 le16_to_cpu(priv->staging39_rxon.channel),
975 priv->staging_rxon.bssid_addr);
977 /* Apply the new configuration */
978 rc = iwl3945_send_cmd_pdu(priv, REPLY_RXON,
979 sizeof(struct iwl3945_rxon_cmd), &priv->staging39_rxon);
981 IWL_ERR(priv, "Error setting new configuration (%d).\n", rc);
985 memcpy(active_rxon, &priv->staging39_rxon, sizeof(*active_rxon));
987 iwl3945_clear_stations_table(priv);
989 /* If we issue a new RXON command which required a tune then we must
990 * send a new TXPOWER command or we won't be able to Tx any frames */
991 rc = iwl3945_hw_reg_send_txpower(priv);
993 IWL_ERR(priv, "Error setting Tx power (%d).\n", rc);
997 /* Add the broadcast address so we can send broadcast frames */
998 if (iwl3945_add_station(priv, iwl_bcast_addr, 0, 0) ==
999 IWL_INVALID_STATION) {
1000 IWL_ERR(priv, "Error adding BROADCAST address for transmit.\n");
1004 /* If we have set the ASSOC_MSK and we are in BSS mode then
1005 * add the IWL_AP_ID to the station rate table */
1006 if (iwl3945_is_associated(priv) &&
1007 (priv->iw_mode == NL80211_IFTYPE_STATION))
1008 if (iwl3945_add_station(priv, priv->active39_rxon.bssid_addr, 1, 0)
1009 == IWL_INVALID_STATION) {
1010 IWL_ERR(priv, "Error adding AP address for transmit\n");
1014 /* Init the hardware's rate fallback order based on the band */
1015 rc = iwl3945_init_hw_rate_table(priv);
1017 IWL_ERR(priv, "Error setting HW rate table: %02X\n", rc);
1024 static int iwl3945_send_bt_config(struct iwl_priv *priv)
1026 struct iwl_bt_cmd bt_cmd = {
1034 return iwl3945_send_cmd_pdu(priv, REPLY_BT_CONFIG,
1035 sizeof(bt_cmd), &bt_cmd);
1038 static int iwl3945_send_scan_abort(struct iwl_priv *priv)
1041 struct iwl_rx_packet *res;
1042 struct iwl_host_cmd cmd = {
1043 .id = REPLY_SCAN_ABORT_CMD,
1044 .meta.flags = CMD_WANT_SKB,
1047 /* If there isn't a scan actively going on in the hardware
1048 * then we are in between scan bands and not actually
1049 * actively scanning, so don't send the abort command */
1050 if (!test_bit(STATUS_SCAN_HW, &priv->status)) {
1051 clear_bit(STATUS_SCAN_ABORTING, &priv->status);
1055 rc = iwl3945_send_cmd_sync(priv, &cmd);
1057 clear_bit(STATUS_SCAN_ABORTING, &priv->status);
1061 res = (struct iwl_rx_packet *)cmd.meta.u.skb->data;
1062 if (res->u.status != CAN_ABORT_STATUS) {
1063 /* The scan abort will return 1 for success or
1064 * 2 for "failure". A failure condition can be
1065 * due to simply not being in an active scan which
1066 * can occur if we send the scan abort before we
1067 * the microcode has notified us that a scan is
1069 IWL_DEBUG_INFO("SCAN_ABORT returned %d.\n", res->u.status);
1070 clear_bit(STATUS_SCAN_ABORTING, &priv->status);
1071 clear_bit(STATUS_SCAN_HW, &priv->status);
1074 dev_kfree_skb_any(cmd.meta.u.skb);
1079 static int iwl3945_add_sta_sync_callback(struct iwl_priv *priv,
1080 struct iwl_cmd *cmd, struct sk_buff *skb)
1082 struct iwl_rx_packet *res = NULL;
1085 IWL_ERR(priv, "Error: Response NULL in REPLY_ADD_STA.\n");
1089 res = (struct iwl_rx_packet *)skb->data;
1090 if (res->hdr.flags & IWL_CMD_FAILED_MSK) {
1091 IWL_ERR(priv, "Bad return from REPLY_ADD_STA (0x%08X)\n",
1096 switch (res->u.add_sta.status) {
1097 case ADD_STA_SUCCESS_MSK:
1103 /* We didn't cache the SKB; let the caller free it */
1107 int iwl3945_send_add_station(struct iwl_priv *priv,
1108 struct iwl3945_addsta_cmd *sta, u8 flags)
1110 struct iwl_rx_packet *res = NULL;
1112 struct iwl_host_cmd cmd = {
1113 .id = REPLY_ADD_STA,
1114 .len = sizeof(struct iwl3945_addsta_cmd),
1115 .meta.flags = flags,
1119 if (flags & CMD_ASYNC)
1120 cmd.meta.u.callback = iwl3945_add_sta_sync_callback;
1122 cmd.meta.flags |= CMD_WANT_SKB;
1124 rc = iwl3945_send_cmd(priv, &cmd);
1126 if (rc || (flags & CMD_ASYNC))
1129 res = (struct iwl_rx_packet *)cmd.meta.u.skb->data;
1130 if (res->hdr.flags & IWL_CMD_FAILED_MSK) {
1131 IWL_ERR(priv, "Bad return from REPLY_ADD_STA (0x%08X)\n",
1137 switch (res->u.add_sta.status) {
1138 case ADD_STA_SUCCESS_MSK:
1139 IWL_DEBUG_INFO("REPLY_ADD_STA PASSED\n");
1143 IWL_WARN(priv, "REPLY_ADD_STA failed\n");
1148 priv->alloc_rxb_skb--;
1149 dev_kfree_skb_any(cmd.meta.u.skb);
1154 static int iwl3945_update_sta_key_info(struct iwl_priv *priv,
1155 struct ieee80211_key_conf *keyconf,
1158 unsigned long flags;
1159 __le16 key_flags = 0;
1161 switch (keyconf->alg) {
1163 key_flags |= STA_KEY_FLG_CCMP;
1164 key_flags |= cpu_to_le16(
1165 keyconf->keyidx << STA_KEY_FLG_KEYID_POS);
1166 key_flags &= ~STA_KEY_FLG_INVALID;
1173 spin_lock_irqsave(&priv->sta_lock, flags);
1174 priv->stations_39[sta_id].keyinfo.alg = keyconf->alg;
1175 priv->stations_39[sta_id].keyinfo.keylen = keyconf->keylen;
1176 memcpy(priv->stations_39[sta_id].keyinfo.key, keyconf->key,
1179 memcpy(priv->stations_39[sta_id].sta.key.key, keyconf->key,
1181 priv->stations_39[sta_id].sta.key.key_flags = key_flags;
1182 priv->stations_39[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
1183 priv->stations_39[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
1185 spin_unlock_irqrestore(&priv->sta_lock, flags);
1187 IWL_DEBUG_INFO("hwcrypto: modify ucode station key info\n");
1188 iwl3945_send_add_station(priv, &priv->stations_39[sta_id].sta, 0);
1192 static int iwl3945_clear_sta_key_info(struct iwl_priv *priv, u8 sta_id)
1194 unsigned long flags;
1196 spin_lock_irqsave(&priv->sta_lock, flags);
1197 memset(&priv->stations_39[sta_id].keyinfo, 0, sizeof(struct iwl3945_hw_key));
1198 memset(&priv->stations_39[sta_id].sta.key, 0,
1199 sizeof(struct iwl4965_keyinfo));
1200 priv->stations_39[sta_id].sta.key.key_flags = STA_KEY_FLG_NO_ENC;
1201 priv->stations_39[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
1202 priv->stations_39[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
1203 spin_unlock_irqrestore(&priv->sta_lock, flags);
1205 IWL_DEBUG_INFO("hwcrypto: clear ucode station key info\n");
1206 iwl3945_send_add_station(priv, &priv->stations_39[sta_id].sta, 0);
1210 static void iwl3945_clear_free_frames(struct iwl_priv *priv)
1212 struct list_head *element;
1214 IWL_DEBUG_INFO("%d frames on pre-allocated heap on clear.\n",
1215 priv->frames_count);
1217 while (!list_empty(&priv->free_frames)) {
1218 element = priv->free_frames.next;
1220 kfree(list_entry(element, struct iwl3945_frame, list));
1221 priv->frames_count--;
1224 if (priv->frames_count) {
1225 IWL_WARN(priv, "%d frames still in use. Did we lose one?\n",
1226 priv->frames_count);
1227 priv->frames_count = 0;
1231 static struct iwl3945_frame *iwl3945_get_free_frame(struct iwl_priv *priv)
1233 struct iwl3945_frame *frame;
1234 struct list_head *element;
1235 if (list_empty(&priv->free_frames)) {
1236 frame = kzalloc(sizeof(*frame), GFP_KERNEL);
1238 IWL_ERR(priv, "Could not allocate frame!\n");
1242 priv->frames_count++;
1246 element = priv->free_frames.next;
1248 return list_entry(element, struct iwl3945_frame, list);
1251 static void iwl3945_free_frame(struct iwl_priv *priv, struct iwl3945_frame *frame)
1253 memset(frame, 0, sizeof(*frame));
1254 list_add(&frame->list, &priv->free_frames);
1257 unsigned int iwl3945_fill_beacon_frame(struct iwl_priv *priv,
1258 struct ieee80211_hdr *hdr,
1262 if (!iwl3945_is_associated(priv) || !priv->ibss_beacon ||
1263 ((priv->iw_mode != NL80211_IFTYPE_ADHOC) &&
1264 (priv->iw_mode != NL80211_IFTYPE_AP)))
1267 if (priv->ibss_beacon->len > left)
1270 memcpy(hdr, priv->ibss_beacon->data, priv->ibss_beacon->len);
1272 return priv->ibss_beacon->len;
1275 static u8 iwl3945_rate_get_lowest_plcp(struct iwl_priv *priv)
1281 if (priv->staging39_rxon.flags & RXON_FLG_BAND_24G_MSK)
1282 rate_mask = priv->active_rate_basic & IWL_CCK_RATES_MASK;
1284 rate_mask = priv->active_rate_basic & IWL_OFDM_RATES_MASK;
1286 for (i = IWL_RATE_1M_INDEX; i != IWL_RATE_INVALID;
1287 i = iwl3945_rates[i].next_ieee) {
1288 if (rate_mask & (1 << i))
1289 return iwl3945_rates[i].plcp;
1292 /* No valid rate was found. Assign the lowest one */
1293 if (priv->staging39_rxon.flags & RXON_FLG_BAND_24G_MSK)
1294 return IWL_RATE_1M_PLCP;
1296 return IWL_RATE_6M_PLCP;
1299 static int iwl3945_send_beacon_cmd(struct iwl_priv *priv)
1301 struct iwl3945_frame *frame;
1302 unsigned int frame_size;
1306 frame = iwl3945_get_free_frame(priv);
1309 IWL_ERR(priv, "Could not obtain free frame buffer for beacon "
1314 rate = iwl3945_rate_get_lowest_plcp(priv);
1316 frame_size = iwl3945_hw_get_beacon_cmd(priv, frame, rate);
1318 rc = iwl3945_send_cmd_pdu(priv, REPLY_TX_BEACON, frame_size,
1321 iwl3945_free_frame(priv, frame);
1326 /******************************************************************************
1328 * EEPROM related functions
1330 ******************************************************************************/
1332 static void get_eeprom_mac(struct iwl_priv *priv, u8 *mac)
1334 memcpy(mac, priv->eeprom39.mac_address, 6);
1338 * Clear the OWNER_MSK, to establish driver (instead of uCode running on
1339 * embedded controller) as EEPROM reader; each read is a series of pulses
1340 * to/from the EEPROM chip, not a single event, so even reads could conflict
1341 * if they weren't arbitrated by some ownership mechanism. Here, the driver
1342 * simply claims ownership, which should be safe when this function is called
1343 * (i.e. before loading uCode!).
1345 static inline int iwl3945_eeprom_acquire_semaphore(struct iwl_priv *priv)
1347 _iwl_clear_bit(priv, CSR_EEPROM_GP, CSR_EEPROM_GP_IF_OWNER_MSK);
1352 * iwl3945_eeprom_init - read EEPROM contents
1354 * Load the EEPROM contents from adapter into priv->eeprom39
1356 * NOTE: This routine uses the non-debug IO access functions.
1358 int iwl3945_eeprom_init(struct iwl_priv *priv)
1360 u16 *e = (u16 *)&priv->eeprom39;
1361 u32 gp = iwl_read32(priv, CSR_EEPROM_GP);
1362 int sz = sizeof(priv->eeprom39);
1366 /* The EEPROM structure has several padding buffers within it
1367 * and when adding new EEPROM maps is subject to programmer errors
1368 * which may be very difficult to identify without explicitly
1369 * checking the resulting size of the eeprom map. */
1370 BUILD_BUG_ON(sizeof(priv->eeprom39) != IWL_EEPROM_IMAGE_SIZE);
1372 if ((gp & CSR_EEPROM_GP_VALID_MSK) == CSR_EEPROM_GP_BAD_SIGNATURE) {
1373 IWL_ERR(priv, "EEPROM not found, EEPROM_GP=0x%08x\n", gp);
1377 /* Make sure driver (instead of uCode) is allowed to read EEPROM */
1378 ret = iwl3945_eeprom_acquire_semaphore(priv);
1380 IWL_ERR(priv, "Failed to acquire EEPROM semaphore.\n");
1384 /* eeprom is an array of 16bit values */
1385 for (addr = 0; addr < sz; addr += sizeof(u16)) {
1388 _iwl_write32(priv, CSR_EEPROM_REG,
1389 CSR_EEPROM_REG_MSK_ADDR & (addr << 1));
1390 _iwl_clear_bit(priv, CSR_EEPROM_REG, CSR_EEPROM_REG_BIT_CMD);
1391 ret = iwl_poll_direct_bit(priv, CSR_EEPROM_REG,
1392 CSR_EEPROM_REG_READ_VALID_MSK,
1393 IWL_EEPROM_ACCESS_TIMEOUT);
1395 IWL_ERR(priv, "Time out reading EEPROM[%d]\n", addr);
1399 r = _iwl_read_direct32(priv, CSR_EEPROM_REG);
1400 e[addr / 2] = le16_to_cpu((__force __le16)(r >> 16));
1406 static void iwl3945_unset_hw_params(struct iwl_priv *priv)
1408 if (priv->shared_virt)
1409 pci_free_consistent(priv->pci_dev,
1410 sizeof(struct iwl3945_shared),
1416 * iwl3945_supported_rate_to_ie - fill in the supported rate in IE field
1418 * return : set the bit for each supported rate insert in ie
1420 static u16 iwl3945_supported_rate_to_ie(u8 *ie, u16 supported_rate,
1421 u16 basic_rate, int *left)
1423 u16 ret_rates = 0, bit;
1428 for (bit = 1, i = 0; i < IWL_RATE_COUNT; i++, bit <<= 1) {
1429 if (bit & supported_rate) {
1431 rates[*cnt] = iwl3945_rates[i].ieee |
1432 ((bit & basic_rate) ? 0x80 : 0x00);
1436 (*cnt >= IWL_SUPPORTED_RATES_IE_LEN))
1445 * iwl3945_fill_probe_req - fill in all required fields and IE for probe request
1447 static u16 iwl3945_fill_probe_req(struct iwl_priv *priv,
1448 struct ieee80211_mgmt *frame,
1453 u16 active_rates, ret_rates, cck_rates;
1455 /* Make sure there is enough space for the probe request,
1456 * two mandatory IEs and the data */
1462 frame->frame_control = cpu_to_le16(IEEE80211_STYPE_PROBE_REQ);
1463 memcpy(frame->da, iwl_bcast_addr, ETH_ALEN);
1464 memcpy(frame->sa, priv->mac_addr, ETH_ALEN);
1465 memcpy(frame->bssid, iwl_bcast_addr, ETH_ALEN);
1466 frame->seq_ctrl = 0;
1468 /* fill in our indirect SSID IE */
1475 pos = &(frame->u.probe_req.variable[0]);
1476 *pos++ = WLAN_EID_SSID;
1479 /* fill in supported rate */
1485 /* ... fill it in... */
1486 *pos++ = WLAN_EID_SUPP_RATES;
1489 priv->active_rate = priv->rates_mask;
1490 active_rates = priv->active_rate;
1491 priv->active_rate_basic = priv->rates_mask & IWL_BASIC_RATES_MASK;
1493 cck_rates = IWL_CCK_RATES_MASK & active_rates;
1494 ret_rates = iwl3945_supported_rate_to_ie(pos, cck_rates,
1495 priv->active_rate_basic, &left);
1496 active_rates &= ~ret_rates;
1498 ret_rates = iwl3945_supported_rate_to_ie(pos, active_rates,
1499 priv->active_rate_basic, &left);
1500 active_rates &= ~ret_rates;
1504 if (active_rates == 0)
1507 /* fill in supported extended rate */
1512 /* ... fill it in... */
1513 *pos++ = WLAN_EID_EXT_SUPP_RATES;
1515 iwl3945_supported_rate_to_ie(pos, active_rates,
1516 priv->active_rate_basic, &left);
1527 static int iwl3945_send_qos_params_command(struct iwl_priv *priv,
1528 struct iwl_qosparam_cmd *qos)
1531 return iwl3945_send_cmd_pdu(priv, REPLY_QOS_PARAM,
1532 sizeof(struct iwl_qosparam_cmd), qos);
1535 static void iwl3945_activate_qos(struct iwl_priv *priv, u8 force)
1537 unsigned long flags;
1539 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
1542 spin_lock_irqsave(&priv->lock, flags);
1543 priv->qos_data.def_qos_parm.qos_flags = 0;
1545 if (priv->qos_data.qos_cap.q_AP.queue_request &&
1546 !priv->qos_data.qos_cap.q_AP.txop_request)
1547 priv->qos_data.def_qos_parm.qos_flags |=
1548 QOS_PARAM_FLG_TXOP_TYPE_MSK;
1550 if (priv->qos_data.qos_active)
1551 priv->qos_data.def_qos_parm.qos_flags |=
1552 QOS_PARAM_FLG_UPDATE_EDCA_MSK;
1554 spin_unlock_irqrestore(&priv->lock, flags);
1556 if (force || iwl3945_is_associated(priv)) {
1557 IWL_DEBUG_QOS("send QoS cmd with QoS active %d \n",
1558 priv->qos_data.qos_active);
1560 iwl3945_send_qos_params_command(priv,
1561 &(priv->qos_data.def_qos_parm));
1566 * Power management (not Tx power!) functions
1568 #define MSEC_TO_USEC 1024
1571 #define NOSLP __constant_cpu_to_le16(0), 0, 0
1572 #define SLP IWL_POWER_DRIVER_ALLOW_SLEEP_MSK, 0, 0
1573 #define SLP_TIMEOUT(T) __constant_cpu_to_le32((T) * MSEC_TO_USEC)
1574 #define SLP_VEC(X0, X1, X2, X3, X4) {__constant_cpu_to_le32(X0), \
1575 __constant_cpu_to_le32(X1), \
1576 __constant_cpu_to_le32(X2), \
1577 __constant_cpu_to_le32(X3), \
1578 __constant_cpu_to_le32(X4)}
1580 /* default power management (not Tx power) table values */
1582 static struct iwl_power_vec_entry range_0[IWL39_POWER_AC] = {
1583 {{NOSLP, SLP_TIMEOUT(0), SLP_TIMEOUT(0), SLP_VEC(0, 0, 0, 0, 0)}, 0},
1584 {{SLP, SLP_TIMEOUT(200), SLP_TIMEOUT(500), SLP_VEC(1, 2, 3, 4, 4)}, 0},
1585 {{SLP, SLP_TIMEOUT(200), SLP_TIMEOUT(300), SLP_VEC(2, 4, 6, 7, 7)}, 0},
1586 {{SLP, SLP_TIMEOUT(50), SLP_TIMEOUT(100), SLP_VEC(2, 6, 9, 9, 10)}, 0},
1587 {{SLP, SLP_TIMEOUT(50), SLP_TIMEOUT(25), SLP_VEC(2, 7, 9, 9, 10)}, 1},
1588 {{SLP, SLP_TIMEOUT(25), SLP_TIMEOUT(25), SLP_VEC(4, 7, 10, 10, 10)}, 1}
1592 static struct iwl_power_vec_entry range_1[IWL39_POWER_AC] = {
1593 {{NOSLP, SLP_TIMEOUT(0), SLP_TIMEOUT(0), SLP_VEC(0, 0, 0, 0, 0)}, 0},
1594 {{SLP, SLP_TIMEOUT(200), SLP_TIMEOUT(500),
1595 SLP_VEC(1, 2, 3, 4, 0xFF)}, 0},
1596 {{SLP, SLP_TIMEOUT(200), SLP_TIMEOUT(300),
1597 SLP_VEC(2, 4, 6, 7, 0xFF)}, 0},
1598 {{SLP, SLP_TIMEOUT(50), SLP_TIMEOUT(100),
1599 SLP_VEC(2, 6, 9, 9, 0xFF)}, 0},
1600 {{SLP, SLP_TIMEOUT(50), SLP_TIMEOUT(25), SLP_VEC(2, 7, 9, 9, 0xFF)}, 0},
1601 {{SLP, SLP_TIMEOUT(25), SLP_TIMEOUT(25),
1602 SLP_VEC(4, 7, 10, 10, 0xFF)}, 0}
1605 int iwl3945_power_init_handle(struct iwl_priv *priv)
1608 struct iwl3945_power_mgr *pow_data;
1609 int size = sizeof(struct iwl_power_vec_entry) * IWL39_POWER_AC;
1612 IWL_DEBUG_POWER("Initialize power \n");
1614 pow_data = &(priv->power_data_39);
1616 memset(pow_data, 0, sizeof(*pow_data));
1618 pow_data->active_index = IWL_POWER_RANGE_0;
1619 pow_data->dtim_val = 0xffff;
1621 memcpy(&pow_data->pwr_range_0[0], &range_0[0], size);
1622 memcpy(&pow_data->pwr_range_1[0], &range_1[0], size);
1624 rc = pci_read_config_word(priv->pci_dev, PCI_LINK_CTRL, &pci_pm);
1628 struct iwl_powertable_cmd *cmd;
1630 IWL_DEBUG_POWER("adjust power command flags\n");
1632 for (i = 0; i < IWL39_POWER_AC; i++) {
1633 cmd = &pow_data->pwr_range_0[i].cmd;
1636 cmd->flags &= ~IWL_POWER_PCI_PM_MSK;
1638 cmd->flags |= IWL_POWER_PCI_PM_MSK;
1644 static int iwl3945_update_power_cmd(struct iwl_priv *priv,
1645 struct iwl_powertable_cmd *cmd, u32 mode)
1650 struct iwl_power_vec_entry *range;
1652 struct iwl3945_power_mgr *pow_data;
1654 if (mode > IWL_POWER_INDEX_5) {
1655 IWL_DEBUG_POWER("Error invalid power mode \n");
1658 pow_data = &(priv->power_data_39);
1660 if (pow_data->active_index == IWL_POWER_RANGE_0)
1661 range = &pow_data->pwr_range_0[0];
1663 range = &pow_data->pwr_range_1[1];
1665 memcpy(cmd, &range[mode].cmd, sizeof(struct iwl3945_powertable_cmd));
1667 #ifdef IWL_MAC80211_DISABLE
1668 if (priv->assoc_network != NULL) {
1669 unsigned long flags;
1671 period = priv->assoc_network->tim.tim_period;
1673 #endif /*IWL_MAC80211_DISABLE */
1674 skip = range[mode].no_dtim;
1683 cmd->flags &= ~IWL_POWER_SLEEP_OVER_DTIM_MSK;
1685 __le32 slp_itrvl = cmd->sleep_interval[IWL_POWER_VEC_SIZE - 1];
1686 max_sleep = (le32_to_cpu(slp_itrvl) / period) * period;
1687 cmd->flags |= IWL_POWER_SLEEP_OVER_DTIM_MSK;
1690 for (i = 0; i < IWL_POWER_VEC_SIZE; i++) {
1691 if (le32_to_cpu(cmd->sleep_interval[i]) > max_sleep)
1692 cmd->sleep_interval[i] = cpu_to_le32(max_sleep);
1695 IWL_DEBUG_POWER("Flags value = 0x%08X\n", cmd->flags);
1696 IWL_DEBUG_POWER("Tx timeout = %u\n", le32_to_cpu(cmd->tx_data_timeout));
1697 IWL_DEBUG_POWER("Rx timeout = %u\n", le32_to_cpu(cmd->rx_data_timeout));
1698 IWL_DEBUG_POWER("Sleep interval vector = { %d , %d , %d , %d , %d }\n",
1699 le32_to_cpu(cmd->sleep_interval[0]),
1700 le32_to_cpu(cmd->sleep_interval[1]),
1701 le32_to_cpu(cmd->sleep_interval[2]),
1702 le32_to_cpu(cmd->sleep_interval[3]),
1703 le32_to_cpu(cmd->sleep_interval[4]));
1708 static int iwl3945_send_power_mode(struct iwl_priv *priv, u32 mode)
1710 u32 uninitialized_var(final_mode);
1712 struct iwl_powertable_cmd cmd;
1714 /* If on battery, set to 3,
1715 * if plugged into AC power, set to CAM ("continuously aware mode"),
1716 * else user level */
1718 case IWL39_POWER_BATTERY:
1719 final_mode = IWL_POWER_INDEX_3;
1721 case IWL39_POWER_AC:
1722 final_mode = IWL_POWER_MODE_CAM;
1729 iwl3945_update_power_cmd(priv, &cmd, final_mode);
1731 /* FIXME use get_hcmd_size 3945 command is 4 bytes shorter */
1732 rc = iwl3945_send_cmd_pdu(priv, POWER_TABLE_CMD,
1733 sizeof(struct iwl3945_powertable_cmd), &cmd);
1735 if (final_mode == IWL_POWER_MODE_CAM)
1736 clear_bit(STATUS_POWER_PMI, &priv->status);
1738 set_bit(STATUS_POWER_PMI, &priv->status);
1744 * iwl3945_scan_cancel - Cancel any currently executing HW scan
1746 * NOTE: priv->mutex is not required before calling this function
1748 static int iwl3945_scan_cancel(struct iwl_priv *priv)
1750 if (!test_bit(STATUS_SCAN_HW, &priv->status)) {
1751 clear_bit(STATUS_SCANNING, &priv->status);
1755 if (test_bit(STATUS_SCANNING, &priv->status)) {
1756 if (!test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
1757 IWL_DEBUG_SCAN("Queuing scan abort.\n");
1758 set_bit(STATUS_SCAN_ABORTING, &priv->status);
1759 queue_work(priv->workqueue, &priv->abort_scan);
1762 IWL_DEBUG_SCAN("Scan abort already in progress.\n");
1764 return test_bit(STATUS_SCANNING, &priv->status);
1771 * iwl3945_scan_cancel_timeout - Cancel any currently executing HW scan
1772 * @ms: amount of time to wait (in milliseconds) for scan to abort
1774 * NOTE: priv->mutex must be held before calling this function
1776 static int iwl3945_scan_cancel_timeout(struct iwl_priv *priv, unsigned long ms)
1778 unsigned long now = jiffies;
1781 ret = iwl3945_scan_cancel(priv);
1783 mutex_unlock(&priv->mutex);
1784 while (!time_after(jiffies, now + msecs_to_jiffies(ms)) &&
1785 test_bit(STATUS_SCANNING, &priv->status))
1787 mutex_lock(&priv->mutex);
1789 return test_bit(STATUS_SCANNING, &priv->status);
1795 #define MAX_UCODE_BEACON_INTERVAL 1024
1796 #define INTEL_CONN_LISTEN_INTERVAL __constant_cpu_to_le16(0xA)
1798 static __le16 iwl3945_adjust_beacon_interval(u16 beacon_val)
1801 u16 beacon_factor = 0;
1804 (beacon_val + MAX_UCODE_BEACON_INTERVAL)
1805 / MAX_UCODE_BEACON_INTERVAL;
1806 new_val = beacon_val / beacon_factor;
1808 return cpu_to_le16(new_val);
1811 static void iwl3945_setup_rxon_timing(struct iwl_priv *priv)
1813 u64 interval_tm_unit;
1815 unsigned long flags;
1816 struct ieee80211_conf *conf = NULL;
1819 conf = ieee80211_get_hw_conf(priv->hw);
1821 spin_lock_irqsave(&priv->lock, flags);
1822 priv->rxon_timing.timestamp = cpu_to_le64(priv->timestamp);
1823 priv->rxon_timing.listen_interval = INTEL_CONN_LISTEN_INTERVAL;
1825 tsf = priv->timestamp;
1827 beacon_int = priv->beacon_int;
1828 spin_unlock_irqrestore(&priv->lock, flags);
1830 if (priv->iw_mode == NL80211_IFTYPE_STATION) {
1831 if (beacon_int == 0) {
1832 priv->rxon_timing.beacon_interval = cpu_to_le16(100);
1833 priv->rxon_timing.beacon_init_val = cpu_to_le32(102400);
1835 priv->rxon_timing.beacon_interval =
1836 cpu_to_le16(beacon_int);
1837 priv->rxon_timing.beacon_interval =
1838 iwl3945_adjust_beacon_interval(
1839 le16_to_cpu(priv->rxon_timing.beacon_interval));
1842 priv->rxon_timing.atim_window = 0;
1844 priv->rxon_timing.beacon_interval =
1845 iwl3945_adjust_beacon_interval(conf->beacon_int);
1846 /* TODO: we need to get atim_window from upper stack
1847 * for now we set to 0 */
1848 priv->rxon_timing.atim_window = 0;
1852 (le16_to_cpu(priv->rxon_timing.beacon_interval) * 1024);
1853 result = do_div(tsf, interval_tm_unit);
1854 priv->rxon_timing.beacon_init_val =
1855 cpu_to_le32((u32) ((u64) interval_tm_unit - result));
1858 ("beacon interval %d beacon timer %d beacon tim %d\n",
1859 le16_to_cpu(priv->rxon_timing.beacon_interval),
1860 le32_to_cpu(priv->rxon_timing.beacon_init_val),
1861 le16_to_cpu(priv->rxon_timing.atim_window));
1864 static int iwl3945_scan_initiate(struct iwl_priv *priv)
1866 if (!iwl_is_ready_rf(priv)) {
1867 IWL_DEBUG_SCAN("Aborting scan due to not ready.\n");
1871 if (test_bit(STATUS_SCANNING, &priv->status)) {
1872 IWL_DEBUG_SCAN("Scan already in progress.\n");
1876 if (test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
1877 IWL_DEBUG_SCAN("Scan request while abort pending. "
1882 IWL_DEBUG_INFO("Starting scan...\n");
1883 if (priv->cfg->sku & IWL_SKU_G)
1884 priv->scan_bands |= BIT(IEEE80211_BAND_2GHZ);
1885 if (priv->cfg->sku & IWL_SKU_A)
1886 priv->scan_bands |= BIT(IEEE80211_BAND_5GHZ);
1887 set_bit(STATUS_SCANNING, &priv->status);
1888 priv->scan_start = jiffies;
1889 priv->scan_pass_start = priv->scan_start;
1891 queue_work(priv->workqueue, &priv->request_scan);
1896 static int iwl3945_set_rxon_hwcrypto(struct iwl_priv *priv, int hw_decrypt)
1898 struct iwl3945_rxon_cmd *rxon = &priv->staging39_rxon;
1901 rxon->filter_flags &= ~RXON_FILTER_DIS_DECRYPT_MSK;
1903 rxon->filter_flags |= RXON_FILTER_DIS_DECRYPT_MSK;
1908 static void iwl3945_set_flags_for_phymode(struct iwl_priv *priv,
1909 enum ieee80211_band band)
1911 if (band == IEEE80211_BAND_5GHZ) {
1912 priv->staging39_rxon.flags &=
1913 ~(RXON_FLG_BAND_24G_MSK | RXON_FLG_AUTO_DETECT_MSK
1914 | RXON_FLG_CCK_MSK);
1915 priv->staging39_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
1917 /* Copied from iwl3945_bg_post_associate() */
1918 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_SLOT_TIME)
1919 priv->staging39_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
1921 priv->staging39_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
1923 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
1924 priv->staging39_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
1926 priv->staging39_rxon.flags |= RXON_FLG_BAND_24G_MSK;
1927 priv->staging39_rxon.flags |= RXON_FLG_AUTO_DETECT_MSK;
1928 priv->staging39_rxon.flags &= ~RXON_FLG_CCK_MSK;
1933 * initialize rxon structure with default values from eeprom
1935 static void iwl3945_connection_init_rx_config(struct iwl_priv *priv,
1938 const struct iwl_channel_info *ch_info;
1940 memset(&priv->staging39_rxon, 0, sizeof(priv->staging39_rxon));
1943 case NL80211_IFTYPE_AP:
1944 priv->staging39_rxon.dev_type = RXON_DEV_TYPE_AP;
1947 case NL80211_IFTYPE_STATION:
1948 priv->staging39_rxon.dev_type = RXON_DEV_TYPE_ESS;
1949 priv->staging39_rxon.filter_flags = RXON_FILTER_ACCEPT_GRP_MSK;
1952 case NL80211_IFTYPE_ADHOC:
1953 priv->staging39_rxon.dev_type = RXON_DEV_TYPE_IBSS;
1954 priv->staging39_rxon.flags = RXON_FLG_SHORT_PREAMBLE_MSK;
1955 priv->staging39_rxon.filter_flags = RXON_FILTER_BCON_AWARE_MSK |
1956 RXON_FILTER_ACCEPT_GRP_MSK;
1959 case NL80211_IFTYPE_MONITOR:
1960 priv->staging39_rxon.dev_type = RXON_DEV_TYPE_SNIFFER;
1961 priv->staging39_rxon.filter_flags = RXON_FILTER_PROMISC_MSK |
1962 RXON_FILTER_CTL2HOST_MSK | RXON_FILTER_ACCEPT_GRP_MSK;
1965 IWL_ERR(priv, "Unsupported interface type %d\n", mode);
1970 /* TODO: Figure out when short_preamble would be set and cache from
1972 if (!hw_to_local(priv->hw)->short_preamble)
1973 priv->staging39_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
1975 priv->staging39_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
1978 ch_info = iwl3945_get_channel_info(priv, priv->band,
1979 le16_to_cpu(priv->active39_rxon.channel));
1982 ch_info = &priv->channel_info[0];
1985 * in some case A channels are all non IBSS
1986 * in this case force B/G channel
1988 if ((mode == NL80211_IFTYPE_ADHOC) && !(is_channel_ibss(ch_info)))
1989 ch_info = &priv->channel_info[0];
1991 priv->staging39_rxon.channel = cpu_to_le16(ch_info->channel);
1992 if (is_channel_a_band(ch_info))
1993 priv->band = IEEE80211_BAND_5GHZ;
1995 priv->band = IEEE80211_BAND_2GHZ;
1997 iwl3945_set_flags_for_phymode(priv, priv->band);
1999 priv->staging39_rxon.ofdm_basic_rates =
2000 (IWL_OFDM_RATES_MASK >> IWL_FIRST_OFDM_RATE) & 0xFF;
2001 priv->staging39_rxon.cck_basic_rates =
2002 (IWL_CCK_RATES_MASK >> IWL_FIRST_CCK_RATE) & 0xF;
2005 static int iwl3945_set_mode(struct iwl_priv *priv, int mode)
2007 if (mode == NL80211_IFTYPE_ADHOC) {
2008 const struct iwl_channel_info *ch_info;
2010 ch_info = iwl3945_get_channel_info(priv,
2012 le16_to_cpu(priv->staging39_rxon.channel));
2014 if (!ch_info || !is_channel_ibss(ch_info)) {
2015 IWL_ERR(priv, "channel %d not IBSS channel\n",
2016 le16_to_cpu(priv->staging39_rxon.channel));
2021 iwl3945_connection_init_rx_config(priv, mode);
2022 memcpy(priv->staging39_rxon.node_addr, priv->mac_addr, ETH_ALEN);
2024 iwl3945_clear_stations_table(priv);
2026 /* don't commit rxon if rf-kill is on*/
2027 if (!iwl_is_ready_rf(priv))
2030 cancel_delayed_work(&priv->scan_check);
2031 if (iwl3945_scan_cancel_timeout(priv, 100)) {
2032 IWL_WARN(priv, "Aborted scan still in progress after 100ms\n");
2033 IWL_DEBUG_MAC80211("leaving - scan abort failed.\n");
2037 iwl3945_commit_rxon(priv);
2042 static void iwl3945_build_tx_cmd_hwcrypto(struct iwl_priv *priv,
2043 struct ieee80211_tx_info *info,
2044 struct iwl_cmd *cmd,
2045 struct sk_buff *skb_frag,
2048 struct iwl3945_tx_cmd *tx = (struct iwl3945_tx_cmd *)cmd->cmd.payload;
2049 struct iwl3945_hw_key *keyinfo =
2050 &priv->stations_39[info->control.hw_key->hw_key_idx].keyinfo;
2052 switch (keyinfo->alg) {
2054 tx->sec_ctl = TX_CMD_SEC_CCM;
2055 memcpy(tx->key, keyinfo->key, keyinfo->keylen);
2056 IWL_DEBUG_TX("tx_cmd with AES hwcrypto\n");
2061 tx->sec_ctl = TX_CMD_SEC_TKIP;
2064 memcpy(tx->tkip_mic.byte, skb_frag->tail - 8,
2067 memset(tx->tkip_mic.byte, 0, 8);
2072 tx->sec_ctl = TX_CMD_SEC_WEP |
2073 (info->control.hw_key->hw_key_idx & TX_CMD_SEC_MSK) << TX_CMD_SEC_SHIFT;
2075 if (keyinfo->keylen == 13)
2076 tx->sec_ctl |= TX_CMD_SEC_KEY128;
2078 memcpy(&tx->key[3], keyinfo->key, keyinfo->keylen);
2080 IWL_DEBUG_TX("Configuring packet for WEP encryption "
2081 "with key %d\n", info->control.hw_key->hw_key_idx);
2085 IWL_ERR(priv, "Unknown encode alg %d\n", keyinfo->alg);
2091 * handle build REPLY_TX command notification.
2093 static void iwl3945_build_tx_cmd_basic(struct iwl_priv *priv,
2094 struct iwl_cmd *cmd,
2095 struct ieee80211_tx_info *info,
2096 struct ieee80211_hdr *hdr, u8 std_id)
2098 struct iwl3945_tx_cmd *tx = (struct iwl3945_tx_cmd *)cmd->cmd.payload;
2099 __le32 tx_flags = tx->tx_flags;
2100 __le16 fc = hdr->frame_control;
2101 u8 rc_flags = info->control.rates[0].flags;
2103 tx->stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
2104 if (!(info->flags & IEEE80211_TX_CTL_NO_ACK)) {
2105 tx_flags |= TX_CMD_FLG_ACK_MSK;
2106 if (ieee80211_is_mgmt(fc))
2107 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
2108 if (ieee80211_is_probe_resp(fc) &&
2109 !(le16_to_cpu(hdr->seq_ctrl) & 0xf))
2110 tx_flags |= TX_CMD_FLG_TSF_MSK;
2112 tx_flags &= (~TX_CMD_FLG_ACK_MSK);
2113 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
2116 tx->sta_id = std_id;
2117 if (ieee80211_has_morefrags(fc))
2118 tx_flags |= TX_CMD_FLG_MORE_FRAG_MSK;
2120 if (ieee80211_is_data_qos(fc)) {
2121 u8 *qc = ieee80211_get_qos_ctl(hdr);
2122 tx->tid_tspec = qc[0] & 0xf;
2123 tx_flags &= ~TX_CMD_FLG_SEQ_CTL_MSK;
2125 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
2128 if (rc_flags & IEEE80211_TX_RC_USE_RTS_CTS) {
2129 tx_flags |= TX_CMD_FLG_RTS_MSK;
2130 tx_flags &= ~TX_CMD_FLG_CTS_MSK;
2131 } else if (rc_flags & IEEE80211_TX_RC_USE_CTS_PROTECT) {
2132 tx_flags &= ~TX_CMD_FLG_RTS_MSK;
2133 tx_flags |= TX_CMD_FLG_CTS_MSK;
2136 if ((tx_flags & TX_CMD_FLG_RTS_MSK) || (tx_flags & TX_CMD_FLG_CTS_MSK))
2137 tx_flags |= TX_CMD_FLG_FULL_TXOP_PROT_MSK;
2139 tx_flags &= ~(TX_CMD_FLG_ANT_SEL_MSK);
2140 if (ieee80211_is_mgmt(fc)) {
2141 if (ieee80211_is_assoc_req(fc) || ieee80211_is_reassoc_req(fc))
2142 tx->timeout.pm_frame_timeout = cpu_to_le16(3);
2144 tx->timeout.pm_frame_timeout = cpu_to_le16(2);
2146 tx->timeout.pm_frame_timeout = 0;
2147 #ifdef CONFIG_IWL3945_LEDS
2148 priv->rxtxpackets += le16_to_cpu(cmd->cmd.tx.len);
2152 tx->driver_txop = 0;
2153 tx->tx_flags = tx_flags;
2154 tx->next_frame_len = 0;
2158 * iwl3945_get_sta_id - Find station's index within station table
2160 static int iwl3945_get_sta_id(struct iwl_priv *priv, struct ieee80211_hdr *hdr)
2163 u16 fc = le16_to_cpu(hdr->frame_control);
2165 /* If this frame is broadcast or management, use broadcast station id */
2166 if (((fc & IEEE80211_FCTL_FTYPE) != IEEE80211_FTYPE_DATA) ||
2167 is_multicast_ether_addr(hdr->addr1))
2168 return priv->hw_params.bcast_sta_id;
2170 switch (priv->iw_mode) {
2172 /* If we are a client station in a BSS network, use the special
2173 * AP station entry (that's the only station we communicate with) */
2174 case NL80211_IFTYPE_STATION:
2177 /* If we are an AP, then find the station, or use BCAST */
2178 case NL80211_IFTYPE_AP:
2179 sta_id = iwl3945_hw_find_station(priv, hdr->addr1);
2180 if (sta_id != IWL_INVALID_STATION)
2182 return priv->hw_params.bcast_sta_id;
2184 /* If this frame is going out to an IBSS network, find the station,
2185 * or create a new station table entry */
2186 case NL80211_IFTYPE_ADHOC: {
2187 /* Create new station table entry */
2188 sta_id = iwl3945_hw_find_station(priv, hdr->addr1);
2189 if (sta_id != IWL_INVALID_STATION)
2192 sta_id = iwl3945_add_station(priv, hdr->addr1, 0, CMD_ASYNC);
2194 if (sta_id != IWL_INVALID_STATION)
2197 IWL_DEBUG_DROP("Station %pM not in station map. "
2198 "Defaulting to broadcast...\n",
2200 iwl_print_hex_dump(priv, IWL_DL_DROP, (u8 *) hdr, sizeof(*hdr));
2201 return priv->hw_params.bcast_sta_id;
2203 /* If we are in monitor mode, use BCAST. This is required for
2204 * packet injection. */
2205 case NL80211_IFTYPE_MONITOR:
2206 return priv->hw_params.bcast_sta_id;
2209 IWL_WARN(priv, "Unknown mode of operation: %d\n",
2211 return priv->hw_params.bcast_sta_id;
2216 * start REPLY_TX command process
2218 static int iwl3945_tx_skb(struct iwl_priv *priv, struct sk_buff *skb)
2220 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
2221 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
2222 struct iwl3945_tfd *tfd;
2223 struct iwl3945_tx_cmd *tx;
2224 struct iwl_tx_queue *txq = NULL;
2225 struct iwl_queue *q = NULL;
2226 struct iwl_cmd *out_cmd = NULL;
2227 dma_addr_t phys_addr;
2228 dma_addr_t txcmd_phys;
2229 int txq_id = skb_get_queue_mapping(skb);
2230 u16 len, idx, len_org, hdr_len;
2237 u8 wait_write_ptr = 0;
2239 unsigned long flags;
2242 spin_lock_irqsave(&priv->lock, flags);
2243 if (iwl_is_rfkill(priv)) {
2244 IWL_DEBUG_DROP("Dropping - RF KILL\n");
2248 if ((ieee80211_get_tx_rate(priv->hw, info)->hw_value & 0xFF) == IWL_INVALID_RATE) {
2249 IWL_ERR(priv, "ERROR: No TX rate available.\n");
2253 unicast = !is_multicast_ether_addr(hdr->addr1);
2256 fc = hdr->frame_control;
2258 #ifdef CONFIG_IWL3945_DEBUG
2259 if (ieee80211_is_auth(fc))
2260 IWL_DEBUG_TX("Sending AUTH frame\n");
2261 else if (ieee80211_is_assoc_req(fc))
2262 IWL_DEBUG_TX("Sending ASSOC frame\n");
2263 else if (ieee80211_is_reassoc_req(fc))
2264 IWL_DEBUG_TX("Sending REASSOC frame\n");
2267 /* drop all data frame if we are not associated */
2268 if (ieee80211_is_data(fc) &&
2269 (priv->iw_mode != NL80211_IFTYPE_MONITOR) && /* packet injection */
2270 (!iwl3945_is_associated(priv) ||
2271 ((priv->iw_mode == NL80211_IFTYPE_STATION) && !priv->assoc_id))) {
2272 IWL_DEBUG_DROP("Dropping - !iwl3945_is_associated\n");
2276 spin_unlock_irqrestore(&priv->lock, flags);
2278 hdr_len = ieee80211_hdrlen(fc);
2280 /* Find (or create) index into station table for destination station */
2281 sta_id = iwl3945_get_sta_id(priv, hdr);
2282 if (sta_id == IWL_INVALID_STATION) {
2283 IWL_DEBUG_DROP("Dropping - INVALID STATION: %pM\n",
2288 IWL_DEBUG_RATE("station Id %d\n", sta_id);
2290 if (ieee80211_is_data_qos(fc)) {
2291 qc = ieee80211_get_qos_ctl(hdr);
2292 tid = qc[0] & IEEE80211_QOS_CTL_TID_MASK;
2293 seq_number = priv->stations_39[sta_id].tid[tid].seq_number &
2295 hdr->seq_ctrl = cpu_to_le16(seq_number) |
2297 __constant_cpu_to_le16(IEEE80211_SCTL_FRAG));
2301 /* Descriptor for chosen Tx queue */
2302 txq = &priv->txq[txq_id];
2305 spin_lock_irqsave(&priv->lock, flags);
2307 /* Set up first empty TFD within this queue's circular TFD buffer */
2308 tfd = &txq->tfds39[q->write_ptr];
2309 memset(tfd, 0, sizeof(*tfd));
2310 idx = get_cmd_index(q, q->write_ptr, 0);
2312 /* Set up driver data for this TFD */
2313 memset(&(txq->txb[q->write_ptr]), 0, sizeof(struct iwl_tx_info));
2314 txq->txb[q->write_ptr].skb[0] = skb;
2316 /* Init first empty entry in queue's array of Tx/cmd buffers */
2317 out_cmd = txq->cmd[idx];
2318 tx = (struct iwl3945_tx_cmd *)out_cmd->cmd.payload;
2319 memset(&out_cmd->hdr, 0, sizeof(out_cmd->hdr));
2320 memset(tx, 0, sizeof(*tx));
2323 * Set up the Tx-command (not MAC!) header.
2324 * Store the chosen Tx queue and TFD index within the sequence field;
2325 * after Tx, uCode's Tx response will return this value so driver can
2326 * locate the frame within the tx queue and do post-tx processing.
2328 out_cmd->hdr.cmd = REPLY_TX;
2329 out_cmd->hdr.sequence = cpu_to_le16((u16)(QUEUE_TO_SEQ(txq_id) |
2330 INDEX_TO_SEQ(q->write_ptr)));
2332 /* Copy MAC header from skb into command buffer */
2333 memcpy(tx->hdr, hdr, hdr_len);
2336 * Use the first empty entry in this queue's command buffer array
2337 * to contain the Tx command and MAC header concatenated together
2338 * (payload data will be in another buffer).
2339 * Size of this varies, due to varying MAC header length.
2340 * If end is not dword aligned, we'll have 2 extra bytes at the end
2341 * of the MAC header (device reads on dword boundaries).
2342 * We'll tell device about this padding later.
2344 len = sizeof(struct iwl3945_tx_cmd) +
2345 sizeof(struct iwl_cmd_header) + hdr_len;
2348 len = (len + 3) & ~3;
2355 /* Physical address of this Tx command's header (not MAC header!),
2356 * within command buffer array. */
2357 txcmd_phys = pci_map_single(priv->pci_dev,
2358 out_cmd, sizeof(struct iwl_cmd),
2360 pci_unmap_addr_set(&out_cmd->meta, mapping, txcmd_phys);
2361 pci_unmap_len_set(&out_cmd->meta, len, sizeof(struct iwl_cmd));
2362 /* Add buffer containing Tx command and MAC(!) header to TFD's
2364 txcmd_phys += offsetof(struct iwl_cmd, hdr);
2366 /* Add buffer containing Tx command and MAC(!) header to TFD's
2368 iwl3945_hw_txq_attach_buf_to_tfd(priv, tfd, txcmd_phys, len);
2370 if (info->control.hw_key)
2371 iwl3945_build_tx_cmd_hwcrypto(priv, info, out_cmd, skb, 0);
2373 /* Set up TFD's 2nd entry to point directly to remainder of skb,
2374 * if any (802.11 null frames have no payload). */
2375 len = skb->len - hdr_len;
2377 phys_addr = pci_map_single(priv->pci_dev, skb->data + hdr_len,
2378 len, PCI_DMA_TODEVICE);
2379 iwl3945_hw_txq_attach_buf_to_tfd(priv, tfd, phys_addr, len);
2383 /* If there is no payload, then we use only one Tx buffer */
2384 tfd->control_flags = cpu_to_le32(TFD_CTL_COUNT_SET(1));
2386 /* Else use 2 buffers.
2387 * Tell 3945 about any padding after MAC header */
2388 tfd->control_flags = cpu_to_le32(TFD_CTL_COUNT_SET(2) |
2389 TFD_CTL_PAD_SET(U32_PAD(len)));
2391 /* Total # bytes to be transmitted */
2392 len = (u16)skb->len;
2393 tx->len = cpu_to_le16(len);
2395 /* TODO need this for burst mode later on */
2396 iwl3945_build_tx_cmd_basic(priv, out_cmd, info, hdr, sta_id);
2398 /* set is_hcca to 0; it probably will never be implemented */
2399 iwl3945_hw_build_tx_cmd_rate(priv, out_cmd, info, hdr, sta_id, 0);
2401 tx->tx_flags &= ~TX_CMD_FLG_ANT_A_MSK;
2402 tx->tx_flags &= ~TX_CMD_FLG_ANT_B_MSK;
2404 if (!ieee80211_has_morefrags(hdr->frame_control)) {
2405 txq->need_update = 1;
2407 priv->stations_39[sta_id].tid[tid].seq_number = seq_number;
2410 txq->need_update = 0;
2413 iwl_print_hex_dump(priv, IWL_DL_TX, tx, sizeof(*tx));
2415 iwl_print_hex_dump(priv, IWL_DL_TX, (u8 *)tx->hdr,
2416 ieee80211_hdrlen(fc));
2418 /* Tell device the write index *just past* this latest filled TFD */
2419 q->write_ptr = iwl_queue_inc_wrap(q->write_ptr, q->n_bd);
2420 rc = iwl3945_tx_queue_update_write_ptr(priv, txq);
2421 spin_unlock_irqrestore(&priv->lock, flags);
2426 if ((iwl_queue_space(q) < q->high_mark)
2427 && priv->mac80211_registered) {
2428 if (wait_write_ptr) {
2429 spin_lock_irqsave(&priv->lock, flags);
2430 txq->need_update = 1;
2431 iwl3945_tx_queue_update_write_ptr(priv, txq);
2432 spin_unlock_irqrestore(&priv->lock, flags);
2435 ieee80211_stop_queue(priv->hw, skb_get_queue_mapping(skb));
2441 spin_unlock_irqrestore(&priv->lock, flags);
2446 static void iwl3945_set_rate(struct iwl_priv *priv)
2448 const struct ieee80211_supported_band *sband = NULL;
2449 struct ieee80211_rate *rate;
2452 sband = iwl_get_hw_mode(priv, priv->band);
2454 IWL_ERR(priv, "Failed to set rate: unable to get hw mode\n");
2458 priv->active_rate = 0;
2459 priv->active_rate_basic = 0;
2461 IWL_DEBUG_RATE("Setting rates for %s GHz\n",
2462 sband->band == IEEE80211_BAND_2GHZ ? "2.4" : "5");
2464 for (i = 0; i < sband->n_bitrates; i++) {
2465 rate = &sband->bitrates[i];
2466 if ((rate->hw_value < IWL_RATE_COUNT) &&
2467 !(rate->flags & IEEE80211_CHAN_DISABLED)) {
2468 IWL_DEBUG_RATE("Adding rate index %d (plcp %d)\n",
2469 rate->hw_value, iwl3945_rates[rate->hw_value].plcp);
2470 priv->active_rate |= (1 << rate->hw_value);
2474 IWL_DEBUG_RATE("Set active_rate = %0x, active_rate_basic = %0x\n",
2475 priv->active_rate, priv->active_rate_basic);
2478 * If a basic rate is configured, then use it (adding IWL_RATE_1M_MASK)
2479 * otherwise set it to the default of all CCK rates and 6, 12, 24 for
2482 if (priv->active_rate_basic & IWL_CCK_BASIC_RATES_MASK)
2483 priv->staging39_rxon.cck_basic_rates =
2484 ((priv->active_rate_basic &
2485 IWL_CCK_RATES_MASK) >> IWL_FIRST_CCK_RATE) & 0xF;
2487 priv->staging39_rxon.cck_basic_rates =
2488 (IWL_CCK_BASIC_RATES_MASK >> IWL_FIRST_CCK_RATE) & 0xF;
2490 if (priv->active_rate_basic & IWL_OFDM_BASIC_RATES_MASK)
2491 priv->staging39_rxon.ofdm_basic_rates =
2492 ((priv->active_rate_basic &
2493 (IWL_OFDM_BASIC_RATES_MASK | IWL_RATE_6M_MASK)) >>
2494 IWL_FIRST_OFDM_RATE) & 0xFF;
2496 priv->staging39_rxon.ofdm_basic_rates =
2497 (IWL_OFDM_BASIC_RATES_MASK >> IWL_FIRST_OFDM_RATE) & 0xFF;
2500 static void iwl3945_radio_kill_sw(struct iwl_priv *priv, int disable_radio)
2502 unsigned long flags;
2504 if (!!disable_radio == test_bit(STATUS_RF_KILL_SW, &priv->status))
2507 IWL_DEBUG_RF_KILL("Manual SW RF KILL set to: RADIO %s\n",
2508 disable_radio ? "OFF" : "ON");
2510 if (disable_radio) {
2511 iwl3945_scan_cancel(priv);
2512 /* FIXME: This is a workaround for AP */
2513 if (priv->iw_mode != NL80211_IFTYPE_AP) {
2514 spin_lock_irqsave(&priv->lock, flags);
2515 iwl_write32(priv, CSR_UCODE_DRV_GP1_SET,
2516 CSR_UCODE_SW_BIT_RFKILL);
2517 spin_unlock_irqrestore(&priv->lock, flags);
2518 iwl_send_card_state(priv, CARD_STATE_CMD_DISABLE, 0);
2519 set_bit(STATUS_RF_KILL_SW, &priv->status);
2524 spin_lock_irqsave(&priv->lock, flags);
2525 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
2527 clear_bit(STATUS_RF_KILL_SW, &priv->status);
2528 spin_unlock_irqrestore(&priv->lock, flags);
2533 spin_lock_irqsave(&priv->lock, flags);
2534 iwl_read32(priv, CSR_UCODE_DRV_GP1);
2535 if (!iwl_grab_nic_access(priv))
2536 iwl_release_nic_access(priv);
2537 spin_unlock_irqrestore(&priv->lock, flags);
2539 if (test_bit(STATUS_RF_KILL_HW, &priv->status)) {
2540 IWL_DEBUG_RF_KILL("Can not turn radio back on - "
2541 "disabled by HW switch\n");
2546 queue_work(priv->workqueue, &priv->restart);
2550 void iwl3945_set_decrypted_flag(struct iwl_priv *priv, struct sk_buff *skb,
2551 u32 decrypt_res, struct ieee80211_rx_status *stats)
2554 le16_to_cpu(((struct ieee80211_hdr *)skb->data)->frame_control);
2556 if (priv->active39_rxon.filter_flags & RXON_FILTER_DIS_DECRYPT_MSK)
2559 if (!(fc & IEEE80211_FCTL_PROTECTED))
2562 IWL_DEBUG_RX("decrypt_res:0x%x\n", decrypt_res);
2563 switch (decrypt_res & RX_RES_STATUS_SEC_TYPE_MSK) {
2564 case RX_RES_STATUS_SEC_TYPE_TKIP:
2565 if ((decrypt_res & RX_RES_STATUS_DECRYPT_TYPE_MSK) ==
2566 RX_RES_STATUS_BAD_ICV_MIC)
2567 stats->flag |= RX_FLAG_MMIC_ERROR;
2568 case RX_RES_STATUS_SEC_TYPE_WEP:
2569 case RX_RES_STATUS_SEC_TYPE_CCMP:
2570 if ((decrypt_res & RX_RES_STATUS_DECRYPT_TYPE_MSK) ==
2571 RX_RES_STATUS_DECRYPT_OK) {
2572 IWL_DEBUG_RX("hw decrypt successfully!!!\n");
2573 stats->flag |= RX_FLAG_DECRYPTED;
2582 #ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
2584 #include "iwl-spectrum.h"
2586 #define BEACON_TIME_MASK_LOW 0x00FFFFFF
2587 #define BEACON_TIME_MASK_HIGH 0xFF000000
2588 #define TIME_UNIT 1024
2591 * extended beacon time format
2592 * time in usec will be changed into a 32-bit value in 8:24 format
2593 * the high 1 byte is the beacon counts
2594 * the lower 3 bytes is the time in usec within one beacon interval
2597 static u32 iwl3945_usecs_to_beacons(u32 usec, u32 beacon_interval)
2601 u32 interval = beacon_interval * 1024;
2603 if (!interval || !usec)
2606 quot = (usec / interval) & (BEACON_TIME_MASK_HIGH >> 24);
2607 rem = (usec % interval) & BEACON_TIME_MASK_LOW;
2609 return (quot << 24) + rem;
2612 /* base is usually what we get from ucode with each received frame,
2613 * the same as HW timer counter counting down
2616 static __le32 iwl3945_add_beacon_time(u32 base, u32 addon, u32 beacon_interval)
2618 u32 base_low = base & BEACON_TIME_MASK_LOW;
2619 u32 addon_low = addon & BEACON_TIME_MASK_LOW;
2620 u32 interval = beacon_interval * TIME_UNIT;
2621 u32 res = (base & BEACON_TIME_MASK_HIGH) +
2622 (addon & BEACON_TIME_MASK_HIGH);
2624 if (base_low > addon_low)
2625 res += base_low - addon_low;
2626 else if (base_low < addon_low) {
2627 res += interval + base_low - addon_low;
2632 return cpu_to_le32(res);
2635 static int iwl3945_get_measurement(struct iwl_priv *priv,
2636 struct ieee80211_measurement_params *params,
2639 struct iwl_spectrum_cmd spectrum;
2640 struct iwl_rx_packet *res;
2641 struct iwl_host_cmd cmd = {
2642 .id = REPLY_SPECTRUM_MEASUREMENT_CMD,
2643 .data = (void *)&spectrum,
2644 .meta.flags = CMD_WANT_SKB,
2646 u32 add_time = le64_to_cpu(params->start_time);
2648 int spectrum_resp_status;
2649 int duration = le16_to_cpu(params->duration);
2651 if (iwl3945_is_associated(priv))
2653 iwl3945_usecs_to_beacons(
2654 le64_to_cpu(params->start_time) - priv->last_tsf,
2655 le16_to_cpu(priv->rxon_timing.beacon_interval));
2657 memset(&spectrum, 0, sizeof(spectrum));
2659 spectrum.channel_count = cpu_to_le16(1);
2661 RXON_FLG_TSF2HOST_MSK | RXON_FLG_ANT_A_MSK | RXON_FLG_DIS_DIV_MSK;
2662 spectrum.filter_flags = MEASUREMENT_FILTER_FLAG;
2663 cmd.len = sizeof(spectrum);
2664 spectrum.len = cpu_to_le16(cmd.len - sizeof(spectrum.len));
2666 if (iwl3945_is_associated(priv))
2667 spectrum.start_time =
2668 iwl3945_add_beacon_time(priv->last_beacon_time,
2670 le16_to_cpu(priv->rxon_timing.beacon_interval));
2672 spectrum.start_time = 0;
2674 spectrum.channels[0].duration = cpu_to_le32(duration * TIME_UNIT);
2675 spectrum.channels[0].channel = params->channel;
2676 spectrum.channels[0].type = type;
2677 if (priv->active39_rxon.flags & RXON_FLG_BAND_24G_MSK)
2678 spectrum.flags |= RXON_FLG_BAND_24G_MSK |
2679 RXON_FLG_AUTO_DETECT_MSK | RXON_FLG_TGG_PROTECT_MSK;
2681 rc = iwl3945_send_cmd_sync(priv, &cmd);
2685 res = (struct iwl_rx_packet *)cmd.meta.u.skb->data;
2686 if (res->hdr.flags & IWL_CMD_FAILED_MSK) {
2687 IWL_ERR(priv, "Bad return from REPLY_RX_ON_ASSOC command\n");
2691 spectrum_resp_status = le16_to_cpu(res->u.spectrum.status);
2692 switch (spectrum_resp_status) {
2693 case 0: /* Command will be handled */
2694 if (res->u.spectrum.id != 0xff) {
2695 IWL_DEBUG_INFO("Replaced existing measurement: %d\n",
2696 res->u.spectrum.id);
2697 priv->measurement_status &= ~MEASUREMENT_READY;
2699 priv->measurement_status |= MEASUREMENT_ACTIVE;
2703 case 1: /* Command will not be handled */
2708 dev_kfree_skb_any(cmd.meta.u.skb);
2714 static void iwl3945_rx_reply_alive(struct iwl_priv *priv,
2715 struct iwl_rx_mem_buffer *rxb)
2717 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
2718 struct iwl_alive_resp *palive;
2719 struct delayed_work *pwork;
2721 palive = &pkt->u.alive_frame;
2723 IWL_DEBUG_INFO("Alive ucode status 0x%08X revision "
2725 palive->is_valid, palive->ver_type,
2726 palive->ver_subtype);
2728 if (palive->ver_subtype == INITIALIZE_SUBTYPE) {
2729 IWL_DEBUG_INFO("Initialization Alive received.\n");
2730 memcpy(&priv->card_alive_init, &pkt->u.alive_frame,
2731 sizeof(struct iwl_alive_resp));
2732 pwork = &priv->init_alive_start;
2734 IWL_DEBUG_INFO("Runtime Alive received.\n");
2735 memcpy(&priv->card_alive, &pkt->u.alive_frame,
2736 sizeof(struct iwl_alive_resp));
2737 pwork = &priv->alive_start;
2738 iwl3945_disable_events(priv);
2741 /* We delay the ALIVE response by 5ms to
2742 * give the HW RF Kill time to activate... */
2743 if (palive->is_valid == UCODE_VALID_OK)
2744 queue_delayed_work(priv->workqueue, pwork,
2745 msecs_to_jiffies(5));
2747 IWL_WARN(priv, "uCode did not respond OK.\n");
2750 static void iwl3945_rx_reply_add_sta(struct iwl_priv *priv,
2751 struct iwl_rx_mem_buffer *rxb)
2753 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
2755 IWL_DEBUG_RX("Received REPLY_ADD_STA: 0x%02X\n", pkt->u.status);
2759 static void iwl3945_rx_reply_error(struct iwl_priv *priv,
2760 struct iwl_rx_mem_buffer *rxb)
2762 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
2764 IWL_ERR(priv, "Error Reply type 0x%08X cmd %s (0x%02X) "
2765 "seq 0x%04X ser 0x%08X\n",
2766 le32_to_cpu(pkt->u.err_resp.error_type),
2767 get_cmd_string(pkt->u.err_resp.cmd_id),
2768 pkt->u.err_resp.cmd_id,
2769 le16_to_cpu(pkt->u.err_resp.bad_cmd_seq_num),
2770 le32_to_cpu(pkt->u.err_resp.error_info));
2773 #define TX_STATUS_ENTRY(x) case TX_STATUS_FAIL_ ## x: return #x
2775 static void iwl3945_rx_csa(struct iwl_priv *priv, struct iwl_rx_mem_buffer *rxb)
2777 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
2778 struct iwl3945_rxon_cmd *rxon = (void *)&priv->active39_rxon;
2779 struct iwl_csa_notification *csa = &(pkt->u.csa_notif);
2780 IWL_DEBUG_11H("CSA notif: channel %d, status %d\n",
2781 le16_to_cpu(csa->channel), le32_to_cpu(csa->status));
2782 rxon->channel = csa->channel;
2783 priv->staging39_rxon.channel = csa->channel;
2786 static void iwl3945_rx_spectrum_measure_notif(struct iwl_priv *priv,
2787 struct iwl_rx_mem_buffer *rxb)
2789 #ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
2790 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
2791 struct iwl_spectrum_notification *report = &(pkt->u.spectrum_notif);
2793 if (!report->state) {
2794 IWL_DEBUG(IWL_DL_11H | IWL_DL_INFO,
2795 "Spectrum Measure Notification: Start\n");
2799 memcpy(&priv->measure_report, report, sizeof(*report));
2800 priv->measurement_status |= MEASUREMENT_READY;
2804 static void iwl3945_rx_pm_sleep_notif(struct iwl_priv *priv,
2805 struct iwl_rx_mem_buffer *rxb)
2807 #ifdef CONFIG_IWL3945_DEBUG
2808 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
2809 struct iwl_sleep_notification *sleep = &(pkt->u.sleep_notif);
2810 IWL_DEBUG_RX("sleep mode: %d, src: %d\n",
2811 sleep->pm_sleep_mode, sleep->pm_wakeup_src);
2815 static void iwl3945_rx_pm_debug_statistics_notif(struct iwl_priv *priv,
2816 struct iwl_rx_mem_buffer *rxb)
2818 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
2819 IWL_DEBUG_RADIO("Dumping %d bytes of unhandled "
2820 "notification for %s:\n",
2821 le32_to_cpu(pkt->len), get_cmd_string(pkt->hdr.cmd));
2822 iwl_print_hex_dump(priv, IWL_DL_RADIO, pkt->u.raw,
2823 le32_to_cpu(pkt->len));
2826 static void iwl3945_bg_beacon_update(struct work_struct *work)
2828 struct iwl_priv *priv =
2829 container_of(work, struct iwl_priv, beacon_update);
2830 struct sk_buff *beacon;
2832 /* Pull updated AP beacon from mac80211. will fail if not in AP mode */
2833 beacon = ieee80211_beacon_get(priv->hw, priv->vif);
2836 IWL_ERR(priv, "update beacon failed\n");
2840 mutex_lock(&priv->mutex);
2841 /* new beacon skb is allocated every time; dispose previous.*/
2842 if (priv->ibss_beacon)
2843 dev_kfree_skb(priv->ibss_beacon);
2845 priv->ibss_beacon = beacon;
2846 mutex_unlock(&priv->mutex);
2848 iwl3945_send_beacon_cmd(priv);
2851 static void iwl3945_rx_beacon_notif(struct iwl_priv *priv,
2852 struct iwl_rx_mem_buffer *rxb)
2854 #ifdef CONFIG_IWL3945_DEBUG
2855 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
2856 struct iwl3945_beacon_notif *beacon = &(pkt->u.beacon_status);
2857 u8 rate = beacon->beacon_notify_hdr.rate;
2859 IWL_DEBUG_RX("beacon status %x retries %d iss %d "
2860 "tsf %d %d rate %d\n",
2861 le32_to_cpu(beacon->beacon_notify_hdr.status) & TX_STATUS_MSK,
2862 beacon->beacon_notify_hdr.failure_frame,
2863 le32_to_cpu(beacon->ibss_mgr_status),
2864 le32_to_cpu(beacon->high_tsf),
2865 le32_to_cpu(beacon->low_tsf), rate);
2868 if ((priv->iw_mode == NL80211_IFTYPE_AP) &&
2869 (!test_bit(STATUS_EXIT_PENDING, &priv->status)))
2870 queue_work(priv->workqueue, &priv->beacon_update);
2873 /* Service response to REPLY_SCAN_CMD (0x80) */
2874 static void iwl3945_rx_reply_scan(struct iwl_priv *priv,
2875 struct iwl_rx_mem_buffer *rxb)
2877 #ifdef CONFIG_IWL3945_DEBUG
2878 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
2879 struct iwl_scanreq_notification *notif =
2880 (struct iwl_scanreq_notification *)pkt->u.raw;
2882 IWL_DEBUG_RX("Scan request status = 0x%x\n", notif->status);
2886 /* Service SCAN_START_NOTIFICATION (0x82) */
2887 static void iwl3945_rx_scan_start_notif(struct iwl_priv *priv,
2888 struct iwl_rx_mem_buffer *rxb)
2890 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
2891 struct iwl_scanstart_notification *notif =
2892 (struct iwl_scanstart_notification *)pkt->u.raw;
2893 priv->scan_start_tsf = le32_to_cpu(notif->tsf_low);
2894 IWL_DEBUG_SCAN("Scan start: "
2896 "(TSF: 0x%08X:%08X) - %d (beacon timer %u)\n",
2898 notif->band ? "bg" : "a",
2900 notif->tsf_low, notif->status, notif->beacon_timer);
2903 /* Service SCAN_RESULTS_NOTIFICATION (0x83) */
2904 static void iwl3945_rx_scan_results_notif(struct iwl_priv *priv,
2905 struct iwl_rx_mem_buffer *rxb)
2907 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
2908 struct iwl_scanresults_notification *notif =
2909 (struct iwl_scanresults_notification *)pkt->u.raw;
2911 IWL_DEBUG_SCAN("Scan ch.res: "
2913 "(TSF: 0x%08X:%08X) - %d "
2914 "elapsed=%lu usec (%dms since last)\n",
2916 notif->band ? "bg" : "a",
2917 le32_to_cpu(notif->tsf_high),
2918 le32_to_cpu(notif->tsf_low),
2919 le32_to_cpu(notif->statistics[0]),
2920 le32_to_cpu(notif->tsf_low) - priv->scan_start_tsf,
2921 jiffies_to_msecs(elapsed_jiffies
2922 (priv->last_scan_jiffies, jiffies)));
2924 priv->last_scan_jiffies = jiffies;
2925 priv->next_scan_jiffies = 0;
2928 /* Service SCAN_COMPLETE_NOTIFICATION (0x84) */
2929 static void iwl3945_rx_scan_complete_notif(struct iwl_priv *priv,
2930 struct iwl_rx_mem_buffer *rxb)
2932 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
2933 struct iwl_scancomplete_notification *scan_notif = (void *)pkt->u.raw;
2935 IWL_DEBUG_SCAN("Scan complete: %d channels (TSF 0x%08X:%08X) - %d\n",
2936 scan_notif->scanned_channels,
2937 scan_notif->tsf_low,
2938 scan_notif->tsf_high, scan_notif->status);
2940 /* The HW is no longer scanning */
2941 clear_bit(STATUS_SCAN_HW, &priv->status);
2943 /* The scan completion notification came in, so kill that timer... */
2944 cancel_delayed_work(&priv->scan_check);
2946 IWL_DEBUG_INFO("Scan pass on %sGHz took %dms\n",
2947 (priv->scan_bands & BIT(IEEE80211_BAND_2GHZ)) ?
2949 jiffies_to_msecs(elapsed_jiffies
2950 (priv->scan_pass_start, jiffies)));
2952 /* Remove this scanned band from the list of pending
2953 * bands to scan, band G precedes A in order of scanning
2954 * as seen in iwl3945_bg_request_scan */
2955 if (priv->scan_bands & BIT(IEEE80211_BAND_2GHZ))
2956 priv->scan_bands &= ~BIT(IEEE80211_BAND_2GHZ);
2957 else if (priv->scan_bands & BIT(IEEE80211_BAND_5GHZ))
2958 priv->scan_bands &= ~BIT(IEEE80211_BAND_5GHZ);
2960 /* If a request to abort was given, or the scan did not succeed
2961 * then we reset the scan state machine and terminate,
2962 * re-queuing another scan if one has been requested */
2963 if (test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
2964 IWL_DEBUG_INFO("Aborted scan completed.\n");
2965 clear_bit(STATUS_SCAN_ABORTING, &priv->status);
2967 /* If there are more bands on this scan pass reschedule */
2968 if (priv->scan_bands > 0)
2972 priv->last_scan_jiffies = jiffies;
2973 priv->next_scan_jiffies = 0;
2974 IWL_DEBUG_INFO("Setting scan to off\n");
2976 clear_bit(STATUS_SCANNING, &priv->status);
2978 IWL_DEBUG_INFO("Scan took %dms\n",
2979 jiffies_to_msecs(elapsed_jiffies(priv->scan_start, jiffies)));
2981 queue_work(priv->workqueue, &priv->scan_completed);
2986 priv->scan_pass_start = jiffies;
2987 queue_work(priv->workqueue, &priv->request_scan);
2990 /* Handle notification from uCode that card's power state is changing
2991 * due to software, hardware, or critical temperature RFKILL */
2992 static void iwl3945_rx_card_state_notif(struct iwl_priv *priv,
2993 struct iwl_rx_mem_buffer *rxb)
2995 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
2996 u32 flags = le32_to_cpu(pkt->u.card_state_notif.flags);
2997 unsigned long status = priv->status;
2999 IWL_DEBUG_RF_KILL("Card state received: HW:%s SW:%s\n",
3000 (flags & HW_CARD_DISABLED) ? "Kill" : "On",
3001 (flags & SW_CARD_DISABLED) ? "Kill" : "On");
3003 iwl_write32(priv, CSR_UCODE_DRV_GP1_SET,
3004 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
3006 if (flags & HW_CARD_DISABLED)
3007 set_bit(STATUS_RF_KILL_HW, &priv->status);
3009 clear_bit(STATUS_RF_KILL_HW, &priv->status);
3012 if (flags & SW_CARD_DISABLED)
3013 set_bit(STATUS_RF_KILL_SW, &priv->status);
3015 clear_bit(STATUS_RF_KILL_SW, &priv->status);
3017 iwl3945_scan_cancel(priv);
3019 if ((test_bit(STATUS_RF_KILL_HW, &status) !=
3020 test_bit(STATUS_RF_KILL_HW, &priv->status)) ||
3021 (test_bit(STATUS_RF_KILL_SW, &status) !=
3022 test_bit(STATUS_RF_KILL_SW, &priv->status)))
3023 queue_work(priv->workqueue, &priv->rf_kill);
3025 wake_up_interruptible(&priv->wait_command_queue);
3029 * iwl3945_setup_rx_handlers - Initialize Rx handler callbacks
3031 * Setup the RX handlers for each of the reply types sent from the uCode
3034 * This function chains into the hardware specific files for them to setup
3035 * any hardware specific handlers as well.
3037 static void iwl3945_setup_rx_handlers(struct iwl_priv *priv)
3039 priv->rx_handlers[REPLY_ALIVE] = iwl3945_rx_reply_alive;
3040 priv->rx_handlers[REPLY_ADD_STA] = iwl3945_rx_reply_add_sta;
3041 priv->rx_handlers[REPLY_ERROR] = iwl3945_rx_reply_error;
3042 priv->rx_handlers[CHANNEL_SWITCH_NOTIFICATION] = iwl3945_rx_csa;
3043 priv->rx_handlers[SPECTRUM_MEASURE_NOTIFICATION] =
3044 iwl3945_rx_spectrum_measure_notif;
3045 priv->rx_handlers[PM_SLEEP_NOTIFICATION] = iwl3945_rx_pm_sleep_notif;
3046 priv->rx_handlers[PM_DEBUG_STATISTIC_NOTIFIC] =
3047 iwl3945_rx_pm_debug_statistics_notif;
3048 priv->rx_handlers[BEACON_NOTIFICATION] = iwl3945_rx_beacon_notif;
3051 * The same handler is used for both the REPLY to a discrete
3052 * statistics request from the host as well as for the periodic
3053 * statistics notifications (after received beacons) from the uCode.
3055 priv->rx_handlers[REPLY_STATISTICS_CMD] = iwl3945_hw_rx_statistics;
3056 priv->rx_handlers[STATISTICS_NOTIFICATION] = iwl3945_hw_rx_statistics;
3058 priv->rx_handlers[REPLY_SCAN_CMD] = iwl3945_rx_reply_scan;
3059 priv->rx_handlers[SCAN_START_NOTIFICATION] = iwl3945_rx_scan_start_notif;
3060 priv->rx_handlers[SCAN_RESULTS_NOTIFICATION] =
3061 iwl3945_rx_scan_results_notif;
3062 priv->rx_handlers[SCAN_COMPLETE_NOTIFICATION] =
3063 iwl3945_rx_scan_complete_notif;
3064 priv->rx_handlers[CARD_STATE_NOTIFICATION] = iwl3945_rx_card_state_notif;
3066 /* Set up hardware specific Rx handlers */
3067 iwl3945_hw_rx_handler_setup(priv);
3071 * iwl3945_cmd_queue_reclaim - Reclaim CMD queue entries
3072 * When FW advances 'R' index, all entries between old and new 'R' index
3073 * need to be reclaimed.
3075 static void iwl3945_cmd_queue_reclaim(struct iwl_priv *priv,
3076 int txq_id, int index)
3078 struct iwl_tx_queue *txq = &priv->txq[txq_id];
3079 struct iwl_queue *q = &txq->q;
3082 if ((index >= q->n_bd) || (iwl3945_x2_queue_used(q, index) == 0)) {
3083 IWL_ERR(priv, "Read index for DMA queue txq id (%d), index %d, "
3084 "is out of range [0-%d] %d %d.\n", txq_id,
3085 index, q->n_bd, q->write_ptr, q->read_ptr);
3089 for (index = iwl_queue_inc_wrap(index, q->n_bd); q->read_ptr != index;
3090 q->read_ptr = iwl_queue_inc_wrap(q->read_ptr, q->n_bd)) {
3092 IWL_ERR(priv, "HCMD skipped: index (%d) %d %d\n", index,
3093 q->write_ptr, q->read_ptr);
3094 queue_work(priv->workqueue, &priv->restart);
3103 * iwl3945_tx_cmd_complete - Pull unused buffers off the queue and reclaim them
3104 * @rxb: Rx buffer to reclaim
3106 * If an Rx buffer has an async callback associated with it the callback
3107 * will be executed. The attached skb (if present) will only be freed
3108 * if the callback returns 1
3110 static void iwl3945_tx_cmd_complete(struct iwl_priv *priv,
3111 struct iwl_rx_mem_buffer *rxb)
3113 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
3114 u16 sequence = le16_to_cpu(pkt->hdr.sequence);
3115 int txq_id = SEQ_TO_QUEUE(sequence);
3116 int index = SEQ_TO_INDEX(sequence);
3117 int huge = !!(pkt->hdr.sequence & SEQ_HUGE_FRAME);
3119 struct iwl_cmd *cmd;
3121 BUG_ON(txq_id != IWL_CMD_QUEUE_NUM);
3123 cmd_index = get_cmd_index(&priv->txq[IWL_CMD_QUEUE_NUM].q, index, huge);
3124 cmd = priv->txq[IWL_CMD_QUEUE_NUM].cmd[cmd_index];
3126 /* Input error checking is done when commands are added to queue. */
3127 if (cmd->meta.flags & CMD_WANT_SKB) {
3128 cmd->meta.source->u.skb = rxb->skb;
3130 } else if (cmd->meta.u.callback &&
3131 !cmd->meta.u.callback(priv, cmd, rxb->skb))
3134 iwl3945_cmd_queue_reclaim(priv, txq_id, index);
3136 if (!(cmd->meta.flags & CMD_ASYNC)) {
3137 clear_bit(STATUS_HCMD_ACTIVE, &priv->status);
3138 wake_up_interruptible(&priv->wait_command_queue);
3142 /************************** RX-FUNCTIONS ****************************/
3144 * Rx theory of operation
3146 * The host allocates 32 DMA target addresses and passes the host address
3147 * to the firmware at register IWL_RFDS_TABLE_LOWER + N * RFD_SIZE where N is
3151 * The host/firmware share two index registers for managing the Rx buffers.
3153 * The READ index maps to the first position that the firmware may be writing
3154 * to -- the driver can read up to (but not including) this position and get
3156 * The READ index is managed by the firmware once the card is enabled.
3158 * The WRITE index maps to the last position the driver has read from -- the
3159 * position preceding WRITE is the last slot the firmware can place a packet.
3161 * The queue is empty (no good data) if WRITE = READ - 1, and is full if
3164 * During initialization, the host sets up the READ queue position to the first
3165 * INDEX position, and WRITE to the last (READ - 1 wrapped)
3167 * When the firmware places a packet in a buffer, it will advance the READ index
3168 * and fire the RX interrupt. The driver can then query the READ index and
3169 * process as many packets as possible, moving the WRITE index forward as it
3170 * resets the Rx queue buffers with new memory.
3172 * The management in the driver is as follows:
3173 * + A list of pre-allocated SKBs is stored in iwl->rxq->rx_free. When
3174 * iwl->rxq->free_count drops to or below RX_LOW_WATERMARK, work is scheduled
3175 * to replenish the iwl->rxq->rx_free.
3176 * + In iwl3945_rx_replenish (scheduled) if 'processed' != 'read' then the
3177 * iwl->rxq is replenished and the READ INDEX is updated (updating the
3178 * 'processed' and 'read' driver indexes as well)
3179 * + A received packet is processed and handed to the kernel network stack,
3180 * detached from the iwl->rxq. The driver 'processed' index is updated.
3181 * + The Host/Firmware iwl->rxq is replenished at tasklet time from the rx_free
3182 * list. If there are no allocated buffers in iwl->rxq->rx_free, the READ
3183 * INDEX is not incremented and iwl->status(RX_STALLED) is set. If there
3184 * were enough free buffers and RX_STALLED is set it is cleared.
3189 * iwl3945_rx_replenish() Replenishes rx_free list from rx_used, and calls
3190 * iwl3945_rx_queue_restock
3191 * iwl3945_rx_queue_restock() Moves available buffers from rx_free into Rx
3192 * queue, updates firmware pointers, and updates
3193 * the WRITE index. If insufficient rx_free buffers
3194 * are available, schedules iwl3945_rx_replenish
3196 * -- enable interrupts --
3197 * ISR - iwl3945_rx() Detach iwl_rx_mem_buffers from pool up to the
3198 * READ INDEX, detaching the SKB from the pool.
3199 * Moves the packet buffer from queue to rx_used.
3200 * Calls iwl3945_rx_queue_restock to refill any empty
3207 * iwl3945_rx_queue_space - Return number of free slots available in queue.
3209 static int iwl3945_rx_queue_space(const struct iwl_rx_queue *q)
3211 int s = q->read - q->write;
3214 /* keep some buffer to not confuse full and empty queue */
3222 * iwl3945_rx_queue_update_write_ptr - Update the write pointer for the RX queue
3224 int iwl3945_rx_queue_update_write_ptr(struct iwl_priv *priv, struct iwl_rx_queue *q)
3228 unsigned long flags;
3230 spin_lock_irqsave(&q->lock, flags);
3232 if (q->need_update == 0)
3235 /* If power-saving is in use, make sure device is awake */
3236 if (test_bit(STATUS_POWER_PMI, &priv->status)) {
3237 reg = iwl_read32(priv, CSR_UCODE_DRV_GP1);
3239 if (reg & CSR_UCODE_DRV_GP1_BIT_MAC_SLEEP) {
3240 iwl_set_bit(priv, CSR_GP_CNTRL,
3241 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
3245 rc = iwl_grab_nic_access(priv);
3249 /* Device expects a multiple of 8 */
3250 iwl_write_direct32(priv, FH39_RSCSR_CHNL0_WPTR,
3252 iwl_release_nic_access(priv);
3254 /* Else device is assumed to be awake */
3256 /* Device expects a multiple of 8 */
3257 iwl_write32(priv, FH39_RSCSR_CHNL0_WPTR, q->write & ~0x7);
3263 spin_unlock_irqrestore(&q->lock, flags);
3268 * iwl3945_dma_addr2rbd_ptr - convert a DMA address to a uCode read buffer ptr
3270 static inline __le32 iwl3945_dma_addr2rbd_ptr(struct iwl_priv *priv,
3271 dma_addr_t dma_addr)
3273 return cpu_to_le32((u32)dma_addr);
3277 * iwl3945_rx_queue_restock - refill RX queue from pre-allocated pool
3279 * If there are slots in the RX queue that need to be restocked,
3280 * and we have free pre-allocated buffers, fill the ranks as much
3281 * as we can, pulling from rx_free.
3283 * This moves the 'write' index forward to catch up with 'processed', and
3284 * also updates the memory address in the firmware to reference the new
3287 static int iwl3945_rx_queue_restock(struct iwl_priv *priv)
3289 struct iwl_rx_queue *rxq = &priv->rxq;
3290 struct list_head *element;
3291 struct iwl_rx_mem_buffer *rxb;
3292 unsigned long flags;
3295 spin_lock_irqsave(&rxq->lock, flags);
3296 write = rxq->write & ~0x7;
3297 while ((iwl3945_rx_queue_space(rxq) > 0) && (rxq->free_count)) {
3298 /* Get next free Rx buffer, remove from free list */
3299 element = rxq->rx_free.next;
3300 rxb = list_entry(element, struct iwl_rx_mem_buffer, list);
3303 /* Point to Rx buffer via next RBD in circular buffer */
3304 rxq->bd[rxq->write] = iwl3945_dma_addr2rbd_ptr(priv, rxb->real_dma_addr);
3305 rxq->queue[rxq->write] = rxb;
3306 rxq->write = (rxq->write + 1) & RX_QUEUE_MASK;
3309 spin_unlock_irqrestore(&rxq->lock, flags);
3310 /* If the pre-allocated buffer pool is dropping low, schedule to
3312 if (rxq->free_count <= RX_LOW_WATERMARK)
3313 queue_work(priv->workqueue, &priv->rx_replenish);
3316 /* If we've added more space for the firmware to place data, tell it.
3317 * Increment device's write pointer in multiples of 8. */
3318 if ((write != (rxq->write & ~0x7))
3319 || (abs(rxq->write - rxq->read) > 7)) {
3320 spin_lock_irqsave(&rxq->lock, flags);
3321 rxq->need_update = 1;
3322 spin_unlock_irqrestore(&rxq->lock, flags);
3323 rc = iwl3945_rx_queue_update_write_ptr(priv, rxq);
3332 * iwl3945_rx_replenish - Move all used packet from rx_used to rx_free
3334 * When moving to rx_free an SKB is allocated for the slot.
3336 * Also restock the Rx queue via iwl3945_rx_queue_restock.
3337 * This is called as a scheduled work item (except for during initialization)
3339 static void iwl3945_rx_allocate(struct iwl_priv *priv)
3341 struct iwl_rx_queue *rxq = &priv->rxq;
3342 struct list_head *element;
3343 struct iwl_rx_mem_buffer *rxb;
3344 unsigned long flags;
3345 spin_lock_irqsave(&rxq->lock, flags);
3346 while (!list_empty(&rxq->rx_used)) {
3347 element = rxq->rx_used.next;
3348 rxb = list_entry(element, struct iwl_rx_mem_buffer, list);
3350 /* Alloc a new receive buffer */
3352 alloc_skb(IWL_RX_BUF_SIZE, __GFP_NOWARN | GFP_ATOMIC);
3354 if (net_ratelimit())
3355 IWL_CRIT(priv, ": Can not allocate SKB buffers\n");
3356 /* We don't reschedule replenish work here -- we will
3357 * call the restock method and if it still needs
3358 * more buffers it will schedule replenish */
3362 /* If radiotap head is required, reserve some headroom here.
3363 * The physical head count is a variable rx_stats->phy_count.
3364 * We reserve 4 bytes here. Plus these extra bytes, the
3365 * headroom of the physical head should be enough for the
3366 * radiotap head that iwl3945 supported. See iwl3945_rt.
3368 skb_reserve(rxb->skb, 4);
3370 priv->alloc_rxb_skb++;
3373 /* Get physical address of RB/SKB */
3374 rxb->real_dma_addr =
3375 pci_map_single(priv->pci_dev, rxb->skb->data,
3376 IWL_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
3377 list_add_tail(&rxb->list, &rxq->rx_free);
3380 spin_unlock_irqrestore(&rxq->lock, flags);
3384 * this should be called while priv->lock is locked
3386 static void __iwl3945_rx_replenish(void *data)
3388 struct iwl_priv *priv = data;
3390 iwl3945_rx_allocate(priv);
3391 iwl3945_rx_queue_restock(priv);
3395 void iwl3945_rx_replenish(void *data)
3397 struct iwl_priv *priv = data;
3398 unsigned long flags;
3400 iwl3945_rx_allocate(priv);
3402 spin_lock_irqsave(&priv->lock, flags);
3403 iwl3945_rx_queue_restock(priv);
3404 spin_unlock_irqrestore(&priv->lock, flags);
3407 /* Convert linear signal-to-noise ratio into dB */
3408 static u8 ratio2dB[100] = {
3409 /* 0 1 2 3 4 5 6 7 8 9 */
3410 0, 0, 6, 10, 12, 14, 16, 17, 18, 19, /* 00 - 09 */
3411 20, 21, 22, 22, 23, 23, 24, 25, 26, 26, /* 10 - 19 */
3412 26, 26, 26, 27, 27, 28, 28, 28, 29, 29, /* 20 - 29 */
3413 29, 30, 30, 30, 31, 31, 31, 31, 32, 32, /* 30 - 39 */
3414 32, 32, 32, 33, 33, 33, 33, 33, 34, 34, /* 40 - 49 */
3415 34, 34, 34, 34, 35, 35, 35, 35, 35, 35, /* 50 - 59 */
3416 36, 36, 36, 36, 36, 36, 36, 37, 37, 37, /* 60 - 69 */
3417 37, 37, 37, 37, 37, 38, 38, 38, 38, 38, /* 70 - 79 */
3418 38, 38, 38, 38, 38, 39, 39, 39, 39, 39, /* 80 - 89 */
3419 39, 39, 39, 39, 39, 40, 40, 40, 40, 40 /* 90 - 99 */
3422 /* Calculates a relative dB value from a ratio of linear
3423 * (i.e. not dB) signal levels.
3424 * Conversion assumes that levels are voltages (20*log), not powers (10*log). */
3425 int iwl3945_calc_db_from_ratio(int sig_ratio)
3427 /* 1000:1 or higher just report as 60 dB */
3428 if (sig_ratio >= 1000)
3431 /* 100:1 or higher, divide by 10 and use table,
3432 * add 20 dB to make up for divide by 10 */
3433 if (sig_ratio >= 100)
3434 return 20 + (int)ratio2dB[sig_ratio/10];
3436 /* We shouldn't see this */
3440 /* Use table for ratios 1:1 - 99:1 */
3441 return (int)ratio2dB[sig_ratio];
3444 #define PERFECT_RSSI (-20) /* dBm */
3445 #define WORST_RSSI (-95) /* dBm */
3446 #define RSSI_RANGE (PERFECT_RSSI - WORST_RSSI)
3448 /* Calculate an indication of rx signal quality (a percentage, not dBm!).
3449 * See http://www.ces.clemson.edu/linux/signal_quality.shtml for info
3450 * about formulas used below. */
3451 int iwl3945_calc_sig_qual(int rssi_dbm, int noise_dbm)
3454 int degradation = PERFECT_RSSI - rssi_dbm;
3456 /* If we get a noise measurement, use signal-to-noise ratio (SNR)
3457 * as indicator; formula is (signal dbm - noise dbm).
3458 * SNR at or above 40 is a great signal (100%).
3459 * Below that, scale to fit SNR of 0 - 40 dB within 0 - 100% indicator.
3460 * Weakest usable signal is usually 10 - 15 dB SNR. */
3462 if (rssi_dbm - noise_dbm >= 40)
3464 else if (rssi_dbm < noise_dbm)
3466 sig_qual = ((rssi_dbm - noise_dbm) * 5) / 2;
3468 /* Else use just the signal level.
3469 * This formula is a least squares fit of data points collected and
3470 * compared with a reference system that had a percentage (%) display
3471 * for signal quality. */
3473 sig_qual = (100 * (RSSI_RANGE * RSSI_RANGE) - degradation *
3474 (15 * RSSI_RANGE + 62 * degradation)) /
3475 (RSSI_RANGE * RSSI_RANGE);
3479 else if (sig_qual < 1)
3486 * iwl3945_rx_handle - Main entry function for receiving responses from uCode
3488 * Uses the priv->rx_handlers callback function array to invoke
3489 * the appropriate handlers, including command responses,
3490 * frame-received notifications, and other notifications.
3492 static void iwl3945_rx_handle(struct iwl_priv *priv)
3494 struct iwl_rx_mem_buffer *rxb;
3495 struct iwl_rx_packet *pkt;
3496 struct iwl_rx_queue *rxq = &priv->rxq;
3499 unsigned long flags;
3503 /* uCode's read index (stored in shared DRAM) indicates the last Rx
3504 * buffer that the driver may process (last buffer filled by ucode). */
3505 r = le16_to_cpu(rxq->rb_stts->closed_rb_num) & 0x0FFF;
3508 if (iwl3945_rx_queue_space(rxq) > (RX_QUEUE_SIZE / 2))
3510 /* Rx interrupt, but nothing sent from uCode */
3512 IWL_DEBUG(IWL_DL_RX | IWL_DL_ISR, "r = %d, i = %d\n", r, i);
3515 rxb = rxq->queue[i];
3517 /* If an RXB doesn't have a Rx queue slot associated with it,
3518 * then a bug has been introduced in the queue refilling
3519 * routines -- catch it here */
3520 BUG_ON(rxb == NULL);
3522 rxq->queue[i] = NULL;
3524 pci_dma_sync_single_for_cpu(priv->pci_dev, rxb->real_dma_addr,
3526 PCI_DMA_FROMDEVICE);
3527 pkt = (struct iwl_rx_packet *)rxb->skb->data;
3529 /* Reclaim a command buffer only if this packet is a response
3530 * to a (driver-originated) command.
3531 * If the packet (e.g. Rx frame) originated from uCode,
3532 * there is no command buffer to reclaim.
3533 * Ucode should set SEQ_RX_FRAME bit if ucode-originated,
3534 * but apparently a few don't get set; catch them here. */
3535 reclaim = !(pkt->hdr.sequence & SEQ_RX_FRAME) &&
3536 (pkt->hdr.cmd != STATISTICS_NOTIFICATION) &&
3537 (pkt->hdr.cmd != REPLY_TX);
3539 /* Based on type of command response or notification,
3540 * handle those that need handling via function in
3541 * rx_handlers table. See iwl3945_setup_rx_handlers() */
3542 if (priv->rx_handlers[pkt->hdr.cmd]) {
3543 IWL_DEBUG(IWL_DL_HCMD | IWL_DL_RX | IWL_DL_ISR,
3544 "r = %d, i = %d, %s, 0x%02x\n", r, i,
3545 get_cmd_string(pkt->hdr.cmd), pkt->hdr.cmd);
3546 priv->rx_handlers[pkt->hdr.cmd] (priv, rxb);
3548 /* No handling needed */
3549 IWL_DEBUG(IWL_DL_HCMD | IWL_DL_RX | IWL_DL_ISR,
3550 "r %d i %d No handler needed for %s, 0x%02x\n",
3551 r, i, get_cmd_string(pkt->hdr.cmd),
3556 /* Invoke any callbacks, transfer the skb to caller, and
3557 * fire off the (possibly) blocking iwl3945_send_cmd()
3558 * as we reclaim the driver command queue */
3559 if (rxb && rxb->skb)
3560 iwl3945_tx_cmd_complete(priv, rxb);
3562 IWL_WARN(priv, "Claim null rxb?\n");
3565 /* For now we just don't re-use anything. We can tweak this
3566 * later to try and re-use notification packets and SKBs that
3567 * fail to Rx correctly */
3568 if (rxb->skb != NULL) {
3569 priv->alloc_rxb_skb--;
3570 dev_kfree_skb_any(rxb->skb);
3574 pci_unmap_single(priv->pci_dev, rxb->real_dma_addr,
3575 IWL_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
3576 spin_lock_irqsave(&rxq->lock, flags);
3577 list_add_tail(&rxb->list, &priv->rxq.rx_used);
3578 spin_unlock_irqrestore(&rxq->lock, flags);
3579 i = (i + 1) & RX_QUEUE_MASK;
3580 /* If there are a lot of unused frames,
3581 * restock the Rx queue so ucode won't assert. */
3586 __iwl3945_rx_replenish(priv);
3592 /* Backtrack one entry */
3594 iwl3945_rx_queue_restock(priv);
3598 * iwl3945_tx_queue_update_write_ptr - Send new write index to hardware
3600 static int iwl3945_tx_queue_update_write_ptr(struct iwl_priv *priv,
3601 struct iwl_tx_queue *txq)
3605 int txq_id = txq->q.id;
3607 if (txq->need_update == 0)
3610 /* if we're trying to save power */
3611 if (test_bit(STATUS_POWER_PMI, &priv->status)) {
3612 /* wake up nic if it's powered down ...
3613 * uCode will wake up, and interrupt us again, so next
3614 * time we'll skip this part. */
3615 reg = iwl_read32(priv, CSR_UCODE_DRV_GP1);
3617 if (reg & CSR_UCODE_DRV_GP1_BIT_MAC_SLEEP) {
3618 IWL_DEBUG_INFO("Requesting wakeup, GP1 = 0x%x\n", reg);
3619 iwl_set_bit(priv, CSR_GP_CNTRL,
3620 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
3624 /* restore this queue's parameters in nic hardware. */
3625 rc = iwl_grab_nic_access(priv);
3628 iwl_write_direct32(priv, HBUS_TARG_WRPTR,
3629 txq->q.write_ptr | (txq_id << 8));
3630 iwl_release_nic_access(priv);
3632 /* else not in power-save mode, uCode will never sleep when we're
3633 * trying to tx (during RFKILL, we're not trying to tx). */
3635 iwl_write32(priv, HBUS_TARG_WRPTR,
3636 txq->q.write_ptr | (txq_id << 8));
3638 txq->need_update = 0;
3643 #ifdef CONFIG_IWL3945_DEBUG
3644 static void iwl3945_print_rx_config_cmd(struct iwl_priv *priv,
3645 struct iwl3945_rxon_cmd *rxon)
3647 IWL_DEBUG_RADIO("RX CONFIG:\n");
3648 iwl_print_hex_dump(priv, IWL_DL_RADIO, (u8 *) rxon, sizeof(*rxon));
3649 IWL_DEBUG_RADIO("u16 channel: 0x%x\n", le16_to_cpu(rxon->channel));
3650 IWL_DEBUG_RADIO("u32 flags: 0x%08X\n", le32_to_cpu(rxon->flags));
3651 IWL_DEBUG_RADIO("u32 filter_flags: 0x%08x\n",
3652 le32_to_cpu(rxon->filter_flags));
3653 IWL_DEBUG_RADIO("u8 dev_type: 0x%x\n", rxon->dev_type);
3654 IWL_DEBUG_RADIO("u8 ofdm_basic_rates: 0x%02x\n",
3655 rxon->ofdm_basic_rates);
3656 IWL_DEBUG_RADIO("u8 cck_basic_rates: 0x%02x\n", rxon->cck_basic_rates);
3657 IWL_DEBUG_RADIO("u8[6] node_addr: %pM\n", rxon->node_addr);
3658 IWL_DEBUG_RADIO("u8[6] bssid_addr: %pM\n", rxon->bssid_addr);
3659 IWL_DEBUG_RADIO("u16 assoc_id: 0x%x\n", le16_to_cpu(rxon->assoc_id));
3663 static void iwl3945_enable_interrupts(struct iwl_priv *priv)
3665 IWL_DEBUG_ISR("Enabling interrupts\n");
3666 set_bit(STATUS_INT_ENABLED, &priv->status);
3667 iwl_write32(priv, CSR_INT_MASK, CSR_INI_SET_MASK);
3671 /* call this function to flush any scheduled tasklet */
3672 static inline void iwl_synchronize_irq(struct iwl_priv *priv)
3674 /* wait to make sure we flush pending tasklet*/
3675 synchronize_irq(priv->pci_dev->irq);
3676 tasklet_kill(&priv->irq_tasklet);
3680 static inline void iwl3945_disable_interrupts(struct iwl_priv *priv)
3682 clear_bit(STATUS_INT_ENABLED, &priv->status);
3684 /* disable interrupts from uCode/NIC to host */
3685 iwl_write32(priv, CSR_INT_MASK, 0x00000000);
3687 /* acknowledge/clear/reset any interrupts still pending
3688 * from uCode or flow handler (Rx/Tx DMA) */
3689 iwl_write32(priv, CSR_INT, 0xffffffff);
3690 iwl_write32(priv, CSR_FH_INT_STATUS, 0xffffffff);
3691 IWL_DEBUG_ISR("Disabled interrupts\n");
3694 static const char *desc_lookup(int i)
3702 return "BAD_CHECKSUM";
3704 return "NMI_INTERRUPT";
3708 return "FATAL_ERROR";
3714 #define ERROR_START_OFFSET (1 * sizeof(u32))
3715 #define ERROR_ELEM_SIZE (7 * sizeof(u32))
3717 static void iwl3945_dump_nic_error_log(struct iwl_priv *priv)
3720 u32 desc, time, count, base, data1;
3721 u32 blink1, blink2, ilink1, ilink2;
3724 base = le32_to_cpu(priv->card_alive.error_event_table_ptr);
3726 if (!iwl3945_hw_valid_rtc_data_addr(base)) {
3727 IWL_ERR(priv, "Not valid error log pointer 0x%08X\n", base);
3731 rc = iwl_grab_nic_access(priv);
3733 IWL_WARN(priv, "Can not read from adapter at this time.\n");
3737 count = iwl_read_targ_mem(priv, base);
3739 if (ERROR_START_OFFSET <= count * ERROR_ELEM_SIZE) {
3740 IWL_ERR(priv, "Start IWL Error Log Dump:\n");
3741 IWL_ERR(priv, "Status: 0x%08lX, count: %d\n",
3742 priv->status, count);
3745 IWL_ERR(priv, "Desc Time asrtPC blink2 "
3746 "ilink1 nmiPC Line\n");
3747 for (i = ERROR_START_OFFSET;
3748 i < (count * ERROR_ELEM_SIZE) + ERROR_START_OFFSET;
3749 i += ERROR_ELEM_SIZE) {
3750 desc = iwl_read_targ_mem(priv, base + i);
3752 iwl_read_targ_mem(priv, base + i + 1 * sizeof(u32));
3754 iwl_read_targ_mem(priv, base + i + 2 * sizeof(u32));
3756 iwl_read_targ_mem(priv, base + i + 3 * sizeof(u32));
3758 iwl_read_targ_mem(priv, base + i + 4 * sizeof(u32));
3760 iwl_read_targ_mem(priv, base + i + 5 * sizeof(u32));
3762 iwl_read_targ_mem(priv, base + i + 6 * sizeof(u32));
3765 "%-13s (#%d) %010u 0x%05X 0x%05X 0x%05X 0x%05X %u\n\n",
3766 desc_lookup(desc), desc, time, blink1, blink2,
3767 ilink1, ilink2, data1);
3770 iwl_release_nic_access(priv);
3774 #define EVENT_START_OFFSET (6 * sizeof(u32))
3777 * iwl3945_print_event_log - Dump error event log to syslog
3779 * NOTE: Must be called with iwl_grab_nic_access() already obtained!
3781 static void iwl3945_print_event_log(struct iwl_priv *priv, u32 start_idx,
3782 u32 num_events, u32 mode)
3785 u32 base; /* SRAM byte address of event log header */
3786 u32 event_size; /* 2 u32s, or 3 u32s if timestamp recorded */
3787 u32 ptr; /* SRAM byte address of log data */
3788 u32 ev, time, data; /* event log data */
3790 if (num_events == 0)
3793 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
3796 event_size = 2 * sizeof(u32);
3798 event_size = 3 * sizeof(u32);
3800 ptr = base + EVENT_START_OFFSET + (start_idx * event_size);
3802 /* "time" is actually "data" for mode 0 (no timestamp).
3803 * place event id # at far right for easier visual parsing. */
3804 for (i = 0; i < num_events; i++) {
3805 ev = iwl_read_targ_mem(priv, ptr);
3807 time = iwl_read_targ_mem(priv, ptr);
3811 IWL_ERR(priv, "0x%08x\t%04u\n", time, ev);
3813 data = iwl_read_targ_mem(priv, ptr);
3815 IWL_ERR(priv, "%010u\t0x%08x\t%04u\n", time, data, ev);
3820 static void iwl3945_dump_nic_event_log(struct iwl_priv *priv)
3823 u32 base; /* SRAM byte address of event log header */
3824 u32 capacity; /* event log capacity in # entries */
3825 u32 mode; /* 0 - no timestamp, 1 - timestamp recorded */
3826 u32 num_wraps; /* # times uCode wrapped to top of log */
3827 u32 next_entry; /* index of next entry to be written by uCode */
3828 u32 size; /* # entries that we'll print */
3830 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
3831 if (!iwl3945_hw_valid_rtc_data_addr(base)) {
3832 IWL_ERR(priv, "Invalid event log pointer 0x%08X\n", base);
3836 rc = iwl_grab_nic_access(priv);
3838 IWL_WARN(priv, "Can not read from adapter at this time.\n");
3842 /* event log header */
3843 capacity = iwl_read_targ_mem(priv, base);
3844 mode = iwl_read_targ_mem(priv, base + (1 * sizeof(u32)));
3845 num_wraps = iwl_read_targ_mem(priv, base + (2 * sizeof(u32)));
3846 next_entry = iwl_read_targ_mem(priv, base + (3 * sizeof(u32)));
3848 size = num_wraps ? capacity : next_entry;
3850 /* bail out if nothing in log */
3852 IWL_ERR(priv, "Start IWL Event Log Dump: nothing in log\n");
3853 iwl_release_nic_access(priv);
3857 IWL_ERR(priv, "Start IWL Event Log Dump: display count %d, wraps %d\n",
3860 /* if uCode has wrapped back to top of log, start at the oldest entry,
3861 * i.e the next one that uCode would fill. */
3863 iwl3945_print_event_log(priv, next_entry,
3864 capacity - next_entry, mode);
3866 /* (then/else) start at top of log */
3867 iwl3945_print_event_log(priv, 0, next_entry, mode);
3869 iwl_release_nic_access(priv);
3873 * iwl3945_irq_handle_error - called for HW or SW error interrupt from card
3875 static void iwl3945_irq_handle_error(struct iwl_priv *priv)
3877 /* Set the FW error flag -- cleared on iwl3945_down */
3878 set_bit(STATUS_FW_ERROR, &priv->status);
3880 /* Cancel currently queued command. */
3881 clear_bit(STATUS_HCMD_ACTIVE, &priv->status);
3883 #ifdef CONFIG_IWL3945_DEBUG
3884 if (priv->debug_level & IWL_DL_FW_ERRORS) {
3885 iwl3945_dump_nic_error_log(priv);
3886 iwl3945_dump_nic_event_log(priv);
3887 iwl3945_print_rx_config_cmd(priv, &priv->staging39_rxon);
3891 wake_up_interruptible(&priv->wait_command_queue);
3893 /* Keep the restart process from trying to send host
3894 * commands by clearing the INIT status bit */
3895 clear_bit(STATUS_READY, &priv->status);
3897 if (!test_bit(STATUS_EXIT_PENDING, &priv->status)) {
3898 IWL_DEBUG(IWL_DL_INFO | IWL_DL_FW_ERRORS,
3899 "Restarting adapter due to uCode error.\n");
3901 if (iwl3945_is_associated(priv)) {
3902 memcpy(&priv->recovery39_rxon, &priv->active39_rxon,
3903 sizeof(priv->recovery39_rxon));
3904 priv->error_recovering = 1;
3906 queue_work(priv->workqueue, &priv->restart);
3910 static void iwl3945_error_recovery(struct iwl_priv *priv)
3912 unsigned long flags;
3914 memcpy(&priv->staging39_rxon, &priv->recovery39_rxon,
3915 sizeof(priv->staging39_rxon));
3916 priv->staging39_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
3917 iwl3945_commit_rxon(priv);
3919 iwl3945_add_station(priv, priv->bssid, 1, 0);
3921 spin_lock_irqsave(&priv->lock, flags);
3922 priv->assoc_id = le16_to_cpu(priv->staging39_rxon.assoc_id);
3923 priv->error_recovering = 0;
3924 spin_unlock_irqrestore(&priv->lock, flags);
3927 static void iwl3945_irq_tasklet(struct iwl_priv *priv)
3929 u32 inta, handled = 0;
3931 unsigned long flags;
3932 #ifdef CONFIG_IWL3945_DEBUG
3936 spin_lock_irqsave(&priv->lock, flags);
3938 /* Ack/clear/reset pending uCode interrupts.
3939 * Note: Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS,
3940 * and will clear only when CSR_FH_INT_STATUS gets cleared. */
3941 inta = iwl_read32(priv, CSR_INT);
3942 iwl_write32(priv, CSR_INT, inta);
3944 /* Ack/clear/reset pending flow-handler (DMA) interrupts.
3945 * Any new interrupts that happen after this, either while we're
3946 * in this tasklet, or later, will show up in next ISR/tasklet. */
3947 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
3948 iwl_write32(priv, CSR_FH_INT_STATUS, inta_fh);
3950 #ifdef CONFIG_IWL3945_DEBUG
3951 if (priv->debug_level & IWL_DL_ISR) {
3952 /* just for debug */
3953 inta_mask = iwl_read32(priv, CSR_INT_MASK);
3954 IWL_DEBUG_ISR("inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
3955 inta, inta_mask, inta_fh);
3959 /* Since CSR_INT and CSR_FH_INT_STATUS reads and clears are not
3960 * atomic, make sure that inta covers all the interrupts that
3961 * we've discovered, even if FH interrupt came in just after
3962 * reading CSR_INT. */
3963 if (inta_fh & CSR39_FH_INT_RX_MASK)
3964 inta |= CSR_INT_BIT_FH_RX;
3965 if (inta_fh & CSR39_FH_INT_TX_MASK)
3966 inta |= CSR_INT_BIT_FH_TX;
3968 /* Now service all interrupt bits discovered above. */
3969 if (inta & CSR_INT_BIT_HW_ERR) {
3970 IWL_ERR(priv, "Microcode HW error detected. Restarting.\n");
3972 /* Tell the device to stop sending interrupts */
3973 iwl3945_disable_interrupts(priv);
3975 iwl3945_irq_handle_error(priv);
3977 handled |= CSR_INT_BIT_HW_ERR;
3979 spin_unlock_irqrestore(&priv->lock, flags);
3984 #ifdef CONFIG_IWL3945_DEBUG
3985 if (priv->debug_level & (IWL_DL_ISR)) {
3986 /* NIC fires this, but we don't use it, redundant with WAKEUP */
3987 if (inta & CSR_INT_BIT_SCD)
3988 IWL_DEBUG_ISR("Scheduler finished to transmit "
3989 "the frame/frames.\n");
3991 /* Alive notification via Rx interrupt will do the real work */
3992 if (inta & CSR_INT_BIT_ALIVE)
3993 IWL_DEBUG_ISR("Alive interrupt\n");
3996 /* Safely ignore these bits for debug checks below */
3997 inta &= ~(CSR_INT_BIT_SCD | CSR_INT_BIT_ALIVE);
3999 /* Error detected by uCode */
4000 if (inta & CSR_INT_BIT_SW_ERR) {
4001 IWL_ERR(priv, "Microcode SW error detected. "
4002 "Restarting 0x%X.\n", inta);
4003 iwl3945_irq_handle_error(priv);
4004 handled |= CSR_INT_BIT_SW_ERR;
4007 /* uCode wakes up after power-down sleep */
4008 if (inta & CSR_INT_BIT_WAKEUP) {
4009 IWL_DEBUG_ISR("Wakeup interrupt\n");
4010 iwl3945_rx_queue_update_write_ptr(priv, &priv->rxq);
4011 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[0]);
4012 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[1]);
4013 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[2]);
4014 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[3]);
4015 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[4]);
4016 iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[5]);
4018 handled |= CSR_INT_BIT_WAKEUP;
4021 /* All uCode command responses, including Tx command responses,
4022 * Rx "responses" (frame-received notification), and other
4023 * notifications from uCode come through here*/
4024 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) {
4025 iwl3945_rx_handle(priv);
4026 handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX);
4029 if (inta & CSR_INT_BIT_FH_TX) {
4030 IWL_DEBUG_ISR("Tx interrupt\n");
4032 iwl_write32(priv, CSR_FH_INT_STATUS, (1 << 6));
4033 if (!iwl_grab_nic_access(priv)) {
4034 iwl_write_direct32(priv, FH39_TCSR_CREDIT
4035 (FH39_SRVC_CHNL), 0x0);
4036 iwl_release_nic_access(priv);
4038 handled |= CSR_INT_BIT_FH_TX;
4041 if (inta & ~handled)
4042 IWL_ERR(priv, "Unhandled INTA bits 0x%08x\n", inta & ~handled);
4044 if (inta & ~CSR_INI_SET_MASK) {
4045 IWL_WARN(priv, "Disabled INTA bits 0x%08x were pending\n",
4046 inta & ~CSR_INI_SET_MASK);
4047 IWL_WARN(priv, " with FH_INT = 0x%08x\n", inta_fh);
4050 /* Re-enable all interrupts */
4051 /* only Re-enable if disabled by irq */
4052 if (test_bit(STATUS_INT_ENABLED, &priv->status))
4053 iwl3945_enable_interrupts(priv);
4055 #ifdef CONFIG_IWL3945_DEBUG
4056 if (priv->debug_level & (IWL_DL_ISR)) {
4057 inta = iwl_read32(priv, CSR_INT);
4058 inta_mask = iwl_read32(priv, CSR_INT_MASK);
4059 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
4060 IWL_DEBUG_ISR("End inta 0x%08x, enabled 0x%08x, fh 0x%08x, "
4061 "flags 0x%08lx\n", inta, inta_mask, inta_fh, flags);
4064 spin_unlock_irqrestore(&priv->lock, flags);
4067 static irqreturn_t iwl3945_isr(int irq, void *data)
4069 struct iwl_priv *priv = data;
4070 u32 inta, inta_mask;
4075 spin_lock(&priv->lock);
4077 /* Disable (but don't clear!) interrupts here to avoid
4078 * back-to-back ISRs and sporadic interrupts from our NIC.
4079 * If we have something to service, the tasklet will re-enable ints.
4080 * If we *don't* have something, we'll re-enable before leaving here. */
4081 inta_mask = iwl_read32(priv, CSR_INT_MASK); /* just for debug */
4082 iwl_write32(priv, CSR_INT_MASK, 0x00000000);
4084 /* Discover which interrupts are active/pending */
4085 inta = iwl_read32(priv, CSR_INT);
4086 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
4088 /* Ignore interrupt if there's nothing in NIC to service.
4089 * This may be due to IRQ shared with another device,
4090 * or due to sporadic interrupts thrown from our NIC. */
4091 if (!inta && !inta_fh) {
4092 IWL_DEBUG_ISR("Ignore interrupt, inta == 0, inta_fh == 0\n");
4096 if ((inta == 0xFFFFFFFF) || ((inta & 0xFFFFFFF0) == 0xa5a5a5a0)) {
4097 /* Hardware disappeared */
4098 IWL_WARN(priv, "HARDWARE GONE?? INTA == 0x%08x\n", inta);
4102 IWL_DEBUG_ISR("ISR inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
4103 inta, inta_mask, inta_fh);
4105 inta &= ~CSR_INT_BIT_SCD;
4107 /* iwl3945_irq_tasklet() will service interrupts and re-enable them */
4108 if (likely(inta || inta_fh))
4109 tasklet_schedule(&priv->irq_tasklet);
4111 spin_unlock(&priv->lock);
4116 /* re-enable interrupts here since we don't have anything to service. */
4117 /* only Re-enable if disabled by irq */
4118 if (test_bit(STATUS_INT_ENABLED, &priv->status))
4119 iwl3945_enable_interrupts(priv);
4120 spin_unlock(&priv->lock);
4124 /************************** EEPROM BANDS ****************************
4126 * The iwl3945_eeprom_band definitions below provide the mapping from the
4127 * EEPROM contents to the specific channel number supported for each
4130 * For example, iwl3945_priv->eeprom39.band_3_channels[4] from the band_3
4131 * definition below maps to physical channel 42 in the 5.2GHz spectrum.
4132 * The specific geography and calibration information for that channel
4133 * is contained in the eeprom map itself.
4135 * During init, we copy the eeprom information and channel map
4136 * information into priv->channel_info_24/52 and priv->channel_map_24/52
4138 * channel_map_24/52 provides the index in the channel_info array for a
4139 * given channel. We have to have two separate maps as there is channel
4140 * overlap with the 2.4GHz and 5.2GHz spectrum as seen in band_1 and
4143 * A value of 0xff stored in the channel_map indicates that the channel
4144 * is not supported by the hardware at all.
4146 * A value of 0xfe in the channel_map indicates that the channel is not
4147 * valid for Tx with the current hardware. This means that
4148 * while the system can tune and receive on a given channel, it may not
4149 * be able to associate or transmit any frames on that
4150 * channel. There is no corresponding channel information for that
4153 *********************************************************************/
4156 static const u8 iwl3945_eeprom_band_1[14] = {
4157 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14
4161 static const u8 iwl3945_eeprom_band_2[] = { /* 4915-5080MHz */
4162 183, 184, 185, 187, 188, 189, 192, 196, 7, 8, 11, 12, 16
4165 static const u8 iwl3945_eeprom_band_3[] = { /* 5170-5320MHz */
4166 34, 36, 38, 40, 42, 44, 46, 48, 52, 56, 60, 64
4169 static const u8 iwl3945_eeprom_band_4[] = { /* 5500-5700MHz */
4170 100, 104, 108, 112, 116, 120, 124, 128, 132, 136, 140
4173 static const u8 iwl3945_eeprom_band_5[] = { /* 5725-5825MHz */
4174 145, 149, 153, 157, 161, 165
4177 static void iwl3945_init_band_reference(const struct iwl_priv *priv, int band,
4178 int *eeprom_ch_count,
4179 const struct iwl_eeprom_channel
4181 const u8 **eeprom_ch_index)
4184 case 1: /* 2.4GHz band */
4185 *eeprom_ch_count = ARRAY_SIZE(iwl3945_eeprom_band_1);
4186 *eeprom_ch_info = priv->eeprom39.band_1_channels;
4187 *eeprom_ch_index = iwl3945_eeprom_band_1;
4189 case 2: /* 4.9GHz band */
4190 *eeprom_ch_count = ARRAY_SIZE(iwl3945_eeprom_band_2);
4191 *eeprom_ch_info = priv->eeprom39.band_2_channels;
4192 *eeprom_ch_index = iwl3945_eeprom_band_2;
4194 case 3: /* 5.2GHz band */
4195 *eeprom_ch_count = ARRAY_SIZE(iwl3945_eeprom_band_3);
4196 *eeprom_ch_info = priv->eeprom39.band_3_channels;
4197 *eeprom_ch_index = iwl3945_eeprom_band_3;
4199 case 4: /* 5.5GHz band */
4200 *eeprom_ch_count = ARRAY_SIZE(iwl3945_eeprom_band_4);
4201 *eeprom_ch_info = priv->eeprom39.band_4_channels;
4202 *eeprom_ch_index = iwl3945_eeprom_band_4;
4204 case 5: /* 5.7GHz band */
4205 *eeprom_ch_count = ARRAY_SIZE(iwl3945_eeprom_band_5);
4206 *eeprom_ch_info = priv->eeprom39.band_5_channels;
4207 *eeprom_ch_index = iwl3945_eeprom_band_5;
4216 * iwl3945_get_channel_info - Find driver's private channel info
4218 * Based on band and channel number.
4220 const struct iwl_channel_info *
4221 iwl3945_get_channel_info(const struct iwl_priv *priv,
4222 enum ieee80211_band band, u16 channel)
4227 case IEEE80211_BAND_5GHZ:
4228 for (i = 14; i < priv->channel_count; i++) {
4229 if (priv->channel_info[i].channel == channel)
4230 return &priv->channel_info[i];
4234 case IEEE80211_BAND_2GHZ:
4235 if (channel >= 1 && channel <= 14)
4236 return &priv->channel_info[channel - 1];
4238 case IEEE80211_NUM_BANDS:
4245 #define CHECK_AND_PRINT(x) ((eeprom_ch_info[ch].flags & EEPROM_CHANNEL_##x) \
4249 * iwl3945_init_channel_map - Set up driver's info for all possible channels
4251 static int iwl3945_init_channel_map(struct iwl_priv *priv)
4253 int eeprom_ch_count = 0;
4254 const u8 *eeprom_ch_index = NULL;
4255 const struct iwl_eeprom_channel *eeprom_ch_info = NULL;
4257 struct iwl_channel_info *ch_info;
4259 if (priv->channel_count) {
4260 IWL_DEBUG_INFO("Channel map already initialized.\n");
4264 if (priv->eeprom39.version < 0x2f) {
4265 IWL_WARN(priv, "Unsupported EEPROM version: 0x%04X\n",
4266 priv->eeprom39.version);
4270 IWL_DEBUG_INFO("Initializing regulatory info from EEPROM\n");
4272 priv->channel_count =
4273 ARRAY_SIZE(iwl3945_eeprom_band_1) +
4274 ARRAY_SIZE(iwl3945_eeprom_band_2) +
4275 ARRAY_SIZE(iwl3945_eeprom_band_3) +
4276 ARRAY_SIZE(iwl3945_eeprom_band_4) +
4277 ARRAY_SIZE(iwl3945_eeprom_band_5);
4279 IWL_DEBUG_INFO("Parsing data for %d channels.\n", priv->channel_count);
4281 priv->channel_info = kzalloc(sizeof(struct iwl_channel_info) *
4282 priv->channel_count, GFP_KERNEL);
4283 if (!priv->channel_info) {
4284 IWL_ERR(priv, "Could not allocate channel_info\n");
4285 priv->channel_count = 0;
4289 ch_info = priv->channel_info;
4291 /* Loop through the 5 EEPROM bands adding them in order to the
4292 * channel map we maintain (that contains additional information than
4293 * what just in the EEPROM) */
4294 for (band = 1; band <= 5; band++) {
4296 iwl3945_init_band_reference(priv, band, &eeprom_ch_count,
4297 &eeprom_ch_info, &eeprom_ch_index);
4299 /* Loop through each band adding each of the channels */
4300 for (ch = 0; ch < eeprom_ch_count; ch++) {
4301 ch_info->channel = eeprom_ch_index[ch];
4302 ch_info->band = (band == 1) ? IEEE80211_BAND_2GHZ :
4303 IEEE80211_BAND_5GHZ;
4305 /* permanently store EEPROM's channel regulatory flags
4306 * and max power in channel info database. */
4307 ch_info->eeprom = eeprom_ch_info[ch];
4309 /* Copy the run-time flags so they are there even on
4310 * invalid channels */
4311 ch_info->flags = eeprom_ch_info[ch].flags;
4313 if (!(is_channel_valid(ch_info))) {
4314 IWL_DEBUG_INFO("Ch. %d Flags %x [%sGHz] - "
4318 is_channel_a_band(ch_info) ?
4324 /* Initialize regulatory-based run-time data */
4325 ch_info->max_power_avg = ch_info->curr_txpow =
4326 eeprom_ch_info[ch].max_power_avg;
4327 ch_info->scan_power = eeprom_ch_info[ch].max_power_avg;
4328 ch_info->min_power = 0;
4330 IWL_DEBUG_INFO("Ch. %d [%sGHz] %s%s%s%s%s%s(0x%02x"
4331 " %ddBm): Ad-Hoc %ssupported\n",
4333 is_channel_a_band(ch_info) ?
4335 CHECK_AND_PRINT(VALID),
4336 CHECK_AND_PRINT(IBSS),
4337 CHECK_AND_PRINT(ACTIVE),
4338 CHECK_AND_PRINT(RADAR),
4339 CHECK_AND_PRINT(WIDE),
4340 CHECK_AND_PRINT(DFS),
4341 eeprom_ch_info[ch].flags,
4342 eeprom_ch_info[ch].max_power_avg,
4343 ((eeprom_ch_info[ch].
4344 flags & EEPROM_CHANNEL_IBSS)
4345 && !(eeprom_ch_info[ch].
4346 flags & EEPROM_CHANNEL_RADAR))
4349 /* Set the user_txpower_limit to the highest power
4350 * supported by any channel */
4351 if (eeprom_ch_info[ch].max_power_avg >
4352 priv->user_txpower_limit)
4353 priv->user_txpower_limit =
4354 eeprom_ch_info[ch].max_power_avg;
4360 /* Set up txpower settings in driver for all channels */
4361 if (iwl3945_txpower_set_from_eeprom(priv))
4368 * iwl3945_free_channel_map - undo allocations in iwl3945_init_channel_map
4370 static void iwl3945_free_channel_map(struct iwl_priv *priv)
4372 kfree(priv->channel_info);
4373 priv->channel_count = 0;
4376 /* For active scan, listen ACTIVE_DWELL_TIME (msec) on each channel after
4377 * sending probe req. This should be set long enough to hear probe responses
4378 * from more than one AP. */
4379 #define IWL_ACTIVE_DWELL_TIME_24 (30) /* all times in msec */
4380 #define IWL_ACTIVE_DWELL_TIME_52 (20)
4382 #define IWL_ACTIVE_DWELL_FACTOR_24GHZ (3)
4383 #define IWL_ACTIVE_DWELL_FACTOR_52GHZ (2)
4385 /* For faster active scanning, scan will move to the next channel if fewer than
4386 * PLCP_QUIET_THRESH packets are heard on this channel within
4387 * ACTIVE_QUIET_TIME after sending probe request. This shortens the dwell
4388 * time if it's a quiet channel (nothing responded to our probe, and there's
4389 * no other traffic).
4390 * Disable "quiet" feature by setting PLCP_QUIET_THRESH to 0. */
4391 #define IWL_PLCP_QUIET_THRESH __constant_cpu_to_le16(1) /* packets */
4392 #define IWL_ACTIVE_QUIET_TIME __constant_cpu_to_le16(10) /* msec */
4394 /* For passive scan, listen PASSIVE_DWELL_TIME (msec) on each channel.
4395 * Must be set longer than active dwell time.
4396 * For the most reliable scan, set > AP beacon interval (typically 100msec). */
4397 #define IWL_PASSIVE_DWELL_TIME_24 (20) /* all times in msec */
4398 #define IWL_PASSIVE_DWELL_TIME_52 (10)
4399 #define IWL_PASSIVE_DWELL_BASE (100)
4400 #define IWL_CHANNEL_TUNE_TIME 5
4402 #define IWL_SCAN_PROBE_MASK(n) (BIT(n) | (BIT(n) - BIT(1)))
4404 static inline u16 iwl3945_get_active_dwell_time(struct iwl_priv *priv,
4405 enum ieee80211_band band,
4408 if (band == IEEE80211_BAND_5GHZ)
4409 return IWL_ACTIVE_DWELL_TIME_52 +
4410 IWL_ACTIVE_DWELL_FACTOR_52GHZ * (n_probes + 1);
4412 return IWL_ACTIVE_DWELL_TIME_24 +
4413 IWL_ACTIVE_DWELL_FACTOR_24GHZ * (n_probes + 1);
4416 static u16 iwl3945_get_passive_dwell_time(struct iwl_priv *priv,
4417 enum ieee80211_band band)
4419 u16 passive = (band == IEEE80211_BAND_2GHZ) ?
4420 IWL_PASSIVE_DWELL_BASE + IWL_PASSIVE_DWELL_TIME_24 :
4421 IWL_PASSIVE_DWELL_BASE + IWL_PASSIVE_DWELL_TIME_52;
4423 if (iwl3945_is_associated(priv)) {
4424 /* If we're associated, we clamp the maximum passive
4425 * dwell time to be 98% of the beacon interval (minus
4426 * 2 * channel tune time) */
4427 passive = priv->beacon_int;
4428 if ((passive > IWL_PASSIVE_DWELL_BASE) || !passive)
4429 passive = IWL_PASSIVE_DWELL_BASE;
4430 passive = (passive * 98) / 100 - IWL_CHANNEL_TUNE_TIME * 2;
4436 static int iwl3945_get_channels_for_scan(struct iwl_priv *priv,
4437 enum ieee80211_band band,
4438 u8 is_active, u8 n_probes,
4439 struct iwl3945_scan_channel *scan_ch)
4441 const struct ieee80211_channel *channels = NULL;
4442 const struct ieee80211_supported_band *sband;
4443 const struct iwl_channel_info *ch_info;
4444 u16 passive_dwell = 0;
4445 u16 active_dwell = 0;
4448 sband = iwl_get_hw_mode(priv, band);
4452 channels = sband->channels;
4454 active_dwell = iwl3945_get_active_dwell_time(priv, band, n_probes);
4455 passive_dwell = iwl3945_get_passive_dwell_time(priv, band);
4457 if (passive_dwell <= active_dwell)
4458 passive_dwell = active_dwell + 1;
4460 for (i = 0, added = 0; i < sband->n_channels; i++) {
4461 if (channels[i].flags & IEEE80211_CHAN_DISABLED)
4464 scan_ch->channel = channels[i].hw_value;
4466 ch_info = iwl3945_get_channel_info(priv, band, scan_ch->channel);
4467 if (!is_channel_valid(ch_info)) {
4468 IWL_DEBUG_SCAN("Channel %d is INVALID for this band.\n",
4473 scan_ch->active_dwell = cpu_to_le16(active_dwell);
4474 scan_ch->passive_dwell = cpu_to_le16(passive_dwell);
4475 /* If passive , set up for auto-switch
4476 * and use long active_dwell time.
4478 if (!is_active || is_channel_passive(ch_info) ||
4479 (channels[i].flags & IEEE80211_CHAN_PASSIVE_SCAN)) {
4480 scan_ch->type = 0; /* passive */
4481 if (IWL_UCODE_API(priv->ucode_ver) == 1)
4482 scan_ch->active_dwell = cpu_to_le16(passive_dwell - 1);
4484 scan_ch->type = 1; /* active */
4487 /* Set direct probe bits. These may be used both for active
4488 * scan channels (probes gets sent right away),
4489 * or for passive channels (probes get se sent only after
4490 * hearing clear Rx packet).*/
4491 if (IWL_UCODE_API(priv->ucode_ver) >= 2) {
4493 scan_ch->type |= IWL_SCAN_PROBE_MASK(n_probes);
4495 /* uCode v1 does not allow setting direct probe bits on
4496 * passive channel. */
4497 if ((scan_ch->type & 1) && n_probes)
4498 scan_ch->type |= IWL_SCAN_PROBE_MASK(n_probes);
4501 /* Set txpower levels to defaults */
4502 scan_ch->tpc.dsp_atten = 110;
4503 /* scan_pwr_info->tpc.dsp_atten; */
4505 /*scan_pwr_info->tpc.tx_gain; */
4506 if (band == IEEE80211_BAND_5GHZ)
4507 scan_ch->tpc.tx_gain = ((1 << 5) | (3 << 3)) | 3;
4509 scan_ch->tpc.tx_gain = ((1 << 5) | (5 << 3));
4510 /* NOTE: if we were doing 6Mb OFDM for scans we'd use
4512 * scan_ch->tpc.tx_gain = ((1 << 5) | (2 << 3)) | 3;
4516 IWL_DEBUG_SCAN("Scanning %d [%s %d]\n",
4518 (scan_ch->type & 1) ? "ACTIVE" : "PASSIVE",
4519 (scan_ch->type & 1) ?
4520 active_dwell : passive_dwell);
4526 IWL_DEBUG_SCAN("total channels to scan %d \n", added);
4530 static void iwl3945_init_hw_rates(struct iwl_priv *priv,
4531 struct ieee80211_rate *rates)
4535 for (i = 0; i < IWL_RATE_COUNT; i++) {
4536 rates[i].bitrate = iwl3945_rates[i].ieee * 5;
4537 rates[i].hw_value = i; /* Rate scaling will work on indexes */
4538 rates[i].hw_value_short = i;
4540 if ((i > IWL39_LAST_OFDM_RATE) || (i < IWL_FIRST_OFDM_RATE)) {
4542 * If CCK != 1M then set short preamble rate flag.
4544 rates[i].flags |= (iwl3945_rates[i].plcp == 10) ?
4545 0 : IEEE80211_RATE_SHORT_PREAMBLE;
4551 * iwl3945_init_geos - Initialize mac80211's geo/channel info based from eeprom
4553 static int iwl3945_init_geos(struct iwl_priv *priv)
4555 struct iwl_channel_info *ch;
4556 struct ieee80211_supported_band *sband;
4557 struct ieee80211_channel *channels;
4558 struct ieee80211_channel *geo_ch;
4559 struct ieee80211_rate *rates;
4562 if (priv->bands[IEEE80211_BAND_2GHZ].n_bitrates ||
4563 priv->bands[IEEE80211_BAND_5GHZ].n_bitrates) {
4564 IWL_DEBUG_INFO("Geography modes already initialized.\n");
4565 set_bit(STATUS_GEO_CONFIGURED, &priv->status);
4569 channels = kzalloc(sizeof(struct ieee80211_channel) *
4570 priv->channel_count, GFP_KERNEL);
4574 rates = kzalloc((sizeof(struct ieee80211_rate) * (IWL_RATE_COUNT + 1)),
4581 /* 5.2GHz channels start after the 2.4GHz channels */
4582 sband = &priv->bands[IEEE80211_BAND_5GHZ];
4583 sband->channels = &channels[ARRAY_SIZE(iwl3945_eeprom_band_1)];
4585 sband->bitrates = &rates[IWL_FIRST_OFDM_RATE];
4586 sband->n_bitrates = IWL_RATE_COUNT - IWL_FIRST_OFDM_RATE;
4588 sband = &priv->bands[IEEE80211_BAND_2GHZ];
4589 sband->channels = channels;
4591 sband->bitrates = rates;
4592 sband->n_bitrates = IWL_RATE_COUNT;
4594 priv->ieee_channels = channels;
4595 priv->ieee_rates = rates;
4597 iwl3945_init_hw_rates(priv, rates);
4599 for (i = 0; i < priv->channel_count; i++) {
4600 ch = &priv->channel_info[i];
4602 /* FIXME: might be removed if scan is OK*/
4603 if (!is_channel_valid(ch))
4606 if (is_channel_a_band(ch))
4607 sband = &priv->bands[IEEE80211_BAND_5GHZ];
4609 sband = &priv->bands[IEEE80211_BAND_2GHZ];
4611 geo_ch = &sband->channels[sband->n_channels++];
4613 geo_ch->center_freq = ieee80211_channel_to_frequency(ch->channel);
4614 geo_ch->max_power = ch->max_power_avg;
4615 geo_ch->max_antenna_gain = 0xff;
4616 geo_ch->hw_value = ch->channel;
4618 if (is_channel_valid(ch)) {
4619 if (!(ch->flags & EEPROM_CHANNEL_IBSS))
4620 geo_ch->flags |= IEEE80211_CHAN_NO_IBSS;
4622 if (!(ch->flags & EEPROM_CHANNEL_ACTIVE))
4623 geo_ch->flags |= IEEE80211_CHAN_PASSIVE_SCAN;
4625 if (ch->flags & EEPROM_CHANNEL_RADAR)
4626 geo_ch->flags |= IEEE80211_CHAN_RADAR;
4628 if (ch->max_power_avg > priv->max_channel_txpower_limit)
4629 priv->max_channel_txpower_limit =
4632 geo_ch->flags |= IEEE80211_CHAN_DISABLED;
4635 /* Save flags for reg domain usage */
4636 geo_ch->orig_flags = geo_ch->flags;
4638 IWL_DEBUG_INFO("Channel %d Freq=%d[%sGHz] %s flag=0%X\n",
4639 ch->channel, geo_ch->center_freq,
4640 is_channel_a_band(ch) ? "5.2" : "2.4",
4641 geo_ch->flags & IEEE80211_CHAN_DISABLED ?
4642 "restricted" : "valid",
4646 if ((priv->bands[IEEE80211_BAND_5GHZ].n_channels == 0) &&
4647 priv->cfg->sku & IWL_SKU_A) {
4648 IWL_INFO(priv, "Incorrectly detected BG card as ABG. "
4649 "Please send your PCI ID 0x%04X:0x%04X to maintainer.\n",
4650 priv->pci_dev->device, priv->pci_dev->subsystem_device);
4651 priv->cfg->sku &= ~IWL_SKU_A;
4654 IWL_INFO(priv, "Tunable channels: %d 802.11bg, %d 802.11a channels\n",
4655 priv->bands[IEEE80211_BAND_2GHZ].n_channels,
4656 priv->bands[IEEE80211_BAND_5GHZ].n_channels);
4658 if (priv->bands[IEEE80211_BAND_2GHZ].n_channels)
4659 priv->hw->wiphy->bands[IEEE80211_BAND_2GHZ] =
4660 &priv->bands[IEEE80211_BAND_2GHZ];
4661 if (priv->bands[IEEE80211_BAND_5GHZ].n_channels)
4662 priv->hw->wiphy->bands[IEEE80211_BAND_5GHZ] =
4663 &priv->bands[IEEE80211_BAND_5GHZ];
4665 set_bit(STATUS_GEO_CONFIGURED, &priv->status);
4671 * iwl3945_free_geos - undo allocations in iwl3945_init_geos
4673 static void iwl3945_free_geos(struct iwl_priv *priv)
4675 kfree(priv->ieee_channels);
4676 kfree(priv->ieee_rates);
4677 clear_bit(STATUS_GEO_CONFIGURED, &priv->status);
4680 /******************************************************************************
4682 * uCode download functions
4684 ******************************************************************************/
4686 static void iwl3945_dealloc_ucode_pci(struct iwl_priv *priv)
4688 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_code);
4689 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data);
4690 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
4691 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init);
4692 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init_data);
4693 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_boot);
4697 * iwl3945_verify_inst_full - verify runtime uCode image in card vs. host,
4698 * looking at all data.
4700 static int iwl3945_verify_inst_full(struct iwl_priv *priv, __le32 *image, u32 len)
4707 IWL_DEBUG_INFO("ucode inst image size is %u\n", len);
4709 rc = iwl_grab_nic_access(priv);
4713 iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR,
4714 IWL39_RTC_INST_LOWER_BOUND);
4717 for (; len > 0; len -= sizeof(u32), image++) {
4718 /* read data comes through single port, auto-incr addr */
4719 /* NOTE: Use the debugless read so we don't flood kernel log
4720 * if IWL_DL_IO is set */
4721 val = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
4722 if (val != le32_to_cpu(*image)) {
4723 IWL_ERR(priv, "uCode INST section is invalid at "
4724 "offset 0x%x, is 0x%x, s/b 0x%x\n",
4725 save_len - len, val, le32_to_cpu(*image));
4733 iwl_release_nic_access(priv);
4736 IWL_DEBUG_INFO("ucode image in INSTRUCTION memory is good\n");
4743 * iwl3945_verify_inst_sparse - verify runtime uCode image in card vs. host,
4744 * using sample data 100 bytes apart. If these sample points are good,
4745 * it's a pretty good bet that everything between them is good, too.
4747 static int iwl3945_verify_inst_sparse(struct iwl_priv *priv, __le32 *image, u32 len)
4754 IWL_DEBUG_INFO("ucode inst image size is %u\n", len);
4756 rc = iwl_grab_nic_access(priv);
4760 for (i = 0; i < len; i += 100, image += 100/sizeof(u32)) {
4761 /* read data comes through single port, auto-incr addr */
4762 /* NOTE: Use the debugless read so we don't flood kernel log
4763 * if IWL_DL_IO is set */
4764 iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR,
4765 i + IWL39_RTC_INST_LOWER_BOUND);
4766 val = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
4767 if (val != le32_to_cpu(*image)) {
4768 #if 0 /* Enable this if you want to see details */
4769 IWL_ERR(priv, "uCode INST section is invalid at "
4770 "offset 0x%x, is 0x%x, s/b 0x%x\n",
4780 iwl_release_nic_access(priv);
4787 * iwl3945_verify_ucode - determine which instruction image is in SRAM,
4788 * and verify its contents
4790 static int iwl3945_verify_ucode(struct iwl_priv *priv)
4797 image = (__le32 *)priv->ucode_boot.v_addr;
4798 len = priv->ucode_boot.len;
4799 rc = iwl3945_verify_inst_sparse(priv, image, len);
4801 IWL_DEBUG_INFO("Bootstrap uCode is good in inst SRAM\n");
4805 /* Try initialize */
4806 image = (__le32 *)priv->ucode_init.v_addr;
4807 len = priv->ucode_init.len;
4808 rc = iwl3945_verify_inst_sparse(priv, image, len);
4810 IWL_DEBUG_INFO("Initialize uCode is good in inst SRAM\n");
4814 /* Try runtime/protocol */
4815 image = (__le32 *)priv->ucode_code.v_addr;
4816 len = priv->ucode_code.len;
4817 rc = iwl3945_verify_inst_sparse(priv, image, len);
4819 IWL_DEBUG_INFO("Runtime uCode is good in inst SRAM\n");
4823 IWL_ERR(priv, "NO VALID UCODE IMAGE IN INSTRUCTION SRAM!!\n");
4825 /* Since nothing seems to match, show first several data entries in
4826 * instruction SRAM, so maybe visual inspection will give a clue.
4827 * Selection of bootstrap image (vs. other images) is arbitrary. */
4828 image = (__le32 *)priv->ucode_boot.v_addr;
4829 len = priv->ucode_boot.len;
4830 rc = iwl3945_verify_inst_full(priv, image, len);
4835 static void iwl3945_nic_start(struct iwl_priv *priv)
4837 /* Remove all resets to allow NIC to operate */
4838 iwl_write32(priv, CSR_RESET, 0);
4842 * iwl3945_read_ucode - Read uCode images from disk file.
4844 * Copy into buffers for card to fetch via bus-mastering
4846 static int iwl3945_read_ucode(struct iwl_priv *priv)
4848 struct iwl_ucode *ucode;
4849 int ret = -EINVAL, index;
4850 const struct firmware *ucode_raw;
4851 /* firmware file name contains uCode/driver compatibility version */
4852 const char *name_pre = priv->cfg->fw_name_pre;
4853 const unsigned int api_max = priv->cfg->ucode_api_max;
4854 const unsigned int api_min = priv->cfg->ucode_api_min;
4858 u32 api_ver, inst_size, data_size, init_size, init_data_size, boot_size;
4860 /* Ask kernel firmware_class module to get the boot firmware off disk.
4861 * request_firmware() is synchronous, file is in memory on return. */
4862 for (index = api_max; index >= api_min; index--) {
4863 sprintf(buf, "%s%u%s", name_pre, index, ".ucode");
4864 ret = request_firmware(&ucode_raw, buf, &priv->pci_dev->dev);
4866 IWL_ERR(priv, "%s firmware file req failed: %d\n",
4873 if (index < api_max)
4874 IWL_ERR(priv, "Loaded firmware %s, "
4875 "which is deprecated. "
4876 " Please use API v%u instead.\n",
4878 IWL_DEBUG_INFO("Got firmware '%s' file (%zd bytes) from disk\n",
4879 buf, ucode_raw->size);
4887 /* Make sure that we got at least our header! */
4888 if (ucode_raw->size < sizeof(*ucode)) {
4889 IWL_ERR(priv, "File size way too small!\n");
4894 /* Data from ucode file: header followed by uCode images */
4895 ucode = (void *)ucode_raw->data;
4897 priv->ucode_ver = le32_to_cpu(ucode->ver);
4898 api_ver = IWL_UCODE_API(priv->ucode_ver);
4899 inst_size = le32_to_cpu(ucode->inst_size);
4900 data_size = le32_to_cpu(ucode->data_size);
4901 init_size = le32_to_cpu(ucode->init_size);
4902 init_data_size = le32_to_cpu(ucode->init_data_size);
4903 boot_size = le32_to_cpu(ucode->boot_size);
4905 /* api_ver should match the api version forming part of the
4906 * firmware filename ... but we don't check for that and only rely
4907 * on the API version read from firware header from here on forward */
4909 if (api_ver < api_min || api_ver > api_max) {
4910 IWL_ERR(priv, "Driver unable to support your firmware API. "
4911 "Driver supports v%u, firmware is v%u.\n",
4913 priv->ucode_ver = 0;
4917 if (api_ver != api_max)
4918 IWL_ERR(priv, "Firmware has old API version. Expected %u, "
4919 "got %u. New firmware can be obtained "
4920 "from http://www.intellinuxwireless.org.\n",
4923 IWL_INFO(priv, "loaded firmware version %u.%u.%u.%u\n",
4924 IWL_UCODE_MAJOR(priv->ucode_ver),
4925 IWL_UCODE_MINOR(priv->ucode_ver),
4926 IWL_UCODE_API(priv->ucode_ver),
4927 IWL_UCODE_SERIAL(priv->ucode_ver));
4929 IWL_DEBUG_INFO("f/w package hdr ucode version raw = 0x%x\n",
4931 IWL_DEBUG_INFO("f/w package hdr runtime inst size = %u\n", inst_size);
4932 IWL_DEBUG_INFO("f/w package hdr runtime data size = %u\n", data_size);
4933 IWL_DEBUG_INFO("f/w package hdr init inst size = %u\n", init_size);
4934 IWL_DEBUG_INFO("f/w package hdr init data size = %u\n", init_data_size);
4935 IWL_DEBUG_INFO("f/w package hdr boot inst size = %u\n", boot_size);
4938 /* Verify size of file vs. image size info in file's header */
4939 if (ucode_raw->size < sizeof(*ucode) +
4940 inst_size + data_size + init_size +
4941 init_data_size + boot_size) {
4943 IWL_DEBUG_INFO("uCode file size %d too small\n",
4944 (int)ucode_raw->size);
4949 /* Verify that uCode images will fit in card's SRAM */
4950 if (inst_size > IWL39_MAX_INST_SIZE) {
4951 IWL_DEBUG_INFO("uCode instr len %d too large to fit in\n",
4957 if (data_size > IWL39_MAX_DATA_SIZE) {
4958 IWL_DEBUG_INFO("uCode data len %d too large to fit in\n",
4963 if (init_size > IWL39_MAX_INST_SIZE) {
4964 IWL_DEBUG_INFO("uCode init instr len %d too large to fit in\n",
4969 if (init_data_size > IWL39_MAX_DATA_SIZE) {
4970 IWL_DEBUG_INFO("uCode init data len %d too large to fit in\n",
4975 if (boot_size > IWL39_MAX_BSM_SIZE) {
4976 IWL_DEBUG_INFO("uCode boot instr len %d too large to fit in\n",
4982 /* Allocate ucode buffers for card's bus-master loading ... */
4984 /* Runtime instructions and 2 copies of data:
4985 * 1) unmodified from disk
4986 * 2) backup cache for save/restore during power-downs */
4987 priv->ucode_code.len = inst_size;
4988 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_code);
4990 priv->ucode_data.len = data_size;
4991 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data);
4993 priv->ucode_data_backup.len = data_size;
4994 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
4996 if (!priv->ucode_code.v_addr || !priv->ucode_data.v_addr ||
4997 !priv->ucode_data_backup.v_addr)
5000 /* Initialization instructions and data */
5001 if (init_size && init_data_size) {
5002 priv->ucode_init.len = init_size;
5003 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init);
5005 priv->ucode_init_data.len = init_data_size;
5006 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init_data);
5008 if (!priv->ucode_init.v_addr || !priv->ucode_init_data.v_addr)
5012 /* Bootstrap (instructions only, no data) */
5014 priv->ucode_boot.len = boot_size;
5015 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_boot);
5017 if (!priv->ucode_boot.v_addr)
5021 /* Copy images into buffers for card's bus-master reads ... */
5023 /* Runtime instructions (first block of data in file) */
5024 src = &ucode->data[0];
5025 len = priv->ucode_code.len;
5026 IWL_DEBUG_INFO("Copying (but not loading) uCode instr len %Zd\n", len);
5027 memcpy(priv->ucode_code.v_addr, src, len);
5028 IWL_DEBUG_INFO("uCode instr buf vaddr = 0x%p, paddr = 0x%08x\n",
5029 priv->ucode_code.v_addr, (u32)priv->ucode_code.p_addr);
5031 /* Runtime data (2nd block)
5032 * NOTE: Copy into backup buffer will be done in iwl3945_up() */
5033 src = &ucode->data[inst_size];
5034 len = priv->ucode_data.len;
5035 IWL_DEBUG_INFO("Copying (but not loading) uCode data len %Zd\n", len);
5036 memcpy(priv->ucode_data.v_addr, src, len);
5037 memcpy(priv->ucode_data_backup.v_addr, src, len);
5039 /* Initialization instructions (3rd block) */
5041 src = &ucode->data[inst_size + data_size];
5042 len = priv->ucode_init.len;
5043 IWL_DEBUG_INFO("Copying (but not loading) init instr len %Zd\n",
5045 memcpy(priv->ucode_init.v_addr, src, len);
5048 /* Initialization data (4th block) */
5049 if (init_data_size) {
5050 src = &ucode->data[inst_size + data_size + init_size];
5051 len = priv->ucode_init_data.len;
5052 IWL_DEBUG_INFO("Copying (but not loading) init data len %d\n",
5054 memcpy(priv->ucode_init_data.v_addr, src, len);
5057 /* Bootstrap instructions (5th block) */
5058 src = &ucode->data[inst_size + data_size + init_size + init_data_size];
5059 len = priv->ucode_boot.len;
5060 IWL_DEBUG_INFO("Copying (but not loading) boot instr len %d\n",
5062 memcpy(priv->ucode_boot.v_addr, src, len);
5064 /* We have our copies now, allow OS release its copies */
5065 release_firmware(ucode_raw);
5069 IWL_ERR(priv, "failed to allocate pci memory\n");
5071 iwl3945_dealloc_ucode_pci(priv);
5074 release_firmware(ucode_raw);
5082 * iwl3945_set_ucode_ptrs - Set uCode address location
5084 * Tell initialization uCode where to find runtime uCode.
5086 * BSM registers initially contain pointers to initialization uCode.
5087 * We need to replace them to load runtime uCode inst and data,
5088 * and to save runtime data when powering down.
5090 static int iwl3945_set_ucode_ptrs(struct iwl_priv *priv)
5095 unsigned long flags;
5097 /* bits 31:0 for 3945 */
5098 pinst = priv->ucode_code.p_addr;
5099 pdata = priv->ucode_data_backup.p_addr;
5101 spin_lock_irqsave(&priv->lock, flags);
5102 rc = iwl_grab_nic_access(priv);
5104 spin_unlock_irqrestore(&priv->lock, flags);
5108 /* Tell bootstrap uCode where to find image to load */
5109 iwl_write_prph(priv, BSM_DRAM_INST_PTR_REG, pinst);
5110 iwl_write_prph(priv, BSM_DRAM_DATA_PTR_REG, pdata);
5111 iwl_write_prph(priv, BSM_DRAM_DATA_BYTECOUNT_REG,
5112 priv->ucode_data.len);
5114 /* Inst byte count must be last to set up, bit 31 signals uCode
5115 * that all new ptr/size info is in place */
5116 iwl_write_prph(priv, BSM_DRAM_INST_BYTECOUNT_REG,
5117 priv->ucode_code.len | BSM_DRAM_INST_LOAD);
5119 iwl_release_nic_access(priv);
5121 spin_unlock_irqrestore(&priv->lock, flags);
5123 IWL_DEBUG_INFO("Runtime uCode pointers are set.\n");
5129 * iwl3945_init_alive_start - Called after REPLY_ALIVE notification received
5131 * Called after REPLY_ALIVE notification received from "initialize" uCode.
5133 * Tell "initialize" uCode to go ahead and load the runtime uCode.
5135 static void iwl3945_init_alive_start(struct iwl_priv *priv)
5137 /* Check alive response for "valid" sign from uCode */
5138 if (priv->card_alive_init.is_valid != UCODE_VALID_OK) {
5139 /* We had an error bringing up the hardware, so take it
5140 * all the way back down so we can try again */
5141 IWL_DEBUG_INFO("Initialize Alive failed.\n");
5145 /* Bootstrap uCode has loaded initialize uCode ... verify inst image.
5146 * This is a paranoid check, because we would not have gotten the
5147 * "initialize" alive if code weren't properly loaded. */
5148 if (iwl3945_verify_ucode(priv)) {
5149 /* Runtime instruction load was bad;
5150 * take it all the way back down so we can try again */
5151 IWL_DEBUG_INFO("Bad \"initialize\" uCode load.\n");
5155 /* Send pointers to protocol/runtime uCode image ... init code will
5156 * load and launch runtime uCode, which will send us another "Alive"
5158 IWL_DEBUG_INFO("Initialization Alive received.\n");
5159 if (iwl3945_set_ucode_ptrs(priv)) {
5160 /* Runtime instruction load won't happen;
5161 * take it all the way back down so we can try again */
5162 IWL_DEBUG_INFO("Couldn't set up uCode pointers.\n");
5168 queue_work(priv->workqueue, &priv->restart);
5173 static int iwl3945_mac_beacon_update(struct ieee80211_hw *hw,
5174 struct sk_buff *skb);
5177 * iwl3945_alive_start - called after REPLY_ALIVE notification received
5178 * from protocol/runtime uCode (initialization uCode's
5179 * Alive gets handled by iwl3945_init_alive_start()).
5181 static void iwl3945_alive_start(struct iwl_priv *priv)
5184 int thermal_spin = 0;
5187 IWL_DEBUG_INFO("Runtime Alive received.\n");
5189 if (priv->card_alive.is_valid != UCODE_VALID_OK) {
5190 /* We had an error bringing up the hardware, so take it
5191 * all the way back down so we can try again */
5192 IWL_DEBUG_INFO("Alive failed.\n");
5196 /* Initialize uCode has loaded Runtime uCode ... verify inst image.
5197 * This is a paranoid check, because we would not have gotten the
5198 * "runtime" alive if code weren't properly loaded. */
5199 if (iwl3945_verify_ucode(priv)) {
5200 /* Runtime instruction load was bad;
5201 * take it all the way back down so we can try again */
5202 IWL_DEBUG_INFO("Bad runtime uCode load.\n");
5206 iwl3945_clear_stations_table(priv);
5208 rc = iwl_grab_nic_access(priv);
5210 IWL_WARN(priv, "Can not read RFKILL status from adapter\n");
5214 rfkill = iwl_read_prph(priv, APMG_RFKILL_REG);
5215 IWL_DEBUG_INFO("RFKILL status: 0x%x\n", rfkill);
5216 iwl_release_nic_access(priv);
5219 clear_bit(STATUS_RF_KILL_HW, &priv->status);
5220 /* if RFKILL is not on, then wait for thermal
5221 * sensor in adapter to kick in */
5222 while (iwl3945_hw_get_temperature(priv) == 0) {
5228 IWL_DEBUG_INFO("Thermal calibration took %dus\n",
5231 set_bit(STATUS_RF_KILL_HW, &priv->status);
5233 /* After the ALIVE response, we can send commands to 3945 uCode */
5234 set_bit(STATUS_ALIVE, &priv->status);
5236 /* Clear out the uCode error bit if it is set */
5237 clear_bit(STATUS_FW_ERROR, &priv->status);
5239 if (iwl_is_rfkill(priv))
5242 ieee80211_wake_queues(priv->hw);
5244 priv->active_rate = priv->rates_mask;
5245 priv->active_rate_basic = priv->rates_mask & IWL_BASIC_RATES_MASK;
5247 iwl3945_send_power_mode(priv, IWL_POWER_LEVEL(priv->power_mode));
5249 if (iwl3945_is_associated(priv)) {
5250 struct iwl3945_rxon_cmd *active_rxon =
5251 (struct iwl3945_rxon_cmd *)(&priv->active39_rxon);
5253 memcpy(&priv->staging39_rxon, &priv->active39_rxon,
5254 sizeof(priv->staging39_rxon));
5255 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
5257 /* Initialize our rx_config data */
5258 iwl3945_connection_init_rx_config(priv, priv->iw_mode);
5259 memcpy(priv->staging39_rxon.node_addr, priv->mac_addr, ETH_ALEN);
5262 /* Configure Bluetooth device coexistence support */
5263 iwl3945_send_bt_config(priv);
5265 /* Configure the adapter for unassociated operation */
5266 iwl3945_commit_rxon(priv);
5268 iwl3945_reg_txpower_periodic(priv);
5270 iwl3945_led_register(priv);
5272 IWL_DEBUG_INFO("ALIVE processing complete.\n");
5273 set_bit(STATUS_READY, &priv->status);
5274 wake_up_interruptible(&priv->wait_command_queue);
5276 if (priv->error_recovering)
5277 iwl3945_error_recovery(priv);
5279 /* reassociate for ADHOC mode */
5280 if (priv->vif && (priv->iw_mode == NL80211_IFTYPE_ADHOC)) {
5281 struct sk_buff *beacon = ieee80211_beacon_get(priv->hw,
5284 iwl3945_mac_beacon_update(priv->hw, beacon);
5290 queue_work(priv->workqueue, &priv->restart);
5293 static void iwl3945_cancel_deferred_work(struct iwl_priv *priv);
5295 static void __iwl3945_down(struct iwl_priv *priv)
5297 unsigned long flags;
5298 int exit_pending = test_bit(STATUS_EXIT_PENDING, &priv->status);
5299 struct ieee80211_conf *conf = NULL;
5301 IWL_DEBUG_INFO(DRV_NAME " is going down\n");
5303 conf = ieee80211_get_hw_conf(priv->hw);
5306 set_bit(STATUS_EXIT_PENDING, &priv->status);
5308 iwl3945_led_unregister(priv);
5309 iwl3945_clear_stations_table(priv);
5311 /* Unblock any waiting calls */
5312 wake_up_interruptible_all(&priv->wait_command_queue);
5314 /* Wipe out the EXIT_PENDING status bit if we are not actually
5315 * exiting the module */
5317 clear_bit(STATUS_EXIT_PENDING, &priv->status);
5319 /* stop and reset the on-board processor */
5320 iwl_write32(priv, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET);
5322 /* tell the device to stop sending interrupts */
5323 spin_lock_irqsave(&priv->lock, flags);
5324 iwl3945_disable_interrupts(priv);
5325 spin_unlock_irqrestore(&priv->lock, flags);
5326 iwl_synchronize_irq(priv);
5328 if (priv->mac80211_registered)
5329 ieee80211_stop_queues(priv->hw);
5331 /* If we have not previously called iwl3945_init() then
5332 * clear all bits but the RF Kill and SUSPEND bits and return */
5333 if (!iwl_is_init(priv)) {
5334 priv->status = test_bit(STATUS_RF_KILL_HW, &priv->status) <<
5336 test_bit(STATUS_RF_KILL_SW, &priv->status) <<
5338 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
5339 STATUS_GEO_CONFIGURED |
5340 test_bit(STATUS_IN_SUSPEND, &priv->status) <<
5342 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
5343 STATUS_EXIT_PENDING;
5347 /* ...otherwise clear out all the status bits but the RF Kill and
5348 * SUSPEND bits and continue taking the NIC down. */
5349 priv->status &= test_bit(STATUS_RF_KILL_HW, &priv->status) <<
5351 test_bit(STATUS_RF_KILL_SW, &priv->status) <<
5353 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
5354 STATUS_GEO_CONFIGURED |
5355 test_bit(STATUS_IN_SUSPEND, &priv->status) <<
5357 test_bit(STATUS_FW_ERROR, &priv->status) <<
5359 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
5360 STATUS_EXIT_PENDING;
5362 spin_lock_irqsave(&priv->lock, flags);
5363 iwl_clear_bit(priv, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
5364 spin_unlock_irqrestore(&priv->lock, flags);
5366 iwl3945_hw_txq_ctx_stop(priv);
5367 iwl3945_hw_rxq_stop(priv);
5369 spin_lock_irqsave(&priv->lock, flags);
5370 if (!iwl_grab_nic_access(priv)) {
5371 iwl_write_prph(priv, APMG_CLK_DIS_REG,
5372 APMG_CLK_VAL_DMA_CLK_RQT);
5373 iwl_release_nic_access(priv);
5375 spin_unlock_irqrestore(&priv->lock, flags);
5379 priv->cfg->ops->lib->apm_ops.reset(priv);
5381 memset(&priv->card_alive, 0, sizeof(struct iwl_alive_resp));
5383 if (priv->ibss_beacon)
5384 dev_kfree_skb(priv->ibss_beacon);
5385 priv->ibss_beacon = NULL;
5387 /* clear out any free frames */
5388 iwl3945_clear_free_frames(priv);
5391 static void iwl3945_down(struct iwl_priv *priv)
5393 mutex_lock(&priv->mutex);
5394 __iwl3945_down(priv);
5395 mutex_unlock(&priv->mutex);
5397 iwl3945_cancel_deferred_work(priv);
5400 #define MAX_HW_RESTARTS 5
5402 static int __iwl3945_up(struct iwl_priv *priv)
5406 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
5407 IWL_WARN(priv, "Exit pending; will not bring the NIC up\n");
5411 if (test_bit(STATUS_RF_KILL_SW, &priv->status)) {
5412 IWL_WARN(priv, "Radio disabled by SW RF kill (module "
5417 if (!priv->ucode_data_backup.v_addr || !priv->ucode_data.v_addr) {
5418 IWL_ERR(priv, "ucode not available for device bring up\n");
5422 /* If platform's RF_KILL switch is NOT set to KILL */
5423 if (iwl_read32(priv, CSR_GP_CNTRL) &
5424 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
5425 clear_bit(STATUS_RF_KILL_HW, &priv->status);
5427 set_bit(STATUS_RF_KILL_HW, &priv->status);
5428 if (!test_bit(STATUS_IN_SUSPEND, &priv->status)) {
5429 IWL_WARN(priv, "Radio disabled by HW RF Kill switch\n");
5434 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
5436 rc = iwl3945_hw_nic_init(priv);
5438 IWL_ERR(priv, "Unable to int nic\n");
5442 /* make sure rfkill handshake bits are cleared */
5443 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
5444 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR,
5445 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
5447 /* clear (again), then enable host interrupts */
5448 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
5449 iwl3945_enable_interrupts(priv);
5451 /* really make sure rfkill handshake bits are cleared */
5452 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
5453 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
5455 /* Copy original ucode data image from disk into backup cache.
5456 * This will be used to initialize the on-board processor's
5457 * data SRAM for a clean start when the runtime program first loads. */
5458 memcpy(priv->ucode_data_backup.v_addr, priv->ucode_data.v_addr,
5459 priv->ucode_data.len);
5461 /* We return success when we resume from suspend and rf_kill is on. */
5462 if (test_bit(STATUS_RF_KILL_HW, &priv->status))
5465 for (i = 0; i < MAX_HW_RESTARTS; i++) {
5467 iwl3945_clear_stations_table(priv);
5469 /* load bootstrap state machine,
5470 * load bootstrap program into processor's memory,
5471 * prepare to load the "initialize" uCode */
5472 priv->cfg->ops->lib->load_ucode(priv);
5476 "Unable to set up bootstrap uCode: %d\n", rc);
5480 /* start card; "initialize" will load runtime ucode */
5481 iwl3945_nic_start(priv);
5483 IWL_DEBUG_INFO(DRV_NAME " is coming up\n");
5488 set_bit(STATUS_EXIT_PENDING, &priv->status);
5489 __iwl3945_down(priv);
5490 clear_bit(STATUS_EXIT_PENDING, &priv->status);
5492 /* tried to restart and config the device for as long as our
5493 * patience could withstand */
5494 IWL_ERR(priv, "Unable to initialize device after %d attempts.\n", i);
5499 /*****************************************************************************
5501 * Workqueue callbacks
5503 *****************************************************************************/
5505 static void iwl3945_bg_init_alive_start(struct work_struct *data)
5507 struct iwl_priv *priv =
5508 container_of(data, struct iwl_priv, init_alive_start.work);
5510 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
5513 mutex_lock(&priv->mutex);
5514 iwl3945_init_alive_start(priv);
5515 mutex_unlock(&priv->mutex);
5518 static void iwl3945_bg_alive_start(struct work_struct *data)
5520 struct iwl_priv *priv =
5521 container_of(data, struct iwl_priv, alive_start.work);
5523 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
5526 mutex_lock(&priv->mutex);
5527 iwl3945_alive_start(priv);
5528 mutex_unlock(&priv->mutex);
5531 static void iwl3945_bg_rf_kill(struct work_struct *work)
5533 struct iwl_priv *priv = container_of(work, struct iwl_priv, rf_kill);
5535 wake_up_interruptible(&priv->wait_command_queue);
5537 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
5540 mutex_lock(&priv->mutex);
5542 if (!iwl_is_rfkill(priv)) {
5543 IWL_DEBUG(IWL_DL_INFO | IWL_DL_RF_KILL,
5544 "HW and/or SW RF Kill no longer active, restarting "
5546 if (!test_bit(STATUS_EXIT_PENDING, &priv->status))
5547 queue_work(priv->workqueue, &priv->restart);
5550 if (!test_bit(STATUS_RF_KILL_HW, &priv->status))
5551 IWL_DEBUG_RF_KILL("Can not turn radio back on - "
5552 "disabled by SW switch\n");
5554 IWL_WARN(priv, "Radio Frequency Kill Switch is On:\n"
5555 "Kill switch must be turned off for "
5556 "wireless networking to work.\n");
5559 mutex_unlock(&priv->mutex);
5560 iwl3945_rfkill_set_hw_state(priv);
5563 #define IWL_SCAN_CHECK_WATCHDOG (7 * HZ)
5565 static void iwl3945_bg_scan_check(struct work_struct *data)
5567 struct iwl_priv *priv =
5568 container_of(data, struct iwl_priv, scan_check.work);
5570 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
5573 mutex_lock(&priv->mutex);
5574 if (test_bit(STATUS_SCANNING, &priv->status) ||
5575 test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
5576 IWL_DEBUG(IWL_DL_INFO | IWL_DL_SCAN,
5577 "Scan completion watchdog resetting adapter (%dms)\n",
5578 jiffies_to_msecs(IWL_SCAN_CHECK_WATCHDOG));
5580 if (!test_bit(STATUS_EXIT_PENDING, &priv->status))
5581 iwl3945_send_scan_abort(priv);
5583 mutex_unlock(&priv->mutex);
5586 static void iwl3945_bg_request_scan(struct work_struct *data)
5588 struct iwl_priv *priv =
5589 container_of(data, struct iwl_priv, request_scan);
5590 struct iwl_host_cmd cmd = {
5591 .id = REPLY_SCAN_CMD,
5592 .len = sizeof(struct iwl3945_scan_cmd),
5593 .meta.flags = CMD_SIZE_HUGE,
5596 struct iwl3945_scan_cmd *scan;
5597 struct ieee80211_conf *conf = NULL;
5599 enum ieee80211_band band;
5600 DECLARE_SSID_BUF(ssid);
5602 conf = ieee80211_get_hw_conf(priv->hw);
5604 mutex_lock(&priv->mutex);
5606 if (!iwl_is_ready(priv)) {
5607 IWL_WARN(priv, "request scan called when driver not ready.\n");
5611 /* Make sure the scan wasn't canceled before this queued work
5612 * was given the chance to run... */
5613 if (!test_bit(STATUS_SCANNING, &priv->status))
5616 /* This should never be called or scheduled if there is currently
5617 * a scan active in the hardware. */
5618 if (test_bit(STATUS_SCAN_HW, &priv->status)) {
5619 IWL_DEBUG_INFO("Multiple concurrent scan requests in parallel. "
5620 "Ignoring second request.\n");
5625 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
5626 IWL_DEBUG_SCAN("Aborting scan due to device shutdown\n");
5630 if (test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
5631 IWL_DEBUG_HC("Scan request while abort pending. Queuing.\n");
5635 if (iwl_is_rfkill(priv)) {
5636 IWL_DEBUG_HC("Aborting scan due to RF Kill activation\n");
5640 if (!test_bit(STATUS_READY, &priv->status)) {
5641 IWL_DEBUG_HC("Scan request while uninitialized. Queuing.\n");
5645 if (!priv->scan_bands) {
5646 IWL_DEBUG_HC("Aborting scan due to no requested bands\n");
5650 if (!priv->scan39) {
5651 priv->scan39 = kmalloc(sizeof(struct iwl3945_scan_cmd) +
5652 IWL_MAX_SCAN_SIZE, GFP_KERNEL);
5653 if (!priv->scan39) {
5658 scan = priv->scan39;
5659 memset(scan, 0, sizeof(struct iwl3945_scan_cmd) + IWL_MAX_SCAN_SIZE);
5661 scan->quiet_plcp_th = IWL_PLCP_QUIET_THRESH;
5662 scan->quiet_time = IWL_ACTIVE_QUIET_TIME;
5664 if (iwl3945_is_associated(priv)) {
5667 u32 suspend_time = 100;
5668 u32 scan_suspend_time = 100;
5669 unsigned long flags;
5671 IWL_DEBUG_INFO("Scanning while associated...\n");
5673 spin_lock_irqsave(&priv->lock, flags);
5674 interval = priv->beacon_int;
5675 spin_unlock_irqrestore(&priv->lock, flags);
5677 scan->suspend_time = 0;
5678 scan->max_out_time = cpu_to_le32(200 * 1024);
5680 interval = suspend_time;
5682 * suspend time format:
5683 * 0-19: beacon interval in usec (time before exec.)
5685 * 24-31: number of beacons (suspend between channels)
5688 extra = (suspend_time / interval) << 24;
5689 scan_suspend_time = 0xFF0FFFFF &
5690 (extra | ((suspend_time % interval) * 1024));
5692 scan->suspend_time = cpu_to_le32(scan_suspend_time);
5693 IWL_DEBUG_SCAN("suspend_time 0x%X beacon interval %d\n",
5694 scan_suspend_time, interval);
5697 /* We should add the ability for user to lock to PASSIVE ONLY */
5698 if (priv->one_direct_scan) {
5700 ("Kicking off one direct scan for '%s'\n",
5701 print_ssid(ssid, priv->direct_ssid,
5702 priv->direct_ssid_len));
5703 scan->direct_scan[0].id = WLAN_EID_SSID;
5704 scan->direct_scan[0].len = priv->direct_ssid_len;
5705 memcpy(scan->direct_scan[0].ssid,
5706 priv->direct_ssid, priv->direct_ssid_len);
5709 IWL_DEBUG_SCAN("Kicking off one indirect scan.\n");
5711 /* We don't build a direct scan probe request; the uCode will do
5712 * that based on the direct_mask added to each channel entry */
5713 scan->tx_cmd.len = cpu_to_le16(
5714 iwl3945_fill_probe_req(priv, (struct ieee80211_mgmt *)scan->data,
5715 IWL_MAX_SCAN_SIZE - sizeof(*scan)));
5716 scan->tx_cmd.tx_flags = TX_CMD_FLG_SEQ_CTL_MSK;
5717 scan->tx_cmd.sta_id = priv->hw_params.bcast_sta_id;
5718 scan->tx_cmd.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
5720 /* flags + rate selection */
5722 if (priv->scan_bands & BIT(IEEE80211_BAND_2GHZ)) {
5723 scan->flags = RXON_FLG_BAND_24G_MSK | RXON_FLG_AUTO_DETECT_MSK;
5724 scan->tx_cmd.rate = IWL_RATE_1M_PLCP;
5725 scan->good_CRC_th = 0;
5726 band = IEEE80211_BAND_2GHZ;
5727 } else if (priv->scan_bands & BIT(IEEE80211_BAND_5GHZ)) {
5728 scan->tx_cmd.rate = IWL_RATE_6M_PLCP;
5729 scan->good_CRC_th = IWL_GOOD_CRC_TH;
5730 band = IEEE80211_BAND_5GHZ;
5732 IWL_WARN(priv, "Invalid scan band count\n");
5736 /* select Rx antennas */
5737 scan->flags |= iwl3945_get_antenna_flags(priv);
5739 if (priv->iw_mode == NL80211_IFTYPE_MONITOR)
5740 scan->filter_flags = RXON_FILTER_PROMISC_MSK;
5742 scan->channel_count =
5743 iwl3945_get_channels_for_scan(priv, band, 1, /* active */
5745 (void *)&scan->data[le16_to_cpu(scan->tx_cmd.len)]);
5747 if (scan->channel_count == 0) {
5748 IWL_DEBUG_SCAN("channel count %d\n", scan->channel_count);
5752 cmd.len += le16_to_cpu(scan->tx_cmd.len) +
5753 scan->channel_count * sizeof(struct iwl3945_scan_channel);
5755 scan->len = cpu_to_le16(cmd.len);
5757 set_bit(STATUS_SCAN_HW, &priv->status);
5758 rc = iwl3945_send_cmd_sync(priv, &cmd);
5762 queue_delayed_work(priv->workqueue, &priv->scan_check,
5763 IWL_SCAN_CHECK_WATCHDOG);
5765 mutex_unlock(&priv->mutex);
5769 /* can not perform scan make sure we clear scanning
5770 * bits from status so next scan request can be performed.
5771 * if we dont clear scanning status bit here all next scan
5774 clear_bit(STATUS_SCAN_HW, &priv->status);
5775 clear_bit(STATUS_SCANNING, &priv->status);
5777 /* inform mac80211 scan aborted */
5778 queue_work(priv->workqueue, &priv->scan_completed);
5779 mutex_unlock(&priv->mutex);
5782 static void iwl3945_bg_up(struct work_struct *data)
5784 struct iwl_priv *priv = container_of(data, struct iwl_priv, up);
5786 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
5789 mutex_lock(&priv->mutex);
5791 mutex_unlock(&priv->mutex);
5792 iwl3945_rfkill_set_hw_state(priv);
5795 static void iwl3945_bg_restart(struct work_struct *data)
5797 struct iwl_priv *priv = container_of(data, struct iwl_priv, restart);
5799 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
5803 queue_work(priv->workqueue, &priv->up);
5806 static void iwl3945_bg_rx_replenish(struct work_struct *data)
5808 struct iwl_priv *priv =
5809 container_of(data, struct iwl_priv, rx_replenish);
5811 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
5814 mutex_lock(&priv->mutex);
5815 iwl3945_rx_replenish(priv);
5816 mutex_unlock(&priv->mutex);
5819 #define IWL_DELAY_NEXT_SCAN (HZ*2)
5821 static void iwl3945_post_associate(struct iwl_priv *priv)
5824 struct ieee80211_conf *conf = NULL;
5826 if (priv->iw_mode == NL80211_IFTYPE_AP) {
5827 IWL_ERR(priv, "%s Should not be called in AP mode\n", __func__);
5832 IWL_DEBUG_ASSOC("Associated as %d to: %pM\n",
5833 priv->assoc_id, priv->active39_rxon.bssid_addr);
5835 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
5838 if (!priv->vif || !priv->is_open)
5841 iwl3945_scan_cancel_timeout(priv, 200);
5843 conf = ieee80211_get_hw_conf(priv->hw);
5845 priv->staging39_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
5846 iwl3945_commit_rxon(priv);
5848 memset(&priv->rxon_timing, 0, sizeof(struct iwl_rxon_time_cmd));
5849 iwl3945_setup_rxon_timing(priv);
5850 rc = iwl3945_send_cmd_pdu(priv, REPLY_RXON_TIMING,
5851 sizeof(priv->rxon_timing), &priv->rxon_timing);
5853 IWL_WARN(priv, "REPLY_RXON_TIMING failed - "
5854 "Attempting to continue.\n");
5856 priv->staging39_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
5858 priv->staging39_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
5860 IWL_DEBUG_ASSOC("assoc id %d beacon interval %d\n",
5861 priv->assoc_id, priv->beacon_int);
5863 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
5864 priv->staging39_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
5866 priv->staging39_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
5868 if (priv->staging39_rxon.flags & RXON_FLG_BAND_24G_MSK) {
5869 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_SLOT_TIME)
5870 priv->staging39_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
5872 priv->staging39_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
5874 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
5875 priv->staging39_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
5879 iwl3945_commit_rxon(priv);
5881 switch (priv->iw_mode) {
5882 case NL80211_IFTYPE_STATION:
5883 iwl3945_rate_scale_init(priv->hw, IWL_AP_ID);
5886 case NL80211_IFTYPE_ADHOC:
5889 iwl3945_add_station(priv, priv->bssid, 0, 0);
5890 iwl3945_sync_sta(priv, IWL_STA_ID,
5891 (priv->band == IEEE80211_BAND_5GHZ) ?
5892 IWL_RATE_6M_PLCP : IWL_RATE_1M_PLCP,
5894 iwl3945_rate_scale_init(priv->hw, IWL_STA_ID);
5895 iwl3945_send_beacon_cmd(priv);
5900 IWL_ERR(priv, "%s Should not be called in %d mode\n",
5901 __func__, priv->iw_mode);
5905 iwl3945_activate_qos(priv, 0);
5907 /* we have just associated, don't start scan too early */
5908 priv->next_scan_jiffies = jiffies + IWL_DELAY_NEXT_SCAN;
5911 static void iwl3945_bg_abort_scan(struct work_struct *work)
5913 struct iwl_priv *priv = container_of(work, struct iwl_priv, abort_scan);
5915 if (!iwl_is_ready(priv))
5918 mutex_lock(&priv->mutex);
5920 set_bit(STATUS_SCAN_ABORTING, &priv->status);
5921 iwl3945_send_scan_abort(priv);
5923 mutex_unlock(&priv->mutex);
5926 static int iwl3945_mac_config(struct ieee80211_hw *hw, u32 changed);
5928 static void iwl3945_bg_scan_completed(struct work_struct *work)
5930 struct iwl_priv *priv =
5931 container_of(work, struct iwl_priv, scan_completed);
5933 IWL_DEBUG(IWL_DL_INFO | IWL_DL_SCAN, "SCAN complete scan\n");
5935 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
5938 if (test_bit(STATUS_CONF_PENDING, &priv->status))
5939 iwl3945_mac_config(priv->hw, 0);
5941 ieee80211_scan_completed(priv->hw);
5943 /* Since setting the TXPOWER may have been deferred while
5944 * performing the scan, fire one off */
5945 mutex_lock(&priv->mutex);
5946 iwl3945_hw_reg_send_txpower(priv);
5947 mutex_unlock(&priv->mutex);
5950 /*****************************************************************************
5952 * mac80211 entry point functions
5954 *****************************************************************************/
5956 #define UCODE_READY_TIMEOUT (2 * HZ)
5958 static int iwl3945_mac_start(struct ieee80211_hw *hw)
5960 struct iwl_priv *priv = hw->priv;
5963 IWL_DEBUG_MAC80211("enter\n");
5965 if (pci_enable_device(priv->pci_dev)) {
5966 IWL_ERR(priv, "Fail to pci_enable_device\n");
5969 pci_restore_state(priv->pci_dev);
5970 pci_enable_msi(priv->pci_dev);
5972 ret = request_irq(priv->pci_dev->irq, iwl3945_isr, IRQF_SHARED,
5975 IWL_ERR(priv, "Error allocating IRQ %d\n", priv->pci_dev->irq);
5976 goto out_disable_msi;
5979 /* we should be verifying the device is ready to be opened */
5980 mutex_lock(&priv->mutex);
5982 memset(&priv->staging39_rxon, 0, sizeof(struct iwl3945_rxon_cmd));
5983 /* fetch ucode file from disk, alloc and copy to bus-master buffers ...
5984 * ucode filename and max sizes are card-specific. */
5986 if (!priv->ucode_code.len) {
5987 ret = iwl3945_read_ucode(priv);
5989 IWL_ERR(priv, "Could not read microcode: %d\n", ret);
5990 mutex_unlock(&priv->mutex);
5991 goto out_release_irq;
5995 ret = __iwl3945_up(priv);
5997 mutex_unlock(&priv->mutex);
5999 iwl3945_rfkill_set_hw_state(priv);
6002 goto out_release_irq;
6004 IWL_DEBUG_INFO("Start UP work.\n");
6006 if (test_bit(STATUS_IN_SUSPEND, &priv->status))
6009 /* Wait for START_ALIVE from ucode. Otherwise callbacks from
6010 * mac80211 will not be run successfully. */
6011 ret = wait_event_interruptible_timeout(priv->wait_command_queue,
6012 test_bit(STATUS_READY, &priv->status),
6013 UCODE_READY_TIMEOUT);
6015 if (!test_bit(STATUS_READY, &priv->status)) {
6017 "Wait for START_ALIVE timeout after %dms.\n",
6018 jiffies_to_msecs(UCODE_READY_TIMEOUT));
6020 goto out_release_irq;
6025 IWL_DEBUG_MAC80211("leave\n");
6029 free_irq(priv->pci_dev->irq, priv);
6031 pci_disable_msi(priv->pci_dev);
6032 pci_disable_device(priv->pci_dev);
6034 IWL_DEBUG_MAC80211("leave - failed\n");
6038 static void iwl3945_mac_stop(struct ieee80211_hw *hw)
6040 struct iwl_priv *priv = hw->priv;
6042 IWL_DEBUG_MAC80211("enter\n");
6044 if (!priv->is_open) {
6045 IWL_DEBUG_MAC80211("leave - skip\n");
6051 if (iwl_is_ready_rf(priv)) {
6052 /* stop mac, cancel any scan request and clear
6053 * RXON_FILTER_ASSOC_MSK BIT
6055 mutex_lock(&priv->mutex);
6056 iwl3945_scan_cancel_timeout(priv, 100);
6057 mutex_unlock(&priv->mutex);
6062 flush_workqueue(priv->workqueue);
6063 free_irq(priv->pci_dev->irq, priv);
6064 pci_disable_msi(priv->pci_dev);
6065 pci_save_state(priv->pci_dev);
6066 pci_disable_device(priv->pci_dev);
6068 IWL_DEBUG_MAC80211("leave\n");
6071 static int iwl3945_mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
6073 struct iwl_priv *priv = hw->priv;
6075 IWL_DEBUG_MAC80211("enter\n");
6077 IWL_DEBUG_TX("dev->xmit(%d bytes) at rate 0x%02x\n", skb->len,
6078 ieee80211_get_tx_rate(hw, IEEE80211_SKB_CB(skb))->bitrate);
6080 if (iwl3945_tx_skb(priv, skb))
6081 dev_kfree_skb_any(skb);
6083 IWL_DEBUG_MAC80211("leave\n");
6084 return NETDEV_TX_OK;
6087 static int iwl3945_mac_add_interface(struct ieee80211_hw *hw,
6088 struct ieee80211_if_init_conf *conf)
6090 struct iwl_priv *priv = hw->priv;
6091 unsigned long flags;
6093 IWL_DEBUG_MAC80211("enter: type %d\n", conf->type);
6096 IWL_DEBUG_MAC80211("leave - vif != NULL\n");
6100 spin_lock_irqsave(&priv->lock, flags);
6101 priv->vif = conf->vif;
6102 priv->iw_mode = conf->type;
6104 spin_unlock_irqrestore(&priv->lock, flags);
6106 mutex_lock(&priv->mutex);
6108 if (conf->mac_addr) {
6109 IWL_DEBUG_MAC80211("Set: %pM\n", conf->mac_addr);
6110 memcpy(priv->mac_addr, conf->mac_addr, ETH_ALEN);
6113 if (iwl_is_ready(priv))
6114 iwl3945_set_mode(priv, conf->type);
6116 mutex_unlock(&priv->mutex);
6118 IWL_DEBUG_MAC80211("leave\n");
6123 * iwl3945_mac_config - mac80211 config callback
6125 * We ignore conf->flags & IEEE80211_CONF_SHORT_SLOT_TIME since it seems to
6126 * be set inappropriately and the driver currently sets the hardware up to
6127 * use it whenever needed.
6129 static int iwl3945_mac_config(struct ieee80211_hw *hw, u32 changed)
6131 struct iwl_priv *priv = hw->priv;
6132 const struct iwl_channel_info *ch_info;
6133 struct ieee80211_conf *conf = &hw->conf;
6134 unsigned long flags;
6137 mutex_lock(&priv->mutex);
6138 IWL_DEBUG_MAC80211("enter to channel %d\n", conf->channel->hw_value);
6140 if (!iwl_is_ready(priv)) {
6141 IWL_DEBUG_MAC80211("leave - not ready\n");
6146 if (unlikely(!iwl3945_mod_params.disable_hw_scan &&
6147 test_bit(STATUS_SCANNING, &priv->status))) {
6148 IWL_DEBUG_MAC80211("leave - scanning\n");
6149 set_bit(STATUS_CONF_PENDING, &priv->status);
6150 mutex_unlock(&priv->mutex);
6154 spin_lock_irqsave(&priv->lock, flags);
6156 ch_info = iwl3945_get_channel_info(priv, conf->channel->band,
6157 conf->channel->hw_value);
6158 if (!is_channel_valid(ch_info)) {
6159 IWL_DEBUG_SCAN("Channel %d [%d] is INVALID for this band.\n",
6160 conf->channel->hw_value, conf->channel->band);
6161 IWL_DEBUG_MAC80211("leave - invalid channel\n");
6162 spin_unlock_irqrestore(&priv->lock, flags);
6167 iwl3945_set_rxon_channel(priv, conf->channel->band, conf->channel->hw_value);
6169 iwl3945_set_flags_for_phymode(priv, conf->channel->band);
6171 /* The list of supported rates and rate mask can be different
6172 * for each phymode; since the phymode may have changed, reset
6173 * the rate mask to what mac80211 lists */
6174 iwl3945_set_rate(priv);
6176 spin_unlock_irqrestore(&priv->lock, flags);
6178 #ifdef IEEE80211_CONF_CHANNEL_SWITCH
6179 if (conf->flags & IEEE80211_CONF_CHANNEL_SWITCH) {
6180 iwl3945_hw_channel_switch(priv, conf->channel);
6185 iwl3945_radio_kill_sw(priv, !conf->radio_enabled);
6187 if (!conf->radio_enabled) {
6188 IWL_DEBUG_MAC80211("leave - radio disabled\n");
6192 if (iwl_is_rfkill(priv)) {
6193 IWL_DEBUG_MAC80211("leave - RF kill\n");
6198 iwl3945_set_rate(priv);
6200 if (memcmp(&priv->active39_rxon,
6201 &priv->staging39_rxon, sizeof(priv->staging39_rxon)))
6202 iwl3945_commit_rxon(priv);
6204 IWL_DEBUG_INFO("No re-sending same RXON configuration.\n");
6206 IWL_DEBUG_MAC80211("leave\n");
6209 clear_bit(STATUS_CONF_PENDING, &priv->status);
6210 mutex_unlock(&priv->mutex);
6214 static void iwl3945_config_ap(struct iwl_priv *priv)
6218 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
6221 /* The following should be done only at AP bring up */
6222 if (!(iwl3945_is_associated(priv))) {
6224 /* RXON - unassoc (to set timing command) */
6225 priv->staging39_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
6226 iwl3945_commit_rxon(priv);
6229 memset(&priv->rxon_timing, 0, sizeof(struct iwl_rxon_time_cmd));
6230 iwl3945_setup_rxon_timing(priv);
6231 rc = iwl3945_send_cmd_pdu(priv, REPLY_RXON_TIMING,
6232 sizeof(priv->rxon_timing), &priv->rxon_timing);
6234 IWL_WARN(priv, "REPLY_RXON_TIMING failed - "
6235 "Attempting to continue.\n");
6237 /* FIXME: what should be the assoc_id for AP? */
6238 priv->staging39_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
6239 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
6240 priv->staging39_rxon.flags |=
6241 RXON_FLG_SHORT_PREAMBLE_MSK;
6243 priv->staging39_rxon.flags &=
6244 ~RXON_FLG_SHORT_PREAMBLE_MSK;
6246 if (priv->staging39_rxon.flags & RXON_FLG_BAND_24G_MSK) {
6247 if (priv->assoc_capability &
6248 WLAN_CAPABILITY_SHORT_SLOT_TIME)
6249 priv->staging39_rxon.flags |=
6250 RXON_FLG_SHORT_SLOT_MSK;
6252 priv->staging39_rxon.flags &=
6253 ~RXON_FLG_SHORT_SLOT_MSK;
6255 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
6256 priv->staging39_rxon.flags &=
6257 ~RXON_FLG_SHORT_SLOT_MSK;
6259 /* restore RXON assoc */
6260 priv->staging39_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
6261 iwl3945_commit_rxon(priv);
6262 iwl3945_add_station(priv, iwl_bcast_addr, 0, 0);
6264 iwl3945_send_beacon_cmd(priv);
6266 /* FIXME - we need to add code here to detect a totally new
6267 * configuration, reset the AP, unassoc, rxon timing, assoc,
6268 * clear sta table, add BCAST sta... */
6271 static int iwl3945_mac_config_interface(struct ieee80211_hw *hw,
6272 struct ieee80211_vif *vif,
6273 struct ieee80211_if_conf *conf)
6275 struct iwl_priv *priv = hw->priv;
6281 if (priv->vif != vif) {
6282 IWL_DEBUG_MAC80211("leave - priv->vif != vif\n");
6286 /* handle this temporarily here */
6287 if (priv->iw_mode == NL80211_IFTYPE_ADHOC &&
6288 conf->changed & IEEE80211_IFCC_BEACON) {
6289 struct sk_buff *beacon = ieee80211_beacon_get(hw, vif);
6292 mutex_lock(&priv->mutex);
6293 rc = iwl3945_mac_beacon_update(hw, beacon);
6294 mutex_unlock(&priv->mutex);
6299 if (!iwl_is_alive(priv))
6302 mutex_lock(&priv->mutex);
6305 IWL_DEBUG_MAC80211("bssid: %pM\n", conf->bssid);
6308 * very dubious code was here; the probe filtering flag is never set:
6310 if (unlikely(test_bit(STATUS_SCANNING, &priv->status)) &&
6311 !(priv->hw->flags & IEEE80211_HW_NO_PROBE_FILTERING)) {
6314 if (priv->iw_mode == NL80211_IFTYPE_AP) {
6316 conf->bssid = priv->mac_addr;
6317 memcpy(priv->bssid, priv->mac_addr, ETH_ALEN);
6318 IWL_DEBUG_MAC80211("bssid was set to: %pM\n",
6321 if (priv->ibss_beacon)
6322 dev_kfree_skb(priv->ibss_beacon);
6324 priv->ibss_beacon = ieee80211_beacon_get(hw, vif);
6327 if (iwl_is_rfkill(priv))
6330 if (conf->bssid && !is_zero_ether_addr(conf->bssid) &&
6331 !is_multicast_ether_addr(conf->bssid)) {
6332 /* If there is currently a HW scan going on in the background
6333 * then we need to cancel it else the RXON below will fail. */
6334 if (iwl3945_scan_cancel_timeout(priv, 100)) {
6335 IWL_WARN(priv, "Aborted scan still in progress "
6337 IWL_DEBUG_MAC80211("leaving - scan abort failed.\n");
6338 mutex_unlock(&priv->mutex);
6341 memcpy(priv->staging39_rxon.bssid_addr, conf->bssid, ETH_ALEN);
6343 /* TODO: Audit driver for usage of these members and see
6344 * if mac80211 deprecates them (priv->bssid looks like it
6345 * shouldn't be there, but I haven't scanned the IBSS code
6346 * to verify) - jpk */
6347 memcpy(priv->bssid, conf->bssid, ETH_ALEN);
6349 if (priv->iw_mode == NL80211_IFTYPE_AP)
6350 iwl3945_config_ap(priv);
6352 rc = iwl3945_commit_rxon(priv);
6353 if ((priv->iw_mode == NL80211_IFTYPE_STATION) && rc)
6354 iwl3945_add_station(priv,
6355 priv->active39_rxon.bssid_addr, 1, 0);
6359 iwl3945_scan_cancel_timeout(priv, 100);
6360 priv->staging39_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
6361 iwl3945_commit_rxon(priv);
6365 IWL_DEBUG_MAC80211("leave\n");
6366 mutex_unlock(&priv->mutex);
6371 static void iwl3945_configure_filter(struct ieee80211_hw *hw,
6372 unsigned int changed_flags,
6373 unsigned int *total_flags,
6374 int mc_count, struct dev_addr_list *mc_list)
6376 struct iwl_priv *priv = hw->priv;
6377 __le32 *filter_flags = &priv->staging39_rxon.filter_flags;
6379 IWL_DEBUG_MAC80211("Enter: changed: 0x%x, total: 0x%x\n",
6380 changed_flags, *total_flags);
6382 if (changed_flags & (FIF_OTHER_BSS | FIF_PROMISC_IN_BSS)) {
6383 if (*total_flags & (FIF_OTHER_BSS | FIF_PROMISC_IN_BSS))
6384 *filter_flags |= RXON_FILTER_PROMISC_MSK;
6386 *filter_flags &= ~RXON_FILTER_PROMISC_MSK;
6388 if (changed_flags & FIF_ALLMULTI) {
6389 if (*total_flags & FIF_ALLMULTI)
6390 *filter_flags |= RXON_FILTER_ACCEPT_GRP_MSK;
6392 *filter_flags &= ~RXON_FILTER_ACCEPT_GRP_MSK;
6394 if (changed_flags & FIF_CONTROL) {
6395 if (*total_flags & FIF_CONTROL)
6396 *filter_flags |= RXON_FILTER_CTL2HOST_MSK;
6398 *filter_flags &= ~RXON_FILTER_CTL2HOST_MSK;
6400 if (changed_flags & FIF_BCN_PRBRESP_PROMISC) {
6401 if (*total_flags & FIF_BCN_PRBRESP_PROMISC)
6402 *filter_flags |= RXON_FILTER_BCON_AWARE_MSK;
6404 *filter_flags &= ~RXON_FILTER_BCON_AWARE_MSK;
6407 /* We avoid iwl_commit_rxon here to commit the new filter flags
6408 * since mac80211 will call ieee80211_hw_config immediately.
6409 * (mc_list is not supported at this time). Otherwise, we need to
6410 * queue a background iwl_commit_rxon work.
6413 *total_flags &= FIF_OTHER_BSS | FIF_ALLMULTI | FIF_PROMISC_IN_BSS |
6414 FIF_BCN_PRBRESP_PROMISC | FIF_CONTROL;
6417 static void iwl3945_mac_remove_interface(struct ieee80211_hw *hw,
6418 struct ieee80211_if_init_conf *conf)
6420 struct iwl_priv *priv = hw->priv;
6422 IWL_DEBUG_MAC80211("enter\n");
6424 mutex_lock(&priv->mutex);
6426 if (iwl_is_ready_rf(priv)) {
6427 iwl3945_scan_cancel_timeout(priv, 100);
6428 priv->staging39_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
6429 iwl3945_commit_rxon(priv);
6431 if (priv->vif == conf->vif) {
6433 memset(priv->bssid, 0, ETH_ALEN);
6435 mutex_unlock(&priv->mutex);
6437 IWL_DEBUG_MAC80211("leave\n");
6440 #define IWL_DELAY_NEXT_SCAN_AFTER_ASSOC (HZ*6)
6442 static void iwl3945_bss_info_changed(struct ieee80211_hw *hw,
6443 struct ieee80211_vif *vif,
6444 struct ieee80211_bss_conf *bss_conf,
6447 struct iwl_priv *priv = hw->priv;
6449 IWL_DEBUG_MAC80211("changes = 0x%X\n", changes);
6451 if (changes & BSS_CHANGED_ERP_PREAMBLE) {
6452 IWL_DEBUG_MAC80211("ERP_PREAMBLE %d\n",
6453 bss_conf->use_short_preamble);
6454 if (bss_conf->use_short_preamble)
6455 priv->staging39_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
6457 priv->staging39_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
6460 if (changes & BSS_CHANGED_ERP_CTS_PROT) {
6461 IWL_DEBUG_MAC80211("ERP_CTS %d\n", bss_conf->use_cts_prot);
6462 if (bss_conf->use_cts_prot && (priv->band != IEEE80211_BAND_5GHZ))
6463 priv->staging39_rxon.flags |= RXON_FLG_TGG_PROTECT_MSK;
6465 priv->staging39_rxon.flags &= ~RXON_FLG_TGG_PROTECT_MSK;
6468 if (changes & BSS_CHANGED_ASSOC) {
6469 IWL_DEBUG_MAC80211("ASSOC %d\n", bss_conf->assoc);
6470 /* This should never happen as this function should
6471 * never be called from interrupt context. */
6472 if (WARN_ON_ONCE(in_interrupt()))
6474 if (bss_conf->assoc) {
6475 priv->assoc_id = bss_conf->aid;
6476 priv->beacon_int = bss_conf->beacon_int;
6477 priv->timestamp = bss_conf->timestamp;
6478 priv->assoc_capability = bss_conf->assoc_capability;
6479 priv->next_scan_jiffies = jiffies +
6480 IWL_DELAY_NEXT_SCAN_AFTER_ASSOC;
6481 mutex_lock(&priv->mutex);
6482 iwl3945_post_associate(priv);
6483 mutex_unlock(&priv->mutex);
6486 IWL_DEBUG_MAC80211("DISASSOC %d\n", bss_conf->assoc);
6488 } else if (changes && iwl3945_is_associated(priv) && priv->assoc_id) {
6489 IWL_DEBUG_MAC80211("Associated Changes %d\n", changes);
6490 iwl3945_send_rxon_assoc(priv);
6495 static int iwl3945_mac_hw_scan(struct ieee80211_hw *hw, u8 *ssid, size_t len)
6498 unsigned long flags;
6499 struct iwl_priv *priv = hw->priv;
6500 DECLARE_SSID_BUF(ssid_buf);
6502 IWL_DEBUG_MAC80211("enter\n");
6504 mutex_lock(&priv->mutex);
6505 spin_lock_irqsave(&priv->lock, flags);
6507 if (!iwl_is_ready_rf(priv)) {
6509 IWL_DEBUG_MAC80211("leave - not ready or exit pending\n");
6513 /* we don't schedule scan within next_scan_jiffies period */
6514 if (priv->next_scan_jiffies &&
6515 time_after(priv->next_scan_jiffies, jiffies)) {
6519 /* if we just finished scan ask for delay for a broadcast scan */
6520 if ((len == 0) && priv->last_scan_jiffies &&
6521 time_after(priv->last_scan_jiffies + IWL_DELAY_NEXT_SCAN,
6527 IWL_DEBUG_SCAN("direct scan for %s [%d]\n ",
6528 print_ssid(ssid_buf, ssid, len), (int)len);
6530 priv->one_direct_scan = 1;
6531 priv->direct_ssid_len = (u8)
6532 min((u8) len, (u8) IW_ESSID_MAX_SIZE);
6533 memcpy(priv->direct_ssid, ssid, priv->direct_ssid_len);
6535 priv->one_direct_scan = 0;
6537 rc = iwl3945_scan_initiate(priv);
6539 IWL_DEBUG_MAC80211("leave\n");
6542 spin_unlock_irqrestore(&priv->lock, flags);
6543 mutex_unlock(&priv->mutex);
6548 static int iwl3945_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
6549 struct ieee80211_vif *vif,
6550 struct ieee80211_sta *sta,
6551 struct ieee80211_key_conf *key)
6553 struct iwl_priv *priv = hw->priv;
6557 static const u8 bcast_addr[ETH_ALEN] =
6558 { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
6560 IWL_DEBUG_MAC80211("enter\n");
6562 if (iwl3945_mod_params.sw_crypto) {
6563 IWL_DEBUG_MAC80211("leave - hwcrypto disabled\n");
6567 addr = sta ? sta->addr : bcast_addr;
6569 sta_id = iwl3945_hw_find_station(priv, addr);
6570 if (sta_id == IWL_INVALID_STATION) {
6571 IWL_DEBUG_MAC80211("leave - %pM not in station map.\n",
6576 mutex_lock(&priv->mutex);
6578 iwl3945_scan_cancel_timeout(priv, 100);
6582 rc = iwl3945_update_sta_key_info(priv, key, sta_id);
6584 iwl3945_set_rxon_hwcrypto(priv, 1);
6585 iwl3945_commit_rxon(priv);
6586 key->hw_key_idx = sta_id;
6587 IWL_DEBUG_MAC80211("set_key success, using hwcrypto\n");
6588 key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
6592 rc = iwl3945_clear_sta_key_info(priv, sta_id);
6594 iwl3945_set_rxon_hwcrypto(priv, 0);
6595 iwl3945_commit_rxon(priv);
6596 IWL_DEBUG_MAC80211("disable hwcrypto key\n");
6603 IWL_DEBUG_MAC80211("leave\n");
6604 mutex_unlock(&priv->mutex);
6609 static int iwl3945_mac_conf_tx(struct ieee80211_hw *hw, u16 queue,
6610 const struct ieee80211_tx_queue_params *params)
6612 struct iwl_priv *priv = hw->priv;
6613 unsigned long flags;
6616 IWL_DEBUG_MAC80211("enter\n");
6618 if (!iwl_is_ready_rf(priv)) {
6619 IWL_DEBUG_MAC80211("leave - RF not ready\n");
6623 if (queue >= AC_NUM) {
6624 IWL_DEBUG_MAC80211("leave - queue >= AC_NUM %d\n", queue);
6628 q = AC_NUM - 1 - queue;
6630 spin_lock_irqsave(&priv->lock, flags);
6632 priv->qos_data.def_qos_parm.ac[q].cw_min = cpu_to_le16(params->cw_min);
6633 priv->qos_data.def_qos_parm.ac[q].cw_max = cpu_to_le16(params->cw_max);
6634 priv->qos_data.def_qos_parm.ac[q].aifsn = params->aifs;
6635 priv->qos_data.def_qos_parm.ac[q].edca_txop =
6636 cpu_to_le16((params->txop * 32));
6638 priv->qos_data.def_qos_parm.ac[q].reserved1 = 0;
6639 priv->qos_data.qos_active = 1;
6641 spin_unlock_irqrestore(&priv->lock, flags);
6643 mutex_lock(&priv->mutex);
6644 if (priv->iw_mode == NL80211_IFTYPE_AP)
6645 iwl3945_activate_qos(priv, 1);
6646 else if (priv->assoc_id && iwl3945_is_associated(priv))
6647 iwl3945_activate_qos(priv, 0);
6649 mutex_unlock(&priv->mutex);
6651 IWL_DEBUG_MAC80211("leave\n");
6655 static int iwl3945_mac_get_tx_stats(struct ieee80211_hw *hw,
6656 struct ieee80211_tx_queue_stats *stats)
6658 struct iwl_priv *priv = hw->priv;
6660 struct iwl_tx_queue *txq;
6661 struct iwl_queue *q;
6662 unsigned long flags;
6664 IWL_DEBUG_MAC80211("enter\n");
6666 if (!iwl_is_ready_rf(priv)) {
6667 IWL_DEBUG_MAC80211("leave - RF not ready\n");
6671 spin_lock_irqsave(&priv->lock, flags);
6673 for (i = 0; i < AC_NUM; i++) {
6674 txq = &priv->txq[i];
6676 avail = iwl_queue_space(q);
6678 stats[i].len = q->n_window - avail;
6679 stats[i].limit = q->n_window - q->high_mark;
6680 stats[i].count = q->n_window;
6683 spin_unlock_irqrestore(&priv->lock, flags);
6685 IWL_DEBUG_MAC80211("leave\n");
6690 static void iwl3945_mac_reset_tsf(struct ieee80211_hw *hw)
6692 struct iwl_priv *priv = hw->priv;
6693 unsigned long flags;
6695 mutex_lock(&priv->mutex);
6696 IWL_DEBUG_MAC80211("enter\n");
6698 iwl_reset_qos(priv);
6700 spin_lock_irqsave(&priv->lock, flags);
6702 priv->assoc_capability = 0;
6703 priv->call_post_assoc_from_beacon = 0;
6705 /* new association get rid of ibss beacon skb */
6706 if (priv->ibss_beacon)
6707 dev_kfree_skb(priv->ibss_beacon);
6709 priv->ibss_beacon = NULL;
6711 priv->beacon_int = priv->hw->conf.beacon_int;
6712 priv->timestamp = 0;
6713 if ((priv->iw_mode == NL80211_IFTYPE_STATION))
6714 priv->beacon_int = 0;
6716 spin_unlock_irqrestore(&priv->lock, flags);
6718 if (!iwl_is_ready_rf(priv)) {
6719 IWL_DEBUG_MAC80211("leave - not ready\n");
6720 mutex_unlock(&priv->mutex);
6724 /* we are restarting association process
6725 * clear RXON_FILTER_ASSOC_MSK bit
6727 if (priv->iw_mode != NL80211_IFTYPE_AP) {
6728 iwl3945_scan_cancel_timeout(priv, 100);
6729 priv->staging39_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
6730 iwl3945_commit_rxon(priv);
6733 /* Per mac80211.h: This is only used in IBSS mode... */
6734 if (priv->iw_mode != NL80211_IFTYPE_ADHOC) {
6736 IWL_DEBUG_MAC80211("leave - not in IBSS\n");
6737 mutex_unlock(&priv->mutex);
6741 iwl3945_set_rate(priv);
6743 mutex_unlock(&priv->mutex);
6745 IWL_DEBUG_MAC80211("leave\n");
6749 static int iwl3945_mac_beacon_update(struct ieee80211_hw *hw, struct sk_buff *skb)
6751 struct iwl_priv *priv = hw->priv;
6752 unsigned long flags;
6754 IWL_DEBUG_MAC80211("enter\n");
6756 if (!iwl_is_ready_rf(priv)) {
6757 IWL_DEBUG_MAC80211("leave - RF not ready\n");
6761 if (priv->iw_mode != NL80211_IFTYPE_ADHOC) {
6762 IWL_DEBUG_MAC80211("leave - not IBSS\n");
6766 spin_lock_irqsave(&priv->lock, flags);
6768 if (priv->ibss_beacon)
6769 dev_kfree_skb(priv->ibss_beacon);
6771 priv->ibss_beacon = skb;
6775 IWL_DEBUG_MAC80211("leave\n");
6776 spin_unlock_irqrestore(&priv->lock, flags);
6778 iwl_reset_qos(priv);
6780 iwl3945_post_associate(priv);
6786 /*****************************************************************************
6790 *****************************************************************************/
6792 #ifdef CONFIG_IWL3945_DEBUG
6795 * The following adds a new attribute to the sysfs representation
6796 * of this device driver (i.e. a new file in /sys/bus/pci/drivers/iwl/)
6797 * used for controlling the debug level.
6799 * See the level definitions in iwl for details.
6801 static ssize_t show_debug_level(struct device *d,
6802 struct device_attribute *attr, char *buf)
6804 struct iwl_priv *priv = d->driver_data;
6806 return sprintf(buf, "0x%08X\n", priv->debug_level);
6808 static ssize_t store_debug_level(struct device *d,
6809 struct device_attribute *attr,
6810 const char *buf, size_t count)
6812 struct iwl_priv *priv = d->driver_data;
6816 ret = strict_strtoul(buf, 0, &val);
6818 IWL_INFO(priv, "%s is not in hex or decimal form.\n", buf);
6820 priv->debug_level = val;
6822 return strnlen(buf, count);
6825 static DEVICE_ATTR(debug_level, S_IWUSR | S_IRUGO,
6826 show_debug_level, store_debug_level);
6828 #endif /* CONFIG_IWL3945_DEBUG */
6830 static ssize_t show_temperature(struct device *d,
6831 struct device_attribute *attr, char *buf)
6833 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
6835 if (!iwl_is_alive(priv))
6838 return sprintf(buf, "%d\n", iwl3945_hw_get_temperature(priv));
6841 static DEVICE_ATTR(temperature, S_IRUGO, show_temperature, NULL);
6843 static ssize_t show_tx_power(struct device *d,
6844 struct device_attribute *attr, char *buf)
6846 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
6847 return sprintf(buf, "%d\n", priv->user_txpower_limit);
6850 static ssize_t store_tx_power(struct device *d,
6851 struct device_attribute *attr,
6852 const char *buf, size_t count)
6854 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
6855 char *p = (char *)buf;
6858 val = simple_strtoul(p, &p, 10);
6860 IWL_INFO(priv, ": %s is not in decimal form.\n", buf);
6862 iwl3945_hw_reg_set_txpower(priv, val);
6867 static DEVICE_ATTR(tx_power, S_IWUSR | S_IRUGO, show_tx_power, store_tx_power);
6869 static ssize_t show_flags(struct device *d,
6870 struct device_attribute *attr, char *buf)
6872 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
6874 return sprintf(buf, "0x%04X\n", priv->active39_rxon.flags);
6877 static ssize_t store_flags(struct device *d,
6878 struct device_attribute *attr,
6879 const char *buf, size_t count)
6881 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
6882 u32 flags = simple_strtoul(buf, NULL, 0);
6884 mutex_lock(&priv->mutex);
6885 if (le32_to_cpu(priv->staging39_rxon.flags) != flags) {
6886 /* Cancel any currently running scans... */
6887 if (iwl3945_scan_cancel_timeout(priv, 100))
6888 IWL_WARN(priv, "Could not cancel scan.\n");
6890 IWL_DEBUG_INFO("Committing rxon.flags = 0x%04X\n",
6892 priv->staging39_rxon.flags = cpu_to_le32(flags);
6893 iwl3945_commit_rxon(priv);
6896 mutex_unlock(&priv->mutex);
6901 static DEVICE_ATTR(flags, S_IWUSR | S_IRUGO, show_flags, store_flags);
6903 static ssize_t show_filter_flags(struct device *d,
6904 struct device_attribute *attr, char *buf)
6906 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
6908 return sprintf(buf, "0x%04X\n",
6909 le32_to_cpu(priv->active39_rxon.filter_flags));
6912 static ssize_t store_filter_flags(struct device *d,
6913 struct device_attribute *attr,
6914 const char *buf, size_t count)
6916 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
6917 u32 filter_flags = simple_strtoul(buf, NULL, 0);
6919 mutex_lock(&priv->mutex);
6920 if (le32_to_cpu(priv->staging39_rxon.filter_flags) != filter_flags) {
6921 /* Cancel any currently running scans... */
6922 if (iwl3945_scan_cancel_timeout(priv, 100))
6923 IWL_WARN(priv, "Could not cancel scan.\n");
6925 IWL_DEBUG_INFO("Committing rxon.filter_flags = "
6926 "0x%04X\n", filter_flags);
6927 priv->staging39_rxon.filter_flags =
6928 cpu_to_le32(filter_flags);
6929 iwl3945_commit_rxon(priv);
6932 mutex_unlock(&priv->mutex);
6937 static DEVICE_ATTR(filter_flags, S_IWUSR | S_IRUGO, show_filter_flags,
6938 store_filter_flags);
6940 #ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
6942 static ssize_t show_measurement(struct device *d,
6943 struct device_attribute *attr, char *buf)
6945 struct iwl_priv *priv = dev_get_drvdata(d);
6946 struct iwl_spectrum_notification measure_report;
6947 u32 size = sizeof(measure_report), len = 0, ofs = 0;
6948 u8 *data = (u8 *)&measure_report;
6949 unsigned long flags;
6951 spin_lock_irqsave(&priv->lock, flags);
6952 if (!(priv->measurement_status & MEASUREMENT_READY)) {
6953 spin_unlock_irqrestore(&priv->lock, flags);
6956 memcpy(&measure_report, &priv->measure_report, size);
6957 priv->measurement_status = 0;
6958 spin_unlock_irqrestore(&priv->lock, flags);
6960 while (size && (PAGE_SIZE - len)) {
6961 hex_dump_to_buffer(data + ofs, size, 16, 1, buf + len,
6962 PAGE_SIZE - len, 1);
6964 if (PAGE_SIZE - len)
6968 size -= min(size, 16U);
6974 static ssize_t store_measurement(struct device *d,
6975 struct device_attribute *attr,
6976 const char *buf, size_t count)
6978 struct iwl_priv *priv = dev_get_drvdata(d);
6979 struct ieee80211_measurement_params params = {
6980 .channel = le16_to_cpu(priv->active39_rxon.channel),
6981 .start_time = cpu_to_le64(priv->last_tsf),
6982 .duration = cpu_to_le16(1),
6984 u8 type = IWL_MEASURE_BASIC;
6990 strncpy(buffer, buf, min(sizeof(buffer), count));
6991 channel = simple_strtoul(p, NULL, 0);
6993 params.channel = channel;
6996 while (*p && *p != ' ')
6999 type = simple_strtoul(p + 1, NULL, 0);
7002 IWL_DEBUG_INFO("Invoking measurement of type %d on "
7003 "channel %d (for '%s')\n", type, params.channel, buf);
7004 iwl3945_get_measurement(priv, ¶ms, type);
7009 static DEVICE_ATTR(measurement, S_IRUSR | S_IWUSR,
7010 show_measurement, store_measurement);
7011 #endif /* CONFIG_IWL3945_SPECTRUM_MEASUREMENT */
7013 static ssize_t store_retry_rate(struct device *d,
7014 struct device_attribute *attr,
7015 const char *buf, size_t count)
7017 struct iwl_priv *priv = dev_get_drvdata(d);
7019 priv->retry_rate = simple_strtoul(buf, NULL, 0);
7020 if (priv->retry_rate <= 0)
7021 priv->retry_rate = 1;
7026 static ssize_t show_retry_rate(struct device *d,
7027 struct device_attribute *attr, char *buf)
7029 struct iwl_priv *priv = dev_get_drvdata(d);
7030 return sprintf(buf, "%d", priv->retry_rate);
7033 static DEVICE_ATTR(retry_rate, S_IWUSR | S_IRUSR, show_retry_rate,
7036 static ssize_t store_power_level(struct device *d,
7037 struct device_attribute *attr,
7038 const char *buf, size_t count)
7040 struct iwl_priv *priv = dev_get_drvdata(d);
7044 mode = simple_strtoul(buf, NULL, 0);
7045 mutex_lock(&priv->mutex);
7047 if (!iwl_is_ready(priv)) {
7052 if ((mode < 1) || (mode > IWL39_POWER_LIMIT) ||
7053 (mode == IWL39_POWER_AC))
7054 mode = IWL39_POWER_AC;
7056 mode |= IWL_POWER_ENABLED;
7058 if (mode != priv->power_mode) {
7059 rc = iwl3945_send_power_mode(priv, IWL_POWER_LEVEL(mode));
7061 IWL_DEBUG_MAC80211("failed setting power mode.\n");
7064 priv->power_mode = mode;
7070 mutex_unlock(&priv->mutex);
7074 #define MAX_WX_STRING 80
7076 /* Values are in microsecond */
7077 static const s32 timeout_duration[] = {
7084 static const s32 period_duration[] = {
7092 static ssize_t show_power_level(struct device *d,
7093 struct device_attribute *attr, char *buf)
7095 struct iwl_priv *priv = dev_get_drvdata(d);
7096 int level = IWL_POWER_LEVEL(priv->power_mode);
7099 p += sprintf(p, "%d ", level);
7101 case IWL_POWER_MODE_CAM:
7102 case IWL39_POWER_AC:
7103 p += sprintf(p, "(AC)");
7105 case IWL39_POWER_BATTERY:
7106 p += sprintf(p, "(BATTERY)");
7110 "(Timeout %dms, Period %dms)",
7111 timeout_duration[level - 1] / 1000,
7112 period_duration[level - 1] / 1000);
7115 if (!(priv->power_mode & IWL_POWER_ENABLED))
7116 p += sprintf(p, " OFF\n");
7118 p += sprintf(p, " \n");
7124 static DEVICE_ATTR(power_level, S_IWUSR | S_IRUSR, show_power_level,
7127 static ssize_t show_channels(struct device *d,
7128 struct device_attribute *attr, char *buf)
7130 /* all this shit doesn't belong into sysfs anyway */
7134 static DEVICE_ATTR(channels, S_IRUSR, show_channels, NULL);
7136 static ssize_t show_statistics(struct device *d,
7137 struct device_attribute *attr, char *buf)
7139 struct iwl_priv *priv = dev_get_drvdata(d);
7140 u32 size = sizeof(struct iwl3945_notif_statistics);
7141 u32 len = 0, ofs = 0;
7142 u8 *data = (u8 *)&priv->statistics_39;
7145 if (!iwl_is_alive(priv))
7148 mutex_lock(&priv->mutex);
7149 rc = iwl3945_send_statistics_request(priv);
7150 mutex_unlock(&priv->mutex);
7154 "Error sending statistics request: 0x%08X\n", rc);
7158 while (size && (PAGE_SIZE - len)) {
7159 hex_dump_to_buffer(data + ofs, size, 16, 1, buf + len,
7160 PAGE_SIZE - len, 1);
7162 if (PAGE_SIZE - len)
7166 size -= min(size, 16U);
7172 static DEVICE_ATTR(statistics, S_IRUGO, show_statistics, NULL);
7174 static ssize_t show_antenna(struct device *d,
7175 struct device_attribute *attr, char *buf)
7177 struct iwl_priv *priv = dev_get_drvdata(d);
7179 if (!iwl_is_alive(priv))
7182 return sprintf(buf, "%d\n", priv->antenna);
7185 static ssize_t store_antenna(struct device *d,
7186 struct device_attribute *attr,
7187 const char *buf, size_t count)
7190 struct iwl_priv *priv = dev_get_drvdata(d);
7195 if (sscanf(buf, "%1i", &ant) != 1) {
7196 IWL_DEBUG_INFO("not in hex or decimal form.\n");
7200 if ((ant >= 0) && (ant <= 2)) {
7201 IWL_DEBUG_INFO("Setting antenna select to %d.\n", ant);
7202 priv->antenna = (enum iwl3945_antenna)ant;
7204 IWL_DEBUG_INFO("Bad antenna select value %d.\n", ant);
7210 static DEVICE_ATTR(antenna, S_IWUSR | S_IRUGO, show_antenna, store_antenna);
7212 static ssize_t show_status(struct device *d,
7213 struct device_attribute *attr, char *buf)
7215 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
7216 if (!iwl_is_alive(priv))
7218 return sprintf(buf, "0x%08x\n", (int)priv->status);
7221 static DEVICE_ATTR(status, S_IRUGO, show_status, NULL);
7223 static ssize_t dump_error_log(struct device *d,
7224 struct device_attribute *attr,
7225 const char *buf, size_t count)
7227 char *p = (char *)buf;
7230 iwl3945_dump_nic_error_log((struct iwl_priv *)d->driver_data);
7232 return strnlen(buf, count);
7235 static DEVICE_ATTR(dump_errors, S_IWUSR, NULL, dump_error_log);
7237 static ssize_t dump_event_log(struct device *d,
7238 struct device_attribute *attr,
7239 const char *buf, size_t count)
7241 char *p = (char *)buf;
7244 iwl3945_dump_nic_event_log((struct iwl_priv *)d->driver_data);
7246 return strnlen(buf, count);
7249 static DEVICE_ATTR(dump_events, S_IWUSR, NULL, dump_event_log);
7251 /*****************************************************************************
7253 * driver setup and tear down
7255 *****************************************************************************/
7257 static void iwl3945_setup_deferred_work(struct iwl_priv *priv)
7259 priv->workqueue = create_workqueue(DRV_NAME);
7261 init_waitqueue_head(&priv->wait_command_queue);
7263 INIT_WORK(&priv->up, iwl3945_bg_up);
7264 INIT_WORK(&priv->restart, iwl3945_bg_restart);
7265 INIT_WORK(&priv->rx_replenish, iwl3945_bg_rx_replenish);
7266 INIT_WORK(&priv->scan_completed, iwl3945_bg_scan_completed);
7267 INIT_WORK(&priv->request_scan, iwl3945_bg_request_scan);
7268 INIT_WORK(&priv->abort_scan, iwl3945_bg_abort_scan);
7269 INIT_WORK(&priv->rf_kill, iwl3945_bg_rf_kill);
7270 INIT_WORK(&priv->beacon_update, iwl3945_bg_beacon_update);
7271 INIT_DELAYED_WORK(&priv->init_alive_start, iwl3945_bg_init_alive_start);
7272 INIT_DELAYED_WORK(&priv->alive_start, iwl3945_bg_alive_start);
7273 INIT_DELAYED_WORK(&priv->scan_check, iwl3945_bg_scan_check);
7275 iwl3945_hw_setup_deferred_work(priv);
7277 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
7278 iwl3945_irq_tasklet, (unsigned long)priv);
7281 static void iwl3945_cancel_deferred_work(struct iwl_priv *priv)
7283 iwl3945_hw_cancel_deferred_work(priv);
7285 cancel_delayed_work_sync(&priv->init_alive_start);
7286 cancel_delayed_work(&priv->scan_check);
7287 cancel_delayed_work(&priv->alive_start);
7288 cancel_work_sync(&priv->beacon_update);
7291 static struct attribute *iwl3945_sysfs_entries[] = {
7292 &dev_attr_antenna.attr,
7293 &dev_attr_channels.attr,
7294 &dev_attr_dump_errors.attr,
7295 &dev_attr_dump_events.attr,
7296 &dev_attr_flags.attr,
7297 &dev_attr_filter_flags.attr,
7298 #ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT
7299 &dev_attr_measurement.attr,
7301 &dev_attr_power_level.attr,
7302 &dev_attr_retry_rate.attr,
7303 &dev_attr_statistics.attr,
7304 &dev_attr_status.attr,
7305 &dev_attr_temperature.attr,
7306 &dev_attr_tx_power.attr,
7307 #ifdef CONFIG_IWL3945_DEBUG
7308 &dev_attr_debug_level.attr,
7313 static struct attribute_group iwl3945_attribute_group = {
7314 .name = NULL, /* put in device directory */
7315 .attrs = iwl3945_sysfs_entries,
7318 static struct ieee80211_ops iwl3945_hw_ops = {
7319 .tx = iwl3945_mac_tx,
7320 .start = iwl3945_mac_start,
7321 .stop = iwl3945_mac_stop,
7322 .add_interface = iwl3945_mac_add_interface,
7323 .remove_interface = iwl3945_mac_remove_interface,
7324 .config = iwl3945_mac_config,
7325 .config_interface = iwl3945_mac_config_interface,
7326 .configure_filter = iwl3945_configure_filter,
7327 .set_key = iwl3945_mac_set_key,
7328 .get_tx_stats = iwl3945_mac_get_tx_stats,
7329 .conf_tx = iwl3945_mac_conf_tx,
7330 .reset_tsf = iwl3945_mac_reset_tsf,
7331 .bss_info_changed = iwl3945_bss_info_changed,
7332 .hw_scan = iwl3945_mac_hw_scan
7335 static int iwl3945_init_drv(struct iwl_priv *priv)
7339 priv->retry_rate = 1;
7340 priv->ibss_beacon = NULL;
7342 spin_lock_init(&priv->lock);
7343 spin_lock_init(&priv->power_data.lock);
7344 spin_lock_init(&priv->sta_lock);
7345 spin_lock_init(&priv->hcmd_lock);
7347 INIT_LIST_HEAD(&priv->free_frames);
7349 mutex_init(&priv->mutex);
7351 /* Clear the driver's (not device's) station table */
7352 iwl3945_clear_stations_table(priv);
7354 priv->data_retry_limit = -1;
7355 priv->ieee_channels = NULL;
7356 priv->ieee_rates = NULL;
7357 priv->band = IEEE80211_BAND_2GHZ;
7359 priv->iw_mode = NL80211_IFTYPE_STATION;
7361 iwl_reset_qos(priv);
7363 priv->qos_data.qos_active = 0;
7364 priv->qos_data.qos_cap.val = 0;
7366 priv->rates_mask = IWL_RATES_MASK;
7367 /* If power management is turned on, default to AC mode */
7368 priv->power_mode = IWL_POWER_AC;
7369 priv->user_txpower_limit = IWL_DEFAULT_TX_POWER;
7371 ret = iwl3945_init_channel_map(priv);
7373 IWL_ERR(priv, "initializing regulatory failed: %d\n", ret);
7377 ret = iwl3945_init_geos(priv);
7379 IWL_ERR(priv, "initializing geos failed: %d\n", ret);
7380 goto err_free_channel_map;
7385 err_free_channel_map:
7386 iwl3945_free_channel_map(priv);
7391 static int iwl3945_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
7394 struct iwl_priv *priv;
7395 struct ieee80211_hw *hw;
7396 struct iwl_cfg *cfg = (struct iwl_cfg *)(ent->driver_data);
7397 unsigned long flags;
7399 /***********************
7400 * 1. Allocating HW data
7401 * ********************/
7403 /* mac80211 allocates memory for this device instance, including
7404 * space for this driver's private structure */
7405 hw = iwl_alloc_all(cfg, &iwl3945_hw_ops);
7407 printk(KERN_ERR DRV_NAME "Can not allocate network device\n");
7412 SET_IEEE80211_DEV(hw, &pdev->dev);
7414 if ((iwl3945_mod_params.num_of_queues > IWL39_MAX_NUM_QUEUES) ||
7415 (iwl3945_mod_params.num_of_queues < IWL_MIN_NUM_QUEUES)) {
7417 "invalid queues_num, should be between %d and %d\n",
7418 IWL_MIN_NUM_QUEUES, IWL39_MAX_NUM_QUEUES);
7424 * Disabling hardware scan means that mac80211 will perform scans
7425 * "the hard way", rather than using device's scan.
7427 if (iwl3945_mod_params.disable_hw_scan) {
7428 IWL_DEBUG_INFO("Disabling hw_scan\n");
7429 iwl3945_hw_ops.hw_scan = NULL;
7433 IWL_DEBUG_INFO("*** LOAD DRIVER ***\n");
7435 priv->pci_dev = pdev;
7437 #ifdef CONFIG_IWL3945_DEBUG
7438 priv->debug_level = iwl3945_mod_params.debug;
7439 atomic_set(&priv->restrict_refcnt, 0);
7441 hw->rate_control_algorithm = "iwl-3945-rs";
7442 hw->sta_data_size = sizeof(struct iwl3945_sta_priv);
7444 /* Select antenna (may be helpful if only one antenna is connected) */
7445 priv->antenna = (enum iwl3945_antenna)iwl3945_mod_params.antenna;
7447 /* Tell mac80211 our characteristics */
7448 hw->flags = IEEE80211_HW_SIGNAL_DBM |
7449 IEEE80211_HW_NOISE_DBM;
7451 hw->wiphy->interface_modes =
7452 BIT(NL80211_IFTYPE_STATION) |
7453 BIT(NL80211_IFTYPE_ADHOC);
7455 hw->wiphy->fw_handles_regulatory = true;
7457 /* 4 EDCA QOS priorities */
7460 /***************************
7461 * 2. Initializing PCI bus
7462 * *************************/
7463 if (pci_enable_device(pdev)) {
7465 goto out_ieee80211_free_hw;
7468 pci_set_master(pdev);
7470 err = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
7472 err = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK);
7474 IWL_WARN(priv, "No suitable DMA available.\n");
7475 goto out_pci_disable_device;
7478 pci_set_drvdata(pdev, priv);
7479 err = pci_request_regions(pdev, DRV_NAME);
7481 goto out_pci_disable_device;
7483 /***********************
7484 * 3. Read REV Register
7485 * ********************/
7486 priv->hw_base = pci_iomap(pdev, 0, 0);
7487 if (!priv->hw_base) {
7489 goto out_pci_release_regions;
7492 IWL_DEBUG_INFO("pci_resource_len = 0x%08llx\n",
7493 (unsigned long long) pci_resource_len(pdev, 0));
7494 IWL_DEBUG_INFO("pci_resource_base = %p\n", priv->hw_base);
7496 /* We disable the RETRY_TIMEOUT register (0x41) to keep
7497 * PCI Tx retries from interfering with C3 CPU state */
7498 pci_write_config_byte(pdev, 0x41, 0x00);
7501 err = priv->cfg->ops->lib->apm_ops.init(priv);
7503 IWL_DEBUG_INFO("Failed to init APMG\n");
7507 /***********************
7509 * ********************/
7511 /* Read the EEPROM */
7512 err = iwl3945_eeprom_init(priv);
7514 IWL_ERR(priv, "Unable to init EEPROM\n");
7515 goto out_remove_sysfs;
7517 /* MAC Address location in EEPROM same for 3945/4965 */
7518 get_eeprom_mac(priv, priv->mac_addr);
7519 IWL_DEBUG_INFO("MAC address: %pM\n", priv->mac_addr);
7520 SET_IEEE80211_PERM_ADDR(priv->hw, priv->mac_addr);
7522 /***********************
7523 * 5. Setup HW Constants
7524 * ********************/
7525 /* Device-specific setup */
7526 if (iwl3945_hw_set_hw_params(priv)) {
7527 IWL_ERR(priv, "failed to set hw settings\n");
7531 /***********************
7533 * ********************/
7535 err = iwl3945_init_drv(priv);
7537 IWL_ERR(priv, "initializing driver failed\n");
7541 IWL_INFO(priv, "Detected Intel Wireless WiFi Link %s\n",
7544 /***********************************
7545 * 7. Initialize Module Parameters
7546 * **********************************/
7548 /* Initialize module parameter values here */
7549 /* Disable radio (SW RF KILL) via parameter when loading driver */
7550 if (iwl3945_mod_params.disable) {
7551 set_bit(STATUS_RF_KILL_SW, &priv->status);
7552 IWL_DEBUG_INFO("Radio disabled.\n");
7556 /***********************
7558 * ********************/
7560 spin_lock_irqsave(&priv->lock, flags);
7561 iwl3945_disable_interrupts(priv);
7562 spin_unlock_irqrestore(&priv->lock, flags);
7564 err = sysfs_create_group(&pdev->dev.kobj, &iwl3945_attribute_group);
7566 IWL_ERR(priv, "failed to create sysfs device attributes\n");
7567 goto out_release_irq;
7570 iwl3945_set_rxon_channel(priv, IEEE80211_BAND_2GHZ, 6);
7571 iwl3945_setup_deferred_work(priv);
7572 iwl3945_setup_rx_handlers(priv);
7574 /***********************
7576 * ********************/
7577 pci_save_state(pdev);
7578 pci_disable_device(pdev);
7580 /*********************************
7581 * 10. Setup and Register mac80211
7582 * *******************************/
7584 err = ieee80211_register_hw(priv->hw);
7586 IWL_ERR(priv, "Failed to register network device: %d\n", err);
7587 goto out_remove_sysfs;
7590 priv->hw->conf.beacon_int = 100;
7591 priv->mac80211_registered = 1;
7593 err = iwl3945_rfkill_init(priv);
7595 IWL_ERR(priv, "Unable to initialize RFKILL system. "
7596 "Ignoring error: %d\n", err);
7601 sysfs_remove_group(&pdev->dev.kobj, &iwl3945_attribute_group);
7603 iwl3945_free_geos(priv);
7606 destroy_workqueue(priv->workqueue);
7607 priv->workqueue = NULL;
7608 iwl3945_unset_hw_params(priv);
7611 pci_iounmap(pdev, priv->hw_base);
7612 out_pci_release_regions:
7613 pci_release_regions(pdev);
7614 out_pci_disable_device:
7615 pci_disable_device(pdev);
7616 pci_set_drvdata(pdev, NULL);
7617 out_ieee80211_free_hw:
7618 ieee80211_free_hw(priv->hw);
7623 static void __devexit iwl3945_pci_remove(struct pci_dev *pdev)
7625 struct iwl_priv *priv = pci_get_drvdata(pdev);
7626 unsigned long flags;
7631 IWL_DEBUG_INFO("*** UNLOAD DRIVER ***\n");
7633 set_bit(STATUS_EXIT_PENDING, &priv->status);
7635 if (priv->mac80211_registered) {
7636 ieee80211_unregister_hw(priv->hw);
7637 priv->mac80211_registered = 0;
7642 /* make sure we flush any pending irq or
7643 * tasklet for the driver
7645 spin_lock_irqsave(&priv->lock, flags);
7646 iwl3945_disable_interrupts(priv);
7647 spin_unlock_irqrestore(&priv->lock, flags);
7649 iwl_synchronize_irq(priv);
7651 sysfs_remove_group(&pdev->dev.kobj, &iwl3945_attribute_group);
7653 iwl3945_rfkill_unregister(priv);
7654 iwl3945_dealloc_ucode_pci(priv);
7657 iwl_rx_queue_free(priv, &priv->rxq);
7658 iwl3945_hw_txq_ctx_free(priv);
7660 iwl3945_unset_hw_params(priv);
7661 iwl3945_clear_stations_table(priv);
7663 /*netif_stop_queue(dev); */
7664 flush_workqueue(priv->workqueue);
7666 /* ieee80211_unregister_hw calls iwl3945_mac_stop, which flushes
7667 * priv->workqueue... so we can't take down the workqueue
7669 destroy_workqueue(priv->workqueue);
7670 priv->workqueue = NULL;
7672 pci_iounmap(pdev, priv->hw_base);
7673 pci_release_regions(pdev);
7674 pci_disable_device(pdev);
7675 pci_set_drvdata(pdev, NULL);
7677 iwl3945_free_channel_map(priv);
7678 iwl3945_free_geos(priv);
7679 kfree(priv->scan39);
7680 if (priv->ibss_beacon)
7681 dev_kfree_skb(priv->ibss_beacon);
7683 ieee80211_free_hw(priv->hw);
7688 static int iwl3945_pci_suspend(struct pci_dev *pdev, pm_message_t state)
7690 struct iwl_priv *priv = pci_get_drvdata(pdev);
7692 if (priv->is_open) {
7693 set_bit(STATUS_IN_SUSPEND, &priv->status);
7694 iwl3945_mac_stop(priv->hw);
7698 pci_set_power_state(pdev, PCI_D3hot);
7703 static int iwl3945_pci_resume(struct pci_dev *pdev)
7705 struct iwl_priv *priv = pci_get_drvdata(pdev);
7707 pci_set_power_state(pdev, PCI_D0);
7710 iwl3945_mac_start(priv->hw);
7712 clear_bit(STATUS_IN_SUSPEND, &priv->status);
7716 #endif /* CONFIG_PM */
7718 /*************** RFKILL FUNCTIONS **********/
7719 #ifdef CONFIG_IWL3945_RFKILL
7720 /* software rf-kill from user */
7721 static int iwl3945_rfkill_soft_rf_kill(void *data, enum rfkill_state state)
7723 struct iwl_priv *priv = data;
7729 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
7732 IWL_DEBUG_RF_KILL("we received soft RFKILL set to state %d\n", state);
7733 mutex_lock(&priv->mutex);
7736 case RFKILL_STATE_UNBLOCKED:
7737 if (iwl_is_rfkill_hw(priv)) {
7741 iwl3945_radio_kill_sw(priv, 0);
7743 case RFKILL_STATE_SOFT_BLOCKED:
7744 iwl3945_radio_kill_sw(priv, 1);
7747 IWL_WARN(priv, "received unexpected RFKILL state %d\n", state);
7751 mutex_unlock(&priv->mutex);
7756 int iwl3945_rfkill_init(struct iwl_priv *priv)
7758 struct device *device = wiphy_dev(priv->hw->wiphy);
7761 BUG_ON(device == NULL);
7763 IWL_DEBUG_RF_KILL("Initializing RFKILL.\n");
7764 priv->rfkill = rfkill_allocate(device, RFKILL_TYPE_WLAN);
7765 if (!priv->rfkill) {
7766 IWL_ERR(priv, "Unable to allocate rfkill device.\n");
7771 priv->rfkill->name = priv->cfg->name;
7772 priv->rfkill->data = priv;
7773 priv->rfkill->state = RFKILL_STATE_UNBLOCKED;
7774 priv->rfkill->toggle_radio = iwl3945_rfkill_soft_rf_kill;
7775 priv->rfkill->user_claim_unsupported = 1;
7777 priv->rfkill->dev.class->suspend = NULL;
7778 priv->rfkill->dev.class->resume = NULL;
7780 ret = rfkill_register(priv->rfkill);
7782 IWL_ERR(priv, "Unable to register rfkill: %d\n", ret);
7786 IWL_DEBUG_RF_KILL("RFKILL initialization complete.\n");
7790 if (priv->rfkill != NULL)
7791 rfkill_free(priv->rfkill);
7792 priv->rfkill = NULL;
7795 IWL_DEBUG_RF_KILL("RFKILL initialization complete.\n");
7799 void iwl3945_rfkill_unregister(struct iwl_priv *priv)
7802 rfkill_unregister(priv->rfkill);
7804 priv->rfkill = NULL;
7807 /* set rf-kill to the right state. */
7808 void iwl3945_rfkill_set_hw_state(struct iwl_priv *priv)
7814 if (iwl_is_rfkill_hw(priv)) {
7815 rfkill_force_state(priv->rfkill, RFKILL_STATE_HARD_BLOCKED);
7819 if (!iwl_is_rfkill_sw(priv))
7820 rfkill_force_state(priv->rfkill, RFKILL_STATE_UNBLOCKED);
7822 rfkill_force_state(priv->rfkill, RFKILL_STATE_SOFT_BLOCKED);
7826 /*****************************************************************************
7828 * driver and module entry point
7830 *****************************************************************************/
7832 static struct pci_driver iwl3945_driver = {
7834 .id_table = iwl3945_hw_card_ids,
7835 .probe = iwl3945_pci_probe,
7836 .remove = __devexit_p(iwl3945_pci_remove),
7838 .suspend = iwl3945_pci_suspend,
7839 .resume = iwl3945_pci_resume,
7843 static int __init iwl3945_init(void)
7847 printk(KERN_INFO DRV_NAME ": " DRV_DESCRIPTION ", " DRV_VERSION "\n");
7848 printk(KERN_INFO DRV_NAME ": " DRV_COPYRIGHT "\n");
7850 ret = iwl3945_rate_control_register();
7852 printk(KERN_ERR DRV_NAME
7853 "Unable to register rate control algorithm: %d\n", ret);
7857 ret = pci_register_driver(&iwl3945_driver);
7859 printk(KERN_ERR DRV_NAME "Unable to initialize PCI module\n");
7860 goto error_register;
7866 iwl3945_rate_control_unregister();
7870 static void __exit iwl3945_exit(void)
7872 pci_unregister_driver(&iwl3945_driver);
7873 iwl3945_rate_control_unregister();
7876 MODULE_FIRMWARE(IWL3945_MODULE_FIRMWARE(IWL3945_UCODE_API_MAX));
7878 module_param_named(antenna, iwl3945_mod_params.antenna, int, 0444);
7879 MODULE_PARM_DESC(antenna, "select antenna (1=Main, 2=Aux, default 0 [both])");
7880 module_param_named(disable, iwl3945_mod_params.disable, int, 0444);
7881 MODULE_PARM_DESC(disable, "manually disable the radio (default 0 [radio on])");
7882 module_param_named(hwcrypto, iwl3945_mod_params.sw_crypto, int, 0444);
7883 MODULE_PARM_DESC(hwcrypto,
7884 "using hardware crypto engine (default 0 [software])\n");
7885 module_param_named(debug, iwl3945_mod_params.debug, uint, 0444);
7886 MODULE_PARM_DESC(debug, "debug output mask");
7887 module_param_named(disable_hw_scan, iwl3945_mod_params.disable_hw_scan, int, 0444);
7888 MODULE_PARM_DESC(disable_hw_scan, "disable hardware scanning (default 0)");
7890 module_param_named(queues_num, iwl3945_mod_params.num_of_queues, int, 0444);
7891 MODULE_PARM_DESC(queues_num, "number of hw queues.");
7893 module_exit(iwl3945_exit);
7894 module_init(iwl3945_init);