1 /******************************************************************************
3 * Copyright(c) 2003 - 2007 Intel Corporation. All rights reserved.
5 * Portions of this file are derived from the ipw3945 project, as well
6 * as portions of the ieee80211 subsystem header files.
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of version 2 of the GNU General Public License as
10 * published by the Free Software Foundation.
12 * This program is distributed in the hope that it will be useful, but WITHOUT
13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
17 * You should have received a copy of the GNU General Public License along with
18 * this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
21 * The full GNU General Public License is included in this distribution in the
22 * file called LICENSE.
24 * Contact Information:
25 * James P. Ketrenos <ipw2100-admin@linux.intel.com>
26 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
28 *****************************************************************************/
31 * NOTE: This file (iwl-base.c) is used to build to multiple hardware targets
32 * by defining IWL to either 3945 or 4965. The Makefile used when building
33 * the base targets will create base-3945.o and base-4965.o
35 * The eventual goal is to move as many of the #if IWL / #endif blocks out of
36 * this file and into the hardware specific implementation files (iwl-XXXX.c)
37 * and leave only the common (non #ifdef sprinkled) code in this file
40 #include <linux/kernel.h>
41 #include <linux/module.h>
42 #include <linux/version.h>
43 #include <linux/init.h>
44 #include <linux/pci.h>
45 #include <linux/dma-mapping.h>
46 #include <linux/delay.h>
47 #include <linux/skbuff.h>
48 #include <linux/netdevice.h>
49 #include <linux/wireless.h>
50 #include <linux/firmware.h>
51 #include <linux/skbuff.h>
52 #include <linux/netdevice.h>
53 #include <linux/etherdevice.h>
54 #include <linux/if_arp.h>
56 #include <net/ieee80211_radiotap.h>
57 #include <net/mac80211.h>
59 #include <asm/div64.h>
65 #include "iwl-helpers.h"
67 #ifdef CONFIG_IWLWIFI_DEBUG
71 /******************************************************************************
75 ******************************************************************************/
77 /* module parameters */
78 int iwl_param_disable_hw_scan;
80 int iwl_param_disable; /* def: enable radio */
81 int iwl_param_antenna; /* def: 0 = both antennas (use diversity) */
82 int iwl_param_hwcrypto; /* def: using software encryption */
83 int iwl_param_qos_enable = 1;
84 int iwl_param_queues_num = IWL_MAX_NUM_QUEUES;
87 * module name, copyright, version, etc.
88 * NOTE: DRV_NAME is defined in iwlwifi.h for use by iwl-debug.h and printk
91 #define DRV_DESCRIPTION \
92 "Intel(R) PRO/Wireless 3945ABG/BG Network Connection driver for Linux"
94 #ifdef CONFIG_IWLWIFI_DEBUG
100 #ifdef CONFIG_IWLWIFI_SPECTRUM_MEASUREMENT
106 #define IWLWIFI_VERSION "1.1.17k" VD VS
107 #define DRV_COPYRIGHT "Copyright(c) 2003-2007 Intel Corporation"
108 #define DRV_VERSION IWLWIFI_VERSION
110 /* Change firmware file name, using "-" and incrementing number,
111 * *only* when uCode interface or architecture changes so that it
112 * is not compatible with earlier drivers.
113 * This number will also appear in << 8 position of 1st dword of uCode file */
114 #define IWL3945_UCODE_API "-1"
116 MODULE_DESCRIPTION(DRV_DESCRIPTION);
117 MODULE_VERSION(DRV_VERSION);
118 MODULE_AUTHOR(DRV_COPYRIGHT);
119 MODULE_LICENSE("GPL");
121 __le16 *ieee80211_get_qos_ctrl(struct ieee80211_hdr *hdr)
123 u16 fc = le16_to_cpu(hdr->frame_control);
124 int hdr_len = ieee80211_get_hdrlen(fc);
126 if ((fc & 0x00cc) == (IEEE80211_STYPE_QOS_DATA | IEEE80211_FTYPE_DATA))
127 return (__le16 *) ((u8 *) hdr + hdr_len - QOS_CONTROL_LEN);
131 static const struct ieee80211_hw_mode *iwl_get_hw_mode(
132 struct iwl_priv *priv, int mode)
136 for (i = 0; i < 3; i++)
137 if (priv->modes[i].mode == mode)
138 return &priv->modes[i];
143 static int iwl_is_empty_essid(const char *essid, int essid_len)
145 /* Single white space is for Linksys APs */
146 if (essid_len == 1 && essid[0] == ' ')
149 /* Otherwise, if the entire essid is 0, we assume it is hidden */
152 if (essid[essid_len] != '\0')
159 static const char *iwl_escape_essid(const char *essid, u8 essid_len)
161 static char escaped[IW_ESSID_MAX_SIZE * 2 + 1];
162 const char *s = essid;
165 if (iwl_is_empty_essid(essid, essid_len)) {
166 memcpy(escaped, "<hidden>", sizeof("<hidden>"));
170 essid_len = min(essid_len, (u8) IW_ESSID_MAX_SIZE);
171 while (essid_len--) {
183 static void iwl_print_hex_dump(int level, void *p, u32 len)
185 #ifdef CONFIG_IWLWIFI_DEBUG
186 if (!(iwl_debug_level & level))
189 print_hex_dump(KERN_DEBUG, "iwl data: ", DUMP_PREFIX_OFFSET, 16, 1,
194 /*************** DMA-QUEUE-GENERAL-FUNCTIONS *****
197 * Theory of operation
199 * A queue is a circular buffers with 'Read' and 'Write' pointers.
200 * 2 empty entries always kept in the buffer to protect from overflow.
202 * For Tx queue, there are low mark and high mark limits. If, after queuing
203 * the packet for Tx, free space become < low mark, Tx queue stopped. When
204 * reclaiming packets (on 'tx done IRQ), if free space become > high mark,
207 * The IWL operates with six queues, one receive queue in the device's
208 * sram, one transmit queue for sending commands to the device firmware,
209 * and four transmit queues for data.
210 ***************************************************/
212 static int iwl_queue_space(const struct iwl_queue *q)
214 int s = q->last_used - q->first_empty;
216 if (q->last_used > q->first_empty)
221 /* keep some reserve to not confuse empty and full situations */
228 /* XXX: n_bd must be power-of-two size */
229 static inline int iwl_queue_inc_wrap(int index, int n_bd)
231 return ++index & (n_bd - 1);
234 /* XXX: n_bd must be power-of-two size */
235 static inline int iwl_queue_dec_wrap(int index, int n_bd)
237 return --index & (n_bd - 1);
240 static inline int x2_queue_used(const struct iwl_queue *q, int i)
242 return q->first_empty > q->last_used ?
243 (i >= q->last_used && i < q->first_empty) :
244 !(i < q->last_used && i >= q->first_empty);
247 static inline u8 get_cmd_index(struct iwl_queue *q, u32 index, int is_huge)
252 return index & (q->n_window - 1);
255 static int iwl_queue_init(struct iwl_priv *priv, struct iwl_queue *q,
256 int count, int slots_num, u32 id)
259 q->n_window = slots_num;
262 /* count must be power-of-two size, otherwise iwl_queue_inc_wrap
263 * and iwl_queue_dec_wrap are broken. */
264 BUG_ON(!is_power_of_2(count));
266 /* slots_num must be power-of-two size, otherwise
267 * get_cmd_index is broken. */
268 BUG_ON(!is_power_of_2(slots_num));
270 q->low_mark = q->n_window / 4;
274 q->high_mark = q->n_window / 8;
275 if (q->high_mark < 2)
278 q->first_empty = q->last_used = 0;
283 static int iwl_tx_queue_alloc(struct iwl_priv *priv,
284 struct iwl_tx_queue *txq, u32 id)
286 struct pci_dev *dev = priv->pci_dev;
288 if (id != IWL_CMD_QUEUE_NUM) {
289 txq->txb = kmalloc(sizeof(txq->txb[0]) *
290 TFD_QUEUE_SIZE_MAX, GFP_KERNEL);
292 IWL_ERROR("kmalloc for auxilary BD "
293 "structures failed\n");
299 txq->bd = pci_alloc_consistent(dev,
300 sizeof(txq->bd[0]) * TFD_QUEUE_SIZE_MAX,
304 IWL_ERROR("pci_alloc_consistent(%zd) failed\n",
305 sizeof(txq->bd[0]) * TFD_QUEUE_SIZE_MAX);
321 int iwl_tx_queue_init(struct iwl_priv *priv,
322 struct iwl_tx_queue *txq, int slots_num, u32 txq_id)
324 struct pci_dev *dev = priv->pci_dev;
328 /* alocate command space + one big command for scan since scan
329 * command is very huge the system will not have two scan at the
331 len = sizeof(struct iwl_cmd) * slots_num;
332 if (txq_id == IWL_CMD_QUEUE_NUM)
333 len += IWL_MAX_SCAN_SIZE;
334 txq->cmd = pci_alloc_consistent(dev, len, &txq->dma_addr_cmd);
338 rc = iwl_tx_queue_alloc(priv, txq, txq_id);
340 pci_free_consistent(dev, len, txq->cmd, txq->dma_addr_cmd);
344 txq->need_update = 0;
346 /* TFD_QUEUE_SIZE_MAX must be power-of-two size, otherwise
347 * iwl_queue_inc_wrap and iwl_queue_dec_wrap are broken. */
348 BUILD_BUG_ON(TFD_QUEUE_SIZE_MAX & (TFD_QUEUE_SIZE_MAX - 1));
349 iwl_queue_init(priv, &txq->q, TFD_QUEUE_SIZE_MAX, slots_num, txq_id);
351 iwl_hw_tx_queue_init(priv, txq);
357 * iwl_tx_queue_free - Deallocate DMA queue.
358 * @txq: Transmit queue to deallocate.
360 * Empty queue by removing and destroying all BD's.
361 * Free all buffers. txq itself is not freed.
364 void iwl_tx_queue_free(struct iwl_priv *priv, struct iwl_tx_queue *txq)
366 struct iwl_queue *q = &txq->q;
367 struct pci_dev *dev = priv->pci_dev;
373 /* first, empty all BD's */
374 for (; q->first_empty != q->last_used;
375 q->last_used = iwl_queue_inc_wrap(q->last_used, q->n_bd))
376 iwl_hw_txq_free_tfd(priv, txq);
378 len = sizeof(struct iwl_cmd) * q->n_window;
379 if (q->id == IWL_CMD_QUEUE_NUM)
380 len += IWL_MAX_SCAN_SIZE;
382 pci_free_consistent(dev, len, txq->cmd, txq->dma_addr_cmd);
384 /* free buffers belonging to queue itself */
386 pci_free_consistent(dev, sizeof(struct iwl_tfd_frame) *
387 txq->q.n_bd, txq->bd, txq->q.dma_addr);
394 /* 0 fill whole structure */
395 memset(txq, 0, sizeof(*txq));
398 const u8 BROADCAST_ADDR[ETH_ALEN] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF };
400 /*************** STATION TABLE MANAGEMENT ****
402 * NOTE: This needs to be overhauled to better synchronize between
403 * how the iwl-4965.c is using iwl_hw_find_station vs. iwl-3945.c
405 * mac80211 should also be examined to determine if sta_info is duplicating
406 * the functionality provided here
409 /**************************************************************/
410 #if 0 /* temparary disable till we add real remove station */
411 static u8 iwl_remove_station(struct iwl_priv *priv, const u8 *addr, int is_ap)
413 int index = IWL_INVALID_STATION;
417 spin_lock_irqsave(&priv->sta_lock, flags);
421 else if (is_broadcast_ether_addr(addr))
422 index = priv->hw_setting.bcast_sta_id;
424 for (i = IWL_STA_ID; i < priv->hw_setting.max_stations; i++)
425 if (priv->stations[i].used &&
426 !compare_ether_addr(priv->stations[i].sta.sta.addr,
432 if (unlikely(index == IWL_INVALID_STATION))
435 if (priv->stations[index].used) {
436 priv->stations[index].used = 0;
437 priv->num_stations--;
440 BUG_ON(priv->num_stations < 0);
443 spin_unlock_irqrestore(&priv->sta_lock, flags);
447 static void iwl_clear_stations_table(struct iwl_priv *priv)
451 spin_lock_irqsave(&priv->sta_lock, flags);
453 priv->num_stations = 0;
454 memset(priv->stations, 0, sizeof(priv->stations));
456 spin_unlock_irqrestore(&priv->sta_lock, flags);
460 u8 iwl_add_station(struct iwl_priv *priv, const u8 *addr, int is_ap, u8 flags)
463 int index = IWL_INVALID_STATION;
464 struct iwl_station_entry *station;
465 unsigned long flags_spin;
466 DECLARE_MAC_BUF(mac);
469 spin_lock_irqsave(&priv->sta_lock, flags_spin);
472 else if (is_broadcast_ether_addr(addr))
473 index = priv->hw_setting.bcast_sta_id;
475 for (i = IWL_STA_ID; i < priv->hw_setting.max_stations; i++) {
476 if (!compare_ether_addr(priv->stations[i].sta.sta.addr,
482 if (!priv->stations[i].used &&
483 index == IWL_INVALID_STATION)
487 /* These twh conditions has the same outcome but keep them separate
488 since they have different meaning */
489 if (unlikely(index == IWL_INVALID_STATION)) {
490 spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
494 if (priv->stations[index].used &&
495 !compare_ether_addr(priv->stations[index].sta.sta.addr, addr)) {
496 spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
500 IWL_DEBUG_ASSOC("Add STA ID %d: %s\n", index, print_mac(mac, addr));
501 station = &priv->stations[index];
503 priv->num_stations++;
505 memset(&station->sta, 0, sizeof(struct iwl_addsta_cmd));
506 memcpy(station->sta.sta.addr, addr, ETH_ALEN);
507 station->sta.mode = 0;
508 station->sta.sta.sta_id = index;
509 station->sta.station_flags = 0;
511 rate = (priv->phymode == MODE_IEEE80211A) ? IWL_RATE_6M_PLCP :
512 IWL_RATE_1M_PLCP | priv->hw_setting.cck_flag;
514 /* Turn on both antennas for the station... */
515 station->sta.rate_n_flags =
516 iwl_hw_set_rate_n_flags(rate, RATE_MCS_ANT_AB_MSK);
517 station->current_rate.rate_n_flags =
518 le16_to_cpu(station->sta.rate_n_flags);
520 spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
521 iwl_send_add_station(priv, &station->sta, flags);
526 /*************** DRIVER STATUS FUNCTIONS *****/
528 static inline int iwl_is_ready(struct iwl_priv *priv)
530 /* The adapter is 'ready' if READY and GEO_CONFIGURED bits are
531 * set but EXIT_PENDING is not */
532 return test_bit(STATUS_READY, &priv->status) &&
533 test_bit(STATUS_GEO_CONFIGURED, &priv->status) &&
534 !test_bit(STATUS_EXIT_PENDING, &priv->status);
537 static inline int iwl_is_alive(struct iwl_priv *priv)
539 return test_bit(STATUS_ALIVE, &priv->status);
542 static inline int iwl_is_init(struct iwl_priv *priv)
544 return test_bit(STATUS_INIT, &priv->status);
547 static inline int iwl_is_rfkill(struct iwl_priv *priv)
549 return test_bit(STATUS_RF_KILL_HW, &priv->status) ||
550 test_bit(STATUS_RF_KILL_SW, &priv->status);
553 static inline int iwl_is_ready_rf(struct iwl_priv *priv)
556 if (iwl_is_rfkill(priv))
559 return iwl_is_ready(priv);
562 /*************** HOST COMMAND QUEUE FUNCTIONS *****/
564 #define IWL_CMD(x) case x : return #x
566 static const char *get_cmd_string(u8 cmd)
569 IWL_CMD(REPLY_ALIVE);
570 IWL_CMD(REPLY_ERROR);
572 IWL_CMD(REPLY_RXON_ASSOC);
573 IWL_CMD(REPLY_QOS_PARAM);
574 IWL_CMD(REPLY_RXON_TIMING);
575 IWL_CMD(REPLY_ADD_STA);
576 IWL_CMD(REPLY_REMOVE_STA);
577 IWL_CMD(REPLY_REMOVE_ALL_STA);
578 IWL_CMD(REPLY_3945_RX);
580 IWL_CMD(REPLY_RATE_SCALE);
581 IWL_CMD(REPLY_LEDS_CMD);
582 IWL_CMD(REPLY_TX_LINK_QUALITY_CMD);
583 IWL_CMD(RADAR_NOTIFICATION);
584 IWL_CMD(REPLY_QUIET_CMD);
585 IWL_CMD(REPLY_CHANNEL_SWITCH);
586 IWL_CMD(CHANNEL_SWITCH_NOTIFICATION);
587 IWL_CMD(REPLY_SPECTRUM_MEASUREMENT_CMD);
588 IWL_CMD(SPECTRUM_MEASURE_NOTIFICATION);
589 IWL_CMD(POWER_TABLE_CMD);
590 IWL_CMD(PM_SLEEP_NOTIFICATION);
591 IWL_CMD(PM_DEBUG_STATISTIC_NOTIFIC);
592 IWL_CMD(REPLY_SCAN_CMD);
593 IWL_CMD(REPLY_SCAN_ABORT_CMD);
594 IWL_CMD(SCAN_START_NOTIFICATION);
595 IWL_CMD(SCAN_RESULTS_NOTIFICATION);
596 IWL_CMD(SCAN_COMPLETE_NOTIFICATION);
597 IWL_CMD(BEACON_NOTIFICATION);
598 IWL_CMD(REPLY_TX_BEACON);
599 IWL_CMD(WHO_IS_AWAKE_NOTIFICATION);
600 IWL_CMD(QUIET_NOTIFICATION);
601 IWL_CMD(REPLY_TX_PWR_TABLE_CMD);
602 IWL_CMD(MEASURE_ABORT_NOTIFICATION);
603 IWL_CMD(REPLY_BT_CONFIG);
604 IWL_CMD(REPLY_STATISTICS_CMD);
605 IWL_CMD(STATISTICS_NOTIFICATION);
606 IWL_CMD(REPLY_CARD_STATE_CMD);
607 IWL_CMD(CARD_STATE_NOTIFICATION);
608 IWL_CMD(MISSED_BEACONS_NOTIFICATION);
615 #define HOST_COMPLETE_TIMEOUT (HZ / 2)
618 * iwl_enqueue_hcmd - enqueue a uCode command
619 * @priv: device private data point
620 * @cmd: a point to the ucode command structure
622 * The function returns < 0 values to indicate the operation is
623 * failed. On success, it turns the index (> 0) of command in the
626 static int iwl_enqueue_hcmd(struct iwl_priv *priv, struct iwl_host_cmd *cmd)
628 struct iwl_tx_queue *txq = &priv->txq[IWL_CMD_QUEUE_NUM];
629 struct iwl_queue *q = &txq->q;
630 struct iwl_tfd_frame *tfd;
632 struct iwl_cmd *out_cmd;
634 u16 fix_size = (u16)(cmd->len + sizeof(out_cmd->hdr));
635 dma_addr_t phys_addr;
641 /* If any of the command structures end up being larger than
642 * the TFD_MAX_PAYLOAD_SIZE, and it sent as a 'small' command then
643 * we will need to increase the size of the TFD entries */
644 BUG_ON((fix_size > TFD_MAX_PAYLOAD_SIZE) &&
645 !(cmd->meta.flags & CMD_SIZE_HUGE));
647 if (iwl_queue_space(q) < ((cmd->meta.flags & CMD_ASYNC) ? 2 : 1)) {
648 IWL_ERROR("No space for Tx\n");
652 spin_lock_irqsave(&priv->hcmd_lock, flags);
654 tfd = &txq->bd[q->first_empty];
655 memset(tfd, 0, sizeof(*tfd));
657 control_flags = (u32 *) tfd;
659 idx = get_cmd_index(q, q->first_empty, cmd->meta.flags & CMD_SIZE_HUGE);
660 out_cmd = &txq->cmd[idx];
662 out_cmd->hdr.cmd = cmd->id;
663 memcpy(&out_cmd->meta, &cmd->meta, sizeof(cmd->meta));
664 memcpy(&out_cmd->cmd.payload, cmd->data, cmd->len);
666 /* At this point, the out_cmd now has all of the incoming cmd
669 out_cmd->hdr.flags = 0;
670 out_cmd->hdr.sequence = cpu_to_le16(QUEUE_TO_SEQ(IWL_CMD_QUEUE_NUM) |
671 INDEX_TO_SEQ(q->first_empty));
672 if (out_cmd->meta.flags & CMD_SIZE_HUGE)
673 out_cmd->hdr.sequence |= cpu_to_le16(SEQ_HUGE_FRAME);
675 phys_addr = txq->dma_addr_cmd + sizeof(txq->cmd[0]) * idx +
676 offsetof(struct iwl_cmd, hdr);
677 iwl_hw_txq_attach_buf_to_tfd(priv, tfd, phys_addr, fix_size);
679 pad = U32_PAD(cmd->len);
680 count = TFD_CTL_COUNT_GET(*control_flags);
681 *control_flags = TFD_CTL_COUNT_SET(count) | TFD_CTL_PAD_SET(pad);
683 IWL_DEBUG_HC("Sending command %s (#%x), seq: 0x%04X, "
684 "%d bytes at %d[%d]:%d\n",
685 get_cmd_string(out_cmd->hdr.cmd),
686 out_cmd->hdr.cmd, le16_to_cpu(out_cmd->hdr.sequence),
687 fix_size, q->first_empty, idx, IWL_CMD_QUEUE_NUM);
689 txq->need_update = 1;
690 q->first_empty = iwl_queue_inc_wrap(q->first_empty, q->n_bd);
691 ret = iwl_tx_queue_update_write_ptr(priv, txq);
693 spin_unlock_irqrestore(&priv->hcmd_lock, flags);
694 return ret ? ret : idx;
697 int iwl_send_cmd_async(struct iwl_priv *priv, struct iwl_host_cmd *cmd)
701 BUG_ON(!(cmd->meta.flags & CMD_ASYNC));
703 /* An asynchronous command can not expect an SKB to be set. */
704 BUG_ON(cmd->meta.flags & CMD_WANT_SKB);
706 /* An asynchronous command MUST have a callback. */
707 BUG_ON(!cmd->meta.u.callback);
709 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
712 ret = iwl_enqueue_hcmd(priv, cmd);
714 IWL_ERROR("Error sending %s: iwl_enqueue_hcmd failed: %d\n",
715 get_cmd_string(cmd->id), ret);
721 int iwl_send_cmd_sync(struct iwl_priv *priv, struct iwl_host_cmd *cmd)
725 static atomic_t entry = ATOMIC_INIT(0); /* reentrance protection */
727 BUG_ON(cmd->meta.flags & CMD_ASYNC);
729 /* A synchronous command can not have a callback set. */
730 BUG_ON(cmd->meta.u.callback != NULL);
732 if (atomic_xchg(&entry, 1)) {
733 IWL_ERROR("Error sending %s: Already sending a host command\n",
734 get_cmd_string(cmd->id));
738 set_bit(STATUS_HCMD_ACTIVE, &priv->status);
740 if (cmd->meta.flags & CMD_WANT_SKB)
741 cmd->meta.source = &cmd->meta;
743 cmd_idx = iwl_enqueue_hcmd(priv, cmd);
746 IWL_ERROR("Error sending %s: iwl_enqueue_hcmd failed: %d\n",
747 get_cmd_string(cmd->id), ret);
751 ret = wait_event_interruptible_timeout(priv->wait_command_queue,
752 !test_bit(STATUS_HCMD_ACTIVE, &priv->status),
753 HOST_COMPLETE_TIMEOUT);
755 if (test_bit(STATUS_HCMD_ACTIVE, &priv->status)) {
756 IWL_ERROR("Error sending %s: time out after %dms.\n",
757 get_cmd_string(cmd->id),
758 jiffies_to_msecs(HOST_COMPLETE_TIMEOUT));
760 clear_bit(STATUS_HCMD_ACTIVE, &priv->status);
766 if (test_bit(STATUS_RF_KILL_HW, &priv->status)) {
767 IWL_DEBUG_INFO("Command %s aborted: RF KILL Switch\n",
768 get_cmd_string(cmd->id));
772 if (test_bit(STATUS_FW_ERROR, &priv->status)) {
773 IWL_DEBUG_INFO("Command %s failed: FW Error\n",
774 get_cmd_string(cmd->id));
778 if ((cmd->meta.flags & CMD_WANT_SKB) && !cmd->meta.u.skb) {
779 IWL_ERROR("Error: Response NULL in '%s'\n",
780 get_cmd_string(cmd->id));
789 if (cmd->meta.flags & CMD_WANT_SKB) {
790 struct iwl_cmd *qcmd;
792 /* Cancel the CMD_WANT_SKB flag for the cmd in the
793 * TX cmd queue. Otherwise in case the cmd comes
794 * in later, it will possibly set an invalid
795 * address (cmd->meta.source). */
796 qcmd = &priv->txq[IWL_CMD_QUEUE_NUM].cmd[cmd_idx];
797 qcmd->meta.flags &= ~CMD_WANT_SKB;
800 if (cmd->meta.u.skb) {
801 dev_kfree_skb_any(cmd->meta.u.skb);
802 cmd->meta.u.skb = NULL;
805 atomic_set(&entry, 0);
809 int iwl_send_cmd(struct iwl_priv *priv, struct iwl_host_cmd *cmd)
811 /* A command can not be asynchronous AND expect an SKB to be set. */
812 BUG_ON((cmd->meta.flags & CMD_ASYNC) &&
813 (cmd->meta.flags & CMD_WANT_SKB));
815 if (cmd->meta.flags & CMD_ASYNC)
816 return iwl_send_cmd_async(priv, cmd);
818 return iwl_send_cmd_sync(priv, cmd);
821 int iwl_send_cmd_pdu(struct iwl_priv *priv, u8 id, u16 len, const void *data)
823 struct iwl_host_cmd cmd = {
829 return iwl_send_cmd_sync(priv, &cmd);
832 static int __must_check iwl_send_cmd_u32(struct iwl_priv *priv, u8 id, u32 val)
834 struct iwl_host_cmd cmd = {
840 return iwl_send_cmd_sync(priv, &cmd);
843 int iwl_send_statistics_request(struct iwl_priv *priv)
845 return iwl_send_cmd_u32(priv, REPLY_STATISTICS_CMD, 0);
849 * iwl_set_rxon_channel - Set the phymode and channel values in staging RXON
850 * @phymode: MODE_IEEE80211A sets to 5.2GHz; all else set to 2.4GHz
851 * @channel: Any channel valid for the requested phymode
853 * In addition to setting the staging RXON, priv->phymode is also set.
855 * NOTE: Does not commit to the hardware; it sets appropriate bit fields
856 * in the staging RXON flag structure based on the phymode
858 static int iwl_set_rxon_channel(struct iwl_priv *priv, u8 phymode, u16 channel)
860 if (!iwl_get_channel_info(priv, phymode, channel)) {
861 IWL_DEBUG_INFO("Could not set channel to %d [%d]\n",
866 if ((le16_to_cpu(priv->staging_rxon.channel) == channel) &&
867 (priv->phymode == phymode))
870 priv->staging_rxon.channel = cpu_to_le16(channel);
871 if (phymode == MODE_IEEE80211A)
872 priv->staging_rxon.flags &= ~RXON_FLG_BAND_24G_MSK;
874 priv->staging_rxon.flags |= RXON_FLG_BAND_24G_MSK;
876 priv->phymode = phymode;
878 IWL_DEBUG_INFO("Staging channel set to %d [%d]\n", channel, phymode);
884 * iwl_check_rxon_cmd - validate RXON structure is valid
886 * NOTE: This is really only useful during development and can eventually
887 * be #ifdef'd out once the driver is stable and folks aren't actively
890 static int iwl_check_rxon_cmd(struct iwl_rxon_cmd *rxon)
895 if (rxon->flags & RXON_FLG_BAND_24G_MSK) {
896 error |= le32_to_cpu(rxon->flags &
897 (RXON_FLG_TGJ_NARROW_BAND_MSK |
898 RXON_FLG_RADAR_DETECT_MSK));
900 IWL_WARNING("check 24G fields %d | %d\n",
903 error |= (rxon->flags & RXON_FLG_SHORT_SLOT_MSK) ?
904 0 : le32_to_cpu(RXON_FLG_SHORT_SLOT_MSK);
906 IWL_WARNING("check 52 fields %d | %d\n",
908 error |= le32_to_cpu(rxon->flags & RXON_FLG_CCK_MSK);
910 IWL_WARNING("check 52 CCK %d | %d\n",
913 error |= (rxon->node_addr[0] | rxon->bssid_addr[0]) & 0x1;
915 IWL_WARNING("check mac addr %d | %d\n", counter++, error);
917 /* make sure basic rates 6Mbps and 1Mbps are supported */
918 error |= (((rxon->ofdm_basic_rates & IWL_RATE_6M_MASK) == 0) &&
919 ((rxon->cck_basic_rates & IWL_RATE_1M_MASK) == 0));
921 IWL_WARNING("check basic rate %d | %d\n", counter++, error);
923 error |= (le16_to_cpu(rxon->assoc_id) > 2007);
925 IWL_WARNING("check assoc id %d | %d\n", counter++, error);
927 error |= ((rxon->flags & (RXON_FLG_CCK_MSK | RXON_FLG_SHORT_SLOT_MSK))
928 == (RXON_FLG_CCK_MSK | RXON_FLG_SHORT_SLOT_MSK));
930 IWL_WARNING("check CCK and short slot %d | %d\n",
933 error |= ((rxon->flags & (RXON_FLG_CCK_MSK | RXON_FLG_AUTO_DETECT_MSK))
934 == (RXON_FLG_CCK_MSK | RXON_FLG_AUTO_DETECT_MSK));
936 IWL_WARNING("check CCK & auto detect %d | %d\n",
939 error |= ((rxon->flags & (RXON_FLG_AUTO_DETECT_MSK |
940 RXON_FLG_TGG_PROTECT_MSK)) == RXON_FLG_TGG_PROTECT_MSK);
942 IWL_WARNING("check TGG and auto detect %d | %d\n",
945 if ((rxon->flags & RXON_FLG_DIS_DIV_MSK))
946 error |= ((rxon->flags & (RXON_FLG_ANT_B_MSK |
947 RXON_FLG_ANT_A_MSK)) == 0);
949 IWL_WARNING("check antenna %d %d\n", counter++, error);
952 IWL_WARNING("Tuning to channel %d\n",
953 le16_to_cpu(rxon->channel));
956 IWL_ERROR("Not a valid iwl_rxon_assoc_cmd field values\n");
963 * iwl_full_rxon_required - determine if RXON_ASSOC can be used in RXON commit
964 * @priv: staging_rxon is comapred to active_rxon
966 * If the RXON structure is changing sufficient to require a new
967 * tune or to clear and reset the RXON_FILTER_ASSOC_MSK then return 1
968 * to indicate a new tune is required.
970 static int iwl_full_rxon_required(struct iwl_priv *priv)
973 /* These items are only settable from the full RXON command */
974 if (!(priv->active_rxon.filter_flags & RXON_FILTER_ASSOC_MSK) ||
975 compare_ether_addr(priv->staging_rxon.bssid_addr,
976 priv->active_rxon.bssid_addr) ||
977 compare_ether_addr(priv->staging_rxon.node_addr,
978 priv->active_rxon.node_addr) ||
979 compare_ether_addr(priv->staging_rxon.wlap_bssid_addr,
980 priv->active_rxon.wlap_bssid_addr) ||
981 (priv->staging_rxon.dev_type != priv->active_rxon.dev_type) ||
982 (priv->staging_rxon.channel != priv->active_rxon.channel) ||
983 (priv->staging_rxon.air_propagation !=
984 priv->active_rxon.air_propagation) ||
985 (priv->staging_rxon.assoc_id != priv->active_rxon.assoc_id))
988 /* flags, filter_flags, ofdm_basic_rates, and cck_basic_rates can
989 * be updated with the RXON_ASSOC command -- however only some
990 * flag transitions are allowed using RXON_ASSOC */
992 /* Check if we are not switching bands */
993 if ((priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) !=
994 (priv->active_rxon.flags & RXON_FLG_BAND_24G_MSK))
997 /* Check if we are switching association toggle */
998 if ((priv->staging_rxon.filter_flags & RXON_FILTER_ASSOC_MSK) !=
999 (priv->active_rxon.filter_flags & RXON_FILTER_ASSOC_MSK))
1005 static int iwl_send_rxon_assoc(struct iwl_priv *priv)
1008 struct iwl_rx_packet *res = NULL;
1009 struct iwl_rxon_assoc_cmd rxon_assoc;
1010 struct iwl_host_cmd cmd = {
1011 .id = REPLY_RXON_ASSOC,
1012 .len = sizeof(rxon_assoc),
1013 .meta.flags = CMD_WANT_SKB,
1014 .data = &rxon_assoc,
1016 const struct iwl_rxon_cmd *rxon1 = &priv->staging_rxon;
1017 const struct iwl_rxon_cmd *rxon2 = &priv->active_rxon;
1019 if ((rxon1->flags == rxon2->flags) &&
1020 (rxon1->filter_flags == rxon2->filter_flags) &&
1021 (rxon1->cck_basic_rates == rxon2->cck_basic_rates) &&
1022 (rxon1->ofdm_basic_rates == rxon2->ofdm_basic_rates)) {
1023 IWL_DEBUG_INFO("Using current RXON_ASSOC. Not resending.\n");
1027 rxon_assoc.flags = priv->staging_rxon.flags;
1028 rxon_assoc.filter_flags = priv->staging_rxon.filter_flags;
1029 rxon_assoc.ofdm_basic_rates = priv->staging_rxon.ofdm_basic_rates;
1030 rxon_assoc.cck_basic_rates = priv->staging_rxon.cck_basic_rates;
1031 rxon_assoc.reserved = 0;
1033 rc = iwl_send_cmd_sync(priv, &cmd);
1037 res = (struct iwl_rx_packet *)cmd.meta.u.skb->data;
1038 if (res->hdr.flags & IWL_CMD_FAILED_MSK) {
1039 IWL_ERROR("Bad return from REPLY_RXON_ASSOC command\n");
1043 priv->alloc_rxb_skb--;
1044 dev_kfree_skb_any(cmd.meta.u.skb);
1050 * iwl_commit_rxon - commit staging_rxon to hardware
1052 * The RXON command in staging_rxon is commited to the hardware and
1053 * the active_rxon structure is updated with the new data. This
1054 * function correctly transitions out of the RXON_ASSOC_MSK state if
1055 * a HW tune is required based on the RXON structure changes.
1057 static int iwl_commit_rxon(struct iwl_priv *priv)
1059 /* cast away the const for active_rxon in this function */
1060 struct iwl_rxon_cmd *active_rxon = (void *)&priv->active_rxon;
1062 DECLARE_MAC_BUF(mac);
1064 if (!iwl_is_alive(priv))
1067 /* always get timestamp with Rx frame */
1068 priv->staging_rxon.flags |= RXON_FLG_TSF2HOST_MSK;
1070 /* select antenna */
1071 priv->staging_rxon.flags &=
1072 ~(RXON_FLG_DIS_DIV_MSK | RXON_FLG_ANT_SEL_MSK);
1073 priv->staging_rxon.flags |= iwl3945_get_antenna_flags(priv);
1075 rc = iwl_check_rxon_cmd(&priv->staging_rxon);
1077 IWL_ERROR("Invalid RXON configuration. Not committing.\n");
1081 /* If we don't need to send a full RXON, we can use
1082 * iwl_rxon_assoc_cmd which is used to reconfigure filter
1083 * and other flags for the current radio configuration. */
1084 if (!iwl_full_rxon_required(priv)) {
1085 rc = iwl_send_rxon_assoc(priv);
1087 IWL_ERROR("Error setting RXON_ASSOC "
1088 "configuration (%d).\n", rc);
1092 memcpy(active_rxon, &priv->staging_rxon, sizeof(*active_rxon));
1097 /* If we are currently associated and the new config requires
1098 * an RXON_ASSOC and the new config wants the associated mask enabled,
1099 * we must clear the associated from the active configuration
1100 * before we apply the new config */
1101 if (iwl_is_associated(priv) &&
1102 (priv->staging_rxon.filter_flags & RXON_FILTER_ASSOC_MSK)) {
1103 IWL_DEBUG_INFO("Toggling associated bit on current RXON\n");
1104 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
1106 rc = iwl_send_cmd_pdu(priv, REPLY_RXON,
1107 sizeof(struct iwl_rxon_cmd),
1108 &priv->active_rxon);
1110 /* If the mask clearing failed then we set
1111 * active_rxon back to what it was previously */
1113 active_rxon->filter_flags |= RXON_FILTER_ASSOC_MSK;
1114 IWL_ERROR("Error clearing ASSOC_MSK on current "
1115 "configuration (%d).\n", rc);
1120 IWL_DEBUG_INFO("Sending RXON\n"
1121 "* with%s RXON_FILTER_ASSOC_MSK\n"
1124 ((priv->staging_rxon.filter_flags &
1125 RXON_FILTER_ASSOC_MSK) ? "" : "out"),
1126 le16_to_cpu(priv->staging_rxon.channel),
1127 print_mac(mac, priv->staging_rxon.bssid_addr));
1129 /* Apply the new configuration */
1130 rc = iwl_send_cmd_pdu(priv, REPLY_RXON,
1131 sizeof(struct iwl_rxon_cmd), &priv->staging_rxon);
1133 IWL_ERROR("Error setting new configuration (%d).\n", rc);
1137 memcpy(active_rxon, &priv->staging_rxon, sizeof(*active_rxon));
1139 iwl_clear_stations_table(priv);
1141 /* If we issue a new RXON command which required a tune then we must
1142 * send a new TXPOWER command or we won't be able to Tx any frames */
1143 rc = iwl_hw_reg_send_txpower(priv);
1145 IWL_ERROR("Error setting Tx power (%d).\n", rc);
1149 /* Add the broadcast address so we can send broadcast frames */
1150 if (iwl_add_station(priv, BROADCAST_ADDR, 0, 0) ==
1151 IWL_INVALID_STATION) {
1152 IWL_ERROR("Error adding BROADCAST address for transmit.\n");
1156 /* If we have set the ASSOC_MSK and we are in BSS mode then
1157 * add the IWL_AP_ID to the station rate table */
1158 if (iwl_is_associated(priv) &&
1159 (priv->iw_mode == IEEE80211_IF_TYPE_STA))
1160 if (iwl_add_station(priv, priv->active_rxon.bssid_addr, 1, 0)
1161 == IWL_INVALID_STATION) {
1162 IWL_ERROR("Error adding AP address for transmit.\n");
1166 /* Init the hardware's rate fallback order based on the
1168 rc = iwl3945_init_hw_rate_table(priv);
1170 IWL_ERROR("Error setting HW rate table: %02X\n", rc);
1177 static int iwl_send_bt_config(struct iwl_priv *priv)
1179 struct iwl_bt_cmd bt_cmd = {
1187 return iwl_send_cmd_pdu(priv, REPLY_BT_CONFIG,
1188 sizeof(struct iwl_bt_cmd), &bt_cmd);
1191 static int iwl_send_scan_abort(struct iwl_priv *priv)
1194 struct iwl_rx_packet *res;
1195 struct iwl_host_cmd cmd = {
1196 .id = REPLY_SCAN_ABORT_CMD,
1197 .meta.flags = CMD_WANT_SKB,
1200 /* If there isn't a scan actively going on in the hardware
1201 * then we are in between scan bands and not actually
1202 * actively scanning, so don't send the abort command */
1203 if (!test_bit(STATUS_SCAN_HW, &priv->status)) {
1204 clear_bit(STATUS_SCAN_ABORTING, &priv->status);
1208 rc = iwl_send_cmd_sync(priv, &cmd);
1210 clear_bit(STATUS_SCAN_ABORTING, &priv->status);
1214 res = (struct iwl_rx_packet *)cmd.meta.u.skb->data;
1215 if (res->u.status != CAN_ABORT_STATUS) {
1216 /* The scan abort will return 1 for success or
1217 * 2 for "failure". A failure condition can be
1218 * due to simply not being in an active scan which
1219 * can occur if we send the scan abort before we
1220 * the microcode has notified us that a scan is
1222 IWL_DEBUG_INFO("SCAN_ABORT returned %d.\n", res->u.status);
1223 clear_bit(STATUS_SCAN_ABORTING, &priv->status);
1224 clear_bit(STATUS_SCAN_HW, &priv->status);
1227 dev_kfree_skb_any(cmd.meta.u.skb);
1232 static int iwl_card_state_sync_callback(struct iwl_priv *priv,
1233 struct iwl_cmd *cmd,
1234 struct sk_buff *skb)
1242 * Use: Sets the internal card state to enable, disable, or halt
1244 * When in the 'enable' state the card operates as normal.
1245 * When in the 'disable' state, the card enters into a low power mode.
1246 * When in the 'halt' state, the card is shut down and must be fully
1247 * restarted to come back on.
1249 static int iwl_send_card_state(struct iwl_priv *priv, u32 flags, u8 meta_flag)
1251 struct iwl_host_cmd cmd = {
1252 .id = REPLY_CARD_STATE_CMD,
1255 .meta.flags = meta_flag,
1258 if (meta_flag & CMD_ASYNC)
1259 cmd.meta.u.callback = iwl_card_state_sync_callback;
1261 return iwl_send_cmd(priv, &cmd);
1264 static int iwl_add_sta_sync_callback(struct iwl_priv *priv,
1265 struct iwl_cmd *cmd, struct sk_buff *skb)
1267 struct iwl_rx_packet *res = NULL;
1270 IWL_ERROR("Error: Response NULL in REPLY_ADD_STA.\n");
1274 res = (struct iwl_rx_packet *)skb->data;
1275 if (res->hdr.flags & IWL_CMD_FAILED_MSK) {
1276 IWL_ERROR("Bad return from REPLY_ADD_STA (0x%08X)\n",
1281 switch (res->u.add_sta.status) {
1282 case ADD_STA_SUCCESS_MSK:
1288 /* We didn't cache the SKB; let the caller free it */
1292 int iwl_send_add_station(struct iwl_priv *priv,
1293 struct iwl_addsta_cmd *sta, u8 flags)
1295 struct iwl_rx_packet *res = NULL;
1297 struct iwl_host_cmd cmd = {
1298 .id = REPLY_ADD_STA,
1299 .len = sizeof(struct iwl_addsta_cmd),
1300 .meta.flags = flags,
1304 if (flags & CMD_ASYNC)
1305 cmd.meta.u.callback = iwl_add_sta_sync_callback;
1307 cmd.meta.flags |= CMD_WANT_SKB;
1309 rc = iwl_send_cmd(priv, &cmd);
1311 if (rc || (flags & CMD_ASYNC))
1314 res = (struct iwl_rx_packet *)cmd.meta.u.skb->data;
1315 if (res->hdr.flags & IWL_CMD_FAILED_MSK) {
1316 IWL_ERROR("Bad return from REPLY_ADD_STA (0x%08X)\n",
1322 switch (res->u.add_sta.status) {
1323 case ADD_STA_SUCCESS_MSK:
1324 IWL_DEBUG_INFO("REPLY_ADD_STA PASSED\n");
1328 IWL_WARNING("REPLY_ADD_STA failed\n");
1333 priv->alloc_rxb_skb--;
1334 dev_kfree_skb_any(cmd.meta.u.skb);
1339 static int iwl_update_sta_key_info(struct iwl_priv *priv,
1340 struct ieee80211_key_conf *keyconf,
1343 unsigned long flags;
1344 __le16 key_flags = 0;
1346 switch (keyconf->alg) {
1348 key_flags |= STA_KEY_FLG_CCMP;
1349 key_flags |= cpu_to_le16(
1350 keyconf->keyidx << STA_KEY_FLG_KEYID_POS);
1351 key_flags &= ~STA_KEY_FLG_INVALID;
1359 spin_lock_irqsave(&priv->sta_lock, flags);
1360 priv->stations[sta_id].keyinfo.alg = keyconf->alg;
1361 priv->stations[sta_id].keyinfo.keylen = keyconf->keylen;
1362 memcpy(priv->stations[sta_id].keyinfo.key, keyconf->key,
1365 memcpy(priv->stations[sta_id].sta.key.key, keyconf->key,
1367 priv->stations[sta_id].sta.key.key_flags = key_flags;
1368 priv->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
1369 priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
1371 spin_unlock_irqrestore(&priv->sta_lock, flags);
1373 IWL_DEBUG_INFO("hwcrypto: modify ucode station key info\n");
1374 iwl_send_add_station(priv, &priv->stations[sta_id].sta, 0);
1378 static int iwl_clear_sta_key_info(struct iwl_priv *priv, u8 sta_id)
1380 unsigned long flags;
1382 spin_lock_irqsave(&priv->sta_lock, flags);
1383 memset(&priv->stations[sta_id].keyinfo, 0, sizeof(struct iwl_hw_key));
1384 memset(&priv->stations[sta_id].sta.key, 0, sizeof(struct iwl_keyinfo));
1385 priv->stations[sta_id].sta.key.key_flags = STA_KEY_FLG_NO_ENC;
1386 priv->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
1387 priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
1388 spin_unlock_irqrestore(&priv->sta_lock, flags);
1390 IWL_DEBUG_INFO("hwcrypto: clear ucode station key info\n");
1391 iwl_send_add_station(priv, &priv->stations[sta_id].sta, 0);
1395 static void iwl_clear_free_frames(struct iwl_priv *priv)
1397 struct list_head *element;
1399 IWL_DEBUG_INFO("%d frames on pre-allocated heap on clear.\n",
1400 priv->frames_count);
1402 while (!list_empty(&priv->free_frames)) {
1403 element = priv->free_frames.next;
1405 kfree(list_entry(element, struct iwl_frame, list));
1406 priv->frames_count--;
1409 if (priv->frames_count) {
1410 IWL_WARNING("%d frames still in use. Did we lose one?\n",
1411 priv->frames_count);
1412 priv->frames_count = 0;
1416 static struct iwl_frame *iwl_get_free_frame(struct iwl_priv *priv)
1418 struct iwl_frame *frame;
1419 struct list_head *element;
1420 if (list_empty(&priv->free_frames)) {
1421 frame = kzalloc(sizeof(*frame), GFP_KERNEL);
1423 IWL_ERROR("Could not allocate frame!\n");
1427 priv->frames_count++;
1431 element = priv->free_frames.next;
1433 return list_entry(element, struct iwl_frame, list);
1436 static void iwl_free_frame(struct iwl_priv *priv, struct iwl_frame *frame)
1438 memset(frame, 0, sizeof(*frame));
1439 list_add(&frame->list, &priv->free_frames);
1442 unsigned int iwl_fill_beacon_frame(struct iwl_priv *priv,
1443 struct ieee80211_hdr *hdr,
1444 const u8 *dest, int left)
1447 if (!iwl_is_associated(priv) || !priv->ibss_beacon ||
1448 ((priv->iw_mode != IEEE80211_IF_TYPE_IBSS) &&
1449 (priv->iw_mode != IEEE80211_IF_TYPE_AP)))
1452 if (priv->ibss_beacon->len > left)
1455 memcpy(hdr, priv->ibss_beacon->data, priv->ibss_beacon->len);
1457 return priv->ibss_beacon->len;
1460 static int iwl_rate_index_from_plcp(int plcp)
1464 for (i = 0; i < IWL_RATE_COUNT; i++)
1465 if (iwl_rates[i].plcp == plcp)
1470 static u8 iwl_rate_get_lowest_plcp(int rate_mask)
1474 for (i = IWL_RATE_1M_INDEX; i != IWL_RATE_INVALID;
1475 i = iwl_rates[i].next_ieee) {
1476 if (rate_mask & (1 << i))
1477 return iwl_rates[i].plcp;
1480 return IWL_RATE_INVALID;
1483 static int iwl_send_beacon_cmd(struct iwl_priv *priv)
1485 struct iwl_frame *frame;
1486 unsigned int frame_size;
1490 frame = iwl_get_free_frame(priv);
1493 IWL_ERROR("Could not obtain free frame buffer for beacon "
1498 if (!(priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK)) {
1499 rate = iwl_rate_get_lowest_plcp(priv->active_rate_basic &
1501 if (rate == IWL_INVALID_RATE)
1502 rate = IWL_RATE_6M_PLCP;
1504 rate = iwl_rate_get_lowest_plcp(priv->active_rate_basic & 0xF);
1505 if (rate == IWL_INVALID_RATE)
1506 rate = IWL_RATE_1M_PLCP;
1509 frame_size = iwl_hw_get_beacon_cmd(priv, frame, rate);
1511 rc = iwl_send_cmd_pdu(priv, REPLY_TX_BEACON, frame_size,
1514 iwl_free_frame(priv, frame);
1519 /******************************************************************************
1521 * EEPROM related functions
1523 ******************************************************************************/
1525 static void get_eeprom_mac(struct iwl_priv *priv, u8 *mac)
1527 memcpy(mac, priv->eeprom.mac_address, 6);
1531 * iwl_eeprom_init - read EEPROM contents
1533 * Load the EEPROM from adapter into priv->eeprom
1535 * NOTE: This routine uses the non-debug IO access functions.
1537 int iwl_eeprom_init(struct iwl_priv *priv)
1539 u16 *e = (u16 *)&priv->eeprom;
1540 u32 gp = iwl_read32(priv, CSR_EEPROM_GP);
1542 int sz = sizeof(priv->eeprom);
1547 /* The EEPROM structure has several padding buffers within it
1548 * and when adding new EEPROM maps is subject to programmer errors
1549 * which may be very difficult to identify without explicitly
1550 * checking the resulting size of the eeprom map. */
1551 BUILD_BUG_ON(sizeof(priv->eeprom) != IWL_EEPROM_IMAGE_SIZE);
1553 if ((gp & CSR_EEPROM_GP_VALID_MSK) == CSR_EEPROM_GP_BAD_SIGNATURE) {
1554 IWL_ERROR("EEPROM not found, EEPROM_GP=0x%08x", gp);
1558 rc = iwl_eeprom_aqcuire_semaphore(priv);
1560 IWL_ERROR("Failed to aqcuire EEPROM semaphore.\n");
1564 /* eeprom is an array of 16bit values */
1565 for (addr = 0; addr < sz; addr += sizeof(u16)) {
1566 _iwl_write32(priv, CSR_EEPROM_REG, addr << 1);
1567 _iwl_clear_bit(priv, CSR_EEPROM_REG, CSR_EEPROM_REG_BIT_CMD);
1569 for (i = 0; i < IWL_EEPROM_ACCESS_TIMEOUT;
1570 i += IWL_EEPROM_ACCESS_DELAY) {
1571 r = _iwl_read_restricted(priv, CSR_EEPROM_REG);
1572 if (r & CSR_EEPROM_REG_READ_VALID_MSK)
1574 udelay(IWL_EEPROM_ACCESS_DELAY);
1577 if (!(r & CSR_EEPROM_REG_READ_VALID_MSK)) {
1578 IWL_ERROR("Time out reading EEPROM[%d]", addr);
1581 e[addr / 2] = le16_to_cpu(r >> 16);
1587 /******************************************************************************
1589 * Misc. internal state and helper functions
1591 ******************************************************************************/
1592 #ifdef CONFIG_IWLWIFI_DEBUG
1595 * iwl_report_frame - dump frame to syslog during debug sessions
1597 * hack this function to show different aspects of received frames,
1598 * including selective frame dumps.
1599 * group100 parameter selects whether to show 1 out of 100 good frames.
1601 * TODO: ieee80211_hdr stuff is common to 3945 and 4965, so frame type
1602 * info output is okay, but some of this stuff (e.g. iwl_rx_frame_stats)
1603 * is 3945-specific and gives bad output for 4965. Need to split the
1604 * functionality, keep common stuff here.
1606 void iwl_report_frame(struct iwl_priv *priv,
1607 struct iwl_rx_packet *pkt,
1608 struct ieee80211_hdr *header, int group100)
1611 u32 print_summary = 0;
1612 u32 print_dump = 0; /* set to 1 to dump all frames' contents */
1629 struct iwl_rx_frame_stats *rx_stats = IWL_RX_STATS(pkt);
1630 struct iwl_rx_frame_hdr *rx_hdr = IWL_RX_HDR(pkt);
1631 struct iwl_rx_frame_end *rx_end = IWL_RX_END(pkt);
1632 u8 *data = IWL_RX_DATA(pkt);
1635 fc = le16_to_cpu(header->frame_control);
1636 seq_ctl = le16_to_cpu(header->seq_ctrl);
1639 channel = le16_to_cpu(rx_hdr->channel);
1640 phy_flags = le16_to_cpu(rx_hdr->phy_flags);
1641 rate_sym = rx_hdr->rate;
1642 length = le16_to_cpu(rx_hdr->len);
1644 /* end-of-frame status and timestamp */
1645 status = le32_to_cpu(rx_end->status);
1646 bcn_tmr = le32_to_cpu(rx_end->beacon_timestamp);
1647 tsf_low = le64_to_cpu(rx_end->timestamp) & 0x0ffffffff;
1648 tsf = le64_to_cpu(rx_end->timestamp);
1650 /* signal statistics */
1651 rssi = rx_stats->rssi;
1652 agc = rx_stats->agc;
1653 sig_avg = le16_to_cpu(rx_stats->sig_avg);
1654 noise_diff = le16_to_cpu(rx_stats->noise_diff);
1656 to_us = !compare_ether_addr(header->addr1, priv->mac_addr);
1658 /* if data frame is to us and all is good,
1659 * (optionally) print summary for only 1 out of every 100 */
1660 if (to_us && (fc & ~IEEE80211_FCTL_PROTECTED) ==
1661 (IEEE80211_FCTL_FROMDS | IEEE80211_FTYPE_DATA)) {
1664 print_summary = 1; /* print each frame */
1665 else if (priv->framecnt_to_us < 100) {
1666 priv->framecnt_to_us++;
1669 priv->framecnt_to_us = 0;
1674 /* print summary for all other frames */
1678 if (print_summary) {
1683 title = "100Frames";
1684 else if (fc & IEEE80211_FCTL_RETRY)
1686 else if (ieee80211_is_assoc_response(fc))
1688 else if (ieee80211_is_reassoc_response(fc))
1690 else if (ieee80211_is_probe_response(fc)) {
1692 print_dump = 1; /* dump frame contents */
1693 } else if (ieee80211_is_beacon(fc)) {
1695 print_dump = 1; /* dump frame contents */
1696 } else if (ieee80211_is_atim(fc))
1698 else if (ieee80211_is_auth(fc))
1700 else if (ieee80211_is_deauth(fc))
1702 else if (ieee80211_is_disassoc(fc))
1707 rate = iwl_rate_index_from_plcp(rate_sym);
1711 rate = iwl_rates[rate].ieee / 2;
1713 /* print frame summary.
1714 * MAC addresses show just the last byte (for brevity),
1715 * but you can hack it to show more, if you'd like to. */
1717 IWL_DEBUG_RX("%s: mhd=0x%04x, dst=0x%02x, "
1718 "len=%u, rssi=%d, chnl=%d, rate=%u, \n",
1719 title, fc, header->addr1[5],
1720 length, rssi, channel, rate);
1722 /* src/dst addresses assume managed mode */
1723 IWL_DEBUG_RX("%s: 0x%04x, dst=0x%02x, "
1724 "src=0x%02x, rssi=%u, tim=%lu usec, "
1725 "phy=0x%02x, chnl=%d\n",
1726 title, fc, header->addr1[5],
1727 header->addr3[5], rssi,
1728 tsf_low - priv->scan_start_tsf,
1729 phy_flags, channel);
1733 iwl_print_hex_dump(IWL_DL_RX, data, length);
1737 static void iwl_unset_hw_setting(struct iwl_priv *priv)
1739 if (priv->hw_setting.shared_virt)
1740 pci_free_consistent(priv->pci_dev,
1741 sizeof(struct iwl_shared),
1742 priv->hw_setting.shared_virt,
1743 priv->hw_setting.shared_phys);
1747 * iwl_supported_rate_to_ie - fill in the supported rate in IE field
1749 * return : set the bit for each supported rate insert in ie
1751 static u16 iwl_supported_rate_to_ie(u8 *ie, u16 supported_rate,
1752 u16 basic_rate, int max_count)
1754 u16 ret_rates = 0, bit;
1760 for (bit = 1, i = 0; i < IWL_RATE_COUNT; i++, bit <<= 1) {
1761 if (bit & supported_rate) {
1763 rates[*ie] = iwl_rates[i].ieee |
1764 ((bit & basic_rate) ? 0x80 : 0x00);
1766 if (*ie >= max_count)
1775 * iwl_fill_probe_req - fill in all required fields and IE for probe request
1777 static u16 iwl_fill_probe_req(struct iwl_priv *priv,
1778 struct ieee80211_mgmt *frame,
1779 int left, int is_direct)
1785 /* Make sure there is enough space for the probe request,
1786 * two mandatory IEs and the data */
1792 frame->frame_control = cpu_to_le16(IEEE80211_STYPE_PROBE_REQ);
1793 memcpy(frame->da, BROADCAST_ADDR, ETH_ALEN);
1794 memcpy(frame->sa, priv->mac_addr, ETH_ALEN);
1795 memcpy(frame->bssid, BROADCAST_ADDR, ETH_ALEN);
1796 frame->seq_ctrl = 0;
1798 /* fill in our indirect SSID IE */
1805 pos = &(frame->u.probe_req.variable[0]);
1806 *pos++ = WLAN_EID_SSID;
1809 /* fill in our direct SSID IE... */
1812 left -= 2 + priv->essid_len;
1815 /* ... fill it in... */
1816 *pos++ = WLAN_EID_SSID;
1817 *pos++ = priv->essid_len;
1818 memcpy(pos, priv->essid, priv->essid_len);
1819 pos += priv->essid_len;
1820 len += 2 + priv->essid_len;
1823 /* fill in supported rate */
1828 /* ... fill it in... */
1829 *pos++ = WLAN_EID_SUPP_RATES;
1831 ret_rates = priv->active_rate = priv->rates_mask;
1832 priv->active_rate_basic = priv->rates_mask & IWL_BASIC_RATES_MASK;
1834 iwl_supported_rate_to_ie(pos, priv->active_rate,
1835 priv->active_rate_basic, left);
1838 ret_rates = ~ret_rates & priv->active_rate;
1843 /* fill in supported extended rate */
1848 /* ... fill it in... */
1849 *pos++ = WLAN_EID_EXT_SUPP_RATES;
1851 iwl_supported_rate_to_ie(pos, ret_rates, priv->active_rate_basic, left);
1862 #ifdef CONFIG_IWLWIFI_QOS
1863 static int iwl_send_qos_params_command(struct iwl_priv *priv,
1864 struct iwl_qosparam_cmd *qos)
1867 return iwl_send_cmd_pdu(priv, REPLY_QOS_PARAM,
1868 sizeof(struct iwl_qosparam_cmd), qos);
1871 static void iwl_reset_qos(struct iwl_priv *priv)
1877 unsigned long flags;
1880 spin_lock_irqsave(&priv->lock, flags);
1881 priv->qos_data.qos_active = 0;
1883 if (priv->iw_mode == IEEE80211_IF_TYPE_IBSS) {
1884 if (priv->qos_data.qos_enable)
1885 priv->qos_data.qos_active = 1;
1886 if (!(priv->active_rate & 0xfff0)) {
1890 } else if (priv->iw_mode == IEEE80211_IF_TYPE_AP) {
1891 if (priv->qos_data.qos_enable)
1892 priv->qos_data.qos_active = 1;
1893 } else if (!(priv->staging_rxon.flags & RXON_FLG_SHORT_SLOT_MSK)) {
1898 if (priv->qos_data.qos_active)
1901 priv->qos_data.def_qos_parm.ac[0].cw_min = cpu_to_le16(cw_min);
1902 priv->qos_data.def_qos_parm.ac[0].cw_max = cpu_to_le16(cw_max);
1903 priv->qos_data.def_qos_parm.ac[0].aifsn = aifs;
1904 priv->qos_data.def_qos_parm.ac[0].edca_txop = 0;
1905 priv->qos_data.def_qos_parm.ac[0].reserved1 = 0;
1907 if (priv->qos_data.qos_active) {
1909 priv->qos_data.def_qos_parm.ac[i].cw_min = cpu_to_le16(cw_min);
1910 priv->qos_data.def_qos_parm.ac[i].cw_max = cpu_to_le16(cw_max);
1911 priv->qos_data.def_qos_parm.ac[i].aifsn = 7;
1912 priv->qos_data.def_qos_parm.ac[i].edca_txop = 0;
1913 priv->qos_data.def_qos_parm.ac[i].reserved1 = 0;
1916 priv->qos_data.def_qos_parm.ac[i].cw_min =
1917 cpu_to_le16((cw_min + 1) / 2 - 1);
1918 priv->qos_data.def_qos_parm.ac[i].cw_max =
1919 cpu_to_le16(cw_max);
1920 priv->qos_data.def_qos_parm.ac[i].aifsn = 2;
1922 priv->qos_data.def_qos_parm.ac[i].edca_txop =
1925 priv->qos_data.def_qos_parm.ac[i].edca_txop =
1927 priv->qos_data.def_qos_parm.ac[i].reserved1 = 0;
1930 priv->qos_data.def_qos_parm.ac[i].cw_min =
1931 cpu_to_le16((cw_min + 1) / 4 - 1);
1932 priv->qos_data.def_qos_parm.ac[i].cw_max =
1933 cpu_to_le16((cw_max + 1) / 2 - 1);
1934 priv->qos_data.def_qos_parm.ac[i].aifsn = 2;
1935 priv->qos_data.def_qos_parm.ac[i].reserved1 = 0;
1937 priv->qos_data.def_qos_parm.ac[i].edca_txop =
1940 priv->qos_data.def_qos_parm.ac[i].edca_txop =
1943 for (i = 1; i < 4; i++) {
1944 priv->qos_data.def_qos_parm.ac[i].cw_min =
1945 cpu_to_le16(cw_min);
1946 priv->qos_data.def_qos_parm.ac[i].cw_max =
1947 cpu_to_le16(cw_max);
1948 priv->qos_data.def_qos_parm.ac[i].aifsn = aifs;
1949 priv->qos_data.def_qos_parm.ac[i].edca_txop = 0;
1950 priv->qos_data.def_qos_parm.ac[i].reserved1 = 0;
1953 IWL_DEBUG_QOS("set QoS to default \n");
1955 spin_unlock_irqrestore(&priv->lock, flags);
1958 static void iwl_activate_qos(struct iwl_priv *priv, u8 force)
1960 unsigned long flags;
1965 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
1968 if (!priv->qos_data.qos_enable)
1971 spin_lock_irqsave(&priv->lock, flags);
1972 priv->qos_data.def_qos_parm.qos_flags = 0;
1974 if (priv->qos_data.qos_cap.q_AP.queue_request &&
1975 !priv->qos_data.qos_cap.q_AP.txop_request)
1976 priv->qos_data.def_qos_parm.qos_flags |=
1977 QOS_PARAM_FLG_TXOP_TYPE_MSK;
1979 if (priv->qos_data.qos_active)
1980 priv->qos_data.def_qos_parm.qos_flags |=
1981 QOS_PARAM_FLG_UPDATE_EDCA_MSK;
1983 spin_unlock_irqrestore(&priv->lock, flags);
1985 if (force || iwl_is_associated(priv)) {
1986 IWL_DEBUG_QOS("send QoS cmd with Qos active %d \n",
1987 priv->qos_data.qos_active);
1989 iwl_send_qos_params_command(priv,
1990 &(priv->qos_data.def_qos_parm));
1994 #endif /* CONFIG_IWLWIFI_QOS */
1996 * Power management (not Tx power!) functions
1998 #define MSEC_TO_USEC 1024
2000 #define NOSLP __constant_cpu_to_le32(0)
2001 #define SLP IWL_POWER_DRIVER_ALLOW_SLEEP_MSK
2002 #define SLP_TIMEOUT(T) __constant_cpu_to_le32((T) * MSEC_TO_USEC)
2003 #define SLP_VEC(X0, X1, X2, X3, X4) {__constant_cpu_to_le32(X0), \
2004 __constant_cpu_to_le32(X1), \
2005 __constant_cpu_to_le32(X2), \
2006 __constant_cpu_to_le32(X3), \
2007 __constant_cpu_to_le32(X4)}
2010 /* default power management (not Tx power) table values */
2012 static struct iwl_power_vec_entry range_0[IWL_POWER_AC] = {
2013 {{NOSLP, SLP_TIMEOUT(0), SLP_TIMEOUT(0), SLP_VEC(0, 0, 0, 0, 0)}, 0},
2014 {{SLP, SLP_TIMEOUT(200), SLP_TIMEOUT(500), SLP_VEC(1, 2, 3, 4, 4)}, 0},
2015 {{SLP, SLP_TIMEOUT(200), SLP_TIMEOUT(300), SLP_VEC(2, 4, 6, 7, 7)}, 0},
2016 {{SLP, SLP_TIMEOUT(50), SLP_TIMEOUT(100), SLP_VEC(2, 6, 9, 9, 10)}, 0},
2017 {{SLP, SLP_TIMEOUT(50), SLP_TIMEOUT(25), SLP_VEC(2, 7, 9, 9, 10)}, 1},
2018 {{SLP, SLP_TIMEOUT(25), SLP_TIMEOUT(25), SLP_VEC(4, 7, 10, 10, 10)}, 1}
2022 static struct iwl_power_vec_entry range_1[IWL_POWER_AC] = {
2023 {{NOSLP, SLP_TIMEOUT(0), SLP_TIMEOUT(0), SLP_VEC(0, 0, 0, 0, 0)}, 0},
2024 {{SLP, SLP_TIMEOUT(200), SLP_TIMEOUT(500),
2025 SLP_VEC(1, 2, 3, 4, 0xFF)}, 0},
2026 {{SLP, SLP_TIMEOUT(200), SLP_TIMEOUT(300),
2027 SLP_VEC(2, 4, 6, 7, 0xFF)}, 0},
2028 {{SLP, SLP_TIMEOUT(50), SLP_TIMEOUT(100),
2029 SLP_VEC(2, 6, 9, 9, 0xFF)}, 0},
2030 {{SLP, SLP_TIMEOUT(50), SLP_TIMEOUT(25), SLP_VEC(2, 7, 9, 9, 0xFF)}, 0},
2031 {{SLP, SLP_TIMEOUT(25), SLP_TIMEOUT(25),
2032 SLP_VEC(4, 7, 10, 10, 0xFF)}, 0}
2035 int iwl_power_init_handle(struct iwl_priv *priv)
2038 struct iwl_power_mgr *pow_data;
2039 int size = sizeof(struct iwl_power_vec_entry) * IWL_POWER_AC;
2042 IWL_DEBUG_POWER("Initialize power \n");
2044 pow_data = &(priv->power_data);
2046 memset(pow_data, 0, sizeof(*pow_data));
2048 pow_data->active_index = IWL_POWER_RANGE_0;
2049 pow_data->dtim_val = 0xffff;
2051 memcpy(&pow_data->pwr_range_0[0], &range_0[0], size);
2052 memcpy(&pow_data->pwr_range_1[0], &range_1[0], size);
2054 rc = pci_read_config_word(priv->pci_dev, PCI_LINK_CTRL, &pci_pm);
2058 struct iwl_powertable_cmd *cmd;
2060 IWL_DEBUG_POWER("adjust power command flags\n");
2062 for (i = 0; i < IWL_POWER_AC; i++) {
2063 cmd = &pow_data->pwr_range_0[i].cmd;
2066 cmd->flags &= ~IWL_POWER_PCI_PM_MSK;
2068 cmd->flags |= IWL_POWER_PCI_PM_MSK;
2074 static int iwl_update_power_cmd(struct iwl_priv *priv,
2075 struct iwl_powertable_cmd *cmd, u32 mode)
2080 struct iwl_power_vec_entry *range;
2082 struct iwl_power_mgr *pow_data;
2084 if (mode > IWL_POWER_INDEX_5) {
2085 IWL_DEBUG_POWER("Error invalid power mode \n");
2088 pow_data = &(priv->power_data);
2090 if (pow_data->active_index == IWL_POWER_RANGE_0)
2091 range = &pow_data->pwr_range_0[0];
2093 range = &pow_data->pwr_range_1[1];
2095 memcpy(cmd, &range[mode].cmd, sizeof(struct iwl_powertable_cmd));
2097 #ifdef IWL_MAC80211_DISABLE
2098 if (priv->assoc_network != NULL) {
2099 unsigned long flags;
2101 period = priv->assoc_network->tim.tim_period;
2103 #endif /*IWL_MAC80211_DISABLE */
2104 skip = range[mode].no_dtim;
2113 cmd->flags &= ~IWL_POWER_SLEEP_OVER_DTIM_MSK;
2115 __le32 slp_itrvl = cmd->sleep_interval[IWL_POWER_VEC_SIZE - 1];
2116 max_sleep = (le32_to_cpu(slp_itrvl) / period) * period;
2117 cmd->flags |= IWL_POWER_SLEEP_OVER_DTIM_MSK;
2120 for (i = 0; i < IWL_POWER_VEC_SIZE; i++) {
2121 if (le32_to_cpu(cmd->sleep_interval[i]) > max_sleep)
2122 cmd->sleep_interval[i] = cpu_to_le32(max_sleep);
2125 IWL_DEBUG_POWER("Flags value = 0x%08X\n", cmd->flags);
2126 IWL_DEBUG_POWER("Tx timeout = %u\n", le32_to_cpu(cmd->tx_data_timeout));
2127 IWL_DEBUG_POWER("Rx timeout = %u\n", le32_to_cpu(cmd->rx_data_timeout));
2128 IWL_DEBUG_POWER("Sleep interval vector = { %d , %d , %d , %d , %d }\n",
2129 le32_to_cpu(cmd->sleep_interval[0]),
2130 le32_to_cpu(cmd->sleep_interval[1]),
2131 le32_to_cpu(cmd->sleep_interval[2]),
2132 le32_to_cpu(cmd->sleep_interval[3]),
2133 le32_to_cpu(cmd->sleep_interval[4]));
2138 static int iwl_send_power_mode(struct iwl_priv *priv, u32 mode)
2140 u32 final_mode = mode;
2142 struct iwl_powertable_cmd cmd;
2144 /* If on battery, set to 3,
2145 * if plugged into AC power, set to CAM ("continuosly aware mode"),
2146 * else user level */
2148 case IWL_POWER_BATTERY:
2149 final_mode = IWL_POWER_INDEX_3;
2152 final_mode = IWL_POWER_MODE_CAM;
2159 iwl_update_power_cmd(priv, &cmd, final_mode);
2161 rc = iwl_send_cmd_pdu(priv, POWER_TABLE_CMD, sizeof(cmd), &cmd);
2163 if (final_mode == IWL_POWER_MODE_CAM)
2164 clear_bit(STATUS_POWER_PMI, &priv->status);
2166 set_bit(STATUS_POWER_PMI, &priv->status);
2171 int iwl_is_network_packet(struct iwl_priv *priv, struct ieee80211_hdr *header)
2173 /* Filter incoming packets to determine if they are targeted toward
2174 * this network, discarding packets coming from ourselves */
2175 switch (priv->iw_mode) {
2176 case IEEE80211_IF_TYPE_IBSS: /* Header: Dest. | Source | BSSID */
2177 /* packets from our adapter are dropped (echo) */
2178 if (!compare_ether_addr(header->addr2, priv->mac_addr))
2180 /* {broad,multi}cast packets to our IBSS go through */
2181 if (is_multicast_ether_addr(header->addr1))
2182 return !compare_ether_addr(header->addr3, priv->bssid);
2183 /* packets to our adapter go through */
2184 return !compare_ether_addr(header->addr1, priv->mac_addr);
2185 case IEEE80211_IF_TYPE_STA: /* Header: Dest. | AP{BSSID} | Source */
2186 /* packets from our adapter are dropped (echo) */
2187 if (!compare_ether_addr(header->addr3, priv->mac_addr))
2189 /* {broad,multi}cast packets to our BSS go through */
2190 if (is_multicast_ether_addr(header->addr1))
2191 return !compare_ether_addr(header->addr2, priv->bssid);
2192 /* packets to our adapter go through */
2193 return !compare_ether_addr(header->addr1, priv->mac_addr);
2199 #define TX_STATUS_ENTRY(x) case TX_STATUS_FAIL_ ## x: return #x
2201 const char *iwl_get_tx_fail_reason(u32 status)
2203 switch (status & TX_STATUS_MSK) {
2204 case TX_STATUS_SUCCESS:
2206 TX_STATUS_ENTRY(SHORT_LIMIT);
2207 TX_STATUS_ENTRY(LONG_LIMIT);
2208 TX_STATUS_ENTRY(FIFO_UNDERRUN);
2209 TX_STATUS_ENTRY(MGMNT_ABORT);
2210 TX_STATUS_ENTRY(NEXT_FRAG);
2211 TX_STATUS_ENTRY(LIFE_EXPIRE);
2212 TX_STATUS_ENTRY(DEST_PS);
2213 TX_STATUS_ENTRY(ABORTED);
2214 TX_STATUS_ENTRY(BT_RETRY);
2215 TX_STATUS_ENTRY(STA_INVALID);
2216 TX_STATUS_ENTRY(FRAG_DROPPED);
2217 TX_STATUS_ENTRY(TID_DISABLE);
2218 TX_STATUS_ENTRY(FRAME_FLUSHED);
2219 TX_STATUS_ENTRY(INSUFFICIENT_CF_POLL);
2220 TX_STATUS_ENTRY(TX_LOCKED);
2221 TX_STATUS_ENTRY(NO_BEACON_ON_RADAR);
2228 * iwl_scan_cancel - Cancel any currently executing HW scan
2230 * NOTE: priv->mutex is not required before calling this function
2232 static int iwl_scan_cancel(struct iwl_priv *priv)
2234 if (!test_bit(STATUS_SCAN_HW, &priv->status)) {
2235 clear_bit(STATUS_SCANNING, &priv->status);
2239 if (test_bit(STATUS_SCANNING, &priv->status)) {
2240 if (!test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
2241 IWL_DEBUG_SCAN("Queuing scan abort.\n");
2242 set_bit(STATUS_SCAN_ABORTING, &priv->status);
2243 queue_work(priv->workqueue, &priv->abort_scan);
2246 IWL_DEBUG_SCAN("Scan abort already in progress.\n");
2248 return test_bit(STATUS_SCANNING, &priv->status);
2255 * iwl_scan_cancel_timeout - Cancel any currently executing HW scan
2256 * @ms: amount of time to wait (in milliseconds) for scan to abort
2258 * NOTE: priv->mutex must be held before calling this function
2260 static int iwl_scan_cancel_timeout(struct iwl_priv *priv, unsigned long ms)
2262 unsigned long now = jiffies;
2265 ret = iwl_scan_cancel(priv);
2267 mutex_unlock(&priv->mutex);
2268 while (!time_after(jiffies, now + msecs_to_jiffies(ms)) &&
2269 test_bit(STATUS_SCANNING, &priv->status))
2271 mutex_lock(&priv->mutex);
2273 return test_bit(STATUS_SCANNING, &priv->status);
2279 static void iwl_sequence_reset(struct iwl_priv *priv)
2281 /* Reset ieee stats */
2283 /* We don't reset the net_device_stats (ieee->stats) on
2286 priv->last_seq_num = -1;
2287 priv->last_frag_num = -1;
2288 priv->last_packet_time = 0;
2290 iwl_scan_cancel(priv);
2293 #define MAX_UCODE_BEACON_INTERVAL 1024
2294 #define INTEL_CONN_LISTEN_INTERVAL __constant_cpu_to_le16(0xA)
2296 static __le16 iwl_adjust_beacon_interval(u16 beacon_val)
2299 u16 beacon_factor = 0;
2302 (beacon_val + MAX_UCODE_BEACON_INTERVAL)
2303 / MAX_UCODE_BEACON_INTERVAL;
2304 new_val = beacon_val / beacon_factor;
2306 return cpu_to_le16(new_val);
2309 static void iwl_setup_rxon_timing(struct iwl_priv *priv)
2311 u64 interval_tm_unit;
2313 unsigned long flags;
2314 struct ieee80211_conf *conf = NULL;
2317 conf = ieee80211_get_hw_conf(priv->hw);
2319 spin_lock_irqsave(&priv->lock, flags);
2320 priv->rxon_timing.timestamp.dw[1] = cpu_to_le32(priv->timestamp1);
2321 priv->rxon_timing.timestamp.dw[0] = cpu_to_le32(priv->timestamp0);
2323 priv->rxon_timing.listen_interval = INTEL_CONN_LISTEN_INTERVAL;
2325 tsf = priv->timestamp1;
2326 tsf = ((tsf << 32) | priv->timestamp0);
2328 beacon_int = priv->beacon_int;
2329 spin_unlock_irqrestore(&priv->lock, flags);
2331 if (priv->iw_mode == IEEE80211_IF_TYPE_STA) {
2332 if (beacon_int == 0) {
2333 priv->rxon_timing.beacon_interval = cpu_to_le16(100);
2334 priv->rxon_timing.beacon_init_val = cpu_to_le32(102400);
2336 priv->rxon_timing.beacon_interval =
2337 cpu_to_le16(beacon_int);
2338 priv->rxon_timing.beacon_interval =
2339 iwl_adjust_beacon_interval(
2340 le16_to_cpu(priv->rxon_timing.beacon_interval));
2343 priv->rxon_timing.atim_window = 0;
2345 priv->rxon_timing.beacon_interval =
2346 iwl_adjust_beacon_interval(conf->beacon_int);
2347 /* TODO: we need to get atim_window from upper stack
2348 * for now we set to 0 */
2349 priv->rxon_timing.atim_window = 0;
2353 (le16_to_cpu(priv->rxon_timing.beacon_interval) * 1024);
2354 result = do_div(tsf, interval_tm_unit);
2355 priv->rxon_timing.beacon_init_val =
2356 cpu_to_le32((u32) ((u64) interval_tm_unit - result));
2359 ("beacon interval %d beacon timer %d beacon tim %d\n",
2360 le16_to_cpu(priv->rxon_timing.beacon_interval),
2361 le32_to_cpu(priv->rxon_timing.beacon_init_val),
2362 le16_to_cpu(priv->rxon_timing.atim_window));
2365 static int iwl_scan_initiate(struct iwl_priv *priv)
2367 if (priv->iw_mode == IEEE80211_IF_TYPE_AP) {
2368 IWL_ERROR("APs don't scan.\n");
2372 if (!iwl_is_ready_rf(priv)) {
2373 IWL_DEBUG_SCAN("Aborting scan due to not ready.\n");
2377 if (test_bit(STATUS_SCANNING, &priv->status)) {
2378 IWL_DEBUG_SCAN("Scan already in progress.\n");
2382 if (test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
2383 IWL_DEBUG_SCAN("Scan request while abort pending. "
2388 IWL_DEBUG_INFO("Starting scan...\n");
2389 priv->scan_bands = 2;
2390 set_bit(STATUS_SCANNING, &priv->status);
2391 priv->scan_start = jiffies;
2392 priv->scan_pass_start = priv->scan_start;
2394 queue_work(priv->workqueue, &priv->request_scan);
2399 static int iwl_set_rxon_hwcrypto(struct iwl_priv *priv, int hw_decrypt)
2401 struct iwl_rxon_cmd *rxon = &priv->staging_rxon;
2404 rxon->filter_flags &= ~RXON_FILTER_DIS_DECRYPT_MSK;
2406 rxon->filter_flags |= RXON_FILTER_DIS_DECRYPT_MSK;
2411 static void iwl_set_flags_for_phymode(struct iwl_priv *priv, u8 phymode)
2413 if (phymode == MODE_IEEE80211A) {
2414 priv->staging_rxon.flags &=
2415 ~(RXON_FLG_BAND_24G_MSK | RXON_FLG_AUTO_DETECT_MSK
2416 | RXON_FLG_CCK_MSK);
2417 priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
2419 /* Copied from iwl_bg_post_associate() */
2420 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_SLOT_TIME)
2421 priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
2423 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
2425 if (priv->iw_mode == IEEE80211_IF_TYPE_IBSS)
2426 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
2428 priv->staging_rxon.flags |= RXON_FLG_BAND_24G_MSK;
2429 priv->staging_rxon.flags |= RXON_FLG_AUTO_DETECT_MSK;
2430 priv->staging_rxon.flags &= ~RXON_FLG_CCK_MSK;
2435 * initilize rxon structure with default values fromm eeprom
2437 static void iwl_connection_init_rx_config(struct iwl_priv *priv)
2439 const struct iwl_channel_info *ch_info;
2441 memset(&priv->staging_rxon, 0, sizeof(priv->staging_rxon));
2443 switch (priv->iw_mode) {
2444 case IEEE80211_IF_TYPE_AP:
2445 priv->staging_rxon.dev_type = RXON_DEV_TYPE_AP;
2448 case IEEE80211_IF_TYPE_STA:
2449 priv->staging_rxon.dev_type = RXON_DEV_TYPE_ESS;
2450 priv->staging_rxon.filter_flags = RXON_FILTER_ACCEPT_GRP_MSK;
2453 case IEEE80211_IF_TYPE_IBSS:
2454 priv->staging_rxon.dev_type = RXON_DEV_TYPE_IBSS;
2455 priv->staging_rxon.flags = RXON_FLG_SHORT_PREAMBLE_MSK;
2456 priv->staging_rxon.filter_flags = RXON_FILTER_BCON_AWARE_MSK |
2457 RXON_FILTER_ACCEPT_GRP_MSK;
2460 case IEEE80211_IF_TYPE_MNTR:
2461 priv->staging_rxon.dev_type = RXON_DEV_TYPE_SNIFFER;
2462 priv->staging_rxon.filter_flags = RXON_FILTER_PROMISC_MSK |
2463 RXON_FILTER_CTL2HOST_MSK | RXON_FILTER_ACCEPT_GRP_MSK;
2468 /* TODO: Figure out when short_preamble would be set and cache from
2470 if (!hw_to_local(priv->hw)->short_preamble)
2471 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
2473 priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
2476 ch_info = iwl_get_channel_info(priv, priv->phymode,
2477 le16_to_cpu(priv->staging_rxon.channel));
2480 ch_info = &priv->channel_info[0];
2483 * in some case A channels are all non IBSS
2484 * in this case force B/G channel
2486 if ((priv->iw_mode == IEEE80211_IF_TYPE_IBSS) &&
2487 !(is_channel_ibss(ch_info)))
2488 ch_info = &priv->channel_info[0];
2490 priv->staging_rxon.channel = cpu_to_le16(ch_info->channel);
2491 if (is_channel_a_band(ch_info))
2492 priv->phymode = MODE_IEEE80211A;
2494 priv->phymode = MODE_IEEE80211G;
2496 iwl_set_flags_for_phymode(priv, priv->phymode);
2498 priv->staging_rxon.ofdm_basic_rates =
2499 (IWL_OFDM_RATES_MASK >> IWL_FIRST_OFDM_RATE) & 0xFF;
2500 priv->staging_rxon.cck_basic_rates =
2501 (IWL_CCK_RATES_MASK >> IWL_FIRST_CCK_RATE) & 0xF;
2504 static int iwl_set_mode(struct iwl_priv *priv, int mode)
2506 if (!iwl_is_ready_rf(priv))
2509 if (mode == IEEE80211_IF_TYPE_IBSS) {
2510 const struct iwl_channel_info *ch_info;
2512 ch_info = iwl_get_channel_info(priv,
2514 le16_to_cpu(priv->staging_rxon.channel));
2516 if (!ch_info || !is_channel_ibss(ch_info)) {
2517 IWL_ERROR("channel %d not IBSS channel\n",
2518 le16_to_cpu(priv->staging_rxon.channel));
2523 cancel_delayed_work(&priv->scan_check);
2524 if (iwl_scan_cancel_timeout(priv, 100)) {
2525 IWL_WARNING("Aborted scan still in progress after 100ms\n");
2526 IWL_DEBUG_MAC80211("leaving - scan abort failed.\n");
2530 priv->iw_mode = mode;
2532 iwl_connection_init_rx_config(priv);
2533 memcpy(priv->staging_rxon.node_addr, priv->mac_addr, ETH_ALEN);
2535 iwl_clear_stations_table(priv);
2537 iwl_commit_rxon(priv);
2542 static void iwl_build_tx_cmd_hwcrypto(struct iwl_priv *priv,
2543 struct ieee80211_tx_control *ctl,
2544 struct iwl_cmd *cmd,
2545 struct sk_buff *skb_frag,
2548 struct iwl_hw_key *keyinfo = &priv->stations[ctl->key_idx].keyinfo;
2550 switch (keyinfo->alg) {
2552 cmd->cmd.tx.sec_ctl = TX_CMD_SEC_CCM;
2553 memcpy(cmd->cmd.tx.key, keyinfo->key, keyinfo->keylen);
2554 IWL_DEBUG_TX("tx_cmd with aes hwcrypto\n");
2559 cmd->cmd.tx.sec_ctl = TX_CMD_SEC_TKIP;
2562 memcpy(cmd->cmd.tx.tkip_mic.byte, skb_frag->tail - 8,
2565 memset(cmd->cmd.tx.tkip_mic.byte, 0, 8);
2570 cmd->cmd.tx.sec_ctl = TX_CMD_SEC_WEP |
2571 (ctl->key_idx & TX_CMD_SEC_MSK) << TX_CMD_SEC_SHIFT;
2573 if (keyinfo->keylen == 13)
2574 cmd->cmd.tx.sec_ctl |= TX_CMD_SEC_KEY128;
2576 memcpy(&cmd->cmd.tx.key[3], keyinfo->key, keyinfo->keylen);
2578 IWL_DEBUG_TX("Configuring packet for WEP encryption "
2579 "with key %d\n", ctl->key_idx);
2583 printk(KERN_ERR "Unknown encode alg %d\n", keyinfo->alg);
2589 * handle build REPLY_TX command notification.
2591 static void iwl_build_tx_cmd_basic(struct iwl_priv *priv,
2592 struct iwl_cmd *cmd,
2593 struct ieee80211_tx_control *ctrl,
2594 struct ieee80211_hdr *hdr,
2595 int is_unicast, u8 std_id)
2598 u16 fc = le16_to_cpu(hdr->frame_control);
2599 __le32 tx_flags = cmd->cmd.tx.tx_flags;
2601 cmd->cmd.tx.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
2602 if (!(ctrl->flags & IEEE80211_TXCTL_NO_ACK)) {
2603 tx_flags |= TX_CMD_FLG_ACK_MSK;
2604 if ((fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_MGMT)
2605 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
2606 if (ieee80211_is_probe_response(fc) &&
2607 !(le16_to_cpu(hdr->seq_ctrl) & 0xf))
2608 tx_flags |= TX_CMD_FLG_TSF_MSK;
2610 tx_flags &= (~TX_CMD_FLG_ACK_MSK);
2611 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
2614 cmd->cmd.tx.sta_id = std_id;
2615 if (ieee80211_get_morefrag(hdr))
2616 tx_flags |= TX_CMD_FLG_MORE_FRAG_MSK;
2618 qc = ieee80211_get_qos_ctrl(hdr);
2620 cmd->cmd.tx.tid_tspec = (u8) (le16_to_cpu(*qc) & 0xf);
2621 tx_flags &= ~TX_CMD_FLG_SEQ_CTL_MSK;
2623 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
2625 if (ctrl->flags & IEEE80211_TXCTL_USE_RTS_CTS) {
2626 tx_flags |= TX_CMD_FLG_RTS_MSK;
2627 tx_flags &= ~TX_CMD_FLG_CTS_MSK;
2628 } else if (ctrl->flags & IEEE80211_TXCTL_USE_CTS_PROTECT) {
2629 tx_flags &= ~TX_CMD_FLG_RTS_MSK;
2630 tx_flags |= TX_CMD_FLG_CTS_MSK;
2633 if ((tx_flags & TX_CMD_FLG_RTS_MSK) || (tx_flags & TX_CMD_FLG_CTS_MSK))
2634 tx_flags |= TX_CMD_FLG_FULL_TXOP_PROT_MSK;
2636 tx_flags &= ~(TX_CMD_FLG_ANT_SEL_MSK);
2637 if ((fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_MGMT) {
2638 if ((fc & IEEE80211_FCTL_STYPE) == IEEE80211_STYPE_ASSOC_REQ ||
2639 (fc & IEEE80211_FCTL_STYPE) == IEEE80211_STYPE_REASSOC_REQ)
2640 cmd->cmd.tx.timeout.pm_frame_timeout =
2643 cmd->cmd.tx.timeout.pm_frame_timeout =
2646 cmd->cmd.tx.timeout.pm_frame_timeout = 0;
2648 cmd->cmd.tx.driver_txop = 0;
2649 cmd->cmd.tx.tx_flags = tx_flags;
2650 cmd->cmd.tx.next_frame_len = 0;
2653 static int iwl_get_sta_id(struct iwl_priv *priv, struct ieee80211_hdr *hdr)
2656 u16 fc = le16_to_cpu(hdr->frame_control);
2658 /* If this frame is broadcast or not data then use the broadcast
2660 if (((fc & IEEE80211_FCTL_FTYPE) != IEEE80211_FTYPE_DATA) ||
2661 is_multicast_ether_addr(hdr->addr1))
2662 return priv->hw_setting.bcast_sta_id;
2664 switch (priv->iw_mode) {
2666 /* If this frame is part of a BSS network (we're a station), then
2667 * we use the AP's station id */
2668 case IEEE80211_IF_TYPE_STA:
2671 /* If we are an AP, then find the station, or use BCAST */
2672 case IEEE80211_IF_TYPE_AP:
2673 sta_id = iwl_hw_find_station(priv, hdr->addr1);
2674 if (sta_id != IWL_INVALID_STATION)
2676 return priv->hw_setting.bcast_sta_id;
2678 /* If this frame is part of a IBSS network, then we use the
2679 * target specific station id */
2680 case IEEE80211_IF_TYPE_IBSS: {
2681 DECLARE_MAC_BUF(mac);
2683 sta_id = iwl_hw_find_station(priv, hdr->addr1);
2684 if (sta_id != IWL_INVALID_STATION)
2687 sta_id = iwl_add_station(priv, hdr->addr1, 0, CMD_ASYNC);
2689 if (sta_id != IWL_INVALID_STATION)
2692 IWL_DEBUG_DROP("Station %s not in station map. "
2693 "Defaulting to broadcast...\n",
2694 print_mac(mac, hdr->addr1));
2695 iwl_print_hex_dump(IWL_DL_DROP, (u8 *) hdr, sizeof(*hdr));
2696 return priv->hw_setting.bcast_sta_id;
2699 IWL_WARNING("Unkown mode of operation: %d", priv->iw_mode);
2700 return priv->hw_setting.bcast_sta_id;
2705 * start REPLY_TX command process
2707 static int iwl_tx_skb(struct iwl_priv *priv,
2708 struct sk_buff *skb, struct ieee80211_tx_control *ctl)
2710 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
2711 struct iwl_tfd_frame *tfd;
2713 int txq_id = ctl->queue;
2714 struct iwl_tx_queue *txq = NULL;
2715 struct iwl_queue *q = NULL;
2716 dma_addr_t phys_addr;
2717 dma_addr_t txcmd_phys;
2718 struct iwl_cmd *out_cmd = NULL;
2719 u16 len, idx, len_org;
2720 u8 id, hdr_len, unicast;
2725 u8 wait_write_ptr = 0;
2726 unsigned long flags;
2729 spin_lock_irqsave(&priv->lock, flags);
2730 if (iwl_is_rfkill(priv)) {
2731 IWL_DEBUG_DROP("Dropping - RF KILL\n");
2735 if (!priv->interface_id) {
2736 IWL_DEBUG_DROP("Dropping - !priv->interface_id\n");
2740 if ((ctl->tx_rate & 0xFF) == IWL_INVALID_RATE) {
2741 IWL_ERROR("ERROR: No TX rate available.\n");
2745 unicast = !is_multicast_ether_addr(hdr->addr1);
2748 fc = le16_to_cpu(hdr->frame_control);
2750 #ifdef CONFIG_IWLWIFI_DEBUG
2751 if (ieee80211_is_auth(fc))
2752 IWL_DEBUG_TX("Sending AUTH frame\n");
2753 else if (ieee80211_is_assoc_request(fc))
2754 IWL_DEBUG_TX("Sending ASSOC frame\n");
2755 else if (ieee80211_is_reassoc_request(fc))
2756 IWL_DEBUG_TX("Sending REASSOC frame\n");
2759 if (!iwl_is_associated(priv) &&
2760 ((fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_DATA)) {
2761 IWL_DEBUG_DROP("Dropping - !iwl_is_associated\n");
2765 spin_unlock_irqrestore(&priv->lock, flags);
2767 hdr_len = ieee80211_get_hdrlen(fc);
2768 sta_id = iwl_get_sta_id(priv, hdr);
2769 if (sta_id == IWL_INVALID_STATION) {
2770 DECLARE_MAC_BUF(mac);
2772 IWL_DEBUG_DROP("Dropping - INVALID STATION: %s\n",
2773 print_mac(mac, hdr->addr1));
2777 IWL_DEBUG_RATE("station Id %d\n", sta_id);
2779 qc = ieee80211_get_qos_ctrl(hdr);
2781 u8 tid = (u8)(le16_to_cpu(*qc) & 0xf);
2782 seq_number = priv->stations[sta_id].tid[tid].seq_number &
2784 hdr->seq_ctrl = cpu_to_le16(seq_number) |
2786 __constant_cpu_to_le16(IEEE80211_SCTL_FRAG));
2789 txq = &priv->txq[txq_id];
2792 spin_lock_irqsave(&priv->lock, flags);
2794 tfd = &txq->bd[q->first_empty];
2795 memset(tfd, 0, sizeof(*tfd));
2796 control_flags = (u32 *) tfd;
2797 idx = get_cmd_index(q, q->first_empty, 0);
2799 memset(&(txq->txb[q->first_empty]), 0, sizeof(struct iwl_tx_info));
2800 txq->txb[q->first_empty].skb[0] = skb;
2801 memcpy(&(txq->txb[q->first_empty].status.control),
2802 ctl, sizeof(struct ieee80211_tx_control));
2803 out_cmd = &txq->cmd[idx];
2804 memset(&out_cmd->hdr, 0, sizeof(out_cmd->hdr));
2805 memset(&out_cmd->cmd.tx, 0, sizeof(out_cmd->cmd.tx));
2806 out_cmd->hdr.cmd = REPLY_TX;
2807 out_cmd->hdr.sequence = cpu_to_le16((u16)(QUEUE_TO_SEQ(txq_id) |
2808 INDEX_TO_SEQ(q->first_empty)));
2809 /* copy frags header */
2810 memcpy(out_cmd->cmd.tx.hdr, hdr, hdr_len);
2812 /* hdr = (struct ieee80211_hdr *)out_cmd->cmd.tx.hdr; */
2813 len = priv->hw_setting.tx_cmd_len +
2814 sizeof(struct iwl_cmd_header) + hdr_len;
2817 len = (len + 3) & ~3;
2824 txcmd_phys = txq->dma_addr_cmd + sizeof(struct iwl_cmd) * idx +
2825 offsetof(struct iwl_cmd, hdr);
2827 iwl_hw_txq_attach_buf_to_tfd(priv, tfd, txcmd_phys, len);
2829 if (!(ctl->flags & IEEE80211_TXCTL_DO_NOT_ENCRYPT))
2830 iwl_build_tx_cmd_hwcrypto(priv, ctl, out_cmd, skb, 0);
2832 /* 802.11 null functions have no payload... */
2833 len = skb->len - hdr_len;
2835 phys_addr = pci_map_single(priv->pci_dev, skb->data + hdr_len,
2836 len, PCI_DMA_TODEVICE);
2837 iwl_hw_txq_attach_buf_to_tfd(priv, tfd, phys_addr, len);
2840 /* If there is no payload, then only one TFD is used */
2842 *control_flags = TFD_CTL_COUNT_SET(1);
2844 *control_flags = TFD_CTL_COUNT_SET(2) |
2845 TFD_CTL_PAD_SET(U32_PAD(len));
2847 len = (u16)skb->len;
2848 out_cmd->cmd.tx.len = cpu_to_le16(len);
2850 /* TODO need this for burst mode later on */
2851 iwl_build_tx_cmd_basic(priv, out_cmd, ctl, hdr, unicast, sta_id);
2853 /* set is_hcca to 0; it probably will never be implemented */
2854 iwl_hw_build_tx_cmd_rate(priv, out_cmd, ctl, hdr, sta_id, 0);
2856 out_cmd->cmd.tx.tx_flags &= ~TX_CMD_FLG_ANT_A_MSK;
2857 out_cmd->cmd.tx.tx_flags &= ~TX_CMD_FLG_ANT_B_MSK;
2859 if (!ieee80211_get_morefrag(hdr)) {
2860 txq->need_update = 1;
2862 u8 tid = (u8)(le16_to_cpu(*qc) & 0xf);
2863 priv->stations[sta_id].tid[tid].seq_number = seq_number;
2867 txq->need_update = 0;
2870 iwl_print_hex_dump(IWL_DL_TX, out_cmd->cmd.payload,
2871 sizeof(out_cmd->cmd.tx));
2873 iwl_print_hex_dump(IWL_DL_TX, (u8 *)out_cmd->cmd.tx.hdr,
2874 ieee80211_get_hdrlen(fc));
2876 q->first_empty = iwl_queue_inc_wrap(q->first_empty, q->n_bd);
2877 rc = iwl_tx_queue_update_write_ptr(priv, txq);
2878 spin_unlock_irqrestore(&priv->lock, flags);
2883 if ((iwl_queue_space(q) < q->high_mark)
2884 && priv->mac80211_registered) {
2885 if (wait_write_ptr) {
2886 spin_lock_irqsave(&priv->lock, flags);
2887 txq->need_update = 1;
2888 iwl_tx_queue_update_write_ptr(priv, txq);
2889 spin_unlock_irqrestore(&priv->lock, flags);
2892 ieee80211_stop_queue(priv->hw, ctl->queue);
2898 spin_unlock_irqrestore(&priv->lock, flags);
2903 static void iwl_set_rate(struct iwl_priv *priv)
2905 const struct ieee80211_hw_mode *hw = NULL;
2906 struct ieee80211_rate *rate;
2909 hw = iwl_get_hw_mode(priv, priv->phymode);
2911 priv->active_rate = 0;
2912 priv->active_rate_basic = 0;
2914 IWL_DEBUG_RATE("Setting rates for 802.11%c\n",
2915 hw->mode == MODE_IEEE80211A ?
2916 'a' : ((hw->mode == MODE_IEEE80211B) ? 'b' : 'g'));
2918 for (i = 0; i < hw->num_rates; i++) {
2919 rate = &(hw->rates[i]);
2920 if ((rate->val < IWL_RATE_COUNT) &&
2921 (rate->flags & IEEE80211_RATE_SUPPORTED)) {
2922 IWL_DEBUG_RATE("Adding rate index %d (plcp %d)%s\n",
2923 rate->val, iwl_rates[rate->val].plcp,
2924 (rate->flags & IEEE80211_RATE_BASIC) ?
2926 priv->active_rate |= (1 << rate->val);
2927 if (rate->flags & IEEE80211_RATE_BASIC)
2928 priv->active_rate_basic |= (1 << rate->val);
2930 IWL_DEBUG_RATE("Not adding rate %d (plcp %d)\n",
2931 rate->val, iwl_rates[rate->val].plcp);
2934 IWL_DEBUG_RATE("Set active_rate = %0x, active_rate_basic = %0x\n",
2935 priv->active_rate, priv->active_rate_basic);
2938 * If a basic rate is configured, then use it (adding IWL_RATE_1M_MASK)
2939 * otherwise set it to the default of all CCK rates and 6, 12, 24 for
2942 if (priv->active_rate_basic & IWL_CCK_BASIC_RATES_MASK)
2943 priv->staging_rxon.cck_basic_rates =
2944 ((priv->active_rate_basic &
2945 IWL_CCK_RATES_MASK) >> IWL_FIRST_CCK_RATE) & 0xF;
2947 priv->staging_rxon.cck_basic_rates =
2948 (IWL_CCK_BASIC_RATES_MASK >> IWL_FIRST_CCK_RATE) & 0xF;
2950 if (priv->active_rate_basic & IWL_OFDM_BASIC_RATES_MASK)
2951 priv->staging_rxon.ofdm_basic_rates =
2952 ((priv->active_rate_basic &
2953 (IWL_OFDM_BASIC_RATES_MASK | IWL_RATE_6M_MASK)) >>
2954 IWL_FIRST_OFDM_RATE) & 0xFF;
2956 priv->staging_rxon.ofdm_basic_rates =
2957 (IWL_OFDM_BASIC_RATES_MASK >> IWL_FIRST_OFDM_RATE) & 0xFF;
2960 static void iwl_radio_kill_sw(struct iwl_priv *priv, int disable_radio)
2962 unsigned long flags;
2964 if (!!disable_radio == test_bit(STATUS_RF_KILL_SW, &priv->status))
2967 IWL_DEBUG_RF_KILL("Manual SW RF KILL set to: RADIO %s\n",
2968 disable_radio ? "OFF" : "ON");
2970 if (disable_radio) {
2971 iwl_scan_cancel(priv);
2972 /* FIXME: This is a workaround for AP */
2973 if (priv->iw_mode != IEEE80211_IF_TYPE_AP) {
2974 spin_lock_irqsave(&priv->lock, flags);
2975 iwl_write32(priv, CSR_UCODE_DRV_GP1_SET,
2976 CSR_UCODE_SW_BIT_RFKILL);
2977 spin_unlock_irqrestore(&priv->lock, flags);
2978 iwl_send_card_state(priv, CARD_STATE_CMD_DISABLE, 0);
2979 set_bit(STATUS_RF_KILL_SW, &priv->status);
2984 spin_lock_irqsave(&priv->lock, flags);
2985 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
2987 clear_bit(STATUS_RF_KILL_SW, &priv->status);
2988 spin_unlock_irqrestore(&priv->lock, flags);
2993 spin_lock_irqsave(&priv->lock, flags);
2994 iwl_read32(priv, CSR_UCODE_DRV_GP1);
2995 if (!iwl_grab_restricted_access(priv))
2996 iwl_release_restricted_access(priv);
2997 spin_unlock_irqrestore(&priv->lock, flags);
2999 if (test_bit(STATUS_RF_KILL_HW, &priv->status)) {
3000 IWL_DEBUG_RF_KILL("Can not turn radio back on - "
3001 "disabled by HW switch\n");
3005 queue_work(priv->workqueue, &priv->restart);
3009 void iwl_set_decrypted_flag(struct iwl_priv *priv, struct sk_buff *skb,
3010 u32 decrypt_res, struct ieee80211_rx_status *stats)
3013 le16_to_cpu(((struct ieee80211_hdr *)skb->data)->frame_control);
3015 if (priv->active_rxon.filter_flags & RXON_FILTER_DIS_DECRYPT_MSK)
3018 if (!(fc & IEEE80211_FCTL_PROTECTED))
3021 IWL_DEBUG_RX("decrypt_res:0x%x\n", decrypt_res);
3022 switch (decrypt_res & RX_RES_STATUS_SEC_TYPE_MSK) {
3023 case RX_RES_STATUS_SEC_TYPE_TKIP:
3024 if ((decrypt_res & RX_RES_STATUS_DECRYPT_TYPE_MSK) ==
3025 RX_RES_STATUS_BAD_ICV_MIC)
3026 stats->flag |= RX_FLAG_MMIC_ERROR;
3027 case RX_RES_STATUS_SEC_TYPE_WEP:
3028 case RX_RES_STATUS_SEC_TYPE_CCMP:
3029 if ((decrypt_res & RX_RES_STATUS_DECRYPT_TYPE_MSK) ==
3030 RX_RES_STATUS_DECRYPT_OK) {
3031 IWL_DEBUG_RX("hw decrypt successfully!!!\n");
3032 stats->flag |= RX_FLAG_DECRYPTED;
3041 void iwl_handle_data_packet_monitor(struct iwl_priv *priv,
3042 struct iwl_rx_mem_buffer *rxb,
3043 void *data, short len,
3044 struct ieee80211_rx_status *stats,
3047 struct iwl_rt_rx_hdr *iwl_rt;
3049 /* First cache any information we need before we overwrite
3050 * the information provided in the skb from the hardware */
3051 s8 signal = stats->ssi;
3053 int rate = stats->rate;
3054 u64 tsf = stats->mactime;
3055 __le16 phy_flags_hw = cpu_to_le16(phy_flags);
3057 /* We received data from the HW, so stop the watchdog */
3058 if (len > IWL_RX_BUF_SIZE - sizeof(*iwl_rt)) {
3059 IWL_DEBUG_DROP("Dropping too large packet in monitor\n");
3063 /* copy the frame data to write after where the radiotap header goes */
3064 iwl_rt = (void *)rxb->skb->data;
3065 memmove(iwl_rt->payload, data, len);
3067 iwl_rt->rt_hdr.it_version = PKTHDR_RADIOTAP_VERSION;
3068 iwl_rt->rt_hdr.it_pad = 0; /* always good to zero */
3070 /* total header + data */
3071 iwl_rt->rt_hdr.it_len = cpu_to_le16(sizeof(*iwl_rt));
3073 /* Set the size of the skb to the size of the frame */
3074 skb_put(rxb->skb, sizeof(*iwl_rt) + len);
3076 /* Big bitfield of all the fields we provide in radiotap */
3077 iwl_rt->rt_hdr.it_present =
3078 cpu_to_le32((1 << IEEE80211_RADIOTAP_TSFT) |
3079 (1 << IEEE80211_RADIOTAP_FLAGS) |
3080 (1 << IEEE80211_RADIOTAP_RATE) |
3081 (1 << IEEE80211_RADIOTAP_CHANNEL) |
3082 (1 << IEEE80211_RADIOTAP_DBM_ANTSIGNAL) |
3083 (1 << IEEE80211_RADIOTAP_DBM_ANTNOISE) |
3084 (1 << IEEE80211_RADIOTAP_ANTENNA));
3086 /* Zero the flags, we'll add to them as we go */
3087 iwl_rt->rt_flags = 0;
3089 iwl_rt->rt_tsf = cpu_to_le64(tsf);
3091 /* Convert to dBm */
3092 iwl_rt->rt_dbmsignal = signal;
3093 iwl_rt->rt_dbmnoise = noise;
3095 /* Convert the channel frequency and set the flags */
3096 iwl_rt->rt_channelMHz = cpu_to_le16(stats->freq);
3097 if (!(phy_flags_hw & RX_RES_PHY_FLAGS_BAND_24_MSK))
3098 iwl_rt->rt_chbitmask =
3099 cpu_to_le16((IEEE80211_CHAN_OFDM | IEEE80211_CHAN_5GHZ));
3100 else if (phy_flags_hw & RX_RES_PHY_FLAGS_MOD_CCK_MSK)
3101 iwl_rt->rt_chbitmask =
3102 cpu_to_le16((IEEE80211_CHAN_CCK | IEEE80211_CHAN_2GHZ));
3104 iwl_rt->rt_chbitmask =
3105 cpu_to_le16((IEEE80211_CHAN_OFDM | IEEE80211_CHAN_2GHZ));
3107 rate = iwl_rate_index_from_plcp(rate);
3109 iwl_rt->rt_rate = 0;
3111 iwl_rt->rt_rate = iwl_rates[rate].ieee;
3113 /* antenna number */
3114 iwl_rt->rt_antenna =
3115 le16_to_cpu(phy_flags_hw & RX_RES_PHY_FLAGS_ANTENNA_MSK) >> 4;
3117 /* set the preamble flag if we have it */
3118 if (phy_flags_hw & RX_RES_PHY_FLAGS_SHORT_PREAMBLE_MSK)
3119 iwl_rt->rt_flags |= IEEE80211_RADIOTAP_F_SHORTPRE;
3121 IWL_DEBUG_RX("Rx packet of %d bytes.\n", rxb->skb->len);
3123 stats->flag |= RX_FLAG_RADIOTAP;
3124 ieee80211_rx_irqsafe(priv->hw, rxb->skb, stats);
3129 #define IWL_PACKET_RETRY_TIME HZ
3131 int is_duplicate_packet(struct iwl_priv *priv, struct ieee80211_hdr *header)
3133 u16 sc = le16_to_cpu(header->seq_ctrl);
3134 u16 seq = (sc & IEEE80211_SCTL_SEQ) >> 4;
3135 u16 frag = sc & IEEE80211_SCTL_FRAG;
3136 u16 *last_seq, *last_frag;
3137 unsigned long *last_time;