Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1 | /****************************************************************************** |
| 2 | * |
Reinette Chatre | eb7ae89 | 2008-03-11 16:17:17 -0700 | [diff] [blame] | 3 | * Copyright(c) 2003 - 2008 Intel Corporation. All rights reserved. |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4 | * |
| 5 | * Portions of this file are derived from the ipw3945 project, as well |
| 6 | * as portions of the ieee80211 subsystem header files. |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or modify it |
| 9 | * under the terms of version 2 of the GNU General Public License as |
| 10 | * published by the Free Software Foundation. |
| 11 | * |
| 12 | * This program is distributed in the hope that it will be useful, but WITHOUT |
| 13 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 14 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
| 15 | * more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU General Public License along with |
| 18 | * this program; if not, write to the Free Software Foundation, Inc., |
| 19 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA |
| 20 | * |
| 21 | * The full GNU General Public License is included in this distribution in the |
| 22 | * file called LICENSE. |
| 23 | * |
| 24 | * Contact Information: |
| 25 | * James P. Ketrenos <ipw2100-admin@linux.intel.com> |
| 26 | * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 |
| 27 | * |
| 28 | *****************************************************************************/ |
| 29 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 30 | #include <linux/kernel.h> |
| 31 | #include <linux/module.h> |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 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> |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 40 | #include <linux/etherdevice.h> |
| 41 | #include <linux/if_arp.h> |
| 42 | |
| 43 | #include <net/ieee80211_radiotap.h> |
John W. Linville | 7e272fc | 2008-09-24 18:13:14 -0400 | [diff] [blame] | 44 | #include <net/lib80211.h> |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 45 | #include <net/mac80211.h> |
| 46 | |
| 47 | #include <asm/div64.h> |
| 48 | |
Tomas Winkler | 82b9a12 | 2008-03-04 18:09:30 -0800 | [diff] [blame] | 49 | #include "iwl-3945-core.h" |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 50 | #include "iwl-3945.h" |
| 51 | #include "iwl-helpers.h" |
| 52 | |
Christoph Hellwig | c8b0e6e | 2007-10-25 17:15:51 +0800 | [diff] [blame] | 53 | #ifdef CONFIG_IWL3945_DEBUG |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 54 | u32 iwl3945_debug_level; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 55 | #endif |
| 56 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 57 | static int iwl3945_tx_queue_update_write_ptr(struct iwl3945_priv *priv, |
| 58 | struct iwl3945_tx_queue *txq); |
Christoph Hellwig | 416e143 | 2007-10-25 17:15:49 +0800 | [diff] [blame] | 59 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 60 | /****************************************************************************** |
| 61 | * |
| 62 | * module boiler plate |
| 63 | * |
| 64 | ******************************************************************************/ |
| 65 | |
| 66 | /* module parameters */ |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 67 | static int iwl3945_param_disable_hw_scan; /* def: 0 = use 3945's h/w scan */ |
| 68 | static int iwl3945_param_debug; /* def: 0 = minimal debug log messages */ |
| 69 | static int iwl3945_param_disable; /* def: 0 = enable radio */ |
Ben Cahill | 9fbab51 | 2007-11-29 11:09:47 +0800 | [diff] [blame] | 70 | static int iwl3945_param_antenna; /* def: 0 = both antennas (use diversity) */ |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 71 | int iwl3945_param_hwcrypto; /* def: 0 = use software encryption */ |
| 72 | static int iwl3945_param_qos_enable = 1; /* def: 1 = use quality of service */ |
Ron Rindjunsky | dfe7d45 | 2008-04-15 16:01:45 -0700 | [diff] [blame] | 73 | int iwl3945_param_queues_num = IWL39_MAX_NUM_QUEUES; /* def: 8 Tx queues */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 74 | |
| 75 | /* |
| 76 | * module name, copyright, version, etc. |
| 77 | * NOTE: DRV_NAME is defined in iwlwifi.h for use by iwl-debug.h and printk |
| 78 | */ |
| 79 | |
| 80 | #define DRV_DESCRIPTION \ |
| 81 | "Intel(R) PRO/Wireless 3945ABG/BG Network Connection driver for Linux" |
| 82 | |
Christoph Hellwig | c8b0e6e | 2007-10-25 17:15:51 +0800 | [diff] [blame] | 83 | #ifdef CONFIG_IWL3945_DEBUG |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 84 | #define VD "d" |
| 85 | #else |
| 86 | #define VD |
| 87 | #endif |
| 88 | |
Christoph Hellwig | c8b0e6e | 2007-10-25 17:15:51 +0800 | [diff] [blame] | 89 | #ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 90 | #define VS "s" |
| 91 | #else |
| 92 | #define VS |
| 93 | #endif |
| 94 | |
Reinette Chatre | b9e0b44 | 2008-02-08 16:39:11 -0800 | [diff] [blame] | 95 | #define IWLWIFI_VERSION "1.2.26k" VD VS |
Reinette Chatre | eb7ae89 | 2008-03-11 16:17:17 -0700 | [diff] [blame] | 96 | #define DRV_COPYRIGHT "Copyright(c) 2003-2008 Intel Corporation" |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 97 | #define DRV_VERSION IWLWIFI_VERSION |
| 98 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 99 | |
| 100 | MODULE_DESCRIPTION(DRV_DESCRIPTION); |
| 101 | MODULE_VERSION(DRV_VERSION); |
| 102 | MODULE_AUTHOR(DRV_COPYRIGHT); |
| 103 | MODULE_LICENSE("GPL"); |
| 104 | |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 105 | static const struct ieee80211_supported_band *iwl3945_get_band( |
| 106 | struct iwl3945_priv *priv, enum ieee80211_band band) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 107 | { |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 108 | return priv->hw->wiphy->bands[band]; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 109 | } |
| 110 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 111 | /*************** DMA-QUEUE-GENERAL-FUNCTIONS ***** |
| 112 | * DMA services |
| 113 | * |
| 114 | * Theory of operation |
| 115 | * |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 116 | * A Tx or Rx queue resides in host DRAM, and is comprised of a circular buffer |
| 117 | * of buffer descriptors, each of which points to one or more data buffers for |
| 118 | * the device to read from or fill. Driver and device exchange status of each |
| 119 | * queue via "read" and "write" pointers. Driver keeps minimum of 2 empty |
| 120 | * entries in each circular buffer, to protect against confusing empty and full |
| 121 | * queue states. |
| 122 | * |
| 123 | * The device reads or writes the data in the queues via the device's several |
| 124 | * DMA/FIFO channels. Each queue is mapped to a single DMA channel. |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 125 | * |
| 126 | * For Tx queue, there are low mark and high mark limits. If, after queuing |
| 127 | * the packet for Tx, free space become < low mark, Tx queue stopped. When |
| 128 | * reclaiming packets (on 'tx done IRQ), if free space become > high mark, |
| 129 | * Tx queue resumed. |
| 130 | * |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 131 | * The 3945 operates with six queues: One receive queue, one transmit queue |
| 132 | * (#4) for sending commands to the device firmware, and four transmit queues |
| 133 | * (#0-3) for data tx via EDCA. An additional 2 HCCA queues are unused. |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 134 | ***************************************************/ |
| 135 | |
Tomas Winkler | c54b679 | 2008-03-06 17:36:53 -0800 | [diff] [blame] | 136 | int iwl3945_queue_space(const struct iwl3945_queue *q) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 137 | { |
Tomas Winkler | fc4b685 | 2007-10-25 17:15:24 +0800 | [diff] [blame] | 138 | int s = q->read_ptr - q->write_ptr; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 139 | |
Tomas Winkler | fc4b685 | 2007-10-25 17:15:24 +0800 | [diff] [blame] | 140 | if (q->read_ptr > q->write_ptr) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 141 | s -= q->n_bd; |
| 142 | |
| 143 | if (s <= 0) |
| 144 | s += q->n_window; |
| 145 | /* keep some reserve to not confuse empty and full situations */ |
| 146 | s -= 2; |
| 147 | if (s < 0) |
| 148 | s = 0; |
| 149 | return s; |
| 150 | } |
| 151 | |
Tomas Winkler | c54b679 | 2008-03-06 17:36:53 -0800 | [diff] [blame] | 152 | int iwl3945_x2_queue_used(const struct iwl3945_queue *q, int i) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 153 | { |
Tomas Winkler | fc4b685 | 2007-10-25 17:15:24 +0800 | [diff] [blame] | 154 | return q->write_ptr > q->read_ptr ? |
| 155 | (i >= q->read_ptr && i < q->write_ptr) : |
| 156 | !(i < q->read_ptr && i >= q->write_ptr); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 157 | } |
| 158 | |
Tomas Winkler | c54b679 | 2008-03-06 17:36:53 -0800 | [diff] [blame] | 159 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 160 | static inline u8 get_cmd_index(struct iwl3945_queue *q, u32 index, int is_huge) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 161 | { |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 162 | /* This is for scan command, the big buffer at end of command array */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 163 | if (is_huge) |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 164 | return q->n_window; /* must be power of 2 */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 165 | |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 166 | /* Otherwise, use normal size buffers */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 167 | return index & (q->n_window - 1); |
| 168 | } |
| 169 | |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 170 | /** |
| 171 | * iwl3945_queue_init - Initialize queue's high/low-water and read/write indexes |
| 172 | */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 173 | static int iwl3945_queue_init(struct iwl3945_priv *priv, struct iwl3945_queue *q, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 174 | int count, int slots_num, u32 id) |
| 175 | { |
| 176 | q->n_bd = count; |
| 177 | q->n_window = slots_num; |
| 178 | q->id = id; |
| 179 | |
Tomas Winkler | c54b679 | 2008-03-06 17:36:53 -0800 | [diff] [blame] | 180 | /* count must be power-of-two size, otherwise iwl_queue_inc_wrap |
| 181 | * and iwl_queue_dec_wrap are broken. */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 182 | BUG_ON(!is_power_of_2(count)); |
| 183 | |
| 184 | /* slots_num must be power-of-two size, otherwise |
| 185 | * get_cmd_index is broken. */ |
| 186 | BUG_ON(!is_power_of_2(slots_num)); |
| 187 | |
| 188 | q->low_mark = q->n_window / 4; |
| 189 | if (q->low_mark < 4) |
| 190 | q->low_mark = 4; |
| 191 | |
| 192 | q->high_mark = q->n_window / 8; |
| 193 | if (q->high_mark < 2) |
| 194 | q->high_mark = 2; |
| 195 | |
Tomas Winkler | fc4b685 | 2007-10-25 17:15:24 +0800 | [diff] [blame] | 196 | q->write_ptr = q->read_ptr = 0; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 197 | |
| 198 | return 0; |
| 199 | } |
| 200 | |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 201 | /** |
| 202 | * iwl3945_tx_queue_alloc - Alloc driver data and TFD CB for one Tx/cmd queue |
| 203 | */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 204 | static int iwl3945_tx_queue_alloc(struct iwl3945_priv *priv, |
| 205 | struct iwl3945_tx_queue *txq, u32 id) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 206 | { |
| 207 | struct pci_dev *dev = priv->pci_dev; |
| 208 | |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 209 | /* Driver private data, only for Tx (not command) queues, |
| 210 | * not shared with device. */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 211 | if (id != IWL_CMD_QUEUE_NUM) { |
| 212 | txq->txb = kmalloc(sizeof(txq->txb[0]) * |
| 213 | TFD_QUEUE_SIZE_MAX, GFP_KERNEL); |
| 214 | if (!txq->txb) { |
Ian Schram | 01ebd06 | 2007-10-25 17:15:22 +0800 | [diff] [blame] | 215 | IWL_ERROR("kmalloc for auxiliary BD " |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 216 | "structures failed\n"); |
| 217 | goto error; |
| 218 | } |
| 219 | } else |
| 220 | txq->txb = NULL; |
| 221 | |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 222 | /* Circular buffer of transmit frame descriptors (TFDs), |
| 223 | * shared with device */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 224 | txq->bd = pci_alloc_consistent(dev, |
| 225 | sizeof(txq->bd[0]) * TFD_QUEUE_SIZE_MAX, |
| 226 | &txq->q.dma_addr); |
| 227 | |
| 228 | if (!txq->bd) { |
| 229 | IWL_ERROR("pci_alloc_consistent(%zd) failed\n", |
| 230 | sizeof(txq->bd[0]) * TFD_QUEUE_SIZE_MAX); |
| 231 | goto error; |
| 232 | } |
| 233 | txq->q.id = id; |
| 234 | |
| 235 | return 0; |
| 236 | |
| 237 | error: |
Tomas Winkler | 3ac7f14 | 2008-07-21 02:40:14 +0300 | [diff] [blame] | 238 | kfree(txq->txb); |
| 239 | txq->txb = NULL; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 240 | |
| 241 | return -ENOMEM; |
| 242 | } |
| 243 | |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 244 | /** |
| 245 | * iwl3945_tx_queue_init - Allocate and initialize one tx/cmd queue |
| 246 | */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 247 | int iwl3945_tx_queue_init(struct iwl3945_priv *priv, |
| 248 | struct iwl3945_tx_queue *txq, int slots_num, u32 txq_id) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 249 | { |
| 250 | struct pci_dev *dev = priv->pci_dev; |
| 251 | int len; |
| 252 | int rc = 0; |
| 253 | |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 254 | /* |
| 255 | * Alloc buffer array for commands (Tx or other types of commands). |
| 256 | * For the command queue (#4), allocate command space + one big |
| 257 | * command for scan, since scan command is very huge; the system will |
| 258 | * not have two scans at the same time, so only one is needed. |
| 259 | * For data Tx queues (all other queues), no super-size command |
| 260 | * space is needed. |
| 261 | */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 262 | len = sizeof(struct iwl3945_cmd) * slots_num; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 263 | if (txq_id == IWL_CMD_QUEUE_NUM) |
| 264 | len += IWL_MAX_SCAN_SIZE; |
| 265 | txq->cmd = pci_alloc_consistent(dev, len, &txq->dma_addr_cmd); |
| 266 | if (!txq->cmd) |
| 267 | return -ENOMEM; |
| 268 | |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 269 | /* Alloc driver data array and TFD circular buffer */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 270 | rc = iwl3945_tx_queue_alloc(priv, txq, txq_id); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 271 | if (rc) { |
| 272 | pci_free_consistent(dev, len, txq->cmd, txq->dma_addr_cmd); |
| 273 | |
| 274 | return -ENOMEM; |
| 275 | } |
| 276 | txq->need_update = 0; |
| 277 | |
| 278 | /* TFD_QUEUE_SIZE_MAX must be power-of-two size, otherwise |
Tomas Winkler | c54b679 | 2008-03-06 17:36:53 -0800 | [diff] [blame] | 279 | * iwl_queue_inc_wrap and iwl_queue_dec_wrap are broken. */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 280 | BUILD_BUG_ON(TFD_QUEUE_SIZE_MAX & (TFD_QUEUE_SIZE_MAX - 1)); |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 281 | |
| 282 | /* Initialize queue high/low-water, head/tail indexes */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 283 | iwl3945_queue_init(priv, &txq->q, TFD_QUEUE_SIZE_MAX, slots_num, txq_id); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 284 | |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 285 | /* Tell device where to find queue, enable DMA channel. */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 286 | iwl3945_hw_tx_queue_init(priv, txq); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 287 | |
| 288 | return 0; |
| 289 | } |
| 290 | |
| 291 | /** |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 292 | * iwl3945_tx_queue_free - Deallocate DMA queue. |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 293 | * @txq: Transmit queue to deallocate. |
| 294 | * |
| 295 | * Empty queue by removing and destroying all BD's. |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 296 | * Free all buffers. |
| 297 | * 0-fill, but do not free "txq" descriptor structure. |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 298 | */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 299 | void iwl3945_tx_queue_free(struct iwl3945_priv *priv, struct iwl3945_tx_queue *txq) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 300 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 301 | struct iwl3945_queue *q = &txq->q; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 302 | struct pci_dev *dev = priv->pci_dev; |
| 303 | int len; |
| 304 | |
| 305 | if (q->n_bd == 0) |
| 306 | return; |
| 307 | |
| 308 | /* first, empty all BD's */ |
Tomas Winkler | fc4b685 | 2007-10-25 17:15:24 +0800 | [diff] [blame] | 309 | for (; q->write_ptr != q->read_ptr; |
Tomas Winkler | c54b679 | 2008-03-06 17:36:53 -0800 | [diff] [blame] | 310 | q->read_ptr = iwl_queue_inc_wrap(q->read_ptr, q->n_bd)) |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 311 | iwl3945_hw_txq_free_tfd(priv, txq); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 312 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 313 | len = sizeof(struct iwl3945_cmd) * q->n_window; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 314 | if (q->id == IWL_CMD_QUEUE_NUM) |
| 315 | len += IWL_MAX_SCAN_SIZE; |
| 316 | |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 317 | /* De-alloc array of command/tx buffers */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 318 | pci_free_consistent(dev, len, txq->cmd, txq->dma_addr_cmd); |
| 319 | |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 320 | /* De-alloc circular buffer of TFDs */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 321 | if (txq->q.n_bd) |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 322 | pci_free_consistent(dev, sizeof(struct iwl3945_tfd_frame) * |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 323 | txq->q.n_bd, txq->bd, txq->q.dma_addr); |
| 324 | |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 325 | /* De-alloc array of per-TFD driver data */ |
Tomas Winkler | 3ac7f14 | 2008-07-21 02:40:14 +0300 | [diff] [blame] | 326 | kfree(txq->txb); |
| 327 | txq->txb = NULL; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 328 | |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 329 | /* 0-fill queue descriptor structure */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 330 | memset(txq, 0, sizeof(*txq)); |
| 331 | } |
| 332 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 333 | const u8 iwl3945_broadcast_addr[ETH_ALEN] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF }; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 334 | |
| 335 | /*************** STATION TABLE MANAGEMENT **** |
Ben Cahill | 9fbab51 | 2007-11-29 11:09:47 +0800 | [diff] [blame] | 336 | * mac80211 should be examined to determine if sta_info is duplicating |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 337 | * the functionality provided here |
| 338 | */ |
| 339 | |
| 340 | /**************************************************************/ |
Ian Schram | 01ebd06 | 2007-10-25 17:15:22 +0800 | [diff] [blame] | 341 | #if 0 /* temporary disable till we add real remove station */ |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 342 | /** |
| 343 | * iwl3945_remove_station - Remove driver's knowledge of station. |
| 344 | * |
| 345 | * NOTE: This does not remove station from device's station table. |
| 346 | */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 347 | static u8 iwl3945_remove_station(struct iwl3945_priv *priv, const u8 *addr, int is_ap) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 348 | { |
| 349 | int index = IWL_INVALID_STATION; |
| 350 | int i; |
| 351 | unsigned long flags; |
| 352 | |
| 353 | spin_lock_irqsave(&priv->sta_lock, flags); |
| 354 | |
| 355 | if (is_ap) |
| 356 | index = IWL_AP_ID; |
| 357 | else if (is_broadcast_ether_addr(addr)) |
| 358 | index = priv->hw_setting.bcast_sta_id; |
| 359 | else |
| 360 | for (i = IWL_STA_ID; i < priv->hw_setting.max_stations; i++) |
| 361 | if (priv->stations[i].used && |
| 362 | !compare_ether_addr(priv->stations[i].sta.sta.addr, |
| 363 | addr)) { |
| 364 | index = i; |
| 365 | break; |
| 366 | } |
| 367 | |
| 368 | if (unlikely(index == IWL_INVALID_STATION)) |
| 369 | goto out; |
| 370 | |
| 371 | if (priv->stations[index].used) { |
| 372 | priv->stations[index].used = 0; |
| 373 | priv->num_stations--; |
| 374 | } |
| 375 | |
| 376 | BUG_ON(priv->num_stations < 0); |
| 377 | |
| 378 | out: |
| 379 | spin_unlock_irqrestore(&priv->sta_lock, flags); |
| 380 | return 0; |
| 381 | } |
Zhu Yi | 556f8db | 2007-09-27 11:27:33 +0800 | [diff] [blame] | 382 | #endif |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 383 | |
| 384 | /** |
| 385 | * iwl3945_clear_stations_table - Clear the driver's station table |
| 386 | * |
| 387 | * NOTE: This does not clear or otherwise alter the device's station table. |
| 388 | */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 389 | static void iwl3945_clear_stations_table(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 390 | { |
| 391 | unsigned long flags; |
| 392 | |
| 393 | spin_lock_irqsave(&priv->sta_lock, flags); |
| 394 | |
| 395 | priv->num_stations = 0; |
| 396 | memset(priv->stations, 0, sizeof(priv->stations)); |
| 397 | |
| 398 | spin_unlock_irqrestore(&priv->sta_lock, flags); |
| 399 | } |
| 400 | |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 401 | /** |
| 402 | * iwl3945_add_station - Add station to station tables in driver and device |
| 403 | */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 404 | u8 iwl3945_add_station(struct iwl3945_priv *priv, const u8 *addr, int is_ap, u8 flags) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 405 | { |
| 406 | int i; |
| 407 | int index = IWL_INVALID_STATION; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 408 | struct iwl3945_station_entry *station; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 409 | unsigned long flags_spin; |
Zhu Yi | c14c521 | 2007-09-27 11:27:35 +0800 | [diff] [blame] | 410 | u8 rate; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 411 | |
| 412 | spin_lock_irqsave(&priv->sta_lock, flags_spin); |
| 413 | if (is_ap) |
| 414 | index = IWL_AP_ID; |
| 415 | else if (is_broadcast_ether_addr(addr)) |
| 416 | index = priv->hw_setting.bcast_sta_id; |
| 417 | else |
| 418 | for (i = IWL_STA_ID; i < priv->hw_setting.max_stations; i++) { |
| 419 | if (!compare_ether_addr(priv->stations[i].sta.sta.addr, |
| 420 | addr)) { |
| 421 | index = i; |
| 422 | break; |
| 423 | } |
| 424 | |
| 425 | if (!priv->stations[i].used && |
| 426 | index == IWL_INVALID_STATION) |
| 427 | index = i; |
| 428 | } |
| 429 | |
Ian Schram | 01ebd06 | 2007-10-25 17:15:22 +0800 | [diff] [blame] | 430 | /* These two conditions has the same outcome but keep them separate |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 431 | since they have different meaning */ |
| 432 | if (unlikely(index == IWL_INVALID_STATION)) { |
| 433 | spin_unlock_irqrestore(&priv->sta_lock, flags_spin); |
| 434 | return index; |
| 435 | } |
| 436 | |
| 437 | if (priv->stations[index].used && |
| 438 | !compare_ether_addr(priv->stations[index].sta.sta.addr, addr)) { |
| 439 | spin_unlock_irqrestore(&priv->sta_lock, flags_spin); |
| 440 | return index; |
| 441 | } |
| 442 | |
Johannes Berg | e174961 | 2008-10-27 15:59:26 -0700 | [diff] [blame] | 443 | IWL_DEBUG_ASSOC("Add STA ID %d: %pM\n", index, addr); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 444 | station = &priv->stations[index]; |
| 445 | station->used = 1; |
| 446 | priv->num_stations++; |
| 447 | |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 448 | /* Set up the REPLY_ADD_STA command to send to device */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 449 | memset(&station->sta, 0, sizeof(struct iwl3945_addsta_cmd)); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 450 | memcpy(station->sta.sta.addr, addr, ETH_ALEN); |
| 451 | station->sta.mode = 0; |
| 452 | station->sta.sta.sta_id = index; |
| 453 | station->sta.station_flags = 0; |
| 454 | |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 455 | if (priv->band == IEEE80211_BAND_5GHZ) |
Tomas Winkler | 6994633 | 2007-10-25 17:15:27 +0800 | [diff] [blame] | 456 | rate = IWL_RATE_6M_PLCP; |
| 457 | else |
| 458 | rate = IWL_RATE_1M_PLCP; |
Zhu Yi | c14c521 | 2007-09-27 11:27:35 +0800 | [diff] [blame] | 459 | |
| 460 | /* Turn on both antennas for the station... */ |
| 461 | station->sta.rate_n_flags = |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 462 | iwl3945_hw_set_rate_n_flags(rate, RATE_MCS_ANT_AB_MSK); |
Zhu Yi | c14c521 | 2007-09-27 11:27:35 +0800 | [diff] [blame] | 463 | station->current_rate.rate_n_flags = |
| 464 | le16_to_cpu(station->sta.rate_n_flags); |
| 465 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 466 | spin_unlock_irqrestore(&priv->sta_lock, flags_spin); |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 467 | |
| 468 | /* Add station to device's station table */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 469 | iwl3945_send_add_station(priv, &station->sta, flags); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 470 | return index; |
| 471 | |
| 472 | } |
| 473 | |
| 474 | /*************** DRIVER STATUS FUNCTIONS *****/ |
| 475 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 476 | static inline int iwl3945_is_ready(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 477 | { |
| 478 | /* The adapter is 'ready' if READY and GEO_CONFIGURED bits are |
| 479 | * set but EXIT_PENDING is not */ |
| 480 | return test_bit(STATUS_READY, &priv->status) && |
| 481 | test_bit(STATUS_GEO_CONFIGURED, &priv->status) && |
| 482 | !test_bit(STATUS_EXIT_PENDING, &priv->status); |
| 483 | } |
| 484 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 485 | static inline int iwl3945_is_alive(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 486 | { |
| 487 | return test_bit(STATUS_ALIVE, &priv->status); |
| 488 | } |
| 489 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 490 | static inline int iwl3945_is_init(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 491 | { |
| 492 | return test_bit(STATUS_INIT, &priv->status); |
| 493 | } |
| 494 | |
Adel Gadllah | 80fcc9e | 2008-07-01 17:49:50 +0200 | [diff] [blame] | 495 | static inline int iwl3945_is_rfkill_sw(struct iwl3945_priv *priv) |
| 496 | { |
| 497 | return test_bit(STATUS_RF_KILL_SW, &priv->status); |
| 498 | } |
| 499 | |
| 500 | static inline int iwl3945_is_rfkill_hw(struct iwl3945_priv *priv) |
| 501 | { |
| 502 | return test_bit(STATUS_RF_KILL_HW, &priv->status); |
| 503 | } |
| 504 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 505 | static inline int iwl3945_is_rfkill(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 506 | { |
Adel Gadllah | 80fcc9e | 2008-07-01 17:49:50 +0200 | [diff] [blame] | 507 | return iwl3945_is_rfkill_hw(priv) || |
| 508 | iwl3945_is_rfkill_sw(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 509 | } |
| 510 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 511 | static inline int iwl3945_is_ready_rf(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 512 | { |
| 513 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 514 | if (iwl3945_is_rfkill(priv)) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 515 | return 0; |
| 516 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 517 | return iwl3945_is_ready(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 518 | } |
| 519 | |
| 520 | /*************** HOST COMMAND QUEUE FUNCTIONS *****/ |
| 521 | |
Abhijeet Kolekar | c305606 | 2008-11-12 13:14:08 -0800 | [diff] [blame] | 522 | #define IWL_CMD(x) case x: return #x |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 523 | |
| 524 | static const char *get_cmd_string(u8 cmd) |
| 525 | { |
| 526 | switch (cmd) { |
| 527 | IWL_CMD(REPLY_ALIVE); |
| 528 | IWL_CMD(REPLY_ERROR); |
| 529 | IWL_CMD(REPLY_RXON); |
| 530 | IWL_CMD(REPLY_RXON_ASSOC); |
| 531 | IWL_CMD(REPLY_QOS_PARAM); |
| 532 | IWL_CMD(REPLY_RXON_TIMING); |
| 533 | IWL_CMD(REPLY_ADD_STA); |
| 534 | IWL_CMD(REPLY_REMOVE_STA); |
| 535 | IWL_CMD(REPLY_REMOVE_ALL_STA); |
| 536 | IWL_CMD(REPLY_3945_RX); |
| 537 | IWL_CMD(REPLY_TX); |
| 538 | IWL_CMD(REPLY_RATE_SCALE); |
| 539 | IWL_CMD(REPLY_LEDS_CMD); |
| 540 | IWL_CMD(REPLY_TX_LINK_QUALITY_CMD); |
| 541 | IWL_CMD(RADAR_NOTIFICATION); |
| 542 | IWL_CMD(REPLY_QUIET_CMD); |
| 543 | IWL_CMD(REPLY_CHANNEL_SWITCH); |
| 544 | IWL_CMD(CHANNEL_SWITCH_NOTIFICATION); |
| 545 | IWL_CMD(REPLY_SPECTRUM_MEASUREMENT_CMD); |
| 546 | IWL_CMD(SPECTRUM_MEASURE_NOTIFICATION); |
| 547 | IWL_CMD(POWER_TABLE_CMD); |
| 548 | IWL_CMD(PM_SLEEP_NOTIFICATION); |
| 549 | IWL_CMD(PM_DEBUG_STATISTIC_NOTIFIC); |
| 550 | IWL_CMD(REPLY_SCAN_CMD); |
| 551 | IWL_CMD(REPLY_SCAN_ABORT_CMD); |
| 552 | IWL_CMD(SCAN_START_NOTIFICATION); |
| 553 | IWL_CMD(SCAN_RESULTS_NOTIFICATION); |
| 554 | IWL_CMD(SCAN_COMPLETE_NOTIFICATION); |
| 555 | IWL_CMD(BEACON_NOTIFICATION); |
| 556 | IWL_CMD(REPLY_TX_BEACON); |
| 557 | IWL_CMD(WHO_IS_AWAKE_NOTIFICATION); |
| 558 | IWL_CMD(QUIET_NOTIFICATION); |
| 559 | IWL_CMD(REPLY_TX_PWR_TABLE_CMD); |
| 560 | IWL_CMD(MEASURE_ABORT_NOTIFICATION); |
| 561 | IWL_CMD(REPLY_BT_CONFIG); |
| 562 | IWL_CMD(REPLY_STATISTICS_CMD); |
| 563 | IWL_CMD(STATISTICS_NOTIFICATION); |
| 564 | IWL_CMD(REPLY_CARD_STATE_CMD); |
| 565 | IWL_CMD(CARD_STATE_NOTIFICATION); |
| 566 | IWL_CMD(MISSED_BEACONS_NOTIFICATION); |
| 567 | default: |
| 568 | return "UNKNOWN"; |
| 569 | |
| 570 | } |
| 571 | } |
| 572 | |
| 573 | #define HOST_COMPLETE_TIMEOUT (HZ / 2) |
| 574 | |
| 575 | /** |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 576 | * iwl3945_enqueue_hcmd - enqueue a uCode command |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 577 | * @priv: device private data point |
| 578 | * @cmd: a point to the ucode command structure |
| 579 | * |
| 580 | * The function returns < 0 values to indicate the operation is |
| 581 | * failed. On success, it turns the index (> 0) of command in the |
| 582 | * command queue. |
| 583 | */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 584 | static int iwl3945_enqueue_hcmd(struct iwl3945_priv *priv, struct iwl3945_host_cmd *cmd) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 585 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 586 | struct iwl3945_tx_queue *txq = &priv->txq[IWL_CMD_QUEUE_NUM]; |
| 587 | struct iwl3945_queue *q = &txq->q; |
| 588 | struct iwl3945_tfd_frame *tfd; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 589 | u32 *control_flags; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 590 | struct iwl3945_cmd *out_cmd; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 591 | u32 idx; |
| 592 | u16 fix_size = (u16)(cmd->len + sizeof(out_cmd->hdr)); |
| 593 | dma_addr_t phys_addr; |
| 594 | int pad; |
| 595 | u16 count; |
| 596 | int ret; |
| 597 | unsigned long flags; |
| 598 | |
| 599 | /* If any of the command structures end up being larger than |
| 600 | * the TFD_MAX_PAYLOAD_SIZE, and it sent as a 'small' command then |
| 601 | * we will need to increase the size of the TFD entries */ |
| 602 | BUG_ON((fix_size > TFD_MAX_PAYLOAD_SIZE) && |
| 603 | !(cmd->meta.flags & CMD_SIZE_HUGE)); |
| 604 | |
Gregory Greenman | c342a1b | 2008-02-06 11:20:40 -0800 | [diff] [blame] | 605 | |
| 606 | if (iwl3945_is_rfkill(priv)) { |
| 607 | IWL_DEBUG_INFO("Not sending command - RF KILL"); |
| 608 | return -EIO; |
| 609 | } |
| 610 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 611 | if (iwl3945_queue_space(q) < ((cmd->meta.flags & CMD_ASYNC) ? 2 : 1)) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 612 | IWL_ERROR("No space for Tx\n"); |
| 613 | return -ENOSPC; |
| 614 | } |
| 615 | |
| 616 | spin_lock_irqsave(&priv->hcmd_lock, flags); |
| 617 | |
Tomas Winkler | fc4b685 | 2007-10-25 17:15:24 +0800 | [diff] [blame] | 618 | tfd = &txq->bd[q->write_ptr]; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 619 | memset(tfd, 0, sizeof(*tfd)); |
| 620 | |
| 621 | control_flags = (u32 *) tfd; |
| 622 | |
Tomas Winkler | fc4b685 | 2007-10-25 17:15:24 +0800 | [diff] [blame] | 623 | idx = get_cmd_index(q, q->write_ptr, cmd->meta.flags & CMD_SIZE_HUGE); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 624 | out_cmd = &txq->cmd[idx]; |
| 625 | |
| 626 | out_cmd->hdr.cmd = cmd->id; |
| 627 | memcpy(&out_cmd->meta, &cmd->meta, sizeof(cmd->meta)); |
| 628 | memcpy(&out_cmd->cmd.payload, cmd->data, cmd->len); |
| 629 | |
| 630 | /* At this point, the out_cmd now has all of the incoming cmd |
| 631 | * information */ |
| 632 | |
| 633 | out_cmd->hdr.flags = 0; |
| 634 | out_cmd->hdr.sequence = cpu_to_le16(QUEUE_TO_SEQ(IWL_CMD_QUEUE_NUM) | |
Tomas Winkler | fc4b685 | 2007-10-25 17:15:24 +0800 | [diff] [blame] | 635 | INDEX_TO_SEQ(q->write_ptr)); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 636 | if (out_cmd->meta.flags & CMD_SIZE_HUGE) |
| 637 | out_cmd->hdr.sequence |= cpu_to_le16(SEQ_HUGE_FRAME); |
| 638 | |
| 639 | phys_addr = txq->dma_addr_cmd + sizeof(txq->cmd[0]) * idx + |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 640 | offsetof(struct iwl3945_cmd, hdr); |
| 641 | iwl3945_hw_txq_attach_buf_to_tfd(priv, tfd, phys_addr, fix_size); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 642 | |
| 643 | pad = U32_PAD(cmd->len); |
| 644 | count = TFD_CTL_COUNT_GET(*control_flags); |
| 645 | *control_flags = TFD_CTL_COUNT_SET(count) | TFD_CTL_PAD_SET(pad); |
| 646 | |
| 647 | IWL_DEBUG_HC("Sending command %s (#%x), seq: 0x%04X, " |
| 648 | "%d bytes at %d[%d]:%d\n", |
| 649 | get_cmd_string(out_cmd->hdr.cmd), |
| 650 | out_cmd->hdr.cmd, le16_to_cpu(out_cmd->hdr.sequence), |
Tomas Winkler | fc4b685 | 2007-10-25 17:15:24 +0800 | [diff] [blame] | 651 | fix_size, q->write_ptr, idx, IWL_CMD_QUEUE_NUM); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 652 | |
| 653 | txq->need_update = 1; |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 654 | |
| 655 | /* Increment and update queue's write index */ |
Tomas Winkler | c54b679 | 2008-03-06 17:36:53 -0800 | [diff] [blame] | 656 | q->write_ptr = iwl_queue_inc_wrap(q->write_ptr, q->n_bd); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 657 | ret = iwl3945_tx_queue_update_write_ptr(priv, txq); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 658 | |
| 659 | spin_unlock_irqrestore(&priv->hcmd_lock, flags); |
| 660 | return ret ? ret : idx; |
| 661 | } |
| 662 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 663 | static int iwl3945_send_cmd_async(struct iwl3945_priv *priv, struct iwl3945_host_cmd *cmd) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 664 | { |
| 665 | int ret; |
| 666 | |
| 667 | BUG_ON(!(cmd->meta.flags & CMD_ASYNC)); |
| 668 | |
| 669 | /* An asynchronous command can not expect an SKB to be set. */ |
| 670 | BUG_ON(cmd->meta.flags & CMD_WANT_SKB); |
| 671 | |
| 672 | /* An asynchronous command MUST have a callback. */ |
| 673 | BUG_ON(!cmd->meta.u.callback); |
| 674 | |
| 675 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) |
| 676 | return -EBUSY; |
| 677 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 678 | ret = iwl3945_enqueue_hcmd(priv, cmd); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 679 | if (ret < 0) { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 680 | IWL_ERROR("Error sending %s: iwl3945_enqueue_hcmd failed: %d\n", |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 681 | get_cmd_string(cmd->id), ret); |
| 682 | return ret; |
| 683 | } |
| 684 | return 0; |
| 685 | } |
| 686 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 687 | static int iwl3945_send_cmd_sync(struct iwl3945_priv *priv, struct iwl3945_host_cmd *cmd) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 688 | { |
| 689 | int cmd_idx; |
| 690 | int ret; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 691 | |
| 692 | BUG_ON(cmd->meta.flags & CMD_ASYNC); |
| 693 | |
| 694 | /* A synchronous command can not have a callback set. */ |
| 695 | BUG_ON(cmd->meta.u.callback != NULL); |
| 696 | |
Tomas Winkler | e547297 | 2008-03-28 16:21:12 -0700 | [diff] [blame] | 697 | if (test_and_set_bit(STATUS_HCMD_SYNC_ACTIVE, &priv->status)) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 698 | IWL_ERROR("Error sending %s: Already sending a host command\n", |
| 699 | get_cmd_string(cmd->id)); |
Tomas Winkler | e547297 | 2008-03-28 16:21:12 -0700 | [diff] [blame] | 700 | ret = -EBUSY; |
| 701 | goto out; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 702 | } |
| 703 | |
| 704 | set_bit(STATUS_HCMD_ACTIVE, &priv->status); |
| 705 | |
| 706 | if (cmd->meta.flags & CMD_WANT_SKB) |
| 707 | cmd->meta.source = &cmd->meta; |
| 708 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 709 | cmd_idx = iwl3945_enqueue_hcmd(priv, cmd); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 710 | if (cmd_idx < 0) { |
| 711 | ret = cmd_idx; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 712 | IWL_ERROR("Error sending %s: iwl3945_enqueue_hcmd failed: %d\n", |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 713 | get_cmd_string(cmd->id), ret); |
| 714 | goto out; |
| 715 | } |
| 716 | |
| 717 | ret = wait_event_interruptible_timeout(priv->wait_command_queue, |
| 718 | !test_bit(STATUS_HCMD_ACTIVE, &priv->status), |
| 719 | HOST_COMPLETE_TIMEOUT); |
| 720 | if (!ret) { |
| 721 | if (test_bit(STATUS_HCMD_ACTIVE, &priv->status)) { |
| 722 | IWL_ERROR("Error sending %s: time out after %dms.\n", |
| 723 | get_cmd_string(cmd->id), |
| 724 | jiffies_to_msecs(HOST_COMPLETE_TIMEOUT)); |
| 725 | |
| 726 | clear_bit(STATUS_HCMD_ACTIVE, &priv->status); |
| 727 | ret = -ETIMEDOUT; |
| 728 | goto cancel; |
| 729 | } |
| 730 | } |
| 731 | |
| 732 | if (test_bit(STATUS_RF_KILL_HW, &priv->status)) { |
| 733 | IWL_DEBUG_INFO("Command %s aborted: RF KILL Switch\n", |
| 734 | get_cmd_string(cmd->id)); |
| 735 | ret = -ECANCELED; |
| 736 | goto fail; |
| 737 | } |
| 738 | if (test_bit(STATUS_FW_ERROR, &priv->status)) { |
| 739 | IWL_DEBUG_INFO("Command %s failed: FW Error\n", |
| 740 | get_cmd_string(cmd->id)); |
| 741 | ret = -EIO; |
| 742 | goto fail; |
| 743 | } |
| 744 | if ((cmd->meta.flags & CMD_WANT_SKB) && !cmd->meta.u.skb) { |
| 745 | IWL_ERROR("Error: Response NULL in '%s'\n", |
| 746 | get_cmd_string(cmd->id)); |
| 747 | ret = -EIO; |
| 748 | goto out; |
| 749 | } |
| 750 | |
| 751 | ret = 0; |
| 752 | goto out; |
| 753 | |
| 754 | cancel: |
| 755 | if (cmd->meta.flags & CMD_WANT_SKB) { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 756 | struct iwl3945_cmd *qcmd; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 757 | |
| 758 | /* Cancel the CMD_WANT_SKB flag for the cmd in the |
| 759 | * TX cmd queue. Otherwise in case the cmd comes |
| 760 | * in later, it will possibly set an invalid |
| 761 | * address (cmd->meta.source). */ |
| 762 | qcmd = &priv->txq[IWL_CMD_QUEUE_NUM].cmd[cmd_idx]; |
| 763 | qcmd->meta.flags &= ~CMD_WANT_SKB; |
| 764 | } |
| 765 | fail: |
| 766 | if (cmd->meta.u.skb) { |
| 767 | dev_kfree_skb_any(cmd->meta.u.skb); |
| 768 | cmd->meta.u.skb = NULL; |
| 769 | } |
| 770 | out: |
Tomas Winkler | e547297 | 2008-03-28 16:21:12 -0700 | [diff] [blame] | 771 | clear_bit(STATUS_HCMD_SYNC_ACTIVE, &priv->status); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 772 | return ret; |
| 773 | } |
| 774 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 775 | int iwl3945_send_cmd(struct iwl3945_priv *priv, struct iwl3945_host_cmd *cmd) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 776 | { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 777 | if (cmd->meta.flags & CMD_ASYNC) |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 778 | return iwl3945_send_cmd_async(priv, cmd); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 779 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 780 | return iwl3945_send_cmd_sync(priv, cmd); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 781 | } |
| 782 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 783 | int iwl3945_send_cmd_pdu(struct iwl3945_priv *priv, u8 id, u16 len, const void *data) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 784 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 785 | struct iwl3945_host_cmd cmd = { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 786 | .id = id, |
| 787 | .len = len, |
| 788 | .data = data, |
| 789 | }; |
| 790 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 791 | return iwl3945_send_cmd_sync(priv, &cmd); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 792 | } |
| 793 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 794 | static int __must_check iwl3945_send_cmd_u32(struct iwl3945_priv *priv, u8 id, u32 val) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 795 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 796 | struct iwl3945_host_cmd cmd = { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 797 | .id = id, |
| 798 | .len = sizeof(val), |
| 799 | .data = &val, |
| 800 | }; |
| 801 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 802 | return iwl3945_send_cmd_sync(priv, &cmd); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 803 | } |
| 804 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 805 | int iwl3945_send_statistics_request(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 806 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 807 | return iwl3945_send_cmd_u32(priv, REPLY_STATISTICS_CMD, 0); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 808 | } |
| 809 | |
| 810 | /** |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 811 | * iwl3945_set_rxon_channel - Set the phymode and channel values in staging RXON |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 812 | * @band: 2.4 or 5 GHz band |
| 813 | * @channel: Any channel valid for the requested band |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 814 | |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 815 | * In addition to setting the staging RXON, priv->band is also set. |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 816 | * |
| 817 | * NOTE: Does not commit to the hardware; it sets appropriate bit fields |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 818 | * in the staging RXON flag structure based on the band |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 819 | */ |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 820 | static int iwl3945_set_rxon_channel(struct iwl3945_priv *priv, |
| 821 | enum ieee80211_band band, |
| 822 | u16 channel) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 823 | { |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 824 | if (!iwl3945_get_channel_info(priv, band, channel)) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 825 | IWL_DEBUG_INFO("Could not set channel to %d [%d]\n", |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 826 | channel, band); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 827 | return -EINVAL; |
| 828 | } |
| 829 | |
| 830 | if ((le16_to_cpu(priv->staging_rxon.channel) == channel) && |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 831 | (priv->band == band)) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 832 | return 0; |
| 833 | |
| 834 | priv->staging_rxon.channel = cpu_to_le16(channel); |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 835 | if (band == IEEE80211_BAND_5GHZ) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 836 | priv->staging_rxon.flags &= ~RXON_FLG_BAND_24G_MSK; |
| 837 | else |
| 838 | priv->staging_rxon.flags |= RXON_FLG_BAND_24G_MSK; |
| 839 | |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 840 | priv->band = band; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 841 | |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 842 | IWL_DEBUG_INFO("Staging channel set to %d [%d]\n", channel, band); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 843 | |
| 844 | return 0; |
| 845 | } |
| 846 | |
| 847 | /** |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 848 | * iwl3945_check_rxon_cmd - validate RXON structure is valid |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 849 | * |
| 850 | * NOTE: This is really only useful during development and can eventually |
| 851 | * be #ifdef'd out once the driver is stable and folks aren't actively |
| 852 | * making changes |
| 853 | */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 854 | static int iwl3945_check_rxon_cmd(struct iwl3945_rxon_cmd *rxon) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 855 | { |
| 856 | int error = 0; |
| 857 | int counter = 1; |
| 858 | |
| 859 | if (rxon->flags & RXON_FLG_BAND_24G_MSK) { |
| 860 | error |= le32_to_cpu(rxon->flags & |
| 861 | (RXON_FLG_TGJ_NARROW_BAND_MSK | |
| 862 | RXON_FLG_RADAR_DETECT_MSK)); |
| 863 | if (error) |
| 864 | IWL_WARNING("check 24G fields %d | %d\n", |
| 865 | counter++, error); |
| 866 | } else { |
| 867 | error |= (rxon->flags & RXON_FLG_SHORT_SLOT_MSK) ? |
| 868 | 0 : le32_to_cpu(RXON_FLG_SHORT_SLOT_MSK); |
| 869 | if (error) |
| 870 | IWL_WARNING("check 52 fields %d | %d\n", |
| 871 | counter++, error); |
| 872 | error |= le32_to_cpu(rxon->flags & RXON_FLG_CCK_MSK); |
| 873 | if (error) |
| 874 | IWL_WARNING("check 52 CCK %d | %d\n", |
| 875 | counter++, error); |
| 876 | } |
| 877 | error |= (rxon->node_addr[0] | rxon->bssid_addr[0]) & 0x1; |
| 878 | if (error) |
| 879 | IWL_WARNING("check mac addr %d | %d\n", counter++, error); |
| 880 | |
| 881 | /* make sure basic rates 6Mbps and 1Mbps are supported */ |
| 882 | error |= (((rxon->ofdm_basic_rates & IWL_RATE_6M_MASK) == 0) && |
| 883 | ((rxon->cck_basic_rates & IWL_RATE_1M_MASK) == 0)); |
| 884 | if (error) |
| 885 | IWL_WARNING("check basic rate %d | %d\n", counter++, error); |
| 886 | |
| 887 | error |= (le16_to_cpu(rxon->assoc_id) > 2007); |
| 888 | if (error) |
| 889 | IWL_WARNING("check assoc id %d | %d\n", counter++, error); |
| 890 | |
| 891 | error |= ((rxon->flags & (RXON_FLG_CCK_MSK | RXON_FLG_SHORT_SLOT_MSK)) |
| 892 | == (RXON_FLG_CCK_MSK | RXON_FLG_SHORT_SLOT_MSK)); |
| 893 | if (error) |
| 894 | IWL_WARNING("check CCK and short slot %d | %d\n", |
| 895 | counter++, error); |
| 896 | |
| 897 | error |= ((rxon->flags & (RXON_FLG_CCK_MSK | RXON_FLG_AUTO_DETECT_MSK)) |
| 898 | == (RXON_FLG_CCK_MSK | RXON_FLG_AUTO_DETECT_MSK)); |
| 899 | if (error) |
| 900 | IWL_WARNING("check CCK & auto detect %d | %d\n", |
| 901 | counter++, error); |
| 902 | |
| 903 | error |= ((rxon->flags & (RXON_FLG_AUTO_DETECT_MSK | |
| 904 | RXON_FLG_TGG_PROTECT_MSK)) == RXON_FLG_TGG_PROTECT_MSK); |
| 905 | if (error) |
| 906 | IWL_WARNING("check TGG and auto detect %d | %d\n", |
| 907 | counter++, error); |
| 908 | |
| 909 | if ((rxon->flags & RXON_FLG_DIS_DIV_MSK)) |
| 910 | error |= ((rxon->flags & (RXON_FLG_ANT_B_MSK | |
| 911 | RXON_FLG_ANT_A_MSK)) == 0); |
| 912 | if (error) |
| 913 | IWL_WARNING("check antenna %d %d\n", counter++, error); |
| 914 | |
| 915 | if (error) |
| 916 | IWL_WARNING("Tuning to channel %d\n", |
| 917 | le16_to_cpu(rxon->channel)); |
| 918 | |
| 919 | if (error) { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 920 | IWL_ERROR("Not a valid iwl3945_rxon_assoc_cmd field values\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 921 | return -1; |
| 922 | } |
| 923 | return 0; |
| 924 | } |
| 925 | |
| 926 | /** |
Ben Cahill | 9fbab51 | 2007-11-29 11:09:47 +0800 | [diff] [blame] | 927 | * iwl3945_full_rxon_required - check if full RXON (vs RXON_ASSOC) cmd is needed |
Ian Schram | 01ebd06 | 2007-10-25 17:15:22 +0800 | [diff] [blame] | 928 | * @priv: staging_rxon is compared to active_rxon |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 929 | * |
Ben Cahill | 9fbab51 | 2007-11-29 11:09:47 +0800 | [diff] [blame] | 930 | * If the RXON structure is changing enough to require a new tune, |
| 931 | * or is clearing the RXON_FILTER_ASSOC_MSK, then return 1 to indicate that |
| 932 | * a new tune (full RXON command, rather than RXON_ASSOC cmd) is required. |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 933 | */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 934 | static int iwl3945_full_rxon_required(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 935 | { |
| 936 | |
| 937 | /* These items are only settable from the full RXON command */ |
Ron Rindjunsky | 5d1e232 | 2008-06-30 17:23:04 +0800 | [diff] [blame] | 938 | if (!(iwl3945_is_associated(priv)) || |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 939 | compare_ether_addr(priv->staging_rxon.bssid_addr, |
| 940 | priv->active_rxon.bssid_addr) || |
| 941 | compare_ether_addr(priv->staging_rxon.node_addr, |
| 942 | priv->active_rxon.node_addr) || |
| 943 | compare_ether_addr(priv->staging_rxon.wlap_bssid_addr, |
| 944 | priv->active_rxon.wlap_bssid_addr) || |
| 945 | (priv->staging_rxon.dev_type != priv->active_rxon.dev_type) || |
| 946 | (priv->staging_rxon.channel != priv->active_rxon.channel) || |
| 947 | (priv->staging_rxon.air_propagation != |
| 948 | priv->active_rxon.air_propagation) || |
| 949 | (priv->staging_rxon.assoc_id != priv->active_rxon.assoc_id)) |
| 950 | return 1; |
| 951 | |
| 952 | /* flags, filter_flags, ofdm_basic_rates, and cck_basic_rates can |
| 953 | * be updated with the RXON_ASSOC command -- however only some |
| 954 | * flag transitions are allowed using RXON_ASSOC */ |
| 955 | |
| 956 | /* Check if we are not switching bands */ |
| 957 | if ((priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) != |
| 958 | (priv->active_rxon.flags & RXON_FLG_BAND_24G_MSK)) |
| 959 | return 1; |
| 960 | |
| 961 | /* Check if we are switching association toggle */ |
| 962 | if ((priv->staging_rxon.filter_flags & RXON_FILTER_ASSOC_MSK) != |
| 963 | (priv->active_rxon.filter_flags & RXON_FILTER_ASSOC_MSK)) |
| 964 | return 1; |
| 965 | |
| 966 | return 0; |
| 967 | } |
| 968 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 969 | static int iwl3945_send_rxon_assoc(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 970 | { |
| 971 | int rc = 0; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 972 | struct iwl3945_rx_packet *res = NULL; |
| 973 | struct iwl3945_rxon_assoc_cmd rxon_assoc; |
| 974 | struct iwl3945_host_cmd cmd = { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 975 | .id = REPLY_RXON_ASSOC, |
| 976 | .len = sizeof(rxon_assoc), |
| 977 | .meta.flags = CMD_WANT_SKB, |
| 978 | .data = &rxon_assoc, |
| 979 | }; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 980 | const struct iwl3945_rxon_cmd *rxon1 = &priv->staging_rxon; |
| 981 | const struct iwl3945_rxon_cmd *rxon2 = &priv->active_rxon; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 982 | |
| 983 | if ((rxon1->flags == rxon2->flags) && |
| 984 | (rxon1->filter_flags == rxon2->filter_flags) && |
| 985 | (rxon1->cck_basic_rates == rxon2->cck_basic_rates) && |
| 986 | (rxon1->ofdm_basic_rates == rxon2->ofdm_basic_rates)) { |
| 987 | IWL_DEBUG_INFO("Using current RXON_ASSOC. Not resending.\n"); |
| 988 | return 0; |
| 989 | } |
| 990 | |
| 991 | rxon_assoc.flags = priv->staging_rxon.flags; |
| 992 | rxon_assoc.filter_flags = priv->staging_rxon.filter_flags; |
| 993 | rxon_assoc.ofdm_basic_rates = priv->staging_rxon.ofdm_basic_rates; |
| 994 | rxon_assoc.cck_basic_rates = priv->staging_rxon.cck_basic_rates; |
| 995 | rxon_assoc.reserved = 0; |
| 996 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 997 | rc = iwl3945_send_cmd_sync(priv, &cmd); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 998 | if (rc) |
| 999 | return rc; |
| 1000 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1001 | res = (struct iwl3945_rx_packet *)cmd.meta.u.skb->data; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1002 | if (res->hdr.flags & IWL_CMD_FAILED_MSK) { |
| 1003 | IWL_ERROR("Bad return from REPLY_RXON_ASSOC command\n"); |
| 1004 | rc = -EIO; |
| 1005 | } |
| 1006 | |
| 1007 | priv->alloc_rxb_skb--; |
| 1008 | dev_kfree_skb_any(cmd.meta.u.skb); |
| 1009 | |
| 1010 | return rc; |
| 1011 | } |
| 1012 | |
| 1013 | /** |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1014 | * iwl3945_commit_rxon - commit staging_rxon to hardware |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1015 | * |
Ian Schram | 01ebd06 | 2007-10-25 17:15:22 +0800 | [diff] [blame] | 1016 | * The RXON command in staging_rxon is committed to the hardware and |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1017 | * the active_rxon structure is updated with the new data. This |
| 1018 | * function correctly transitions out of the RXON_ASSOC_MSK state if |
| 1019 | * a HW tune is required based on the RXON structure changes. |
| 1020 | */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1021 | static int iwl3945_commit_rxon(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1022 | { |
| 1023 | /* cast away the const for active_rxon in this function */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1024 | struct iwl3945_rxon_cmd *active_rxon = (void *)&priv->active_rxon; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1025 | int rc = 0; |
| 1026 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1027 | if (!iwl3945_is_alive(priv)) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1028 | return -1; |
| 1029 | |
| 1030 | /* always get timestamp with Rx frame */ |
| 1031 | priv->staging_rxon.flags |= RXON_FLG_TSF2HOST_MSK; |
| 1032 | |
| 1033 | /* select antenna */ |
| 1034 | priv->staging_rxon.flags &= |
| 1035 | ~(RXON_FLG_DIS_DIV_MSK | RXON_FLG_ANT_SEL_MSK); |
| 1036 | priv->staging_rxon.flags |= iwl3945_get_antenna_flags(priv); |
| 1037 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1038 | rc = iwl3945_check_rxon_cmd(&priv->staging_rxon); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1039 | if (rc) { |
| 1040 | IWL_ERROR("Invalid RXON configuration. Not committing.\n"); |
| 1041 | return -EINVAL; |
| 1042 | } |
| 1043 | |
| 1044 | /* If we don't need to send a full RXON, we can use |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1045 | * iwl3945_rxon_assoc_cmd which is used to reconfigure filter |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1046 | * and other flags for the current radio configuration. */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1047 | if (!iwl3945_full_rxon_required(priv)) { |
| 1048 | rc = iwl3945_send_rxon_assoc(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1049 | if (rc) { |
| 1050 | IWL_ERROR("Error setting RXON_ASSOC " |
| 1051 | "configuration (%d).\n", rc); |
| 1052 | return rc; |
| 1053 | } |
| 1054 | |
| 1055 | memcpy(active_rxon, &priv->staging_rxon, sizeof(*active_rxon)); |
| 1056 | |
| 1057 | return 0; |
| 1058 | } |
| 1059 | |
| 1060 | /* If we are currently associated and the new config requires |
| 1061 | * an RXON_ASSOC and the new config wants the associated mask enabled, |
| 1062 | * we must clear the associated from the active configuration |
| 1063 | * before we apply the new config */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1064 | if (iwl3945_is_associated(priv) && |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1065 | (priv->staging_rxon.filter_flags & RXON_FILTER_ASSOC_MSK)) { |
| 1066 | IWL_DEBUG_INFO("Toggling associated bit on current RXON\n"); |
| 1067 | active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK; |
| 1068 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1069 | rc = iwl3945_send_cmd_pdu(priv, REPLY_RXON, |
| 1070 | sizeof(struct iwl3945_rxon_cmd), |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1071 | &priv->active_rxon); |
| 1072 | |
| 1073 | /* If the mask clearing failed then we set |
| 1074 | * active_rxon back to what it was previously */ |
| 1075 | if (rc) { |
| 1076 | active_rxon->filter_flags |= RXON_FILTER_ASSOC_MSK; |
| 1077 | IWL_ERROR("Error clearing ASSOC_MSK on current " |
| 1078 | "configuration (%d).\n", rc); |
| 1079 | return rc; |
| 1080 | } |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1081 | } |
| 1082 | |
| 1083 | IWL_DEBUG_INFO("Sending RXON\n" |
| 1084 | "* with%s RXON_FILTER_ASSOC_MSK\n" |
| 1085 | "* channel = %d\n" |
Johannes Berg | e174961 | 2008-10-27 15:59:26 -0700 | [diff] [blame] | 1086 | "* bssid = %pM\n", |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1087 | ((priv->staging_rxon.filter_flags & |
| 1088 | RXON_FILTER_ASSOC_MSK) ? "" : "out"), |
| 1089 | le16_to_cpu(priv->staging_rxon.channel), |
Johannes Berg | e174961 | 2008-10-27 15:59:26 -0700 | [diff] [blame] | 1090 | priv->staging_rxon.bssid_addr); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1091 | |
| 1092 | /* Apply the new configuration */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1093 | rc = iwl3945_send_cmd_pdu(priv, REPLY_RXON, |
| 1094 | sizeof(struct iwl3945_rxon_cmd), &priv->staging_rxon); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1095 | if (rc) { |
| 1096 | IWL_ERROR("Error setting new configuration (%d).\n", rc); |
| 1097 | return rc; |
| 1098 | } |
| 1099 | |
| 1100 | memcpy(active_rxon, &priv->staging_rxon, sizeof(*active_rxon)); |
| 1101 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1102 | iwl3945_clear_stations_table(priv); |
Zhu Yi | 556f8db | 2007-09-27 11:27:33 +0800 | [diff] [blame] | 1103 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1104 | /* If we issue a new RXON command which required a tune then we must |
| 1105 | * send a new TXPOWER command or we won't be able to Tx any frames */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1106 | rc = iwl3945_hw_reg_send_txpower(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1107 | if (rc) { |
| 1108 | IWL_ERROR("Error setting Tx power (%d).\n", rc); |
| 1109 | return rc; |
| 1110 | } |
| 1111 | |
| 1112 | /* Add the broadcast address so we can send broadcast frames */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1113 | if (iwl3945_add_station(priv, iwl3945_broadcast_addr, 0, 0) == |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1114 | IWL_INVALID_STATION) { |
| 1115 | IWL_ERROR("Error adding BROADCAST address for transmit.\n"); |
| 1116 | return -EIO; |
| 1117 | } |
| 1118 | |
| 1119 | /* If we have set the ASSOC_MSK and we are in BSS mode then |
| 1120 | * add the IWL_AP_ID to the station rate table */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1121 | if (iwl3945_is_associated(priv) && |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 1122 | (priv->iw_mode == NL80211_IFTYPE_STATION)) |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1123 | if (iwl3945_add_station(priv, priv->active_rxon.bssid_addr, 1, 0) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1124 | == IWL_INVALID_STATION) { |
| 1125 | IWL_ERROR("Error adding AP address for transmit.\n"); |
| 1126 | return -EIO; |
| 1127 | } |
| 1128 | |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 1129 | /* Init the hardware's rate fallback order based on the band */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1130 | rc = iwl3945_init_hw_rate_table(priv); |
| 1131 | if (rc) { |
| 1132 | IWL_ERROR("Error setting HW rate table: %02X\n", rc); |
| 1133 | return -EIO; |
| 1134 | } |
| 1135 | |
| 1136 | return 0; |
| 1137 | } |
| 1138 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1139 | static int iwl3945_send_bt_config(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1140 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1141 | struct iwl3945_bt_cmd bt_cmd = { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1142 | .flags = 3, |
| 1143 | .lead_time = 0xAA, |
| 1144 | .max_kill = 1, |
| 1145 | .kill_ack_mask = 0, |
| 1146 | .kill_cts_mask = 0, |
| 1147 | }; |
| 1148 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1149 | return iwl3945_send_cmd_pdu(priv, REPLY_BT_CONFIG, |
| 1150 | sizeof(struct iwl3945_bt_cmd), &bt_cmd); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1151 | } |
| 1152 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1153 | static int iwl3945_send_scan_abort(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1154 | { |
| 1155 | int rc = 0; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1156 | struct iwl3945_rx_packet *res; |
| 1157 | struct iwl3945_host_cmd cmd = { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1158 | .id = REPLY_SCAN_ABORT_CMD, |
| 1159 | .meta.flags = CMD_WANT_SKB, |
| 1160 | }; |
| 1161 | |
| 1162 | /* If there isn't a scan actively going on in the hardware |
| 1163 | * then we are in between scan bands and not actually |
| 1164 | * actively scanning, so don't send the abort command */ |
| 1165 | if (!test_bit(STATUS_SCAN_HW, &priv->status)) { |
| 1166 | clear_bit(STATUS_SCAN_ABORTING, &priv->status); |
| 1167 | return 0; |
| 1168 | } |
| 1169 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1170 | rc = iwl3945_send_cmd_sync(priv, &cmd); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1171 | if (rc) { |
| 1172 | clear_bit(STATUS_SCAN_ABORTING, &priv->status); |
| 1173 | return rc; |
| 1174 | } |
| 1175 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1176 | res = (struct iwl3945_rx_packet *)cmd.meta.u.skb->data; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1177 | if (res->u.status != CAN_ABORT_STATUS) { |
| 1178 | /* The scan abort will return 1 for success or |
| 1179 | * 2 for "failure". A failure condition can be |
| 1180 | * due to simply not being in an active scan which |
| 1181 | * can occur if we send the scan abort before we |
| 1182 | * the microcode has notified us that a scan is |
| 1183 | * completed. */ |
| 1184 | IWL_DEBUG_INFO("SCAN_ABORT returned %d.\n", res->u.status); |
| 1185 | clear_bit(STATUS_SCAN_ABORTING, &priv->status); |
| 1186 | clear_bit(STATUS_SCAN_HW, &priv->status); |
| 1187 | } |
| 1188 | |
| 1189 | dev_kfree_skb_any(cmd.meta.u.skb); |
| 1190 | |
| 1191 | return rc; |
| 1192 | } |
| 1193 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1194 | static int iwl3945_card_state_sync_callback(struct iwl3945_priv *priv, |
| 1195 | struct iwl3945_cmd *cmd, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1196 | struct sk_buff *skb) |
| 1197 | { |
| 1198 | return 1; |
| 1199 | } |
| 1200 | |
| 1201 | /* |
| 1202 | * CARD_STATE_CMD |
| 1203 | * |
Ben Cahill | 9fbab51 | 2007-11-29 11:09:47 +0800 | [diff] [blame] | 1204 | * Use: Sets the device's internal card state to enable, disable, or halt |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1205 | * |
| 1206 | * When in the 'enable' state the card operates as normal. |
| 1207 | * When in the 'disable' state, the card enters into a low power mode. |
| 1208 | * When in the 'halt' state, the card is shut down and must be fully |
| 1209 | * restarted to come back on. |
| 1210 | */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1211 | static int iwl3945_send_card_state(struct iwl3945_priv *priv, u32 flags, u8 meta_flag) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1212 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1213 | struct iwl3945_host_cmd cmd = { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1214 | .id = REPLY_CARD_STATE_CMD, |
| 1215 | .len = sizeof(u32), |
| 1216 | .data = &flags, |
| 1217 | .meta.flags = meta_flag, |
| 1218 | }; |
| 1219 | |
| 1220 | if (meta_flag & CMD_ASYNC) |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1221 | cmd.meta.u.callback = iwl3945_card_state_sync_callback; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1222 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1223 | return iwl3945_send_cmd(priv, &cmd); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1224 | } |
| 1225 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1226 | static int iwl3945_add_sta_sync_callback(struct iwl3945_priv *priv, |
| 1227 | struct iwl3945_cmd *cmd, struct sk_buff *skb) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1228 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1229 | struct iwl3945_rx_packet *res = NULL; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1230 | |
| 1231 | if (!skb) { |
| 1232 | IWL_ERROR("Error: Response NULL in REPLY_ADD_STA.\n"); |
| 1233 | return 1; |
| 1234 | } |
| 1235 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1236 | res = (struct iwl3945_rx_packet *)skb->data; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1237 | if (res->hdr.flags & IWL_CMD_FAILED_MSK) { |
| 1238 | IWL_ERROR("Bad return from REPLY_ADD_STA (0x%08X)\n", |
| 1239 | res->hdr.flags); |
| 1240 | return 1; |
| 1241 | } |
| 1242 | |
| 1243 | switch (res->u.add_sta.status) { |
| 1244 | case ADD_STA_SUCCESS_MSK: |
| 1245 | break; |
| 1246 | default: |
| 1247 | break; |
| 1248 | } |
| 1249 | |
| 1250 | /* We didn't cache the SKB; let the caller free it */ |
| 1251 | return 1; |
| 1252 | } |
| 1253 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1254 | int iwl3945_send_add_station(struct iwl3945_priv *priv, |
| 1255 | struct iwl3945_addsta_cmd *sta, u8 flags) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1256 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1257 | struct iwl3945_rx_packet *res = NULL; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1258 | int rc = 0; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1259 | struct iwl3945_host_cmd cmd = { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1260 | .id = REPLY_ADD_STA, |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1261 | .len = sizeof(struct iwl3945_addsta_cmd), |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1262 | .meta.flags = flags, |
| 1263 | .data = sta, |
| 1264 | }; |
| 1265 | |
| 1266 | if (flags & CMD_ASYNC) |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1267 | cmd.meta.u.callback = iwl3945_add_sta_sync_callback; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1268 | else |
| 1269 | cmd.meta.flags |= CMD_WANT_SKB; |
| 1270 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1271 | rc = iwl3945_send_cmd(priv, &cmd); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1272 | |
| 1273 | if (rc || (flags & CMD_ASYNC)) |
| 1274 | return rc; |
| 1275 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1276 | res = (struct iwl3945_rx_packet *)cmd.meta.u.skb->data; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1277 | if (res->hdr.flags & IWL_CMD_FAILED_MSK) { |
| 1278 | IWL_ERROR("Bad return from REPLY_ADD_STA (0x%08X)\n", |
| 1279 | res->hdr.flags); |
| 1280 | rc = -EIO; |
| 1281 | } |
| 1282 | |
| 1283 | if (rc == 0) { |
| 1284 | switch (res->u.add_sta.status) { |
| 1285 | case ADD_STA_SUCCESS_MSK: |
| 1286 | IWL_DEBUG_INFO("REPLY_ADD_STA PASSED\n"); |
| 1287 | break; |
| 1288 | default: |
| 1289 | rc = -EIO; |
| 1290 | IWL_WARNING("REPLY_ADD_STA failed\n"); |
| 1291 | break; |
| 1292 | } |
| 1293 | } |
| 1294 | |
| 1295 | priv->alloc_rxb_skb--; |
| 1296 | dev_kfree_skb_any(cmd.meta.u.skb); |
| 1297 | |
| 1298 | return rc; |
| 1299 | } |
| 1300 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1301 | static int iwl3945_update_sta_key_info(struct iwl3945_priv *priv, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1302 | struct ieee80211_key_conf *keyconf, |
| 1303 | u8 sta_id) |
| 1304 | { |
| 1305 | unsigned long flags; |
| 1306 | __le16 key_flags = 0; |
| 1307 | |
| 1308 | switch (keyconf->alg) { |
| 1309 | case ALG_CCMP: |
| 1310 | key_flags |= STA_KEY_FLG_CCMP; |
| 1311 | key_flags |= cpu_to_le16( |
| 1312 | keyconf->keyidx << STA_KEY_FLG_KEYID_POS); |
| 1313 | key_flags &= ~STA_KEY_FLG_INVALID; |
| 1314 | break; |
| 1315 | case ALG_TKIP: |
| 1316 | case ALG_WEP: |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1317 | default: |
| 1318 | return -EINVAL; |
| 1319 | } |
| 1320 | spin_lock_irqsave(&priv->sta_lock, flags); |
| 1321 | priv->stations[sta_id].keyinfo.alg = keyconf->alg; |
| 1322 | priv->stations[sta_id].keyinfo.keylen = keyconf->keylen; |
| 1323 | memcpy(priv->stations[sta_id].keyinfo.key, keyconf->key, |
| 1324 | keyconf->keylen); |
| 1325 | |
| 1326 | memcpy(priv->stations[sta_id].sta.key.key, keyconf->key, |
| 1327 | keyconf->keylen); |
| 1328 | priv->stations[sta_id].sta.key.key_flags = key_flags; |
| 1329 | priv->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK; |
| 1330 | priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK; |
| 1331 | |
| 1332 | spin_unlock_irqrestore(&priv->sta_lock, flags); |
| 1333 | |
| 1334 | IWL_DEBUG_INFO("hwcrypto: modify ucode station key info\n"); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1335 | iwl3945_send_add_station(priv, &priv->stations[sta_id].sta, 0); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1336 | return 0; |
| 1337 | } |
| 1338 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1339 | static int iwl3945_clear_sta_key_info(struct iwl3945_priv *priv, u8 sta_id) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1340 | { |
| 1341 | unsigned long flags; |
| 1342 | |
| 1343 | spin_lock_irqsave(&priv->sta_lock, flags); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1344 | memset(&priv->stations[sta_id].keyinfo, 0, sizeof(struct iwl3945_hw_key)); |
| 1345 | memset(&priv->stations[sta_id].sta.key, 0, sizeof(struct iwl3945_keyinfo)); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1346 | priv->stations[sta_id].sta.key.key_flags = STA_KEY_FLG_NO_ENC; |
| 1347 | priv->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK; |
| 1348 | priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK; |
| 1349 | spin_unlock_irqrestore(&priv->sta_lock, flags); |
| 1350 | |
| 1351 | IWL_DEBUG_INFO("hwcrypto: clear ucode station key info\n"); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1352 | iwl3945_send_add_station(priv, &priv->stations[sta_id].sta, 0); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1353 | return 0; |
| 1354 | } |
| 1355 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1356 | static void iwl3945_clear_free_frames(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1357 | { |
| 1358 | struct list_head *element; |
| 1359 | |
| 1360 | IWL_DEBUG_INFO("%d frames on pre-allocated heap on clear.\n", |
| 1361 | priv->frames_count); |
| 1362 | |
| 1363 | while (!list_empty(&priv->free_frames)) { |
| 1364 | element = priv->free_frames.next; |
| 1365 | list_del(element); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1366 | kfree(list_entry(element, struct iwl3945_frame, list)); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1367 | priv->frames_count--; |
| 1368 | } |
| 1369 | |
| 1370 | if (priv->frames_count) { |
| 1371 | IWL_WARNING("%d frames still in use. Did we lose one?\n", |
| 1372 | priv->frames_count); |
| 1373 | priv->frames_count = 0; |
| 1374 | } |
| 1375 | } |
| 1376 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1377 | static struct iwl3945_frame *iwl3945_get_free_frame(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1378 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1379 | struct iwl3945_frame *frame; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1380 | struct list_head *element; |
| 1381 | if (list_empty(&priv->free_frames)) { |
| 1382 | frame = kzalloc(sizeof(*frame), GFP_KERNEL); |
| 1383 | if (!frame) { |
| 1384 | IWL_ERROR("Could not allocate frame!\n"); |
| 1385 | return NULL; |
| 1386 | } |
| 1387 | |
| 1388 | priv->frames_count++; |
| 1389 | return frame; |
| 1390 | } |
| 1391 | |
| 1392 | element = priv->free_frames.next; |
| 1393 | list_del(element); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1394 | return list_entry(element, struct iwl3945_frame, list); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1395 | } |
| 1396 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1397 | static void iwl3945_free_frame(struct iwl3945_priv *priv, struct iwl3945_frame *frame) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1398 | { |
| 1399 | memset(frame, 0, sizeof(*frame)); |
| 1400 | list_add(&frame->list, &priv->free_frames); |
| 1401 | } |
| 1402 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1403 | unsigned int iwl3945_fill_beacon_frame(struct iwl3945_priv *priv, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1404 | struct ieee80211_hdr *hdr, |
| 1405 | const u8 *dest, int left) |
| 1406 | { |
| 1407 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1408 | if (!iwl3945_is_associated(priv) || !priv->ibss_beacon || |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 1409 | ((priv->iw_mode != NL80211_IFTYPE_ADHOC) && |
| 1410 | (priv->iw_mode != NL80211_IFTYPE_AP))) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1411 | return 0; |
| 1412 | |
| 1413 | if (priv->ibss_beacon->len > left) |
| 1414 | return 0; |
| 1415 | |
| 1416 | memcpy(hdr, priv->ibss_beacon->data, priv->ibss_beacon->len); |
| 1417 | |
| 1418 | return priv->ibss_beacon->len; |
| 1419 | } |
| 1420 | |
Kolekar, Abhijeet | c24f081 | 2008-11-07 09:58:44 -0800 | [diff] [blame] | 1421 | static u8 iwl3945_rate_get_lowest_plcp(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1422 | { |
| 1423 | u8 i; |
Kolekar, Abhijeet | c24f081 | 2008-11-07 09:58:44 -0800 | [diff] [blame] | 1424 | int rate_mask; |
| 1425 | |
| 1426 | /* Set rate mask*/ |
| 1427 | if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) |
Chatre, Reinette | dbce56a | 2008-11-12 13:14:07 -0800 | [diff] [blame] | 1428 | rate_mask = priv->active_rate_basic & IWL_CCK_RATES_MASK; |
Kolekar, Abhijeet | c24f081 | 2008-11-07 09:58:44 -0800 | [diff] [blame] | 1429 | else |
Chatre, Reinette | dbce56a | 2008-11-12 13:14:07 -0800 | [diff] [blame] | 1430 | rate_mask = priv->active_rate_basic & IWL_OFDM_RATES_MASK; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1431 | |
| 1432 | for (i = IWL_RATE_1M_INDEX; i != IWL_RATE_INVALID; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1433 | i = iwl3945_rates[i].next_ieee) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1434 | if (rate_mask & (1 << i)) |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1435 | return iwl3945_rates[i].plcp; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1436 | } |
| 1437 | |
Kolekar, Abhijeet | c24f081 | 2008-11-07 09:58:44 -0800 | [diff] [blame] | 1438 | /* No valid rate was found. Assign the lowest one */ |
| 1439 | if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) |
| 1440 | return IWL_RATE_1M_PLCP; |
| 1441 | else |
| 1442 | return IWL_RATE_6M_PLCP; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1443 | } |
| 1444 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1445 | static int iwl3945_send_beacon_cmd(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1446 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1447 | struct iwl3945_frame *frame; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1448 | unsigned int frame_size; |
| 1449 | int rc; |
| 1450 | u8 rate; |
| 1451 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1452 | frame = iwl3945_get_free_frame(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1453 | |
| 1454 | if (!frame) { |
| 1455 | IWL_ERROR("Could not obtain free frame buffer for beacon " |
| 1456 | "command.\n"); |
| 1457 | return -ENOMEM; |
| 1458 | } |
| 1459 | |
Kolekar, Abhijeet | c24f081 | 2008-11-07 09:58:44 -0800 | [diff] [blame] | 1460 | rate = iwl3945_rate_get_lowest_plcp(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1461 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1462 | frame_size = iwl3945_hw_get_beacon_cmd(priv, frame, rate); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1463 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1464 | rc = iwl3945_send_cmd_pdu(priv, REPLY_TX_BEACON, frame_size, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1465 | &frame->u.cmd[0]); |
| 1466 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1467 | iwl3945_free_frame(priv, frame); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1468 | |
| 1469 | return rc; |
| 1470 | } |
| 1471 | |
| 1472 | /****************************************************************************** |
| 1473 | * |
| 1474 | * EEPROM related functions |
| 1475 | * |
| 1476 | ******************************************************************************/ |
| 1477 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1478 | static void get_eeprom_mac(struct iwl3945_priv *priv, u8 *mac) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1479 | { |
| 1480 | memcpy(mac, priv->eeprom.mac_address, 6); |
| 1481 | } |
| 1482 | |
Reinette Chatre | 74a3a25 | 2008-01-23 10:15:19 -0800 | [diff] [blame] | 1483 | /* |
| 1484 | * Clear the OWNER_MSK, to establish driver (instead of uCode running on |
| 1485 | * embedded controller) as EEPROM reader; each read is a series of pulses |
| 1486 | * to/from the EEPROM chip, not a single event, so even reads could conflict |
| 1487 | * if they weren't arbitrated by some ownership mechanism. Here, the driver |
| 1488 | * simply claims ownership, which should be safe when this function is called |
| 1489 | * (i.e. before loading uCode!). |
| 1490 | */ |
| 1491 | static inline int iwl3945_eeprom_acquire_semaphore(struct iwl3945_priv *priv) |
| 1492 | { |
| 1493 | _iwl3945_clear_bit(priv, CSR_EEPROM_GP, CSR_EEPROM_GP_IF_OWNER_MSK); |
| 1494 | return 0; |
| 1495 | } |
| 1496 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1497 | /** |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1498 | * iwl3945_eeprom_init - read EEPROM contents |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1499 | * |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 1500 | * Load the EEPROM contents from adapter into priv->eeprom |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1501 | * |
| 1502 | * NOTE: This routine uses the non-debug IO access functions. |
| 1503 | */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1504 | int iwl3945_eeprom_init(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1505 | { |
Tomas Winkler | 58ff6d4 | 2008-02-13 02:47:54 +0200 | [diff] [blame] | 1506 | u16 *e = (u16 *)&priv->eeprom; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1507 | u32 gp = iwl3945_read32(priv, CSR_EEPROM_GP); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1508 | u32 r; |
| 1509 | int sz = sizeof(priv->eeprom); |
| 1510 | int rc; |
| 1511 | int i; |
| 1512 | u16 addr; |
| 1513 | |
| 1514 | /* The EEPROM structure has several padding buffers within it |
| 1515 | * and when adding new EEPROM maps is subject to programmer errors |
| 1516 | * which may be very difficult to identify without explicitly |
| 1517 | * checking the resulting size of the eeprom map. */ |
| 1518 | BUILD_BUG_ON(sizeof(priv->eeprom) != IWL_EEPROM_IMAGE_SIZE); |
| 1519 | |
| 1520 | if ((gp & CSR_EEPROM_GP_VALID_MSK) == CSR_EEPROM_GP_BAD_SIGNATURE) { |
Jiri Slaby | 6f14792 | 2008-08-11 23:49:41 +0200 | [diff] [blame] | 1521 | IWL_ERROR("EEPROM not found, EEPROM_GP=0x%08x\n", gp); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1522 | return -ENOENT; |
| 1523 | } |
| 1524 | |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 1525 | /* Make sure driver (instead of uCode) is allowed to read EEPROM */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1526 | rc = iwl3945_eeprom_acquire_semaphore(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1527 | if (rc < 0) { |
Ian Schram | 91e1747 | 2007-10-25 17:15:23 +0800 | [diff] [blame] | 1528 | IWL_ERROR("Failed to acquire EEPROM semaphore.\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1529 | return -ENOENT; |
| 1530 | } |
| 1531 | |
| 1532 | /* eeprom is an array of 16bit values */ |
| 1533 | for (addr = 0; addr < sz; addr += sizeof(u16)) { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1534 | _iwl3945_write32(priv, CSR_EEPROM_REG, addr << 1); |
| 1535 | _iwl3945_clear_bit(priv, CSR_EEPROM_REG, CSR_EEPROM_REG_BIT_CMD); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1536 | |
| 1537 | for (i = 0; i < IWL_EEPROM_ACCESS_TIMEOUT; |
| 1538 | i += IWL_EEPROM_ACCESS_DELAY) { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1539 | r = _iwl3945_read_direct32(priv, CSR_EEPROM_REG); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1540 | if (r & CSR_EEPROM_REG_READ_VALID_MSK) |
| 1541 | break; |
| 1542 | udelay(IWL_EEPROM_ACCESS_DELAY); |
| 1543 | } |
| 1544 | |
| 1545 | if (!(r & CSR_EEPROM_REG_READ_VALID_MSK)) { |
Jiri Slaby | 6f14792 | 2008-08-11 23:49:41 +0200 | [diff] [blame] | 1546 | IWL_ERROR("Time out reading EEPROM[%d]\n", addr); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1547 | return -ETIMEDOUT; |
| 1548 | } |
Tomas Winkler | 58ff6d4 | 2008-02-13 02:47:54 +0200 | [diff] [blame] | 1549 | e[addr / 2] = le16_to_cpu((__force __le16)(r >> 16)); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1550 | } |
| 1551 | |
| 1552 | return 0; |
| 1553 | } |
| 1554 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1555 | static void iwl3945_unset_hw_setting(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1556 | { |
| 1557 | if (priv->hw_setting.shared_virt) |
| 1558 | pci_free_consistent(priv->pci_dev, |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1559 | sizeof(struct iwl3945_shared), |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1560 | priv->hw_setting.shared_virt, |
| 1561 | priv->hw_setting.shared_phys); |
| 1562 | } |
| 1563 | |
| 1564 | /** |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1565 | * iwl3945_supported_rate_to_ie - fill in the supported rate in IE field |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1566 | * |
| 1567 | * return : set the bit for each supported rate insert in ie |
| 1568 | */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1569 | static u16 iwl3945_supported_rate_to_ie(u8 *ie, u16 supported_rate, |
Tomas Winkler | c7c4667 | 2007-10-18 02:04:15 +0200 | [diff] [blame] | 1570 | u16 basic_rate, int *left) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1571 | { |
| 1572 | u16 ret_rates = 0, bit; |
| 1573 | int i; |
Tomas Winkler | c7c4667 | 2007-10-18 02:04:15 +0200 | [diff] [blame] | 1574 | u8 *cnt = ie; |
| 1575 | u8 *rates = ie + 1; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1576 | |
| 1577 | for (bit = 1, i = 0; i < IWL_RATE_COUNT; i++, bit <<= 1) { |
| 1578 | if (bit & supported_rate) { |
| 1579 | ret_rates |= bit; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1580 | rates[*cnt] = iwl3945_rates[i].ieee | |
Tomas Winkler | c7c4667 | 2007-10-18 02:04:15 +0200 | [diff] [blame] | 1581 | ((bit & basic_rate) ? 0x80 : 0x00); |
| 1582 | (*cnt)++; |
| 1583 | (*left)--; |
| 1584 | if ((*left <= 0) || |
| 1585 | (*cnt >= IWL_SUPPORTED_RATES_IE_LEN)) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1586 | break; |
| 1587 | } |
| 1588 | } |
| 1589 | |
| 1590 | return ret_rates; |
| 1591 | } |
| 1592 | |
| 1593 | /** |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1594 | * iwl3945_fill_probe_req - fill in all required fields and IE for probe request |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1595 | */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1596 | static u16 iwl3945_fill_probe_req(struct iwl3945_priv *priv, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1597 | struct ieee80211_mgmt *frame, |
Johannes Berg | 430cfe9 | 2008-10-28 18:06:02 +0100 | [diff] [blame] | 1598 | int left) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1599 | { |
| 1600 | int len = 0; |
| 1601 | u8 *pos = NULL; |
Tomas Winkler | c7c4667 | 2007-10-18 02:04:15 +0200 | [diff] [blame] | 1602 | u16 active_rates, ret_rates, cck_rates; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1603 | |
| 1604 | /* Make sure there is enough space for the probe request, |
| 1605 | * two mandatory IEs and the data */ |
| 1606 | left -= 24; |
| 1607 | if (left < 0) |
| 1608 | return 0; |
| 1609 | len += 24; |
| 1610 | |
| 1611 | frame->frame_control = cpu_to_le16(IEEE80211_STYPE_PROBE_REQ); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1612 | memcpy(frame->da, iwl3945_broadcast_addr, ETH_ALEN); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1613 | memcpy(frame->sa, priv->mac_addr, ETH_ALEN); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1614 | memcpy(frame->bssid, iwl3945_broadcast_addr, ETH_ALEN); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1615 | frame->seq_ctrl = 0; |
| 1616 | |
| 1617 | /* fill in our indirect SSID IE */ |
| 1618 | /* ...next IE... */ |
| 1619 | |
| 1620 | left -= 2; |
| 1621 | if (left < 0) |
| 1622 | return 0; |
| 1623 | len += 2; |
| 1624 | pos = &(frame->u.probe_req.variable[0]); |
| 1625 | *pos++ = WLAN_EID_SSID; |
| 1626 | *pos++ = 0; |
| 1627 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1628 | /* fill in supported rate */ |
| 1629 | /* ...next IE... */ |
| 1630 | left -= 2; |
| 1631 | if (left < 0) |
| 1632 | return 0; |
Tomas Winkler | c7c4667 | 2007-10-18 02:04:15 +0200 | [diff] [blame] | 1633 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1634 | /* ... fill it in... */ |
| 1635 | *pos++ = WLAN_EID_SUPP_RATES; |
| 1636 | *pos = 0; |
Tomas Winkler | c7c4667 | 2007-10-18 02:04:15 +0200 | [diff] [blame] | 1637 | |
| 1638 | priv->active_rate = priv->rates_mask; |
| 1639 | active_rates = priv->active_rate; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1640 | priv->active_rate_basic = priv->rates_mask & IWL_BASIC_RATES_MASK; |
| 1641 | |
Tomas Winkler | c7c4667 | 2007-10-18 02:04:15 +0200 | [diff] [blame] | 1642 | cck_rates = IWL_CCK_RATES_MASK & active_rates; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1643 | ret_rates = iwl3945_supported_rate_to_ie(pos, cck_rates, |
Tomas Winkler | c7c4667 | 2007-10-18 02:04:15 +0200 | [diff] [blame] | 1644 | priv->active_rate_basic, &left); |
| 1645 | active_rates &= ~ret_rates; |
| 1646 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1647 | ret_rates = iwl3945_supported_rate_to_ie(pos, active_rates, |
Tomas Winkler | c7c4667 | 2007-10-18 02:04:15 +0200 | [diff] [blame] | 1648 | priv->active_rate_basic, &left); |
| 1649 | active_rates &= ~ret_rates; |
| 1650 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1651 | len += 2 + *pos; |
| 1652 | pos += (*pos) + 1; |
Tomas Winkler | c7c4667 | 2007-10-18 02:04:15 +0200 | [diff] [blame] | 1653 | if (active_rates == 0) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1654 | goto fill_end; |
| 1655 | |
| 1656 | /* fill in supported extended rate */ |
| 1657 | /* ...next IE... */ |
| 1658 | left -= 2; |
| 1659 | if (left < 0) |
| 1660 | return 0; |
| 1661 | /* ... fill it in... */ |
| 1662 | *pos++ = WLAN_EID_EXT_SUPP_RATES; |
| 1663 | *pos = 0; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1664 | iwl3945_supported_rate_to_ie(pos, active_rates, |
Tomas Winkler | c7c4667 | 2007-10-18 02:04:15 +0200 | [diff] [blame] | 1665 | priv->active_rate_basic, &left); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1666 | if (*pos > 0) |
| 1667 | len += 2 + *pos; |
| 1668 | |
| 1669 | fill_end: |
| 1670 | return (u16)len; |
| 1671 | } |
| 1672 | |
| 1673 | /* |
| 1674 | * QoS support |
| 1675 | */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1676 | static int iwl3945_send_qos_params_command(struct iwl3945_priv *priv, |
| 1677 | struct iwl3945_qosparam_cmd *qos) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1678 | { |
| 1679 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1680 | return iwl3945_send_cmd_pdu(priv, REPLY_QOS_PARAM, |
| 1681 | sizeof(struct iwl3945_qosparam_cmd), qos); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1682 | } |
| 1683 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1684 | static void iwl3945_reset_qos(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1685 | { |
| 1686 | u16 cw_min = 15; |
| 1687 | u16 cw_max = 1023; |
| 1688 | u8 aifs = 2; |
| 1689 | u8 is_legacy = 0; |
| 1690 | unsigned long flags; |
| 1691 | int i; |
| 1692 | |
| 1693 | spin_lock_irqsave(&priv->lock, flags); |
| 1694 | priv->qos_data.qos_active = 0; |
| 1695 | |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 1696 | if (priv->iw_mode == NL80211_IFTYPE_ADHOC) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1697 | if (priv->qos_data.qos_enable) |
| 1698 | priv->qos_data.qos_active = 1; |
| 1699 | if (!(priv->active_rate & 0xfff0)) { |
| 1700 | cw_min = 31; |
| 1701 | is_legacy = 1; |
| 1702 | } |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 1703 | } else if (priv->iw_mode == NL80211_IFTYPE_AP) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1704 | if (priv->qos_data.qos_enable) |
| 1705 | priv->qos_data.qos_active = 1; |
| 1706 | } else if (!(priv->staging_rxon.flags & RXON_FLG_SHORT_SLOT_MSK)) { |
| 1707 | cw_min = 31; |
| 1708 | is_legacy = 1; |
| 1709 | } |
| 1710 | |
| 1711 | if (priv->qos_data.qos_active) |
| 1712 | aifs = 3; |
| 1713 | |
| 1714 | priv->qos_data.def_qos_parm.ac[0].cw_min = cpu_to_le16(cw_min); |
| 1715 | priv->qos_data.def_qos_parm.ac[0].cw_max = cpu_to_le16(cw_max); |
| 1716 | priv->qos_data.def_qos_parm.ac[0].aifsn = aifs; |
| 1717 | priv->qos_data.def_qos_parm.ac[0].edca_txop = 0; |
| 1718 | priv->qos_data.def_qos_parm.ac[0].reserved1 = 0; |
| 1719 | |
| 1720 | if (priv->qos_data.qos_active) { |
| 1721 | i = 1; |
| 1722 | priv->qos_data.def_qos_parm.ac[i].cw_min = cpu_to_le16(cw_min); |
| 1723 | priv->qos_data.def_qos_parm.ac[i].cw_max = cpu_to_le16(cw_max); |
| 1724 | priv->qos_data.def_qos_parm.ac[i].aifsn = 7; |
| 1725 | priv->qos_data.def_qos_parm.ac[i].edca_txop = 0; |
| 1726 | priv->qos_data.def_qos_parm.ac[i].reserved1 = 0; |
| 1727 | |
| 1728 | i = 2; |
| 1729 | priv->qos_data.def_qos_parm.ac[i].cw_min = |
| 1730 | cpu_to_le16((cw_min + 1) / 2 - 1); |
| 1731 | priv->qos_data.def_qos_parm.ac[i].cw_max = |
| 1732 | cpu_to_le16(cw_max); |
| 1733 | priv->qos_data.def_qos_parm.ac[i].aifsn = 2; |
| 1734 | if (is_legacy) |
| 1735 | priv->qos_data.def_qos_parm.ac[i].edca_txop = |
| 1736 | cpu_to_le16(6016); |
| 1737 | else |
| 1738 | priv->qos_data.def_qos_parm.ac[i].edca_txop = |
| 1739 | cpu_to_le16(3008); |
| 1740 | priv->qos_data.def_qos_parm.ac[i].reserved1 = 0; |
| 1741 | |
| 1742 | i = 3; |
| 1743 | priv->qos_data.def_qos_parm.ac[i].cw_min = |
| 1744 | cpu_to_le16((cw_min + 1) / 4 - 1); |
| 1745 | priv->qos_data.def_qos_parm.ac[i].cw_max = |
| 1746 | cpu_to_le16((cw_max + 1) / 2 - 1); |
| 1747 | priv->qos_data.def_qos_parm.ac[i].aifsn = 2; |
| 1748 | priv->qos_data.def_qos_parm.ac[i].reserved1 = 0; |
| 1749 | if (is_legacy) |
| 1750 | priv->qos_data.def_qos_parm.ac[i].edca_txop = |
| 1751 | cpu_to_le16(3264); |
| 1752 | else |
| 1753 | priv->qos_data.def_qos_parm.ac[i].edca_txop = |
| 1754 | cpu_to_le16(1504); |
| 1755 | } else { |
| 1756 | for (i = 1; i < 4; i++) { |
| 1757 | priv->qos_data.def_qos_parm.ac[i].cw_min = |
| 1758 | cpu_to_le16(cw_min); |
| 1759 | priv->qos_data.def_qos_parm.ac[i].cw_max = |
| 1760 | cpu_to_le16(cw_max); |
| 1761 | priv->qos_data.def_qos_parm.ac[i].aifsn = aifs; |
| 1762 | priv->qos_data.def_qos_parm.ac[i].edca_txop = 0; |
| 1763 | priv->qos_data.def_qos_parm.ac[i].reserved1 = 0; |
| 1764 | } |
| 1765 | } |
| 1766 | IWL_DEBUG_QOS("set QoS to default \n"); |
| 1767 | |
| 1768 | spin_unlock_irqrestore(&priv->lock, flags); |
| 1769 | } |
| 1770 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1771 | static void iwl3945_activate_qos(struct iwl3945_priv *priv, u8 force) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1772 | { |
| 1773 | unsigned long flags; |
| 1774 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1775 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) |
| 1776 | return; |
| 1777 | |
| 1778 | if (!priv->qos_data.qos_enable) |
| 1779 | return; |
| 1780 | |
| 1781 | spin_lock_irqsave(&priv->lock, flags); |
| 1782 | priv->qos_data.def_qos_parm.qos_flags = 0; |
| 1783 | |
| 1784 | if (priv->qos_data.qos_cap.q_AP.queue_request && |
| 1785 | !priv->qos_data.qos_cap.q_AP.txop_request) |
| 1786 | priv->qos_data.def_qos_parm.qos_flags |= |
| 1787 | QOS_PARAM_FLG_TXOP_TYPE_MSK; |
| 1788 | |
| 1789 | if (priv->qos_data.qos_active) |
| 1790 | priv->qos_data.def_qos_parm.qos_flags |= |
| 1791 | QOS_PARAM_FLG_UPDATE_EDCA_MSK; |
| 1792 | |
| 1793 | spin_unlock_irqrestore(&priv->lock, flags); |
| 1794 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1795 | if (force || iwl3945_is_associated(priv)) { |
Tomas Winkler | a96a27f | 2008-10-23 23:48:56 -0700 | [diff] [blame] | 1796 | IWL_DEBUG_QOS("send QoS cmd with QoS active %d \n", |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1797 | priv->qos_data.qos_active); |
| 1798 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1799 | iwl3945_send_qos_params_command(priv, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1800 | &(priv->qos_data.def_qos_parm)); |
| 1801 | } |
| 1802 | } |
| 1803 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1804 | /* |
| 1805 | * Power management (not Tx power!) functions |
| 1806 | */ |
| 1807 | #define MSEC_TO_USEC 1024 |
| 1808 | |
| 1809 | #define NOSLP __constant_cpu_to_le32(0) |
| 1810 | #define SLP IWL_POWER_DRIVER_ALLOW_SLEEP_MSK |
| 1811 | #define SLP_TIMEOUT(T) __constant_cpu_to_le32((T) * MSEC_TO_USEC) |
| 1812 | #define SLP_VEC(X0, X1, X2, X3, X4) {__constant_cpu_to_le32(X0), \ |
| 1813 | __constant_cpu_to_le32(X1), \ |
| 1814 | __constant_cpu_to_le32(X2), \ |
| 1815 | __constant_cpu_to_le32(X3), \ |
| 1816 | __constant_cpu_to_le32(X4)} |
| 1817 | |
| 1818 | |
| 1819 | /* default power management (not Tx power) table values */ |
Tomas Winkler | a96a27f | 2008-10-23 23:48:56 -0700 | [diff] [blame] | 1820 | /* for TIM 0-10 */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1821 | static struct iwl3945_power_vec_entry range_0[IWL_POWER_AC] = { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1822 | {{NOSLP, SLP_TIMEOUT(0), SLP_TIMEOUT(0), SLP_VEC(0, 0, 0, 0, 0)}, 0}, |
| 1823 | {{SLP, SLP_TIMEOUT(200), SLP_TIMEOUT(500), SLP_VEC(1, 2, 3, 4, 4)}, 0}, |
| 1824 | {{SLP, SLP_TIMEOUT(200), SLP_TIMEOUT(300), SLP_VEC(2, 4, 6, 7, 7)}, 0}, |
| 1825 | {{SLP, SLP_TIMEOUT(50), SLP_TIMEOUT(100), SLP_VEC(2, 6, 9, 9, 10)}, 0}, |
| 1826 | {{SLP, SLP_TIMEOUT(50), SLP_TIMEOUT(25), SLP_VEC(2, 7, 9, 9, 10)}, 1}, |
| 1827 | {{SLP, SLP_TIMEOUT(25), SLP_TIMEOUT(25), SLP_VEC(4, 7, 10, 10, 10)}, 1} |
| 1828 | }; |
| 1829 | |
Tomas Winkler | a96a27f | 2008-10-23 23:48:56 -0700 | [diff] [blame] | 1830 | /* for TIM > 10 */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1831 | static struct iwl3945_power_vec_entry range_1[IWL_POWER_AC] = { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1832 | {{NOSLP, SLP_TIMEOUT(0), SLP_TIMEOUT(0), SLP_VEC(0, 0, 0, 0, 0)}, 0}, |
| 1833 | {{SLP, SLP_TIMEOUT(200), SLP_TIMEOUT(500), |
| 1834 | SLP_VEC(1, 2, 3, 4, 0xFF)}, 0}, |
| 1835 | {{SLP, SLP_TIMEOUT(200), SLP_TIMEOUT(300), |
| 1836 | SLP_VEC(2, 4, 6, 7, 0xFF)}, 0}, |
| 1837 | {{SLP, SLP_TIMEOUT(50), SLP_TIMEOUT(100), |
| 1838 | SLP_VEC(2, 6, 9, 9, 0xFF)}, 0}, |
| 1839 | {{SLP, SLP_TIMEOUT(50), SLP_TIMEOUT(25), SLP_VEC(2, 7, 9, 9, 0xFF)}, 0}, |
| 1840 | {{SLP, SLP_TIMEOUT(25), SLP_TIMEOUT(25), |
| 1841 | SLP_VEC(4, 7, 10, 10, 0xFF)}, 0} |
| 1842 | }; |
| 1843 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1844 | int iwl3945_power_init_handle(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1845 | { |
| 1846 | int rc = 0, i; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1847 | struct iwl3945_power_mgr *pow_data; |
| 1848 | int size = sizeof(struct iwl3945_power_vec_entry) * IWL_POWER_AC; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1849 | u16 pci_pm; |
| 1850 | |
| 1851 | IWL_DEBUG_POWER("Initialize power \n"); |
| 1852 | |
| 1853 | pow_data = &(priv->power_data); |
| 1854 | |
| 1855 | memset(pow_data, 0, sizeof(*pow_data)); |
| 1856 | |
| 1857 | pow_data->active_index = IWL_POWER_RANGE_0; |
| 1858 | pow_data->dtim_val = 0xffff; |
| 1859 | |
| 1860 | memcpy(&pow_data->pwr_range_0[0], &range_0[0], size); |
| 1861 | memcpy(&pow_data->pwr_range_1[0], &range_1[0], size); |
| 1862 | |
| 1863 | rc = pci_read_config_word(priv->pci_dev, PCI_LINK_CTRL, &pci_pm); |
| 1864 | if (rc != 0) |
| 1865 | return 0; |
| 1866 | else { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1867 | struct iwl3945_powertable_cmd *cmd; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1868 | |
| 1869 | IWL_DEBUG_POWER("adjust power command flags\n"); |
| 1870 | |
| 1871 | for (i = 0; i < IWL_POWER_AC; i++) { |
| 1872 | cmd = &pow_data->pwr_range_0[i].cmd; |
| 1873 | |
| 1874 | if (pci_pm & 0x1) |
| 1875 | cmd->flags &= ~IWL_POWER_PCI_PM_MSK; |
| 1876 | else |
| 1877 | cmd->flags |= IWL_POWER_PCI_PM_MSK; |
| 1878 | } |
| 1879 | } |
| 1880 | return rc; |
| 1881 | } |
| 1882 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1883 | static int iwl3945_update_power_cmd(struct iwl3945_priv *priv, |
| 1884 | struct iwl3945_powertable_cmd *cmd, u32 mode) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1885 | { |
| 1886 | int rc = 0, i; |
| 1887 | u8 skip; |
| 1888 | u32 max_sleep = 0; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1889 | struct iwl3945_power_vec_entry *range; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1890 | u8 period = 0; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1891 | struct iwl3945_power_mgr *pow_data; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1892 | |
| 1893 | if (mode > IWL_POWER_INDEX_5) { |
| 1894 | IWL_DEBUG_POWER("Error invalid power mode \n"); |
| 1895 | return -1; |
| 1896 | } |
| 1897 | pow_data = &(priv->power_data); |
| 1898 | |
| 1899 | if (pow_data->active_index == IWL_POWER_RANGE_0) |
| 1900 | range = &pow_data->pwr_range_0[0]; |
| 1901 | else |
| 1902 | range = &pow_data->pwr_range_1[1]; |
| 1903 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1904 | memcpy(cmd, &range[mode].cmd, sizeof(struct iwl3945_powertable_cmd)); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1905 | |
| 1906 | #ifdef IWL_MAC80211_DISABLE |
| 1907 | if (priv->assoc_network != NULL) { |
| 1908 | unsigned long flags; |
| 1909 | |
| 1910 | period = priv->assoc_network->tim.tim_period; |
| 1911 | } |
| 1912 | #endif /*IWL_MAC80211_DISABLE */ |
| 1913 | skip = range[mode].no_dtim; |
| 1914 | |
| 1915 | if (period == 0) { |
| 1916 | period = 1; |
| 1917 | skip = 0; |
| 1918 | } |
| 1919 | |
| 1920 | if (skip == 0) { |
| 1921 | max_sleep = period; |
| 1922 | cmd->flags &= ~IWL_POWER_SLEEP_OVER_DTIM_MSK; |
| 1923 | } else { |
| 1924 | __le32 slp_itrvl = cmd->sleep_interval[IWL_POWER_VEC_SIZE - 1]; |
| 1925 | max_sleep = (le32_to_cpu(slp_itrvl) / period) * period; |
| 1926 | cmd->flags |= IWL_POWER_SLEEP_OVER_DTIM_MSK; |
| 1927 | } |
| 1928 | |
| 1929 | for (i = 0; i < IWL_POWER_VEC_SIZE; i++) { |
| 1930 | if (le32_to_cpu(cmd->sleep_interval[i]) > max_sleep) |
| 1931 | cmd->sleep_interval[i] = cpu_to_le32(max_sleep); |
| 1932 | } |
| 1933 | |
| 1934 | IWL_DEBUG_POWER("Flags value = 0x%08X\n", cmd->flags); |
| 1935 | IWL_DEBUG_POWER("Tx timeout = %u\n", le32_to_cpu(cmd->tx_data_timeout)); |
| 1936 | IWL_DEBUG_POWER("Rx timeout = %u\n", le32_to_cpu(cmd->rx_data_timeout)); |
| 1937 | IWL_DEBUG_POWER("Sleep interval vector = { %d , %d , %d , %d , %d }\n", |
| 1938 | le32_to_cpu(cmd->sleep_interval[0]), |
| 1939 | le32_to_cpu(cmd->sleep_interval[1]), |
| 1940 | le32_to_cpu(cmd->sleep_interval[2]), |
| 1941 | le32_to_cpu(cmd->sleep_interval[3]), |
| 1942 | le32_to_cpu(cmd->sleep_interval[4])); |
| 1943 | |
| 1944 | return rc; |
| 1945 | } |
| 1946 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1947 | static int iwl3945_send_power_mode(struct iwl3945_priv *priv, u32 mode) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1948 | { |
John W. Linville | 9a62f73 | 2007-11-15 16:27:36 -0500 | [diff] [blame] | 1949 | u32 uninitialized_var(final_mode); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1950 | int rc; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1951 | struct iwl3945_powertable_cmd cmd; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1952 | |
| 1953 | /* If on battery, set to 3, |
Ian Schram | 01ebd06 | 2007-10-25 17:15:22 +0800 | [diff] [blame] | 1954 | * if plugged into AC power, set to CAM ("continuously aware mode"), |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1955 | * else user level */ |
| 1956 | switch (mode) { |
| 1957 | case IWL_POWER_BATTERY: |
| 1958 | final_mode = IWL_POWER_INDEX_3; |
| 1959 | break; |
| 1960 | case IWL_POWER_AC: |
| 1961 | final_mode = IWL_POWER_MODE_CAM; |
| 1962 | break; |
| 1963 | default: |
| 1964 | final_mode = mode; |
| 1965 | break; |
| 1966 | } |
| 1967 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1968 | iwl3945_update_power_cmd(priv, &cmd, final_mode); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1969 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1970 | rc = iwl3945_send_cmd_pdu(priv, POWER_TABLE_CMD, sizeof(cmd), &cmd); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1971 | |
| 1972 | if (final_mode == IWL_POWER_MODE_CAM) |
| 1973 | clear_bit(STATUS_POWER_PMI, &priv->status); |
| 1974 | else |
| 1975 | set_bit(STATUS_POWER_PMI, &priv->status); |
| 1976 | |
| 1977 | return rc; |
| 1978 | } |
| 1979 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1980 | /** |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1981 | * iwl3945_scan_cancel - Cancel any currently executing HW scan |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1982 | * |
| 1983 | * NOTE: priv->mutex is not required before calling this function |
| 1984 | */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1985 | static int iwl3945_scan_cancel(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1986 | { |
| 1987 | if (!test_bit(STATUS_SCAN_HW, &priv->status)) { |
| 1988 | clear_bit(STATUS_SCANNING, &priv->status); |
| 1989 | return 0; |
| 1990 | } |
| 1991 | |
| 1992 | if (test_bit(STATUS_SCANNING, &priv->status)) { |
| 1993 | if (!test_bit(STATUS_SCAN_ABORTING, &priv->status)) { |
| 1994 | IWL_DEBUG_SCAN("Queuing scan abort.\n"); |
| 1995 | set_bit(STATUS_SCAN_ABORTING, &priv->status); |
| 1996 | queue_work(priv->workqueue, &priv->abort_scan); |
| 1997 | |
| 1998 | } else |
| 1999 | IWL_DEBUG_SCAN("Scan abort already in progress.\n"); |
| 2000 | |
| 2001 | return test_bit(STATUS_SCANNING, &priv->status); |
| 2002 | } |
| 2003 | |
| 2004 | return 0; |
| 2005 | } |
| 2006 | |
| 2007 | /** |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2008 | * iwl3945_scan_cancel_timeout - Cancel any currently executing HW scan |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2009 | * @ms: amount of time to wait (in milliseconds) for scan to abort |
| 2010 | * |
| 2011 | * NOTE: priv->mutex must be held before calling this function |
| 2012 | */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2013 | static int iwl3945_scan_cancel_timeout(struct iwl3945_priv *priv, unsigned long ms) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2014 | { |
| 2015 | unsigned long now = jiffies; |
| 2016 | int ret; |
| 2017 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2018 | ret = iwl3945_scan_cancel(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2019 | if (ret && ms) { |
| 2020 | mutex_unlock(&priv->mutex); |
| 2021 | while (!time_after(jiffies, now + msecs_to_jiffies(ms)) && |
| 2022 | test_bit(STATUS_SCANNING, &priv->status)) |
| 2023 | msleep(1); |
| 2024 | mutex_lock(&priv->mutex); |
| 2025 | |
| 2026 | return test_bit(STATUS_SCANNING, &priv->status); |
| 2027 | } |
| 2028 | |
| 2029 | return ret; |
| 2030 | } |
| 2031 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2032 | #define MAX_UCODE_BEACON_INTERVAL 1024 |
| 2033 | #define INTEL_CONN_LISTEN_INTERVAL __constant_cpu_to_le16(0xA) |
| 2034 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2035 | static __le16 iwl3945_adjust_beacon_interval(u16 beacon_val) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2036 | { |
| 2037 | u16 new_val = 0; |
| 2038 | u16 beacon_factor = 0; |
| 2039 | |
| 2040 | beacon_factor = |
| 2041 | (beacon_val + MAX_UCODE_BEACON_INTERVAL) |
| 2042 | / MAX_UCODE_BEACON_INTERVAL; |
| 2043 | new_val = beacon_val / beacon_factor; |
| 2044 | |
| 2045 | return cpu_to_le16(new_val); |
| 2046 | } |
| 2047 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2048 | static void iwl3945_setup_rxon_timing(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2049 | { |
| 2050 | u64 interval_tm_unit; |
| 2051 | u64 tsf, result; |
| 2052 | unsigned long flags; |
| 2053 | struct ieee80211_conf *conf = NULL; |
| 2054 | u16 beacon_int = 0; |
| 2055 | |
| 2056 | conf = ieee80211_get_hw_conf(priv->hw); |
| 2057 | |
| 2058 | spin_lock_irqsave(&priv->lock, flags); |
| 2059 | priv->rxon_timing.timestamp.dw[1] = cpu_to_le32(priv->timestamp1); |
| 2060 | priv->rxon_timing.timestamp.dw[0] = cpu_to_le32(priv->timestamp0); |
| 2061 | |
| 2062 | priv->rxon_timing.listen_interval = INTEL_CONN_LISTEN_INTERVAL; |
| 2063 | |
| 2064 | tsf = priv->timestamp1; |
| 2065 | tsf = ((tsf << 32) | priv->timestamp0); |
| 2066 | |
| 2067 | beacon_int = priv->beacon_int; |
| 2068 | spin_unlock_irqrestore(&priv->lock, flags); |
| 2069 | |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 2070 | if (priv->iw_mode == NL80211_IFTYPE_STATION) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2071 | if (beacon_int == 0) { |
| 2072 | priv->rxon_timing.beacon_interval = cpu_to_le16(100); |
| 2073 | priv->rxon_timing.beacon_init_val = cpu_to_le32(102400); |
| 2074 | } else { |
| 2075 | priv->rxon_timing.beacon_interval = |
| 2076 | cpu_to_le16(beacon_int); |
| 2077 | priv->rxon_timing.beacon_interval = |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2078 | iwl3945_adjust_beacon_interval( |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2079 | le16_to_cpu(priv->rxon_timing.beacon_interval)); |
| 2080 | } |
| 2081 | |
| 2082 | priv->rxon_timing.atim_window = 0; |
| 2083 | } else { |
| 2084 | priv->rxon_timing.beacon_interval = |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2085 | iwl3945_adjust_beacon_interval(conf->beacon_int); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2086 | /* TODO: we need to get atim_window from upper stack |
| 2087 | * for now we set to 0 */ |
| 2088 | priv->rxon_timing.atim_window = 0; |
| 2089 | } |
| 2090 | |
| 2091 | interval_tm_unit = |
| 2092 | (le16_to_cpu(priv->rxon_timing.beacon_interval) * 1024); |
| 2093 | result = do_div(tsf, interval_tm_unit); |
| 2094 | priv->rxon_timing.beacon_init_val = |
| 2095 | cpu_to_le32((u32) ((u64) interval_tm_unit - result)); |
| 2096 | |
| 2097 | IWL_DEBUG_ASSOC |
| 2098 | ("beacon interval %d beacon timer %d beacon tim %d\n", |
| 2099 | le16_to_cpu(priv->rxon_timing.beacon_interval), |
| 2100 | le32_to_cpu(priv->rxon_timing.beacon_init_val), |
| 2101 | le16_to_cpu(priv->rxon_timing.atim_window)); |
| 2102 | } |
| 2103 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2104 | static int iwl3945_scan_initiate(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2105 | { |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 2106 | if (priv->iw_mode == NL80211_IFTYPE_AP) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2107 | IWL_ERROR("APs don't scan.\n"); |
| 2108 | return 0; |
| 2109 | } |
| 2110 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2111 | if (!iwl3945_is_ready_rf(priv)) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2112 | IWL_DEBUG_SCAN("Aborting scan due to not ready.\n"); |
| 2113 | return -EIO; |
| 2114 | } |
| 2115 | |
| 2116 | if (test_bit(STATUS_SCANNING, &priv->status)) { |
| 2117 | IWL_DEBUG_SCAN("Scan already in progress.\n"); |
| 2118 | return -EAGAIN; |
| 2119 | } |
| 2120 | |
| 2121 | if (test_bit(STATUS_SCAN_ABORTING, &priv->status)) { |
| 2122 | IWL_DEBUG_SCAN("Scan request while abort pending. " |
| 2123 | "Queuing.\n"); |
| 2124 | return -EAGAIN; |
| 2125 | } |
| 2126 | |
| 2127 | IWL_DEBUG_INFO("Starting scan...\n"); |
Ron Rindjunsky | 66b5004 | 2008-06-25 16:46:31 +0800 | [diff] [blame] | 2128 | if (priv->cfg->sku & IWL_SKU_G) |
| 2129 | priv->scan_bands |= BIT(IEEE80211_BAND_2GHZ); |
| 2130 | if (priv->cfg->sku & IWL_SKU_A) |
| 2131 | priv->scan_bands |= BIT(IEEE80211_BAND_5GHZ); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2132 | set_bit(STATUS_SCANNING, &priv->status); |
| 2133 | priv->scan_start = jiffies; |
| 2134 | priv->scan_pass_start = priv->scan_start; |
| 2135 | |
| 2136 | queue_work(priv->workqueue, &priv->request_scan); |
| 2137 | |
| 2138 | return 0; |
| 2139 | } |
| 2140 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2141 | static int iwl3945_set_rxon_hwcrypto(struct iwl3945_priv *priv, int hw_decrypt) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2142 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2143 | struct iwl3945_rxon_cmd *rxon = &priv->staging_rxon; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2144 | |
| 2145 | if (hw_decrypt) |
| 2146 | rxon->filter_flags &= ~RXON_FILTER_DIS_DECRYPT_MSK; |
| 2147 | else |
| 2148 | rxon->filter_flags |= RXON_FILTER_DIS_DECRYPT_MSK; |
| 2149 | |
| 2150 | return 0; |
| 2151 | } |
| 2152 | |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 2153 | static void iwl3945_set_flags_for_phymode(struct iwl3945_priv *priv, |
| 2154 | enum ieee80211_band band) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2155 | { |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 2156 | if (band == IEEE80211_BAND_5GHZ) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2157 | priv->staging_rxon.flags &= |
| 2158 | ~(RXON_FLG_BAND_24G_MSK | RXON_FLG_AUTO_DETECT_MSK |
| 2159 | | RXON_FLG_CCK_MSK); |
| 2160 | priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK; |
| 2161 | } else { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2162 | /* Copied from iwl3945_bg_post_associate() */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2163 | if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_SLOT_TIME) |
| 2164 | priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK; |
| 2165 | else |
| 2166 | priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK; |
| 2167 | |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 2168 | if (priv->iw_mode == NL80211_IFTYPE_ADHOC) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2169 | priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK; |
| 2170 | |
| 2171 | priv->staging_rxon.flags |= RXON_FLG_BAND_24G_MSK; |
| 2172 | priv->staging_rxon.flags |= RXON_FLG_AUTO_DETECT_MSK; |
| 2173 | priv->staging_rxon.flags &= ~RXON_FLG_CCK_MSK; |
| 2174 | } |
| 2175 | } |
| 2176 | |
| 2177 | /* |
Ian Schram | 01ebd06 | 2007-10-25 17:15:22 +0800 | [diff] [blame] | 2178 | * initialize rxon structure with default values from eeprom |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2179 | */ |
Zhu, Yi | 60294de | 2008-10-29 14:05:45 -0700 | [diff] [blame] | 2180 | static void iwl3945_connection_init_rx_config(struct iwl3945_priv *priv, |
| 2181 | int mode) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2182 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2183 | const struct iwl3945_channel_info *ch_info; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2184 | |
| 2185 | memset(&priv->staging_rxon, 0, sizeof(priv->staging_rxon)); |
| 2186 | |
Zhu, Yi | 60294de | 2008-10-29 14:05:45 -0700 | [diff] [blame] | 2187 | switch (mode) { |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 2188 | case NL80211_IFTYPE_AP: |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2189 | priv->staging_rxon.dev_type = RXON_DEV_TYPE_AP; |
| 2190 | break; |
| 2191 | |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 2192 | case NL80211_IFTYPE_STATION: |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2193 | priv->staging_rxon.dev_type = RXON_DEV_TYPE_ESS; |
| 2194 | priv->staging_rxon.filter_flags = RXON_FILTER_ACCEPT_GRP_MSK; |
| 2195 | break; |
| 2196 | |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 2197 | case NL80211_IFTYPE_ADHOC: |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2198 | priv->staging_rxon.dev_type = RXON_DEV_TYPE_IBSS; |
| 2199 | priv->staging_rxon.flags = RXON_FLG_SHORT_PREAMBLE_MSK; |
| 2200 | priv->staging_rxon.filter_flags = RXON_FILTER_BCON_AWARE_MSK | |
| 2201 | RXON_FILTER_ACCEPT_GRP_MSK; |
| 2202 | break; |
| 2203 | |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 2204 | case NL80211_IFTYPE_MONITOR: |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2205 | priv->staging_rxon.dev_type = RXON_DEV_TYPE_SNIFFER; |
| 2206 | priv->staging_rxon.filter_flags = RXON_FILTER_PROMISC_MSK | |
| 2207 | RXON_FILTER_CTL2HOST_MSK | RXON_FILTER_ACCEPT_GRP_MSK; |
| 2208 | break; |
Tomas Winkler | 69dc5d9 | 2008-03-25 16:33:41 -0700 | [diff] [blame] | 2209 | default: |
Zhu, Yi | 60294de | 2008-10-29 14:05:45 -0700 | [diff] [blame] | 2210 | IWL_ERROR("Unsupported interface type %d\n", mode); |
Tomas Winkler | 69dc5d9 | 2008-03-25 16:33:41 -0700 | [diff] [blame] | 2211 | break; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2212 | } |
| 2213 | |
| 2214 | #if 0 |
| 2215 | /* TODO: Figure out when short_preamble would be set and cache from |
| 2216 | * that */ |
| 2217 | if (!hw_to_local(priv->hw)->short_preamble) |
| 2218 | priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK; |
| 2219 | else |
| 2220 | priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK; |
| 2221 | #endif |
| 2222 | |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 2223 | ch_info = iwl3945_get_channel_info(priv, priv->band, |
Rick Farrington | 25b3f57 | 2008-06-30 17:23:28 +0800 | [diff] [blame] | 2224 | le16_to_cpu(priv->active_rxon.channel)); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2225 | |
| 2226 | if (!ch_info) |
| 2227 | ch_info = &priv->channel_info[0]; |
| 2228 | |
| 2229 | /* |
| 2230 | * in some case A channels are all non IBSS |
| 2231 | * in this case force B/G channel |
| 2232 | */ |
Zhu, Yi | 60294de | 2008-10-29 14:05:45 -0700 | [diff] [blame] | 2233 | if ((mode == NL80211_IFTYPE_ADHOC) && !(is_channel_ibss(ch_info))) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2234 | ch_info = &priv->channel_info[0]; |
| 2235 | |
| 2236 | priv->staging_rxon.channel = cpu_to_le16(ch_info->channel); |
| 2237 | if (is_channel_a_band(ch_info)) |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 2238 | priv->band = IEEE80211_BAND_5GHZ; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2239 | else |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 2240 | priv->band = IEEE80211_BAND_2GHZ; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2241 | |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 2242 | iwl3945_set_flags_for_phymode(priv, priv->band); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2243 | |
| 2244 | priv->staging_rxon.ofdm_basic_rates = |
| 2245 | (IWL_OFDM_RATES_MASK >> IWL_FIRST_OFDM_RATE) & 0xFF; |
| 2246 | priv->staging_rxon.cck_basic_rates = |
| 2247 | (IWL_CCK_RATES_MASK >> IWL_FIRST_CCK_RATE) & 0xF; |
| 2248 | } |
| 2249 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2250 | static int iwl3945_set_mode(struct iwl3945_priv *priv, int mode) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2251 | { |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 2252 | if (mode == NL80211_IFTYPE_ADHOC) { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2253 | const struct iwl3945_channel_info *ch_info; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2254 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2255 | ch_info = iwl3945_get_channel_info(priv, |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 2256 | priv->band, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2257 | le16_to_cpu(priv->staging_rxon.channel)); |
| 2258 | |
| 2259 | if (!ch_info || !is_channel_ibss(ch_info)) { |
| 2260 | IWL_ERROR("channel %d not IBSS channel\n", |
| 2261 | le16_to_cpu(priv->staging_rxon.channel)); |
| 2262 | return -EINVAL; |
| 2263 | } |
| 2264 | } |
| 2265 | |
Zhu, Yi | 60294de | 2008-10-29 14:05:45 -0700 | [diff] [blame] | 2266 | iwl3945_connection_init_rx_config(priv, mode); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2267 | memcpy(priv->staging_rxon.node_addr, priv->mac_addr, ETH_ALEN); |
| 2268 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2269 | iwl3945_clear_stations_table(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2270 | |
Tomas Winkler | a96a27f | 2008-10-23 23:48:56 -0700 | [diff] [blame] | 2271 | /* don't commit rxon if rf-kill is on*/ |
Mohamed Abbas | fde3571 | 2007-11-29 11:10:15 +0800 | [diff] [blame] | 2272 | if (!iwl3945_is_ready_rf(priv)) |
| 2273 | return -EAGAIN; |
| 2274 | |
| 2275 | cancel_delayed_work(&priv->scan_check); |
| 2276 | if (iwl3945_scan_cancel_timeout(priv, 100)) { |
| 2277 | IWL_WARNING("Aborted scan still in progress after 100ms\n"); |
| 2278 | IWL_DEBUG_MAC80211("leaving - scan abort failed.\n"); |
| 2279 | return -EAGAIN; |
| 2280 | } |
| 2281 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2282 | iwl3945_commit_rxon(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2283 | |
| 2284 | return 0; |
| 2285 | } |
| 2286 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2287 | static void iwl3945_build_tx_cmd_hwcrypto(struct iwl3945_priv *priv, |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 2288 | struct ieee80211_tx_info *info, |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2289 | struct iwl3945_cmd *cmd, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2290 | struct sk_buff *skb_frag, |
| 2291 | int last_frag) |
| 2292 | { |
Ivo van Doorn | 1c01442 | 2008-04-17 19:41:02 +0200 | [diff] [blame] | 2293 | struct iwl3945_hw_key *keyinfo = |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 2294 | &priv->stations[info->control.hw_key->hw_key_idx].keyinfo; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2295 | |
| 2296 | switch (keyinfo->alg) { |
| 2297 | case ALG_CCMP: |
| 2298 | cmd->cmd.tx.sec_ctl = TX_CMD_SEC_CCM; |
| 2299 | memcpy(cmd->cmd.tx.key, keyinfo->key, keyinfo->keylen); |
Tomas Winkler | a96a27f | 2008-10-23 23:48:56 -0700 | [diff] [blame] | 2300 | IWL_DEBUG_TX("tx_cmd with AES hwcrypto\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2301 | break; |
| 2302 | |
| 2303 | case ALG_TKIP: |
| 2304 | #if 0 |
| 2305 | cmd->cmd.tx.sec_ctl = TX_CMD_SEC_TKIP; |
| 2306 | |
| 2307 | if (last_frag) |
| 2308 | memcpy(cmd->cmd.tx.tkip_mic.byte, skb_frag->tail - 8, |
| 2309 | 8); |
| 2310 | else |
| 2311 | memset(cmd->cmd.tx.tkip_mic.byte, 0, 8); |
| 2312 | #endif |
| 2313 | break; |
| 2314 | |
| 2315 | case ALG_WEP: |
| 2316 | cmd->cmd.tx.sec_ctl = TX_CMD_SEC_WEP | |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 2317 | (info->control.hw_key->hw_key_idx & TX_CMD_SEC_MSK) << TX_CMD_SEC_SHIFT; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2318 | |
| 2319 | if (keyinfo->keylen == 13) |
| 2320 | cmd->cmd.tx.sec_ctl |= TX_CMD_SEC_KEY128; |
| 2321 | |
| 2322 | memcpy(&cmd->cmd.tx.key[3], keyinfo->key, keyinfo->keylen); |
| 2323 | |
| 2324 | IWL_DEBUG_TX("Configuring packet for WEP encryption " |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 2325 | "with key %d\n", info->control.hw_key->hw_key_idx); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2326 | break; |
| 2327 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2328 | default: |
| 2329 | printk(KERN_ERR "Unknown encode alg %d\n", keyinfo->alg); |
| 2330 | break; |
| 2331 | } |
| 2332 | } |
| 2333 | |
| 2334 | /* |
| 2335 | * handle build REPLY_TX command notification. |
| 2336 | */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2337 | static void iwl3945_build_tx_cmd_basic(struct iwl3945_priv *priv, |
| 2338 | struct iwl3945_cmd *cmd, |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 2339 | struct ieee80211_tx_info *info, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2340 | struct ieee80211_hdr *hdr, |
| 2341 | int is_unicast, u8 std_id) |
| 2342 | { |
Harvey Harrison | fd7c8a4 | 2008-06-11 14:21:56 -0700 | [diff] [blame] | 2343 | __le16 fc = hdr->frame_control; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2344 | __le32 tx_flags = cmd->cmd.tx.tx_flags; |
Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 2345 | u8 rc_flags = info->control.rates[0].flags; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2346 | |
| 2347 | cmd->cmd.tx.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE; |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 2348 | if (!(info->flags & IEEE80211_TX_CTL_NO_ACK)) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2349 | tx_flags |= TX_CMD_FLG_ACK_MSK; |
Harvey Harrison | fd7c8a4 | 2008-06-11 14:21:56 -0700 | [diff] [blame] | 2350 | if (ieee80211_is_mgmt(fc)) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2351 | tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK; |
Harvey Harrison | fd7c8a4 | 2008-06-11 14:21:56 -0700 | [diff] [blame] | 2352 | if (ieee80211_is_probe_resp(fc) && |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2353 | !(le16_to_cpu(hdr->seq_ctrl) & 0xf)) |
| 2354 | tx_flags |= TX_CMD_FLG_TSF_MSK; |
| 2355 | } else { |
| 2356 | tx_flags &= (~TX_CMD_FLG_ACK_MSK); |
| 2357 | tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK; |
| 2358 | } |
| 2359 | |
| 2360 | cmd->cmd.tx.sta_id = std_id; |
Harvey Harrison | 8b7b1e0 | 2008-06-11 14:21:56 -0700 | [diff] [blame] | 2361 | if (ieee80211_has_morefrags(fc)) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2362 | tx_flags |= TX_CMD_FLG_MORE_FRAG_MSK; |
| 2363 | |
Harvey Harrison | fd7c8a4 | 2008-06-11 14:21:56 -0700 | [diff] [blame] | 2364 | if (ieee80211_is_data_qos(fc)) { |
| 2365 | u8 *qc = ieee80211_get_qos_ctl(hdr); |
Tomas Winkler | 54dbb52 | 2008-05-15 13:54:06 +0800 | [diff] [blame] | 2366 | cmd->cmd.tx.tid_tspec = qc[0] & 0xf; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2367 | tx_flags &= ~TX_CMD_FLG_SEQ_CTL_MSK; |
Tomas Winkler | 54dbb52 | 2008-05-15 13:54:06 +0800 | [diff] [blame] | 2368 | } else { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2369 | tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK; |
Tomas Winkler | 54dbb52 | 2008-05-15 13:54:06 +0800 | [diff] [blame] | 2370 | } |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2371 | |
Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 2372 | if (rc_flags & IEEE80211_TX_RC_USE_RTS_CTS) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2373 | tx_flags |= TX_CMD_FLG_RTS_MSK; |
| 2374 | tx_flags &= ~TX_CMD_FLG_CTS_MSK; |
Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 2375 | } else if (rc_flags & IEEE80211_TX_RC_USE_CTS_PROTECT) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2376 | tx_flags &= ~TX_CMD_FLG_RTS_MSK; |
| 2377 | tx_flags |= TX_CMD_FLG_CTS_MSK; |
| 2378 | } |
| 2379 | |
| 2380 | if ((tx_flags & TX_CMD_FLG_RTS_MSK) || (tx_flags & TX_CMD_FLG_CTS_MSK)) |
| 2381 | tx_flags |= TX_CMD_FLG_FULL_TXOP_PROT_MSK; |
| 2382 | |
| 2383 | tx_flags &= ~(TX_CMD_FLG_ANT_SEL_MSK); |
Harvey Harrison | fd7c8a4 | 2008-06-11 14:21:56 -0700 | [diff] [blame] | 2384 | if (ieee80211_is_mgmt(fc)) { |
| 2385 | if (ieee80211_is_assoc_req(fc) || ieee80211_is_reassoc_req(fc)) |
Ian Schram | bc434dd | 2007-10-25 17:15:29 +0800 | [diff] [blame] | 2386 | cmd->cmd.tx.timeout.pm_frame_timeout = cpu_to_le16(3); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2387 | else |
Ian Schram | bc434dd | 2007-10-25 17:15:29 +0800 | [diff] [blame] | 2388 | cmd->cmd.tx.timeout.pm_frame_timeout = cpu_to_le16(2); |
Mohamed Abbas | ab53d8a | 2008-03-25 16:33:36 -0700 | [diff] [blame] | 2389 | } else { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2390 | cmd->cmd.tx.timeout.pm_frame_timeout = 0; |
Mohamed Abbas | ab53d8a | 2008-03-25 16:33:36 -0700 | [diff] [blame] | 2391 | #ifdef CONFIG_IWL3945_LEDS |
| 2392 | priv->rxtxpackets += le16_to_cpu(cmd->cmd.tx.len); |
| 2393 | #endif |
| 2394 | } |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2395 | |
| 2396 | cmd->cmd.tx.driver_txop = 0; |
| 2397 | cmd->cmd.tx.tx_flags = tx_flags; |
| 2398 | cmd->cmd.tx.next_frame_len = 0; |
| 2399 | } |
| 2400 | |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 2401 | /** |
| 2402 | * iwl3945_get_sta_id - Find station's index within station table |
| 2403 | */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2404 | static int iwl3945_get_sta_id(struct iwl3945_priv *priv, struct ieee80211_hdr *hdr) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2405 | { |
| 2406 | int sta_id; |
| 2407 | u16 fc = le16_to_cpu(hdr->frame_control); |
| 2408 | |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 2409 | /* If this frame is broadcast or management, use broadcast station id */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2410 | if (((fc & IEEE80211_FCTL_FTYPE) != IEEE80211_FTYPE_DATA) || |
| 2411 | is_multicast_ether_addr(hdr->addr1)) |
| 2412 | return priv->hw_setting.bcast_sta_id; |
| 2413 | |
| 2414 | switch (priv->iw_mode) { |
| 2415 | |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 2416 | /* If we are a client station in a BSS network, use the special |
| 2417 | * AP station entry (that's the only station we communicate with) */ |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 2418 | case NL80211_IFTYPE_STATION: |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2419 | return IWL_AP_ID; |
| 2420 | |
| 2421 | /* If we are an AP, then find the station, or use BCAST */ |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 2422 | case NL80211_IFTYPE_AP: |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2423 | sta_id = iwl3945_hw_find_station(priv, hdr->addr1); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2424 | if (sta_id != IWL_INVALID_STATION) |
| 2425 | return sta_id; |
| 2426 | return priv->hw_setting.bcast_sta_id; |
| 2427 | |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 2428 | /* If this frame is going out to an IBSS network, find the station, |
| 2429 | * or create a new station table entry */ |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 2430 | case NL80211_IFTYPE_ADHOC: { |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 2431 | /* Create new station table entry */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2432 | sta_id = iwl3945_hw_find_station(priv, hdr->addr1); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2433 | if (sta_id != IWL_INVALID_STATION) |
| 2434 | return sta_id; |
| 2435 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2436 | sta_id = iwl3945_add_station(priv, hdr->addr1, 0, CMD_ASYNC); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2437 | |
| 2438 | if (sta_id != IWL_INVALID_STATION) |
| 2439 | return sta_id; |
| 2440 | |
Johannes Berg | e174961 | 2008-10-27 15:59:26 -0700 | [diff] [blame] | 2441 | IWL_DEBUG_DROP("Station %pM not in station map. " |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2442 | "Defaulting to broadcast...\n", |
Johannes Berg | e174961 | 2008-10-27 15:59:26 -0700 | [diff] [blame] | 2443 | hdr->addr1); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2444 | iwl3945_print_hex_dump(IWL_DL_DROP, (u8 *) hdr, sizeof(*hdr)); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2445 | return priv->hw_setting.bcast_sta_id; |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 2446 | } |
Stefanik Gábor | 914233d | 2008-06-30 17:23:30 +0800 | [diff] [blame] | 2447 | /* If we are in monitor mode, use BCAST. This is required for |
| 2448 | * packet injection. */ |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 2449 | case NL80211_IFTYPE_MONITOR: |
Stefanik Gábor | 914233d | 2008-06-30 17:23:30 +0800 | [diff] [blame] | 2450 | return priv->hw_setting.bcast_sta_id; |
| 2451 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2452 | default: |
Jiri Slaby | 6f14792 | 2008-08-11 23:49:41 +0200 | [diff] [blame] | 2453 | IWL_WARNING("Unknown mode of operation: %d\n", priv->iw_mode); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2454 | return priv->hw_setting.bcast_sta_id; |
| 2455 | } |
| 2456 | } |
| 2457 | |
| 2458 | /* |
| 2459 | * start REPLY_TX command process |
| 2460 | */ |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 2461 | static int iwl3945_tx_skb(struct iwl3945_priv *priv, struct sk_buff *skb) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2462 | { |
| 2463 | struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data; |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 2464 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2465 | struct iwl3945_tfd_frame *tfd; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2466 | u32 *control_flags; |
Johannes Berg | e253008 | 2008-05-17 00:57:14 +0200 | [diff] [blame] | 2467 | int txq_id = skb_get_queue_mapping(skb); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2468 | struct iwl3945_tx_queue *txq = NULL; |
| 2469 | struct iwl3945_queue *q = NULL; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2470 | dma_addr_t phys_addr; |
| 2471 | dma_addr_t txcmd_phys; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2472 | struct iwl3945_cmd *out_cmd = NULL; |
Tomas Winkler | 54dbb52 | 2008-05-15 13:54:06 +0800 | [diff] [blame] | 2473 | u16 len, idx, len_org, hdr_len; |
| 2474 | u8 id; |
| 2475 | u8 unicast; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2476 | u8 sta_id; |
Tomas Winkler | 54dbb52 | 2008-05-15 13:54:06 +0800 | [diff] [blame] | 2477 | u8 tid = 0; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2478 | u16 seq_number = 0; |
Harvey Harrison | fd7c8a4 | 2008-06-11 14:21:56 -0700 | [diff] [blame] | 2479 | __le16 fc; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2480 | u8 wait_write_ptr = 0; |
Tomas Winkler | 54dbb52 | 2008-05-15 13:54:06 +0800 | [diff] [blame] | 2481 | u8 *qc = NULL; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2482 | unsigned long flags; |
| 2483 | int rc; |
| 2484 | |
| 2485 | spin_lock_irqsave(&priv->lock, flags); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2486 | if (iwl3945_is_rfkill(priv)) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2487 | IWL_DEBUG_DROP("Dropping - RF KILL\n"); |
| 2488 | goto drop_unlock; |
| 2489 | } |
| 2490 | |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 2491 | if ((ieee80211_get_tx_rate(priv->hw, info)->hw_value & 0xFF) == IWL_INVALID_RATE) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2492 | IWL_ERROR("ERROR: No TX rate available.\n"); |
| 2493 | goto drop_unlock; |
| 2494 | } |
| 2495 | |
| 2496 | unicast = !is_multicast_ether_addr(hdr->addr1); |
| 2497 | id = 0; |
| 2498 | |
Harvey Harrison | fd7c8a4 | 2008-06-11 14:21:56 -0700 | [diff] [blame] | 2499 | fc = hdr->frame_control; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2500 | |
Christoph Hellwig | c8b0e6e | 2007-10-25 17:15:51 +0800 | [diff] [blame] | 2501 | #ifdef CONFIG_IWL3945_DEBUG |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2502 | if (ieee80211_is_auth(fc)) |
| 2503 | IWL_DEBUG_TX("Sending AUTH frame\n"); |
Harvey Harrison | fd7c8a4 | 2008-06-11 14:21:56 -0700 | [diff] [blame] | 2504 | else if (ieee80211_is_assoc_req(fc)) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2505 | IWL_DEBUG_TX("Sending ASSOC frame\n"); |
Harvey Harrison | fd7c8a4 | 2008-06-11 14:21:56 -0700 | [diff] [blame] | 2506 | else if (ieee80211_is_reassoc_req(fc)) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2507 | IWL_DEBUG_TX("Sending REASSOC frame\n"); |
| 2508 | #endif |
| 2509 | |
Mohamed Abbas | 7878a5a | 2007-11-29 11:10:13 +0800 | [diff] [blame] | 2510 | /* drop all data frame if we are not associated */ |
Stefanik Gábor | 914233d | 2008-06-30 17:23:30 +0800 | [diff] [blame] | 2511 | if (ieee80211_is_data(fc) && |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 2512 | (priv->iw_mode != NL80211_IFTYPE_MONITOR) && /* packet injection */ |
Stefanik Gábor | 914233d | 2008-06-30 17:23:30 +0800 | [diff] [blame] | 2513 | (!iwl3945_is_associated(priv) || |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 2514 | ((priv->iw_mode == NL80211_IFTYPE_STATION) && !priv->assoc_id))) { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2515 | IWL_DEBUG_DROP("Dropping - !iwl3945_is_associated\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2516 | goto drop_unlock; |
| 2517 | } |
| 2518 | |
| 2519 | spin_unlock_irqrestore(&priv->lock, flags); |
| 2520 | |
Harvey Harrison | 7294ec9 | 2008-07-15 18:43:59 -0700 | [diff] [blame] | 2521 | hdr_len = ieee80211_hdrlen(fc); |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 2522 | |
| 2523 | /* Find (or create) index into station table for destination station */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2524 | sta_id = iwl3945_get_sta_id(priv, hdr); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2525 | if (sta_id == IWL_INVALID_STATION) { |
Johannes Berg | e174961 | 2008-10-27 15:59:26 -0700 | [diff] [blame] | 2526 | IWL_DEBUG_DROP("Dropping - INVALID STATION: %pM\n", |
| 2527 | hdr->addr1); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2528 | goto drop; |
| 2529 | } |
| 2530 | |
| 2531 | IWL_DEBUG_RATE("station Id %d\n", sta_id); |
| 2532 | |
Harvey Harrison | fd7c8a4 | 2008-06-11 14:21:56 -0700 | [diff] [blame] | 2533 | if (ieee80211_is_data_qos(fc)) { |
| 2534 | qc = ieee80211_get_qos_ctl(hdr); |
Harvey Harrison | 7294ec9 | 2008-07-15 18:43:59 -0700 | [diff] [blame] | 2535 | tid = qc[0] & IEEE80211_QOS_CTL_TID_MASK; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2536 | seq_number = priv->stations[sta_id].tid[tid].seq_number & |
| 2537 | IEEE80211_SCTL_SEQ; |
| 2538 | hdr->seq_ctrl = cpu_to_le16(seq_number) | |
| 2539 | (hdr->seq_ctrl & |
| 2540 | __constant_cpu_to_le16(IEEE80211_SCTL_FRAG)); |
| 2541 | seq_number += 0x10; |
| 2542 | } |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 2543 | |
| 2544 | /* Descriptor for chosen Tx queue */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2545 | txq = &priv->txq[txq_id]; |
| 2546 | q = &txq->q; |
| 2547 | |
| 2548 | spin_lock_irqsave(&priv->lock, flags); |
| 2549 | |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 2550 | /* Set up first empty TFD within this queue's circular TFD buffer */ |
Tomas Winkler | fc4b685 | 2007-10-25 17:15:24 +0800 | [diff] [blame] | 2551 | tfd = &txq->bd[q->write_ptr]; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2552 | memset(tfd, 0, sizeof(*tfd)); |
| 2553 | control_flags = (u32 *) tfd; |
Tomas Winkler | fc4b685 | 2007-10-25 17:15:24 +0800 | [diff] [blame] | 2554 | idx = get_cmd_index(q, q->write_ptr, 0); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2555 | |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 2556 | /* Set up driver data for this TFD */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2557 | memset(&(txq->txb[q->write_ptr]), 0, sizeof(struct iwl3945_tx_info)); |
Tomas Winkler | fc4b685 | 2007-10-25 17:15:24 +0800 | [diff] [blame] | 2558 | txq->txb[q->write_ptr].skb[0] = skb; |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 2559 | |
| 2560 | /* Init first empty entry in queue's array of Tx/cmd buffers */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2561 | out_cmd = &txq->cmd[idx]; |
| 2562 | memset(&out_cmd->hdr, 0, sizeof(out_cmd->hdr)); |
| 2563 | memset(&out_cmd->cmd.tx, 0, sizeof(out_cmd->cmd.tx)); |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 2564 | |
| 2565 | /* |
| 2566 | * Set up the Tx-command (not MAC!) header. |
| 2567 | * Store the chosen Tx queue and TFD index within the sequence field; |
| 2568 | * after Tx, uCode's Tx response will return this value so driver can |
| 2569 | * locate the frame within the tx queue and do post-tx processing. |
| 2570 | */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2571 | out_cmd->hdr.cmd = REPLY_TX; |
| 2572 | out_cmd->hdr.sequence = cpu_to_le16((u16)(QUEUE_TO_SEQ(txq_id) | |
Tomas Winkler | fc4b685 | 2007-10-25 17:15:24 +0800 | [diff] [blame] | 2573 | INDEX_TO_SEQ(q->write_ptr))); |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 2574 | |
| 2575 | /* Copy MAC header from skb into command buffer */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2576 | memcpy(out_cmd->cmd.tx.hdr, hdr, hdr_len); |
| 2577 | |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 2578 | /* |
| 2579 | * Use the first empty entry in this queue's command buffer array |
| 2580 | * to contain the Tx command and MAC header concatenated together |
| 2581 | * (payload data will be in another buffer). |
| 2582 | * Size of this varies, due to varying MAC header length. |
| 2583 | * If end is not dword aligned, we'll have 2 extra bytes at the end |
| 2584 | * of the MAC header (device reads on dword boundaries). |
| 2585 | * We'll tell device about this padding later. |
| 2586 | */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2587 | len = priv->hw_setting.tx_cmd_len + |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2588 | sizeof(struct iwl3945_cmd_header) + hdr_len; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2589 | |
| 2590 | len_org = len; |
| 2591 | len = (len + 3) & ~3; |
| 2592 | |
| 2593 | if (len_org != len) |
| 2594 | len_org = 1; |
| 2595 | else |
| 2596 | len_org = 0; |
| 2597 | |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 2598 | /* Physical address of this Tx command's header (not MAC header!), |
| 2599 | * within command buffer array. */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2600 | txcmd_phys = txq->dma_addr_cmd + sizeof(struct iwl3945_cmd) * idx + |
| 2601 | offsetof(struct iwl3945_cmd, hdr); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2602 | |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 2603 | /* Add buffer containing Tx command and MAC(!) header to TFD's |
| 2604 | * first entry */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2605 | iwl3945_hw_txq_attach_buf_to_tfd(priv, tfd, txcmd_phys, len); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2606 | |
Johannes Berg | d0f0980 | 2008-07-29 11:32:07 +0200 | [diff] [blame] | 2607 | if (info->control.hw_key) |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 2608 | iwl3945_build_tx_cmd_hwcrypto(priv, info, out_cmd, skb, 0); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2609 | |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 2610 | /* Set up TFD's 2nd entry to point directly to remainder of skb, |
| 2611 | * if any (802.11 null frames have no payload). */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2612 | len = skb->len - hdr_len; |
| 2613 | if (len) { |
| 2614 | phys_addr = pci_map_single(priv->pci_dev, skb->data + hdr_len, |
| 2615 | len, PCI_DMA_TODEVICE); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2616 | iwl3945_hw_txq_attach_buf_to_tfd(priv, tfd, phys_addr, len); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2617 | } |
| 2618 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2619 | if (!len) |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 2620 | /* If there is no payload, then we use only one Tx buffer */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2621 | *control_flags = TFD_CTL_COUNT_SET(1); |
| 2622 | else |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 2623 | /* Else use 2 buffers. |
| 2624 | * Tell 3945 about any padding after MAC header */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2625 | *control_flags = TFD_CTL_COUNT_SET(2) | |
| 2626 | TFD_CTL_PAD_SET(U32_PAD(len)); |
| 2627 | |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 2628 | /* Total # bytes to be transmitted */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2629 | len = (u16)skb->len; |
| 2630 | out_cmd->cmd.tx.len = cpu_to_le16(len); |
| 2631 | |
| 2632 | /* TODO need this for burst mode later on */ |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 2633 | iwl3945_build_tx_cmd_basic(priv, out_cmd, info, hdr, unicast, sta_id); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2634 | |
| 2635 | /* set is_hcca to 0; it probably will never be implemented */ |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 2636 | iwl3945_hw_build_tx_cmd_rate(priv, out_cmd, info, hdr, sta_id, 0); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2637 | |
| 2638 | out_cmd->cmd.tx.tx_flags &= ~TX_CMD_FLG_ANT_A_MSK; |
| 2639 | out_cmd->cmd.tx.tx_flags &= ~TX_CMD_FLG_ANT_B_MSK; |
| 2640 | |
Harvey Harrison | 8b7b1e0 | 2008-06-11 14:21:56 -0700 | [diff] [blame] | 2641 | if (!ieee80211_has_morefrags(hdr->frame_control)) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2642 | txq->need_update = 1; |
Tomas Winkler | 3ac7f14 | 2008-07-21 02:40:14 +0300 | [diff] [blame] | 2643 | if (qc) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2644 | priv->stations[sta_id].tid[tid].seq_number = seq_number; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2645 | } else { |
| 2646 | wait_write_ptr = 1; |
| 2647 | txq->need_update = 0; |
| 2648 | } |
| 2649 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2650 | iwl3945_print_hex_dump(IWL_DL_TX, out_cmd->cmd.payload, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2651 | sizeof(out_cmd->cmd.tx)); |
| 2652 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2653 | iwl3945_print_hex_dump(IWL_DL_TX, (u8 *)out_cmd->cmd.tx.hdr, |
Harvey Harrison | 7294ec9 | 2008-07-15 18:43:59 -0700 | [diff] [blame] | 2654 | ieee80211_hdrlen(fc)); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2655 | |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 2656 | /* Tell device the write index *just past* this latest filled TFD */ |
Tomas Winkler | c54b679 | 2008-03-06 17:36:53 -0800 | [diff] [blame] | 2657 | q->write_ptr = iwl_queue_inc_wrap(q->write_ptr, q->n_bd); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2658 | rc = iwl3945_tx_queue_update_write_ptr(priv, txq); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2659 | spin_unlock_irqrestore(&priv->lock, flags); |
| 2660 | |
| 2661 | if (rc) |
| 2662 | return rc; |
| 2663 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2664 | if ((iwl3945_queue_space(q) < q->high_mark) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2665 | && priv->mac80211_registered) { |
| 2666 | if (wait_write_ptr) { |
| 2667 | spin_lock_irqsave(&priv->lock, flags); |
| 2668 | txq->need_update = 1; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2669 | iwl3945_tx_queue_update_write_ptr(priv, txq); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2670 | spin_unlock_irqrestore(&priv->lock, flags); |
| 2671 | } |
| 2672 | |
Johannes Berg | e253008 | 2008-05-17 00:57:14 +0200 | [diff] [blame] | 2673 | ieee80211_stop_queue(priv->hw, skb_get_queue_mapping(skb)); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2674 | } |
| 2675 | |
| 2676 | return 0; |
| 2677 | |
| 2678 | drop_unlock: |
| 2679 | spin_unlock_irqrestore(&priv->lock, flags); |
| 2680 | drop: |
| 2681 | return -1; |
| 2682 | } |
| 2683 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2684 | static void iwl3945_set_rate(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2685 | { |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 2686 | const struct ieee80211_supported_band *sband = NULL; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2687 | struct ieee80211_rate *rate; |
| 2688 | int i; |
| 2689 | |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 2690 | sband = iwl3945_get_band(priv, priv->band); |
| 2691 | if (!sband) { |
Saleem Abdulrasool | c4ba962 | 2007-11-18 23:59:08 -0800 | [diff] [blame] | 2692 | IWL_ERROR("Failed to set rate: unable to get hw mode\n"); |
| 2693 | return; |
| 2694 | } |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2695 | |
| 2696 | priv->active_rate = 0; |
| 2697 | priv->active_rate_basic = 0; |
| 2698 | |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 2699 | IWL_DEBUG_RATE("Setting rates for %s GHz\n", |
| 2700 | sband->band == IEEE80211_BAND_2GHZ ? "2.4" : "5"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2701 | |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 2702 | for (i = 0; i < sband->n_bitrates; i++) { |
| 2703 | rate = &sband->bitrates[i]; |
| 2704 | if ((rate->hw_value < IWL_RATE_COUNT) && |
| 2705 | !(rate->flags & IEEE80211_CHAN_DISABLED)) { |
| 2706 | IWL_DEBUG_RATE("Adding rate index %d (plcp %d)\n", |
| 2707 | rate->hw_value, iwl3945_rates[rate->hw_value].plcp); |
| 2708 | priv->active_rate |= (1 << rate->hw_value); |
| 2709 | } |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2710 | } |
| 2711 | |
| 2712 | IWL_DEBUG_RATE("Set active_rate = %0x, active_rate_basic = %0x\n", |
| 2713 | priv->active_rate, priv->active_rate_basic); |
| 2714 | |
| 2715 | /* |
| 2716 | * If a basic rate is configured, then use it (adding IWL_RATE_1M_MASK) |
| 2717 | * otherwise set it to the default of all CCK rates and 6, 12, 24 for |
| 2718 | * OFDM |
| 2719 | */ |
| 2720 | if (priv->active_rate_basic & IWL_CCK_BASIC_RATES_MASK) |
| 2721 | priv->staging_rxon.cck_basic_rates = |
| 2722 | ((priv->active_rate_basic & |
| 2723 | IWL_CCK_RATES_MASK) >> IWL_FIRST_CCK_RATE) & 0xF; |
| 2724 | else |
| 2725 | priv->staging_rxon.cck_basic_rates = |
| 2726 | (IWL_CCK_BASIC_RATES_MASK >> IWL_FIRST_CCK_RATE) & 0xF; |
| 2727 | |
| 2728 | if (priv->active_rate_basic & IWL_OFDM_BASIC_RATES_MASK) |
| 2729 | priv->staging_rxon.ofdm_basic_rates = |
| 2730 | ((priv->active_rate_basic & |
| 2731 | (IWL_OFDM_BASIC_RATES_MASK | IWL_RATE_6M_MASK)) >> |
| 2732 | IWL_FIRST_OFDM_RATE) & 0xFF; |
| 2733 | else |
| 2734 | priv->staging_rxon.ofdm_basic_rates = |
| 2735 | (IWL_OFDM_BASIC_RATES_MASK >> IWL_FIRST_OFDM_RATE) & 0xFF; |
| 2736 | } |
| 2737 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2738 | static void iwl3945_radio_kill_sw(struct iwl3945_priv *priv, int disable_radio) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2739 | { |
| 2740 | unsigned long flags; |
| 2741 | |
| 2742 | if (!!disable_radio == test_bit(STATUS_RF_KILL_SW, &priv->status)) |
| 2743 | return; |
| 2744 | |
| 2745 | IWL_DEBUG_RF_KILL("Manual SW RF KILL set to: RADIO %s\n", |
| 2746 | disable_radio ? "OFF" : "ON"); |
| 2747 | |
| 2748 | if (disable_radio) { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2749 | iwl3945_scan_cancel(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2750 | /* FIXME: This is a workaround for AP */ |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 2751 | if (priv->iw_mode != NL80211_IFTYPE_AP) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2752 | spin_lock_irqsave(&priv->lock, flags); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2753 | iwl3945_write32(priv, CSR_UCODE_DRV_GP1_SET, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2754 | CSR_UCODE_SW_BIT_RFKILL); |
| 2755 | spin_unlock_irqrestore(&priv->lock, flags); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2756 | iwl3945_send_card_state(priv, CARD_STATE_CMD_DISABLE, 0); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2757 | set_bit(STATUS_RF_KILL_SW, &priv->status); |
| 2758 | } |
| 2759 | return; |
| 2760 | } |
| 2761 | |
| 2762 | spin_lock_irqsave(&priv->lock, flags); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2763 | iwl3945_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2764 | |
| 2765 | clear_bit(STATUS_RF_KILL_SW, &priv->status); |
| 2766 | spin_unlock_irqrestore(&priv->lock, flags); |
| 2767 | |
| 2768 | /* wake up ucode */ |
| 2769 | msleep(10); |
| 2770 | |
| 2771 | spin_lock_irqsave(&priv->lock, flags); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2772 | iwl3945_read32(priv, CSR_UCODE_DRV_GP1); |
| 2773 | if (!iwl3945_grab_nic_access(priv)) |
| 2774 | iwl3945_release_nic_access(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2775 | spin_unlock_irqrestore(&priv->lock, flags); |
| 2776 | |
| 2777 | if (test_bit(STATUS_RF_KILL_HW, &priv->status)) { |
| 2778 | IWL_DEBUG_RF_KILL("Can not turn radio back on - " |
| 2779 | "disabled by HW switch\n"); |
| 2780 | return; |
| 2781 | } |
| 2782 | |
Zhu Yi | 808e72a | 2008-06-12 09:47:17 +0800 | [diff] [blame] | 2783 | if (priv->is_open) |
| 2784 | queue_work(priv->workqueue, &priv->restart); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2785 | return; |
| 2786 | } |
| 2787 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2788 | void iwl3945_set_decrypted_flag(struct iwl3945_priv *priv, struct sk_buff *skb, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2789 | u32 decrypt_res, struct ieee80211_rx_status *stats) |
| 2790 | { |
| 2791 | u16 fc = |
| 2792 | le16_to_cpu(((struct ieee80211_hdr *)skb->data)->frame_control); |
| 2793 | |
| 2794 | if (priv->active_rxon.filter_flags & RXON_FILTER_DIS_DECRYPT_MSK) |
| 2795 | return; |
| 2796 | |
| 2797 | if (!(fc & IEEE80211_FCTL_PROTECTED)) |
| 2798 | return; |
| 2799 | |
| 2800 | IWL_DEBUG_RX("decrypt_res:0x%x\n", decrypt_res); |
| 2801 | switch (decrypt_res & RX_RES_STATUS_SEC_TYPE_MSK) { |
| 2802 | case RX_RES_STATUS_SEC_TYPE_TKIP: |
| 2803 | if ((decrypt_res & RX_RES_STATUS_DECRYPT_TYPE_MSK) == |
| 2804 | RX_RES_STATUS_BAD_ICV_MIC) |
| 2805 | stats->flag |= RX_FLAG_MMIC_ERROR; |
| 2806 | case RX_RES_STATUS_SEC_TYPE_WEP: |
| 2807 | case RX_RES_STATUS_SEC_TYPE_CCMP: |
| 2808 | if ((decrypt_res & RX_RES_STATUS_DECRYPT_TYPE_MSK) == |
| 2809 | RX_RES_STATUS_DECRYPT_OK) { |
| 2810 | IWL_DEBUG_RX("hw decrypt successfully!!!\n"); |
| 2811 | stats->flag |= RX_FLAG_DECRYPTED; |
| 2812 | } |
| 2813 | break; |
| 2814 | |
| 2815 | default: |
| 2816 | break; |
| 2817 | } |
| 2818 | } |
| 2819 | |
Christoph Hellwig | c8b0e6e | 2007-10-25 17:15:51 +0800 | [diff] [blame] | 2820 | #ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2821 | |
| 2822 | #include "iwl-spectrum.h" |
| 2823 | |
| 2824 | #define BEACON_TIME_MASK_LOW 0x00FFFFFF |
| 2825 | #define BEACON_TIME_MASK_HIGH 0xFF000000 |
| 2826 | #define TIME_UNIT 1024 |
| 2827 | |
| 2828 | /* |
| 2829 | * extended beacon time format |
| 2830 | * time in usec will be changed into a 32-bit value in 8:24 format |
| 2831 | * the high 1 byte is the beacon counts |
| 2832 | * the lower 3 bytes is the time in usec within one beacon interval |
| 2833 | */ |
| 2834 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2835 | static u32 iwl3945_usecs_to_beacons(u32 usec, u32 beacon_interval) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2836 | { |
| 2837 | u32 quot; |
| 2838 | u32 rem; |
| 2839 | u32 interval = beacon_interval * 1024; |
| 2840 | |
| 2841 | if (!interval || !usec) |
| 2842 | return 0; |
| 2843 | |
| 2844 | quot = (usec / interval) & (BEACON_TIME_MASK_HIGH >> 24); |
| 2845 | rem = (usec % interval) & BEACON_TIME_MASK_LOW; |
| 2846 | |
| 2847 | return (quot << 24) + rem; |
| 2848 | } |
| 2849 | |
| 2850 | /* base is usually what we get from ucode with each received frame, |
| 2851 | * the same as HW timer counter counting down |
| 2852 | */ |
| 2853 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2854 | static __le32 iwl3945_add_beacon_time(u32 base, u32 addon, u32 beacon_interval) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2855 | { |
| 2856 | u32 base_low = base & BEACON_TIME_MASK_LOW; |
| 2857 | u32 addon_low = addon & BEACON_TIME_MASK_LOW; |
| 2858 | u32 interval = beacon_interval * TIME_UNIT; |
| 2859 | u32 res = (base & BEACON_TIME_MASK_HIGH) + |
| 2860 | (addon & BEACON_TIME_MASK_HIGH); |
| 2861 | |
| 2862 | if (base_low > addon_low) |
| 2863 | res += base_low - addon_low; |
| 2864 | else if (base_low < addon_low) { |
| 2865 | res += interval + base_low - addon_low; |
| 2866 | res += (1 << 24); |
| 2867 | } else |
| 2868 | res += (1 << 24); |
| 2869 | |
| 2870 | return cpu_to_le32(res); |
| 2871 | } |
| 2872 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2873 | static int iwl3945_get_measurement(struct iwl3945_priv *priv, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2874 | struct ieee80211_measurement_params *params, |
| 2875 | u8 type) |
| 2876 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2877 | struct iwl3945_spectrum_cmd spectrum; |
| 2878 | struct iwl3945_rx_packet *res; |
| 2879 | struct iwl3945_host_cmd cmd = { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2880 | .id = REPLY_SPECTRUM_MEASUREMENT_CMD, |
| 2881 | .data = (void *)&spectrum, |
| 2882 | .meta.flags = CMD_WANT_SKB, |
| 2883 | }; |
| 2884 | u32 add_time = le64_to_cpu(params->start_time); |
| 2885 | int rc; |
| 2886 | int spectrum_resp_status; |
| 2887 | int duration = le16_to_cpu(params->duration); |
| 2888 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2889 | if (iwl3945_is_associated(priv)) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2890 | add_time = |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2891 | iwl3945_usecs_to_beacons( |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2892 | le64_to_cpu(params->start_time) - priv->last_tsf, |
| 2893 | le16_to_cpu(priv->rxon_timing.beacon_interval)); |
| 2894 | |
| 2895 | memset(&spectrum, 0, sizeof(spectrum)); |
| 2896 | |
| 2897 | spectrum.channel_count = cpu_to_le16(1); |
| 2898 | spectrum.flags = |
| 2899 | RXON_FLG_TSF2HOST_MSK | RXON_FLG_ANT_A_MSK | RXON_FLG_DIS_DIV_MSK; |
| 2900 | spectrum.filter_flags = MEASUREMENT_FILTER_FLAG; |
| 2901 | cmd.len = sizeof(spectrum); |
| 2902 | spectrum.len = cpu_to_le16(cmd.len - sizeof(spectrum.len)); |
| 2903 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2904 | if (iwl3945_is_associated(priv)) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2905 | spectrum.start_time = |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2906 | iwl3945_add_beacon_time(priv->last_beacon_time, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2907 | add_time, |
| 2908 | le16_to_cpu(priv->rxon_timing.beacon_interval)); |
| 2909 | else |
| 2910 | spectrum.start_time = 0; |
| 2911 | |
| 2912 | spectrum.channels[0].duration = cpu_to_le32(duration * TIME_UNIT); |
| 2913 | spectrum.channels[0].channel = params->channel; |
| 2914 | spectrum.channels[0].type = type; |
| 2915 | if (priv->active_rxon.flags & RXON_FLG_BAND_24G_MSK) |
| 2916 | spectrum.flags |= RXON_FLG_BAND_24G_MSK | |
| 2917 | RXON_FLG_AUTO_DETECT_MSK | RXON_FLG_TGG_PROTECT_MSK; |
| 2918 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2919 | rc = iwl3945_send_cmd_sync(priv, &cmd); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2920 | if (rc) |
| 2921 | return rc; |
| 2922 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2923 | res = (struct iwl3945_rx_packet *)cmd.meta.u.skb->data; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2924 | if (res->hdr.flags & IWL_CMD_FAILED_MSK) { |
| 2925 | IWL_ERROR("Bad return from REPLY_RX_ON_ASSOC command\n"); |
| 2926 | rc = -EIO; |
| 2927 | } |
| 2928 | |
| 2929 | spectrum_resp_status = le16_to_cpu(res->u.spectrum.status); |
| 2930 | switch (spectrum_resp_status) { |
| 2931 | case 0: /* Command will be handled */ |
| 2932 | if (res->u.spectrum.id != 0xff) { |
Ian Schram | bc434dd | 2007-10-25 17:15:29 +0800 | [diff] [blame] | 2933 | IWL_DEBUG_INFO("Replaced existing measurement: %d\n", |
| 2934 | res->u.spectrum.id); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2935 | priv->measurement_status &= ~MEASUREMENT_READY; |
| 2936 | } |
| 2937 | priv->measurement_status |= MEASUREMENT_ACTIVE; |
| 2938 | rc = 0; |
| 2939 | break; |
| 2940 | |
| 2941 | case 1: /* Command will not be handled */ |
| 2942 | rc = -EAGAIN; |
| 2943 | break; |
| 2944 | } |
| 2945 | |
| 2946 | dev_kfree_skb_any(cmd.meta.u.skb); |
| 2947 | |
| 2948 | return rc; |
| 2949 | } |
| 2950 | #endif |
| 2951 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2952 | static void iwl3945_rx_reply_alive(struct iwl3945_priv *priv, |
| 2953 | struct iwl3945_rx_mem_buffer *rxb) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2954 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2955 | struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data; |
| 2956 | struct iwl3945_alive_resp *palive; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2957 | struct delayed_work *pwork; |
| 2958 | |
| 2959 | palive = &pkt->u.alive_frame; |
| 2960 | |
| 2961 | IWL_DEBUG_INFO("Alive ucode status 0x%08X revision " |
| 2962 | "0x%01X 0x%01X\n", |
| 2963 | palive->is_valid, palive->ver_type, |
| 2964 | palive->ver_subtype); |
| 2965 | |
| 2966 | if (palive->ver_subtype == INITIALIZE_SUBTYPE) { |
| 2967 | IWL_DEBUG_INFO("Initialization Alive received.\n"); |
| 2968 | memcpy(&priv->card_alive_init, |
| 2969 | &pkt->u.alive_frame, |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2970 | sizeof(struct iwl3945_init_alive_resp)); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2971 | pwork = &priv->init_alive_start; |
| 2972 | } else { |
| 2973 | IWL_DEBUG_INFO("Runtime Alive received.\n"); |
| 2974 | memcpy(&priv->card_alive, &pkt->u.alive_frame, |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2975 | sizeof(struct iwl3945_alive_resp)); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2976 | pwork = &priv->alive_start; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2977 | iwl3945_disable_events(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2978 | } |
| 2979 | |
| 2980 | /* We delay the ALIVE response by 5ms to |
| 2981 | * give the HW RF Kill time to activate... */ |
| 2982 | if (palive->is_valid == UCODE_VALID_OK) |
| 2983 | queue_delayed_work(priv->workqueue, pwork, |
| 2984 | msecs_to_jiffies(5)); |
| 2985 | else |
| 2986 | IWL_WARNING("uCode did not respond OK.\n"); |
| 2987 | } |
| 2988 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2989 | static void iwl3945_rx_reply_add_sta(struct iwl3945_priv *priv, |
| 2990 | struct iwl3945_rx_mem_buffer *rxb) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2991 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2992 | struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2993 | |
| 2994 | IWL_DEBUG_RX("Received REPLY_ADD_STA: 0x%02X\n", pkt->u.status); |
| 2995 | return; |
| 2996 | } |
| 2997 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2998 | static void iwl3945_rx_reply_error(struct iwl3945_priv *priv, |
| 2999 | struct iwl3945_rx_mem_buffer *rxb) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3000 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3001 | struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3002 | |
| 3003 | IWL_ERROR("Error Reply type 0x%08X cmd %s (0x%02X) " |
| 3004 | "seq 0x%04X ser 0x%08X\n", |
| 3005 | le32_to_cpu(pkt->u.err_resp.error_type), |
| 3006 | get_cmd_string(pkt->u.err_resp.cmd_id), |
| 3007 | pkt->u.err_resp.cmd_id, |
| 3008 | le16_to_cpu(pkt->u.err_resp.bad_cmd_seq_num), |
| 3009 | le32_to_cpu(pkt->u.err_resp.error_info)); |
| 3010 | } |
| 3011 | |
| 3012 | #define TX_STATUS_ENTRY(x) case TX_STATUS_FAIL_ ## x: return #x |
| 3013 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3014 | static void iwl3945_rx_csa(struct iwl3945_priv *priv, struct iwl3945_rx_mem_buffer *rxb) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3015 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3016 | struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data; |
| 3017 | struct iwl3945_rxon_cmd *rxon = (void *)&priv->active_rxon; |
| 3018 | struct iwl3945_csa_notification *csa = &(pkt->u.csa_notif); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3019 | IWL_DEBUG_11H("CSA notif: channel %d, status %d\n", |
| 3020 | le16_to_cpu(csa->channel), le32_to_cpu(csa->status)); |
| 3021 | rxon->channel = csa->channel; |
| 3022 | priv->staging_rxon.channel = csa->channel; |
| 3023 | } |
| 3024 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3025 | static void iwl3945_rx_spectrum_measure_notif(struct iwl3945_priv *priv, |
| 3026 | struct iwl3945_rx_mem_buffer *rxb) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3027 | { |
Christoph Hellwig | c8b0e6e | 2007-10-25 17:15:51 +0800 | [diff] [blame] | 3028 | #ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3029 | struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data; |
| 3030 | struct iwl3945_spectrum_notification *report = &(pkt->u.spectrum_notif); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3031 | |
| 3032 | if (!report->state) { |
| 3033 | IWL_DEBUG(IWL_DL_11H | IWL_DL_INFO, |
| 3034 | "Spectrum Measure Notification: Start\n"); |
| 3035 | return; |
| 3036 | } |
| 3037 | |
| 3038 | memcpy(&priv->measure_report, report, sizeof(*report)); |
| 3039 | priv->measurement_status |= MEASUREMENT_READY; |
| 3040 | #endif |
| 3041 | } |
| 3042 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3043 | static void iwl3945_rx_pm_sleep_notif(struct iwl3945_priv *priv, |
| 3044 | struct iwl3945_rx_mem_buffer *rxb) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3045 | { |
Christoph Hellwig | c8b0e6e | 2007-10-25 17:15:51 +0800 | [diff] [blame] | 3046 | #ifdef CONFIG_IWL3945_DEBUG |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3047 | struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data; |
| 3048 | struct iwl3945_sleep_notification *sleep = &(pkt->u.sleep_notif); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3049 | IWL_DEBUG_RX("sleep mode: %d, src: %d\n", |
| 3050 | sleep->pm_sleep_mode, sleep->pm_wakeup_src); |
| 3051 | #endif |
| 3052 | } |
| 3053 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3054 | static void iwl3945_rx_pm_debug_statistics_notif(struct iwl3945_priv *priv, |
| 3055 | struct iwl3945_rx_mem_buffer *rxb) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3056 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3057 | struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3058 | IWL_DEBUG_RADIO("Dumping %d bytes of unhandled " |
| 3059 | "notification for %s:\n", |
| 3060 | le32_to_cpu(pkt->len), get_cmd_string(pkt->hdr.cmd)); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3061 | iwl3945_print_hex_dump(IWL_DL_RADIO, pkt->u.raw, le32_to_cpu(pkt->len)); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3062 | } |
| 3063 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3064 | static void iwl3945_bg_beacon_update(struct work_struct *work) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3065 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3066 | struct iwl3945_priv *priv = |
| 3067 | container_of(work, struct iwl3945_priv, beacon_update); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3068 | struct sk_buff *beacon; |
| 3069 | |
| 3070 | /* Pull updated AP beacon from mac80211. will fail if not in AP mode */ |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 3071 | beacon = ieee80211_beacon_get(priv->hw, priv->vif); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3072 | |
| 3073 | if (!beacon) { |
| 3074 | IWL_ERROR("update beacon failed\n"); |
| 3075 | return; |
| 3076 | } |
| 3077 | |
| 3078 | mutex_lock(&priv->mutex); |
| 3079 | /* new beacon skb is allocated every time; dispose previous.*/ |
| 3080 | if (priv->ibss_beacon) |
| 3081 | dev_kfree_skb(priv->ibss_beacon); |
| 3082 | |
| 3083 | priv->ibss_beacon = beacon; |
| 3084 | mutex_unlock(&priv->mutex); |
| 3085 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3086 | iwl3945_send_beacon_cmd(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3087 | } |
| 3088 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3089 | static void iwl3945_rx_beacon_notif(struct iwl3945_priv *priv, |
| 3090 | struct iwl3945_rx_mem_buffer *rxb) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3091 | { |
Christoph Hellwig | c8b0e6e | 2007-10-25 17:15:51 +0800 | [diff] [blame] | 3092 | #ifdef CONFIG_IWL3945_DEBUG |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3093 | struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data; |
| 3094 | struct iwl3945_beacon_notif *beacon = &(pkt->u.beacon_status); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3095 | u8 rate = beacon->beacon_notify_hdr.rate; |
| 3096 | |
| 3097 | IWL_DEBUG_RX("beacon status %x retries %d iss %d " |
| 3098 | "tsf %d %d rate %d\n", |
| 3099 | le32_to_cpu(beacon->beacon_notify_hdr.status) & TX_STATUS_MSK, |
| 3100 | beacon->beacon_notify_hdr.failure_frame, |
| 3101 | le32_to_cpu(beacon->ibss_mgr_status), |
| 3102 | le32_to_cpu(beacon->high_tsf), |
| 3103 | le32_to_cpu(beacon->low_tsf), rate); |
| 3104 | #endif |
| 3105 | |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 3106 | if ((priv->iw_mode == NL80211_IFTYPE_AP) && |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3107 | (!test_bit(STATUS_EXIT_PENDING, &priv->status))) |
| 3108 | queue_work(priv->workqueue, &priv->beacon_update); |
| 3109 | } |
| 3110 | |
| 3111 | /* Service response to REPLY_SCAN_CMD (0x80) */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3112 | static void iwl3945_rx_reply_scan(struct iwl3945_priv *priv, |
| 3113 | struct iwl3945_rx_mem_buffer *rxb) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3114 | { |
Christoph Hellwig | c8b0e6e | 2007-10-25 17:15:51 +0800 | [diff] [blame] | 3115 | #ifdef CONFIG_IWL3945_DEBUG |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3116 | struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data; |
| 3117 | struct iwl3945_scanreq_notification *notif = |
| 3118 | (struct iwl3945_scanreq_notification *)pkt->u.raw; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3119 | |
| 3120 | IWL_DEBUG_RX("Scan request status = 0x%x\n", notif->status); |
| 3121 | #endif |
| 3122 | } |
| 3123 | |
| 3124 | /* Service SCAN_START_NOTIFICATION (0x82) */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3125 | static void iwl3945_rx_scan_start_notif(struct iwl3945_priv *priv, |
| 3126 | struct iwl3945_rx_mem_buffer *rxb) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3127 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3128 | struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data; |
| 3129 | struct iwl3945_scanstart_notification *notif = |
| 3130 | (struct iwl3945_scanstart_notification *)pkt->u.raw; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3131 | priv->scan_start_tsf = le32_to_cpu(notif->tsf_low); |
| 3132 | IWL_DEBUG_SCAN("Scan start: " |
| 3133 | "%d [802.11%s] " |
| 3134 | "(TSF: 0x%08X:%08X) - %d (beacon timer %u)\n", |
| 3135 | notif->channel, |
| 3136 | notif->band ? "bg" : "a", |
| 3137 | notif->tsf_high, |
| 3138 | notif->tsf_low, notif->status, notif->beacon_timer); |
| 3139 | } |
| 3140 | |
| 3141 | /* Service SCAN_RESULTS_NOTIFICATION (0x83) */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3142 | static void iwl3945_rx_scan_results_notif(struct iwl3945_priv *priv, |
| 3143 | struct iwl3945_rx_mem_buffer *rxb) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3144 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3145 | struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data; |
| 3146 | struct iwl3945_scanresults_notification *notif = |
| 3147 | (struct iwl3945_scanresults_notification *)pkt->u.raw; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3148 | |
| 3149 | IWL_DEBUG_SCAN("Scan ch.res: " |
| 3150 | "%d [802.11%s] " |
| 3151 | "(TSF: 0x%08X:%08X) - %d " |
| 3152 | "elapsed=%lu usec (%dms since last)\n", |
| 3153 | notif->channel, |
| 3154 | notif->band ? "bg" : "a", |
| 3155 | le32_to_cpu(notif->tsf_high), |
| 3156 | le32_to_cpu(notif->tsf_low), |
| 3157 | le32_to_cpu(notif->statistics[0]), |
| 3158 | le32_to_cpu(notif->tsf_low) - priv->scan_start_tsf, |
| 3159 | jiffies_to_msecs(elapsed_jiffies |
| 3160 | (priv->last_scan_jiffies, jiffies))); |
| 3161 | |
| 3162 | priv->last_scan_jiffies = jiffies; |
Mohamed Abbas | 7878a5a | 2007-11-29 11:10:13 +0800 | [diff] [blame] | 3163 | priv->next_scan_jiffies = 0; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3164 | } |
| 3165 | |
| 3166 | /* Service SCAN_COMPLETE_NOTIFICATION (0x84) */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3167 | static void iwl3945_rx_scan_complete_notif(struct iwl3945_priv *priv, |
| 3168 | struct iwl3945_rx_mem_buffer *rxb) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3169 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3170 | struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data; |
| 3171 | struct iwl3945_scancomplete_notification *scan_notif = (void *)pkt->u.raw; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3172 | |
| 3173 | IWL_DEBUG_SCAN("Scan complete: %d channels (TSF 0x%08X:%08X) - %d\n", |
| 3174 | scan_notif->scanned_channels, |
| 3175 | scan_notif->tsf_low, |
| 3176 | scan_notif->tsf_high, scan_notif->status); |
| 3177 | |
| 3178 | /* The HW is no longer scanning */ |
| 3179 | clear_bit(STATUS_SCAN_HW, &priv->status); |
| 3180 | |
| 3181 | /* The scan completion notification came in, so kill that timer... */ |
| 3182 | cancel_delayed_work(&priv->scan_check); |
| 3183 | |
| 3184 | IWL_DEBUG_INFO("Scan pass on %sGHz took %dms\n", |
Ron Rindjunsky | 66b5004 | 2008-06-25 16:46:31 +0800 | [diff] [blame] | 3185 | (priv->scan_bands & BIT(IEEE80211_BAND_2GHZ)) ? |
| 3186 | "2.4" : "5.2", |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3187 | jiffies_to_msecs(elapsed_jiffies |
| 3188 | (priv->scan_pass_start, jiffies))); |
| 3189 | |
Ron Rindjunsky | 66b5004 | 2008-06-25 16:46:31 +0800 | [diff] [blame] | 3190 | /* Remove this scanned band from the list of pending |
| 3191 | * bands to scan, band G precedes A in order of scanning |
| 3192 | * as seen in iwl3945_bg_request_scan */ |
| 3193 | if (priv->scan_bands & BIT(IEEE80211_BAND_2GHZ)) |
| 3194 | priv->scan_bands &= ~BIT(IEEE80211_BAND_2GHZ); |
| 3195 | else if (priv->scan_bands & BIT(IEEE80211_BAND_5GHZ)) |
| 3196 | priv->scan_bands &= ~BIT(IEEE80211_BAND_5GHZ); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3197 | |
| 3198 | /* If a request to abort was given, or the scan did not succeed |
| 3199 | * then we reset the scan state machine and terminate, |
| 3200 | * re-queuing another scan if one has been requested */ |
| 3201 | if (test_bit(STATUS_SCAN_ABORTING, &priv->status)) { |
| 3202 | IWL_DEBUG_INFO("Aborted scan completed.\n"); |
| 3203 | clear_bit(STATUS_SCAN_ABORTING, &priv->status); |
| 3204 | } else { |
| 3205 | /* If there are more bands on this scan pass reschedule */ |
| 3206 | if (priv->scan_bands > 0) |
| 3207 | goto reschedule; |
| 3208 | } |
| 3209 | |
| 3210 | priv->last_scan_jiffies = jiffies; |
Mohamed Abbas | 7878a5a | 2007-11-29 11:10:13 +0800 | [diff] [blame] | 3211 | priv->next_scan_jiffies = 0; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3212 | IWL_DEBUG_INFO("Setting scan to off\n"); |
| 3213 | |
| 3214 | clear_bit(STATUS_SCANNING, &priv->status); |
| 3215 | |
| 3216 | IWL_DEBUG_INFO("Scan took %dms\n", |
| 3217 | jiffies_to_msecs(elapsed_jiffies(priv->scan_start, jiffies))); |
| 3218 | |
| 3219 | queue_work(priv->workqueue, &priv->scan_completed); |
| 3220 | |
| 3221 | return; |
| 3222 | |
| 3223 | reschedule: |
| 3224 | priv->scan_pass_start = jiffies; |
| 3225 | queue_work(priv->workqueue, &priv->request_scan); |
| 3226 | } |
| 3227 | |
| 3228 | /* Handle notification from uCode that card's power state is changing |
| 3229 | * due to software, hardware, or critical temperature RFKILL */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3230 | static void iwl3945_rx_card_state_notif(struct iwl3945_priv *priv, |
| 3231 | struct iwl3945_rx_mem_buffer *rxb) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3232 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3233 | struct iwl3945_rx_packet *pkt = (void *)rxb->skb->data; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3234 | u32 flags = le32_to_cpu(pkt->u.card_state_notif.flags); |
| 3235 | unsigned long status = priv->status; |
| 3236 | |
| 3237 | IWL_DEBUG_RF_KILL("Card state received: HW:%s SW:%s\n", |
| 3238 | (flags & HW_CARD_DISABLED) ? "Kill" : "On", |
| 3239 | (flags & SW_CARD_DISABLED) ? "Kill" : "On"); |
| 3240 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3241 | iwl3945_write32(priv, CSR_UCODE_DRV_GP1_SET, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3242 | CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED); |
| 3243 | |
| 3244 | if (flags & HW_CARD_DISABLED) |
| 3245 | set_bit(STATUS_RF_KILL_HW, &priv->status); |
| 3246 | else |
| 3247 | clear_bit(STATUS_RF_KILL_HW, &priv->status); |
| 3248 | |
| 3249 | |
| 3250 | if (flags & SW_CARD_DISABLED) |
| 3251 | set_bit(STATUS_RF_KILL_SW, &priv->status); |
| 3252 | else |
| 3253 | clear_bit(STATUS_RF_KILL_SW, &priv->status); |
| 3254 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3255 | iwl3945_scan_cancel(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3256 | |
| 3257 | if ((test_bit(STATUS_RF_KILL_HW, &status) != |
| 3258 | test_bit(STATUS_RF_KILL_HW, &priv->status)) || |
| 3259 | (test_bit(STATUS_RF_KILL_SW, &status) != |
| 3260 | test_bit(STATUS_RF_KILL_SW, &priv->status))) |
| 3261 | queue_work(priv->workqueue, &priv->rf_kill); |
| 3262 | else |
| 3263 | wake_up_interruptible(&priv->wait_command_queue); |
| 3264 | } |
| 3265 | |
| 3266 | /** |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3267 | * iwl3945_setup_rx_handlers - Initialize Rx handler callbacks |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3268 | * |
| 3269 | * Setup the RX handlers for each of the reply types sent from the uCode |
| 3270 | * to the host. |
| 3271 | * |
| 3272 | * This function chains into the hardware specific files for them to setup |
| 3273 | * any hardware specific handlers as well. |
| 3274 | */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3275 | static void iwl3945_setup_rx_handlers(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3276 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3277 | priv->rx_handlers[REPLY_ALIVE] = iwl3945_rx_reply_alive; |
| 3278 | priv->rx_handlers[REPLY_ADD_STA] = iwl3945_rx_reply_add_sta; |
| 3279 | priv->rx_handlers[REPLY_ERROR] = iwl3945_rx_reply_error; |
| 3280 | priv->rx_handlers[CHANNEL_SWITCH_NOTIFICATION] = iwl3945_rx_csa; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3281 | priv->rx_handlers[SPECTRUM_MEASURE_NOTIFICATION] = |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3282 | iwl3945_rx_spectrum_measure_notif; |
| 3283 | priv->rx_handlers[PM_SLEEP_NOTIFICATION] = iwl3945_rx_pm_sleep_notif; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3284 | priv->rx_handlers[PM_DEBUG_STATISTIC_NOTIFIC] = |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3285 | iwl3945_rx_pm_debug_statistics_notif; |
| 3286 | priv->rx_handlers[BEACON_NOTIFICATION] = iwl3945_rx_beacon_notif; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3287 | |
Ben Cahill | 9fbab51 | 2007-11-29 11:09:47 +0800 | [diff] [blame] | 3288 | /* |
| 3289 | * The same handler is used for both the REPLY to a discrete |
| 3290 | * statistics request from the host as well as for the periodic |
| 3291 | * statistics notifications (after received beacons) from the uCode. |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3292 | */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3293 | priv->rx_handlers[REPLY_STATISTICS_CMD] = iwl3945_hw_rx_statistics; |
| 3294 | priv->rx_handlers[STATISTICS_NOTIFICATION] = iwl3945_hw_rx_statistics; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3295 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3296 | priv->rx_handlers[REPLY_SCAN_CMD] = iwl3945_rx_reply_scan; |
| 3297 | priv->rx_handlers[SCAN_START_NOTIFICATION] = iwl3945_rx_scan_start_notif; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3298 | priv->rx_handlers[SCAN_RESULTS_NOTIFICATION] = |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3299 | iwl3945_rx_scan_results_notif; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3300 | priv->rx_handlers[SCAN_COMPLETE_NOTIFICATION] = |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3301 | iwl3945_rx_scan_complete_notif; |
| 3302 | priv->rx_handlers[CARD_STATE_NOTIFICATION] = iwl3945_rx_card_state_notif; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3303 | |
Ben Cahill | 9fbab51 | 2007-11-29 11:09:47 +0800 | [diff] [blame] | 3304 | /* Set up hardware specific Rx handlers */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3305 | iwl3945_hw_rx_handler_setup(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3306 | } |
| 3307 | |
| 3308 | /** |
Tomas Winkler | 91c066f | 2008-03-06 17:36:55 -0800 | [diff] [blame] | 3309 | * iwl3945_cmd_queue_reclaim - Reclaim CMD queue entries |
| 3310 | * When FW advances 'R' index, all entries between old and new 'R' index |
| 3311 | * need to be reclaimed. |
| 3312 | */ |
| 3313 | static void iwl3945_cmd_queue_reclaim(struct iwl3945_priv *priv, |
| 3314 | int txq_id, int index) |
| 3315 | { |
| 3316 | struct iwl3945_tx_queue *txq = &priv->txq[txq_id]; |
| 3317 | struct iwl3945_queue *q = &txq->q; |
| 3318 | int nfreed = 0; |
| 3319 | |
| 3320 | if ((index >= q->n_bd) || (iwl3945_x2_queue_used(q, index) == 0)) { |
| 3321 | IWL_ERROR("Read index for DMA queue txq id (%d), index %d, " |
| 3322 | "is out of range [0-%d] %d %d.\n", txq_id, |
| 3323 | index, q->n_bd, q->write_ptr, q->read_ptr); |
| 3324 | return; |
| 3325 | } |
| 3326 | |
| 3327 | for (index = iwl_queue_inc_wrap(index, q->n_bd); q->read_ptr != index; |
| 3328 | q->read_ptr = iwl_queue_inc_wrap(q->read_ptr, q->n_bd)) { |
| 3329 | if (nfreed > 1) { |
| 3330 | IWL_ERROR("HCMD skipped: index (%d) %d %d\n", index, |
| 3331 | q->write_ptr, q->read_ptr); |
| 3332 | queue_work(priv->workqueue, &priv->restart); |
| 3333 | break; |
| 3334 | } |
| 3335 | nfreed++; |
| 3336 | } |
| 3337 | } |
| 3338 | |
| 3339 | |
| 3340 | /** |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3341 | * iwl3945_tx_cmd_complete - Pull unused buffers off the queue and reclaim them |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3342 | * @rxb: Rx buffer to reclaim |
| 3343 | * |
| 3344 | * If an Rx buffer has an async callback associated with it the callback |
| 3345 | * will be executed. The attached skb (if present) will only be freed |
| 3346 | * if the callback returns 1 |
| 3347 | */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3348 | static void iwl3945_tx_cmd_complete(struct iwl3945_priv *priv, |
| 3349 | struct iwl3945_rx_mem_buffer *rxb) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3350 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3351 | struct iwl3945_rx_packet *pkt = (struct iwl3945_rx_packet *)rxb->skb->data; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3352 | u16 sequence = le16_to_cpu(pkt->hdr.sequence); |
| 3353 | int txq_id = SEQ_TO_QUEUE(sequence); |
| 3354 | int index = SEQ_TO_INDEX(sequence); |
| 3355 | int huge = sequence & SEQ_HUGE_FRAME; |
| 3356 | int cmd_index; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3357 | struct iwl3945_cmd *cmd; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3358 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3359 | BUG_ON(txq_id != IWL_CMD_QUEUE_NUM); |
| 3360 | |
| 3361 | cmd_index = get_cmd_index(&priv->txq[IWL_CMD_QUEUE_NUM].q, index, huge); |
| 3362 | cmd = &priv->txq[IWL_CMD_QUEUE_NUM].cmd[cmd_index]; |
| 3363 | |
| 3364 | /* Input error checking is done when commands are added to queue. */ |
| 3365 | if (cmd->meta.flags & CMD_WANT_SKB) { |
| 3366 | cmd->meta.source->u.skb = rxb->skb; |
| 3367 | rxb->skb = NULL; |
| 3368 | } else if (cmd->meta.u.callback && |
| 3369 | !cmd->meta.u.callback(priv, cmd, rxb->skb)) |
| 3370 | rxb->skb = NULL; |
| 3371 | |
Tomas Winkler | 91c066f | 2008-03-06 17:36:55 -0800 | [diff] [blame] | 3372 | iwl3945_cmd_queue_reclaim(priv, txq_id, index); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3373 | |
| 3374 | if (!(cmd->meta.flags & CMD_ASYNC)) { |
| 3375 | clear_bit(STATUS_HCMD_ACTIVE, &priv->status); |
| 3376 | wake_up_interruptible(&priv->wait_command_queue); |
| 3377 | } |
| 3378 | } |
| 3379 | |
| 3380 | /************************** RX-FUNCTIONS ****************************/ |
| 3381 | /* |
| 3382 | * Rx theory of operation |
| 3383 | * |
| 3384 | * The host allocates 32 DMA target addresses and passes the host address |
| 3385 | * to the firmware at register IWL_RFDS_TABLE_LOWER + N * RFD_SIZE where N is |
| 3386 | * 0 to 31 |
| 3387 | * |
| 3388 | * Rx Queue Indexes |
| 3389 | * The host/firmware share two index registers for managing the Rx buffers. |
| 3390 | * |
| 3391 | * The READ index maps to the first position that the firmware may be writing |
| 3392 | * to -- the driver can read up to (but not including) this position and get |
| 3393 | * good data. |
| 3394 | * The READ index is managed by the firmware once the card is enabled. |
| 3395 | * |
| 3396 | * The WRITE index maps to the last position the driver has read from -- the |
| 3397 | * position preceding WRITE is the last slot the firmware can place a packet. |
| 3398 | * |
| 3399 | * The queue is empty (no good data) if WRITE = READ - 1, and is full if |
| 3400 | * WRITE = READ. |
| 3401 | * |
Ben Cahill | 9fbab51 | 2007-11-29 11:09:47 +0800 | [diff] [blame] | 3402 | * During initialization, the host sets up the READ queue position to the first |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3403 | * INDEX position, and WRITE to the last (READ - 1 wrapped) |
| 3404 | * |
Ben Cahill | 9fbab51 | 2007-11-29 11:09:47 +0800 | [diff] [blame] | 3405 | * When the firmware places a packet in a buffer, it will advance the READ index |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3406 | * and fire the RX interrupt. The driver can then query the READ index and |
| 3407 | * process as many packets as possible, moving the WRITE index forward as it |
| 3408 | * resets the Rx queue buffers with new memory. |
| 3409 | * |
| 3410 | * The management in the driver is as follows: |
| 3411 | * + A list of pre-allocated SKBs is stored in iwl->rxq->rx_free. When |
| 3412 | * iwl->rxq->free_count drops to or below RX_LOW_WATERMARK, work is scheduled |
Ian Schram | 01ebd06 | 2007-10-25 17:15:22 +0800 | [diff] [blame] | 3413 | * to replenish the iwl->rxq->rx_free. |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3414 | * + In iwl3945_rx_replenish (scheduled) if 'processed' != 'read' then the |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3415 | * iwl->rxq is replenished and the READ INDEX is updated (updating the |
| 3416 | * 'processed' and 'read' driver indexes as well) |
| 3417 | * + A received packet is processed and handed to the kernel network stack, |
| 3418 | * detached from the iwl->rxq. The driver 'processed' index is updated. |
| 3419 | * + The Host/Firmware iwl->rxq is replenished at tasklet time from the rx_free |
| 3420 | * list. If there are no allocated buffers in iwl->rxq->rx_free, the READ |
| 3421 | * INDEX is not incremented and iwl->status(RX_STALLED) is set. If there |
| 3422 | * were enough free buffers and RX_STALLED is set it is cleared. |
| 3423 | * |
| 3424 | * |
| 3425 | * Driver sequence: |
| 3426 | * |
Ben Cahill | 9fbab51 | 2007-11-29 11:09:47 +0800 | [diff] [blame] | 3427 | * iwl3945_rx_queue_alloc() Allocates rx_free |
| 3428 | * iwl3945_rx_replenish() Replenishes rx_free list from rx_used, and calls |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3429 | * iwl3945_rx_queue_restock |
Ben Cahill | 9fbab51 | 2007-11-29 11:09:47 +0800 | [diff] [blame] | 3430 | * iwl3945_rx_queue_restock() Moves available buffers from rx_free into Rx |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3431 | * queue, updates firmware pointers, and updates |
| 3432 | * the WRITE index. If insufficient rx_free buffers |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3433 | * are available, schedules iwl3945_rx_replenish |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3434 | * |
| 3435 | * -- enable interrupts -- |
Ben Cahill | 9fbab51 | 2007-11-29 11:09:47 +0800 | [diff] [blame] | 3436 | * ISR - iwl3945_rx() Detach iwl3945_rx_mem_buffers from pool up to the |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3437 | * READ INDEX, detaching the SKB from the pool. |
| 3438 | * Moves the packet buffer from queue to rx_used. |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3439 | * Calls iwl3945_rx_queue_restock to refill any empty |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3440 | * slots. |
| 3441 | * ... |
| 3442 | * |
| 3443 | */ |
| 3444 | |
| 3445 | /** |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3446 | * iwl3945_rx_queue_space - Return number of free slots available in queue. |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3447 | */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3448 | static int iwl3945_rx_queue_space(const struct iwl3945_rx_queue *q) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3449 | { |
| 3450 | int s = q->read - q->write; |
| 3451 | if (s <= 0) |
| 3452 | s += RX_QUEUE_SIZE; |
| 3453 | /* keep some buffer to not confuse full and empty queue */ |
| 3454 | s -= 2; |
| 3455 | if (s < 0) |
| 3456 | s = 0; |
| 3457 | return s; |
| 3458 | } |
| 3459 | |
| 3460 | /** |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3461 | * iwl3945_rx_queue_update_write_ptr - Update the write pointer for the RX queue |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3462 | */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3463 | int iwl3945_rx_queue_update_write_ptr(struct iwl3945_priv *priv, struct iwl3945_rx_queue *q) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3464 | { |
| 3465 | u32 reg = 0; |
| 3466 | int rc = 0; |
| 3467 | unsigned long flags; |
| 3468 | |
| 3469 | spin_lock_irqsave(&q->lock, flags); |
| 3470 | |
| 3471 | if (q->need_update == 0) |
| 3472 | goto exit_unlock; |
| 3473 | |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 3474 | /* If power-saving is in use, make sure device is awake */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3475 | if (test_bit(STATUS_POWER_PMI, &priv->status)) { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3476 | reg = iwl3945_read32(priv, CSR_UCODE_DRV_GP1); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3477 | |
| 3478 | if (reg & CSR_UCODE_DRV_GP1_BIT_MAC_SLEEP) { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3479 | iwl3945_set_bit(priv, CSR_GP_CNTRL, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3480 | CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ); |
| 3481 | goto exit_unlock; |
| 3482 | } |
| 3483 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3484 | rc = iwl3945_grab_nic_access(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3485 | if (rc) |
| 3486 | goto exit_unlock; |
| 3487 | |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 3488 | /* Device expects a multiple of 8 */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3489 | iwl3945_write_direct32(priv, FH_RSCSR_CHNL0_WPTR, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3490 | q->write & ~0x7); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3491 | iwl3945_release_nic_access(priv); |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 3492 | |
| 3493 | /* Else device is assumed to be awake */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3494 | } else |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 3495 | /* Device expects a multiple of 8 */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3496 | iwl3945_write32(priv, FH_RSCSR_CHNL0_WPTR, q->write & ~0x7); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3497 | |
| 3498 | |
| 3499 | q->need_update = 0; |
| 3500 | |
| 3501 | exit_unlock: |
| 3502 | spin_unlock_irqrestore(&q->lock, flags); |
| 3503 | return rc; |
| 3504 | } |
| 3505 | |
| 3506 | /** |
Ben Cahill | 9fbab51 | 2007-11-29 11:09:47 +0800 | [diff] [blame] | 3507 | * iwl3945_dma_addr2rbd_ptr - convert a DMA address to a uCode read buffer ptr |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3508 | */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3509 | static inline __le32 iwl3945_dma_addr2rbd_ptr(struct iwl3945_priv *priv, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3510 | dma_addr_t dma_addr) |
| 3511 | { |
| 3512 | return cpu_to_le32((u32)dma_addr); |
| 3513 | } |
| 3514 | |
| 3515 | /** |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3516 | * iwl3945_rx_queue_restock - refill RX queue from pre-allocated pool |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3517 | * |
Ben Cahill | 9fbab51 | 2007-11-29 11:09:47 +0800 | [diff] [blame] | 3518 | * If there are slots in the RX queue that need to be restocked, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3519 | * and we have free pre-allocated buffers, fill the ranks as much |
Ben Cahill | 9fbab51 | 2007-11-29 11:09:47 +0800 | [diff] [blame] | 3520 | * as we can, pulling from rx_free. |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3521 | * |
| 3522 | * This moves the 'write' index forward to catch up with 'processed', and |
| 3523 | * also updates the memory address in the firmware to reference the new |
| 3524 | * target buffer. |
| 3525 | */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3526 | static int iwl3945_rx_queue_restock(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3527 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3528 | struct iwl3945_rx_queue *rxq = &priv->rxq; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3529 | struct list_head *element; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3530 | struct iwl3945_rx_mem_buffer *rxb; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3531 | unsigned long flags; |
| 3532 | int write, rc; |
| 3533 | |
| 3534 | spin_lock_irqsave(&rxq->lock, flags); |
| 3535 | write = rxq->write & ~0x7; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3536 | while ((iwl3945_rx_queue_space(rxq) > 0) && (rxq->free_count)) { |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 3537 | /* Get next free Rx buffer, remove from free list */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3538 | element = rxq->rx_free.next; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3539 | rxb = list_entry(element, struct iwl3945_rx_mem_buffer, list); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3540 | list_del(element); |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 3541 | |
| 3542 | /* Point to Rx buffer via next RBD in circular buffer */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3543 | rxq->bd[rxq->write] = iwl3945_dma_addr2rbd_ptr(priv, rxb->dma_addr); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3544 | rxq->queue[rxq->write] = rxb; |
| 3545 | rxq->write = (rxq->write + 1) & RX_QUEUE_MASK; |
| 3546 | rxq->free_count--; |
| 3547 | } |
| 3548 | spin_unlock_irqrestore(&rxq->lock, flags); |
| 3549 | /* If the pre-allocated buffer pool is dropping low, schedule to |
| 3550 | * refill it */ |
| 3551 | if (rxq->free_count <= RX_LOW_WATERMARK) |
| 3552 | queue_work(priv->workqueue, &priv->rx_replenish); |
| 3553 | |
| 3554 | |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 3555 | /* If we've added more space for the firmware to place data, tell it. |
| 3556 | * Increment device's write pointer in multiples of 8. */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3557 | if ((write != (rxq->write & ~0x7)) |
| 3558 | || (abs(rxq->write - rxq->read) > 7)) { |
| 3559 | spin_lock_irqsave(&rxq->lock, flags); |
| 3560 | rxq->need_update = 1; |
| 3561 | spin_unlock_irqrestore(&rxq->lock, flags); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3562 | rc = iwl3945_rx_queue_update_write_ptr(priv, rxq); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3563 | if (rc) |
| 3564 | return rc; |
| 3565 | } |
| 3566 | |
| 3567 | return 0; |
| 3568 | } |
| 3569 | |
| 3570 | /** |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3571 | * iwl3945_rx_replenish - Move all used packet from rx_used to rx_free |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3572 | * |
| 3573 | * When moving to rx_free an SKB is allocated for the slot. |
| 3574 | * |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3575 | * Also restock the Rx queue via iwl3945_rx_queue_restock. |
Ian Schram | 01ebd06 | 2007-10-25 17:15:22 +0800 | [diff] [blame] | 3576 | * This is called as a scheduled work item (except for during initialization) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3577 | */ |
Mohamed Abbas | 5c0eef9 | 2007-11-29 11:10:14 +0800 | [diff] [blame] | 3578 | static void iwl3945_rx_allocate(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3579 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3580 | struct iwl3945_rx_queue *rxq = &priv->rxq; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3581 | struct list_head *element; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3582 | struct iwl3945_rx_mem_buffer *rxb; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3583 | unsigned long flags; |
| 3584 | spin_lock_irqsave(&rxq->lock, flags); |
| 3585 | while (!list_empty(&rxq->rx_used)) { |
| 3586 | element = rxq->rx_used.next; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3587 | rxb = list_entry(element, struct iwl3945_rx_mem_buffer, list); |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 3588 | |
| 3589 | /* Alloc a new receive buffer */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3590 | rxb->skb = |
| 3591 | alloc_skb(IWL_RX_BUF_SIZE, __GFP_NOWARN | GFP_ATOMIC); |
| 3592 | if (!rxb->skb) { |
| 3593 | if (net_ratelimit()) |
| 3594 | printk(KERN_CRIT DRV_NAME |
| 3595 | ": Can not allocate SKB buffers\n"); |
| 3596 | /* We don't reschedule replenish work here -- we will |
| 3597 | * call the restock method and if it still needs |
| 3598 | * more buffers it will schedule replenish */ |
| 3599 | break; |
| 3600 | } |
Zhu Yi | 12342c4 | 2007-12-20 11:27:32 +0800 | [diff] [blame] | 3601 | |
| 3602 | /* If radiotap head is required, reserve some headroom here. |
| 3603 | * The physical head count is a variable rx_stats->phy_count. |
| 3604 | * We reserve 4 bytes here. Plus these extra bytes, the |
| 3605 | * headroom of the physical head should be enough for the |
| 3606 | * radiotap head that iwl3945 supported. See iwl3945_rt. |
| 3607 | */ |
| 3608 | skb_reserve(rxb->skb, 4); |
| 3609 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3610 | priv->alloc_rxb_skb++; |
| 3611 | list_del(element); |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 3612 | |
| 3613 | /* Get physical address of RB/SKB */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3614 | rxb->dma_addr = |
| 3615 | pci_map_single(priv->pci_dev, rxb->skb->data, |
| 3616 | IWL_RX_BUF_SIZE, PCI_DMA_FROMDEVICE); |
| 3617 | list_add_tail(&rxb->list, &rxq->rx_free); |
| 3618 | rxq->free_count++; |
| 3619 | } |
| 3620 | spin_unlock_irqrestore(&rxq->lock, flags); |
Mohamed Abbas | 5c0eef9 | 2007-11-29 11:10:14 +0800 | [diff] [blame] | 3621 | } |
| 3622 | |
| 3623 | /* |
| 3624 | * this should be called while priv->lock is locked |
| 3625 | */ |
Tomas Winkler | 4fd1f84 | 2007-12-05 20:59:58 +0200 | [diff] [blame] | 3626 | static void __iwl3945_rx_replenish(void *data) |
Mohamed Abbas | 5c0eef9 | 2007-11-29 11:10:14 +0800 | [diff] [blame] | 3627 | { |
| 3628 | struct iwl3945_priv *priv = data; |
| 3629 | |
| 3630 | iwl3945_rx_allocate(priv); |
| 3631 | iwl3945_rx_queue_restock(priv); |
| 3632 | } |
| 3633 | |
| 3634 | |
| 3635 | void iwl3945_rx_replenish(void *data) |
| 3636 | { |
| 3637 | struct iwl3945_priv *priv = data; |
| 3638 | unsigned long flags; |
| 3639 | |
| 3640 | iwl3945_rx_allocate(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3641 | |
| 3642 | spin_lock_irqsave(&priv->lock, flags); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3643 | iwl3945_rx_queue_restock(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3644 | spin_unlock_irqrestore(&priv->lock, flags); |
| 3645 | } |
| 3646 | |
| 3647 | /* Assumes that the skb field of the buffers in 'pool' is kept accurate. |
Ben Cahill | 9fbab51 | 2007-11-29 11:09:47 +0800 | [diff] [blame] | 3648 | * If an SKB has been detached, the POOL needs to have its SKB set to NULL |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3649 | * This free routine walks the list of POOL entries and if SKB is set to |
| 3650 | * non NULL it is unmapped and freed |
| 3651 | */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3652 | static void iwl3945_rx_queue_free(struct iwl3945_priv *priv, struct iwl3945_rx_queue *rxq) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3653 | { |
| 3654 | int i; |
| 3655 | for (i = 0; i < RX_QUEUE_SIZE + RX_FREE_BUFFERS; i++) { |
| 3656 | if (rxq->pool[i].skb != NULL) { |
| 3657 | pci_unmap_single(priv->pci_dev, |
| 3658 | rxq->pool[i].dma_addr, |
| 3659 | IWL_RX_BUF_SIZE, PCI_DMA_FROMDEVICE); |
| 3660 | dev_kfree_skb(rxq->pool[i].skb); |
| 3661 | } |
| 3662 | } |
| 3663 | |
| 3664 | pci_free_consistent(priv->pci_dev, 4 * RX_QUEUE_SIZE, rxq->bd, |
| 3665 | rxq->dma_addr); |
| 3666 | rxq->bd = NULL; |
| 3667 | } |
| 3668 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3669 | int iwl3945_rx_queue_alloc(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3670 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3671 | struct iwl3945_rx_queue *rxq = &priv->rxq; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3672 | struct pci_dev *dev = priv->pci_dev; |
| 3673 | int i; |
| 3674 | |
| 3675 | spin_lock_init(&rxq->lock); |
| 3676 | INIT_LIST_HEAD(&rxq->rx_free); |
| 3677 | INIT_LIST_HEAD(&rxq->rx_used); |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 3678 | |
| 3679 | /* Alloc the circular buffer of Read Buffer Descriptors (RBDs) */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3680 | rxq->bd = pci_alloc_consistent(dev, 4 * RX_QUEUE_SIZE, &rxq->dma_addr); |
| 3681 | if (!rxq->bd) |
| 3682 | return -ENOMEM; |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 3683 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3684 | /* Fill the rx_used queue with _all_ of the Rx buffers */ |
| 3685 | for (i = 0; i < RX_FREE_BUFFERS + RX_QUEUE_SIZE; i++) |
| 3686 | list_add_tail(&rxq->pool[i].list, &rxq->rx_used); |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 3687 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3688 | /* Set us so that we have processed and used all buffers, but have |
| 3689 | * not restocked the Rx queue with fresh buffers */ |
| 3690 | rxq->read = rxq->write = 0; |
| 3691 | rxq->free_count = 0; |
| 3692 | rxq->need_update = 0; |
| 3693 | return 0; |
| 3694 | } |
| 3695 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3696 | void iwl3945_rx_queue_reset(struct iwl3945_priv *priv, struct iwl3945_rx_queue *rxq) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3697 | { |
| 3698 | unsigned long flags; |
| 3699 | int i; |
| 3700 | spin_lock_irqsave(&rxq->lock, flags); |
| 3701 | INIT_LIST_HEAD(&rxq->rx_free); |
| 3702 | INIT_LIST_HEAD(&rxq->rx_used); |
| 3703 | /* Fill the rx_used queue with _all_ of the Rx buffers */ |
| 3704 | for (i = 0; i < RX_FREE_BUFFERS + RX_QUEUE_SIZE; i++) { |
| 3705 | /* In the reset function, these buffers may have been allocated |
| 3706 | * to an SKB, so we need to unmap and free potential storage */ |
| 3707 | if (rxq->pool[i].skb != NULL) { |
| 3708 | pci_unmap_single(priv->pci_dev, |
| 3709 | rxq->pool[i].dma_addr, |
| 3710 | IWL_RX_BUF_SIZE, PCI_DMA_FROMDEVICE); |
| 3711 | priv->alloc_rxb_skb--; |
| 3712 | dev_kfree_skb(rxq->pool[i].skb); |
| 3713 | rxq->pool[i].skb = NULL; |
| 3714 | } |
| 3715 | list_add_tail(&rxq->pool[i].list, &rxq->rx_used); |
| 3716 | } |
| 3717 | |
| 3718 | /* Set us so that we have processed and used all buffers, but have |
| 3719 | * not restocked the Rx queue with fresh buffers */ |
| 3720 | rxq->read = rxq->write = 0; |
| 3721 | rxq->free_count = 0; |
| 3722 | spin_unlock_irqrestore(&rxq->lock, flags); |
| 3723 | } |
| 3724 | |
| 3725 | /* Convert linear signal-to-noise ratio into dB */ |
| 3726 | static u8 ratio2dB[100] = { |
| 3727 | /* 0 1 2 3 4 5 6 7 8 9 */ |
| 3728 | 0, 0, 6, 10, 12, 14, 16, 17, 18, 19, /* 00 - 09 */ |
| 3729 | 20, 21, 22, 22, 23, 23, 24, 25, 26, 26, /* 10 - 19 */ |
| 3730 | 26, 26, 26, 27, 27, 28, 28, 28, 29, 29, /* 20 - 29 */ |
| 3731 | 29, 30, 30, 30, 31, 31, 31, 31, 32, 32, /* 30 - 39 */ |
| 3732 | 32, 32, 32, 33, 33, 33, 33, 33, 34, 34, /* 40 - 49 */ |
| 3733 | 34, 34, 34, 34, 35, 35, 35, 35, 35, 35, /* 50 - 59 */ |
| 3734 | 36, 36, 36, 36, 36, 36, 36, 37, 37, 37, /* 60 - 69 */ |
| 3735 | 37, 37, 37, 37, 37, 38, 38, 38, 38, 38, /* 70 - 79 */ |
| 3736 | 38, 38, 38, 38, 38, 39, 39, 39, 39, 39, /* 80 - 89 */ |
| 3737 | 39, 39, 39, 39, 39, 40, 40, 40, 40, 40 /* 90 - 99 */ |
| 3738 | }; |
| 3739 | |
| 3740 | /* Calculates a relative dB value from a ratio of linear |
| 3741 | * (i.e. not dB) signal levels. |
| 3742 | * Conversion assumes that levels are voltages (20*log), not powers (10*log). */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3743 | int iwl3945_calc_db_from_ratio(int sig_ratio) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3744 | { |
Adrian Bunk | 221c80c | 2008-02-02 23:19:01 +0200 | [diff] [blame] | 3745 | /* 1000:1 or higher just report as 60 dB */ |
| 3746 | if (sig_ratio >= 1000) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3747 | return 60; |
| 3748 | |
Adrian Bunk | 221c80c | 2008-02-02 23:19:01 +0200 | [diff] [blame] | 3749 | /* 100:1 or higher, divide by 10 and use table, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3750 | * add 20 dB to make up for divide by 10 */ |
Adrian Bunk | 221c80c | 2008-02-02 23:19:01 +0200 | [diff] [blame] | 3751 | if (sig_ratio >= 100) |
Tomas Winkler | 3ac7f14 | 2008-07-21 02:40:14 +0300 | [diff] [blame] | 3752 | return 20 + (int)ratio2dB[sig_ratio/10]; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3753 | |
| 3754 | /* We shouldn't see this */ |
| 3755 | if (sig_ratio < 1) |
| 3756 | return 0; |
| 3757 | |
| 3758 | /* Use table for ratios 1:1 - 99:1 */ |
| 3759 | return (int)ratio2dB[sig_ratio]; |
| 3760 | } |
| 3761 | |
| 3762 | #define PERFECT_RSSI (-20) /* dBm */ |
| 3763 | #define WORST_RSSI (-95) /* dBm */ |
| 3764 | #define RSSI_RANGE (PERFECT_RSSI - WORST_RSSI) |
| 3765 | |
| 3766 | /* Calculate an indication of rx signal quality (a percentage, not dBm!). |
| 3767 | * See http://www.ces.clemson.edu/linux/signal_quality.shtml for info |
| 3768 | * about formulas used below. */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3769 | int iwl3945_calc_sig_qual(int rssi_dbm, int noise_dbm) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3770 | { |
| 3771 | int sig_qual; |
| 3772 | int degradation = PERFECT_RSSI - rssi_dbm; |
| 3773 | |
| 3774 | /* If we get a noise measurement, use signal-to-noise ratio (SNR) |
| 3775 | * as indicator; formula is (signal dbm - noise dbm). |
| 3776 | * SNR at or above 40 is a great signal (100%). |
| 3777 | * Below that, scale to fit SNR of 0 - 40 dB within 0 - 100% indicator. |
| 3778 | * Weakest usable signal is usually 10 - 15 dB SNR. */ |
| 3779 | if (noise_dbm) { |
| 3780 | if (rssi_dbm - noise_dbm >= 40) |
| 3781 | return 100; |
| 3782 | else if (rssi_dbm < noise_dbm) |
| 3783 | return 0; |
| 3784 | sig_qual = ((rssi_dbm - noise_dbm) * 5) / 2; |
| 3785 | |
| 3786 | /* Else use just the signal level. |
| 3787 | * This formula is a least squares fit of data points collected and |
| 3788 | * compared with a reference system that had a percentage (%) display |
| 3789 | * for signal quality. */ |
| 3790 | } else |
| 3791 | sig_qual = (100 * (RSSI_RANGE * RSSI_RANGE) - degradation * |
| 3792 | (15 * RSSI_RANGE + 62 * degradation)) / |
| 3793 | (RSSI_RANGE * RSSI_RANGE); |
| 3794 | |
| 3795 | if (sig_qual > 100) |
| 3796 | sig_qual = 100; |
| 3797 | else if (sig_qual < 1) |
| 3798 | sig_qual = 0; |
| 3799 | |
| 3800 | return sig_qual; |
| 3801 | } |
| 3802 | |
| 3803 | /** |
Ben Cahill | 9fbab51 | 2007-11-29 11:09:47 +0800 | [diff] [blame] | 3804 | * iwl3945_rx_handle - Main entry function for receiving responses from uCode |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3805 | * |
| 3806 | * Uses the priv->rx_handlers callback function array to invoke |
| 3807 | * the appropriate handlers, including command responses, |
| 3808 | * frame-received notifications, and other notifications. |
| 3809 | */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3810 | static void iwl3945_rx_handle(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3811 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3812 | struct iwl3945_rx_mem_buffer *rxb; |
| 3813 | struct iwl3945_rx_packet *pkt; |
| 3814 | struct iwl3945_rx_queue *rxq = &priv->rxq; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3815 | u32 r, i; |
| 3816 | int reclaim; |
| 3817 | unsigned long flags; |
Mohamed Abbas | 5c0eef9 | 2007-11-29 11:10:14 +0800 | [diff] [blame] | 3818 | u8 fill_rx = 0; |
Mohamed Abbas | d68ab68 | 2008-02-07 13:16:33 -0800 | [diff] [blame] | 3819 | u32 count = 8; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3820 | |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 3821 | /* uCode's read index (stored in shared DRAM) indicates the last Rx |
| 3822 | * buffer that the driver may process (last buffer filled by ucode). */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3823 | r = iwl3945_hw_get_rx_read(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3824 | i = rxq->read; |
| 3825 | |
Mohamed Abbas | 5c0eef9 | 2007-11-29 11:10:14 +0800 | [diff] [blame] | 3826 | if (iwl3945_rx_queue_space(rxq) > (RX_QUEUE_SIZE / 2)) |
| 3827 | fill_rx = 1; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3828 | /* Rx interrupt, but nothing sent from uCode */ |
| 3829 | if (i == r) |
| 3830 | IWL_DEBUG(IWL_DL_RX | IWL_DL_ISR, "r = %d, i = %d\n", r, i); |
| 3831 | |
| 3832 | while (i != r) { |
| 3833 | rxb = rxq->queue[i]; |
| 3834 | |
Ben Cahill | 9fbab51 | 2007-11-29 11:09:47 +0800 | [diff] [blame] | 3835 | /* If an RXB doesn't have a Rx queue slot associated with it, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3836 | * then a bug has been introduced in the queue refilling |
| 3837 | * routines -- catch it here */ |
| 3838 | BUG_ON(rxb == NULL); |
| 3839 | |
| 3840 | rxq->queue[i] = NULL; |
| 3841 | |
| 3842 | pci_dma_sync_single_for_cpu(priv->pci_dev, rxb->dma_addr, |
| 3843 | IWL_RX_BUF_SIZE, |
| 3844 | PCI_DMA_FROMDEVICE); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3845 | pkt = (struct iwl3945_rx_packet *)rxb->skb->data; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3846 | |
| 3847 | /* Reclaim a command buffer only if this packet is a response |
| 3848 | * to a (driver-originated) command. |
| 3849 | * If the packet (e.g. Rx frame) originated from uCode, |
| 3850 | * there is no command buffer to reclaim. |
| 3851 | * Ucode should set SEQ_RX_FRAME bit if ucode-originated, |
| 3852 | * but apparently a few don't get set; catch them here. */ |
| 3853 | reclaim = !(pkt->hdr.sequence & SEQ_RX_FRAME) && |
| 3854 | (pkt->hdr.cmd != STATISTICS_NOTIFICATION) && |
| 3855 | (pkt->hdr.cmd != REPLY_TX); |
| 3856 | |
| 3857 | /* Based on type of command response or notification, |
| 3858 | * handle those that need handling via function in |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3859 | * rx_handlers table. See iwl3945_setup_rx_handlers() */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3860 | if (priv->rx_handlers[pkt->hdr.cmd]) { |
| 3861 | IWL_DEBUG(IWL_DL_HOST_COMMAND | IWL_DL_RX | IWL_DL_ISR, |
| 3862 | "r = %d, i = %d, %s, 0x%02x\n", r, i, |
| 3863 | get_cmd_string(pkt->hdr.cmd), pkt->hdr.cmd); |
| 3864 | priv->rx_handlers[pkt->hdr.cmd] (priv, rxb); |
| 3865 | } else { |
| 3866 | /* No handling needed */ |
| 3867 | IWL_DEBUG(IWL_DL_HOST_COMMAND | IWL_DL_RX | IWL_DL_ISR, |
| 3868 | "r %d i %d No handler needed for %s, 0x%02x\n", |
| 3869 | r, i, get_cmd_string(pkt->hdr.cmd), |
| 3870 | pkt->hdr.cmd); |
| 3871 | } |
| 3872 | |
| 3873 | if (reclaim) { |
Ben Cahill | 9fbab51 | 2007-11-29 11:09:47 +0800 | [diff] [blame] | 3874 | /* Invoke any callbacks, transfer the skb to caller, and |
| 3875 | * fire off the (possibly) blocking iwl3945_send_cmd() |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3876 | * as we reclaim the driver command queue */ |
| 3877 | if (rxb && rxb->skb) |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3878 | iwl3945_tx_cmd_complete(priv, rxb); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3879 | else |
| 3880 | IWL_WARNING("Claim null rxb?\n"); |
| 3881 | } |
| 3882 | |
| 3883 | /* For now we just don't re-use anything. We can tweak this |
| 3884 | * later to try and re-use notification packets and SKBs that |
| 3885 | * fail to Rx correctly */ |
| 3886 | if (rxb->skb != NULL) { |
| 3887 | priv->alloc_rxb_skb--; |
| 3888 | dev_kfree_skb_any(rxb->skb); |
| 3889 | rxb->skb = NULL; |
| 3890 | } |
| 3891 | |
| 3892 | pci_unmap_single(priv->pci_dev, rxb->dma_addr, |
| 3893 | IWL_RX_BUF_SIZE, PCI_DMA_FROMDEVICE); |
| 3894 | spin_lock_irqsave(&rxq->lock, flags); |
| 3895 | list_add_tail(&rxb->list, &priv->rxq.rx_used); |
| 3896 | spin_unlock_irqrestore(&rxq->lock, flags); |
| 3897 | i = (i + 1) & RX_QUEUE_MASK; |
Mohamed Abbas | 5c0eef9 | 2007-11-29 11:10:14 +0800 | [diff] [blame] | 3898 | /* If there are a lot of unused frames, |
| 3899 | * restock the Rx queue so ucode won't assert. */ |
| 3900 | if (fill_rx) { |
| 3901 | count++; |
| 3902 | if (count >= 8) { |
| 3903 | priv->rxq.read = i; |
| 3904 | __iwl3945_rx_replenish(priv); |
| 3905 | count = 0; |
| 3906 | } |
| 3907 | } |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3908 | } |
| 3909 | |
| 3910 | /* Backtrack one entry */ |
| 3911 | priv->rxq.read = i; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3912 | iwl3945_rx_queue_restock(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3913 | } |
| 3914 | |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 3915 | /** |
| 3916 | * iwl3945_tx_queue_update_write_ptr - Send new write index to hardware |
| 3917 | */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3918 | static int iwl3945_tx_queue_update_write_ptr(struct iwl3945_priv *priv, |
| 3919 | struct iwl3945_tx_queue *txq) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3920 | { |
| 3921 | u32 reg = 0; |
| 3922 | int rc = 0; |
| 3923 | int txq_id = txq->q.id; |
| 3924 | |
| 3925 | if (txq->need_update == 0) |
| 3926 | return rc; |
| 3927 | |
| 3928 | /* if we're trying to save power */ |
| 3929 | if (test_bit(STATUS_POWER_PMI, &priv->status)) { |
| 3930 | /* wake up nic if it's powered down ... |
| 3931 | * uCode will wake up, and interrupt us again, so next |
| 3932 | * time we'll skip this part. */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3933 | reg = iwl3945_read32(priv, CSR_UCODE_DRV_GP1); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3934 | |
| 3935 | if (reg & CSR_UCODE_DRV_GP1_BIT_MAC_SLEEP) { |
| 3936 | IWL_DEBUG_INFO("Requesting wakeup, GP1 = 0x%x\n", reg); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3937 | iwl3945_set_bit(priv, CSR_GP_CNTRL, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3938 | CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ); |
| 3939 | return rc; |
| 3940 | } |
| 3941 | |
| 3942 | /* restore this queue's parameters in nic hardware. */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3943 | rc = iwl3945_grab_nic_access(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3944 | if (rc) |
| 3945 | return rc; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3946 | iwl3945_write_direct32(priv, HBUS_TARG_WRPTR, |
Tomas Winkler | fc4b685 | 2007-10-25 17:15:24 +0800 | [diff] [blame] | 3947 | txq->q.write_ptr | (txq_id << 8)); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3948 | iwl3945_release_nic_access(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3949 | |
| 3950 | /* else not in power-save mode, uCode will never sleep when we're |
| 3951 | * trying to tx (during RFKILL, we're not trying to tx). */ |
| 3952 | } else |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3953 | iwl3945_write32(priv, HBUS_TARG_WRPTR, |
Tomas Winkler | fc4b685 | 2007-10-25 17:15:24 +0800 | [diff] [blame] | 3954 | txq->q.write_ptr | (txq_id << 8)); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3955 | |
| 3956 | txq->need_update = 0; |
| 3957 | |
| 3958 | return rc; |
| 3959 | } |
| 3960 | |
Christoph Hellwig | c8b0e6e | 2007-10-25 17:15:51 +0800 | [diff] [blame] | 3961 | #ifdef CONFIG_IWL3945_DEBUG |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3962 | static void iwl3945_print_rx_config_cmd(struct iwl3945_rxon_cmd *rxon) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3963 | { |
| 3964 | IWL_DEBUG_RADIO("RX CONFIG:\n"); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3965 | iwl3945_print_hex_dump(IWL_DL_RADIO, (u8 *) rxon, sizeof(*rxon)); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3966 | IWL_DEBUG_RADIO("u16 channel: 0x%x\n", le16_to_cpu(rxon->channel)); |
| 3967 | IWL_DEBUG_RADIO("u32 flags: 0x%08X\n", le32_to_cpu(rxon->flags)); |
| 3968 | IWL_DEBUG_RADIO("u32 filter_flags: 0x%08x\n", |
| 3969 | le32_to_cpu(rxon->filter_flags)); |
| 3970 | IWL_DEBUG_RADIO("u8 dev_type: 0x%x\n", rxon->dev_type); |
| 3971 | IWL_DEBUG_RADIO("u8 ofdm_basic_rates: 0x%02x\n", |
| 3972 | rxon->ofdm_basic_rates); |
| 3973 | IWL_DEBUG_RADIO("u8 cck_basic_rates: 0x%02x\n", rxon->cck_basic_rates); |
Johannes Berg | e174961 | 2008-10-27 15:59:26 -0700 | [diff] [blame] | 3974 | IWL_DEBUG_RADIO("u8[6] node_addr: %pM\n", rxon->node_addr); |
| 3975 | IWL_DEBUG_RADIO("u8[6] bssid_addr: %pM\n", rxon->bssid_addr); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3976 | IWL_DEBUG_RADIO("u16 assoc_id: 0x%x\n", le16_to_cpu(rxon->assoc_id)); |
| 3977 | } |
| 3978 | #endif |
| 3979 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3980 | static void iwl3945_enable_interrupts(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3981 | { |
| 3982 | IWL_DEBUG_ISR("Enabling interrupts\n"); |
| 3983 | set_bit(STATUS_INT_ENABLED, &priv->status); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3984 | iwl3945_write32(priv, CSR_INT_MASK, CSR_INI_SET_MASK); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3985 | } |
| 3986 | |
Mohamed Abbas | 0359fac | 2008-03-28 16:21:08 -0700 | [diff] [blame] | 3987 | |
| 3988 | /* call this function to flush any scheduled tasklet */ |
| 3989 | static inline void iwl_synchronize_irq(struct iwl3945_priv *priv) |
| 3990 | { |
Tomas Winkler | a96a27f | 2008-10-23 23:48:56 -0700 | [diff] [blame] | 3991 | /* wait to make sure we flush pending tasklet*/ |
Mohamed Abbas | 0359fac | 2008-03-28 16:21:08 -0700 | [diff] [blame] | 3992 | synchronize_irq(priv->pci_dev->irq); |
| 3993 | tasklet_kill(&priv->irq_tasklet); |
| 3994 | } |
| 3995 | |
| 3996 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 3997 | static inline void iwl3945_disable_interrupts(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3998 | { |
| 3999 | clear_bit(STATUS_INT_ENABLED, &priv->status); |
| 4000 | |
| 4001 | /* disable interrupts from uCode/NIC to host */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4002 | iwl3945_write32(priv, CSR_INT_MASK, 0x00000000); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4003 | |
| 4004 | /* acknowledge/clear/reset any interrupts still pending |
| 4005 | * from uCode or flow handler (Rx/Tx DMA) */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4006 | iwl3945_write32(priv, CSR_INT, 0xffffffff); |
| 4007 | iwl3945_write32(priv, CSR_FH_INT_STATUS, 0xffffffff); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4008 | IWL_DEBUG_ISR("Disabled interrupts\n"); |
| 4009 | } |
| 4010 | |
| 4011 | static const char *desc_lookup(int i) |
| 4012 | { |
| 4013 | switch (i) { |
| 4014 | case 1: |
| 4015 | return "FAIL"; |
| 4016 | case 2: |
| 4017 | return "BAD_PARAM"; |
| 4018 | case 3: |
| 4019 | return "BAD_CHECKSUM"; |
| 4020 | case 4: |
| 4021 | return "NMI_INTERRUPT"; |
| 4022 | case 5: |
| 4023 | return "SYSASSERT"; |
| 4024 | case 6: |
| 4025 | return "FATAL_ERROR"; |
| 4026 | } |
| 4027 | |
| 4028 | return "UNKNOWN"; |
| 4029 | } |
| 4030 | |
| 4031 | #define ERROR_START_OFFSET (1 * sizeof(u32)) |
| 4032 | #define ERROR_ELEM_SIZE (7 * sizeof(u32)) |
| 4033 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4034 | static void iwl3945_dump_nic_error_log(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4035 | { |
| 4036 | u32 i; |
| 4037 | u32 desc, time, count, base, data1; |
| 4038 | u32 blink1, blink2, ilink1, ilink2; |
| 4039 | int rc; |
| 4040 | |
| 4041 | base = le32_to_cpu(priv->card_alive.error_event_table_ptr); |
| 4042 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4043 | if (!iwl3945_hw_valid_rtc_data_addr(base)) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4044 | IWL_ERROR("Not valid error log pointer 0x%08X\n", base); |
| 4045 | return; |
| 4046 | } |
| 4047 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4048 | rc = iwl3945_grab_nic_access(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4049 | if (rc) { |
| 4050 | IWL_WARNING("Can not read from adapter at this time.\n"); |
| 4051 | return; |
| 4052 | } |
| 4053 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4054 | count = iwl3945_read_targ_mem(priv, base); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4055 | |
| 4056 | if (ERROR_START_OFFSET <= count * ERROR_ELEM_SIZE) { |
| 4057 | IWL_ERROR("Start IWL Error Log Dump:\n"); |
Tomas Winkler | 2acae16 | 2008-03-02 01:25:59 +0200 | [diff] [blame] | 4058 | IWL_ERROR("Status: 0x%08lX, count: %d\n", priv->status, count); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4059 | } |
| 4060 | |
| 4061 | IWL_ERROR("Desc Time asrtPC blink2 " |
| 4062 | "ilink1 nmiPC Line\n"); |
| 4063 | for (i = ERROR_START_OFFSET; |
| 4064 | i < (count * ERROR_ELEM_SIZE) + ERROR_START_OFFSET; |
| 4065 | i += ERROR_ELEM_SIZE) { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4066 | desc = iwl3945_read_targ_mem(priv, base + i); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4067 | time = |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4068 | iwl3945_read_targ_mem(priv, base + i + 1 * sizeof(u32)); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4069 | blink1 = |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4070 | iwl3945_read_targ_mem(priv, base + i + 2 * sizeof(u32)); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4071 | blink2 = |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4072 | iwl3945_read_targ_mem(priv, base + i + 3 * sizeof(u32)); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4073 | ilink1 = |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4074 | iwl3945_read_targ_mem(priv, base + i + 4 * sizeof(u32)); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4075 | ilink2 = |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4076 | iwl3945_read_targ_mem(priv, base + i + 5 * sizeof(u32)); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4077 | data1 = |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4078 | iwl3945_read_targ_mem(priv, base + i + 6 * sizeof(u32)); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4079 | |
| 4080 | IWL_ERROR |
| 4081 | ("%-13s (#%d) %010u 0x%05X 0x%05X 0x%05X 0x%05X %u\n\n", |
| 4082 | desc_lookup(desc), desc, time, blink1, blink2, |
| 4083 | ilink1, ilink2, data1); |
| 4084 | } |
| 4085 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4086 | iwl3945_release_nic_access(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4087 | |
| 4088 | } |
| 4089 | |
Ben Cahill | f58177b | 2007-11-29 11:09:43 +0800 | [diff] [blame] | 4090 | #define EVENT_START_OFFSET (6 * sizeof(u32)) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4091 | |
| 4092 | /** |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4093 | * iwl3945_print_event_log - Dump error event log to syslog |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4094 | * |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4095 | * NOTE: Must be called with iwl3945_grab_nic_access() already obtained! |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4096 | */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4097 | static void iwl3945_print_event_log(struct iwl3945_priv *priv, u32 start_idx, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4098 | u32 num_events, u32 mode) |
| 4099 | { |
| 4100 | u32 i; |
| 4101 | u32 base; /* SRAM byte address of event log header */ |
| 4102 | u32 event_size; /* 2 u32s, or 3 u32s if timestamp recorded */ |
| 4103 | u32 ptr; /* SRAM byte address of log data */ |
| 4104 | u32 ev, time, data; /* event log data */ |
| 4105 | |
| 4106 | if (num_events == 0) |
| 4107 | return; |
| 4108 | |
| 4109 | base = le32_to_cpu(priv->card_alive.log_event_table_ptr); |
| 4110 | |
| 4111 | if (mode == 0) |
| 4112 | event_size = 2 * sizeof(u32); |
| 4113 | else |
| 4114 | event_size = 3 * sizeof(u32); |
| 4115 | |
| 4116 | ptr = base + EVENT_START_OFFSET + (start_idx * event_size); |
| 4117 | |
| 4118 | /* "time" is actually "data" for mode 0 (no timestamp). |
| 4119 | * place event id # at far right for easier visual parsing. */ |
| 4120 | for (i = 0; i < num_events; i++) { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4121 | ev = iwl3945_read_targ_mem(priv, ptr); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4122 | ptr += sizeof(u32); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4123 | time = iwl3945_read_targ_mem(priv, ptr); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4124 | ptr += sizeof(u32); |
| 4125 | if (mode == 0) |
| 4126 | IWL_ERROR("0x%08x\t%04u\n", time, ev); /* data, ev */ |
| 4127 | else { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4128 | data = iwl3945_read_targ_mem(priv, ptr); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4129 | ptr += sizeof(u32); |
| 4130 | IWL_ERROR("%010u\t0x%08x\t%04u\n", time, data, ev); |
| 4131 | } |
| 4132 | } |
| 4133 | } |
| 4134 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4135 | static void iwl3945_dump_nic_event_log(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4136 | { |
| 4137 | int rc; |
| 4138 | u32 base; /* SRAM byte address of event log header */ |
| 4139 | u32 capacity; /* event log capacity in # entries */ |
| 4140 | u32 mode; /* 0 - no timestamp, 1 - timestamp recorded */ |
| 4141 | u32 num_wraps; /* # times uCode wrapped to top of log */ |
| 4142 | u32 next_entry; /* index of next entry to be written by uCode */ |
| 4143 | u32 size; /* # entries that we'll print */ |
| 4144 | |
| 4145 | base = le32_to_cpu(priv->card_alive.log_event_table_ptr); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4146 | if (!iwl3945_hw_valid_rtc_data_addr(base)) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4147 | IWL_ERROR("Invalid event log pointer 0x%08X\n", base); |
| 4148 | return; |
| 4149 | } |
| 4150 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4151 | rc = iwl3945_grab_nic_access(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4152 | if (rc) { |
| 4153 | IWL_WARNING("Can not read from adapter at this time.\n"); |
| 4154 | return; |
| 4155 | } |
| 4156 | |
| 4157 | /* event log header */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4158 | capacity = iwl3945_read_targ_mem(priv, base); |
| 4159 | mode = iwl3945_read_targ_mem(priv, base + (1 * sizeof(u32))); |
| 4160 | num_wraps = iwl3945_read_targ_mem(priv, base + (2 * sizeof(u32))); |
| 4161 | next_entry = iwl3945_read_targ_mem(priv, base + (3 * sizeof(u32))); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4162 | |
| 4163 | size = num_wraps ? capacity : next_entry; |
| 4164 | |
| 4165 | /* bail out if nothing in log */ |
| 4166 | if (size == 0) { |
Zhu Yi | 583fab3 | 2007-09-27 11:27:30 +0800 | [diff] [blame] | 4167 | IWL_ERROR("Start IWL Event Log Dump: nothing in log\n"); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4168 | iwl3945_release_nic_access(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4169 | return; |
| 4170 | } |
| 4171 | |
Zhu Yi | 583fab3 | 2007-09-27 11:27:30 +0800 | [diff] [blame] | 4172 | IWL_ERROR("Start IWL Event Log Dump: display count %d, wraps %d\n", |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4173 | size, num_wraps); |
| 4174 | |
| 4175 | /* if uCode has wrapped back to top of log, start at the oldest entry, |
| 4176 | * i.e the next one that uCode would fill. */ |
| 4177 | if (num_wraps) |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4178 | iwl3945_print_event_log(priv, next_entry, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4179 | capacity - next_entry, mode); |
| 4180 | |
| 4181 | /* (then/else) start at top of log */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4182 | iwl3945_print_event_log(priv, 0, next_entry, mode); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4183 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4184 | iwl3945_release_nic_access(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4185 | } |
| 4186 | |
| 4187 | /** |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4188 | * iwl3945_irq_handle_error - called for HW or SW error interrupt from card |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4189 | */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4190 | static void iwl3945_irq_handle_error(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4191 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4192 | /* Set the FW error flag -- cleared on iwl3945_down */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4193 | set_bit(STATUS_FW_ERROR, &priv->status); |
| 4194 | |
| 4195 | /* Cancel currently queued command. */ |
| 4196 | clear_bit(STATUS_HCMD_ACTIVE, &priv->status); |
| 4197 | |
Christoph Hellwig | c8b0e6e | 2007-10-25 17:15:51 +0800 | [diff] [blame] | 4198 | #ifdef CONFIG_IWL3945_DEBUG |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4199 | if (iwl3945_debug_level & IWL_DL_FW_ERRORS) { |
| 4200 | iwl3945_dump_nic_error_log(priv); |
| 4201 | iwl3945_dump_nic_event_log(priv); |
| 4202 | iwl3945_print_rx_config_cmd(&priv->staging_rxon); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4203 | } |
| 4204 | #endif |
| 4205 | |
| 4206 | wake_up_interruptible(&priv->wait_command_queue); |
| 4207 | |
| 4208 | /* Keep the restart process from trying to send host |
| 4209 | * commands by clearing the INIT status bit */ |
| 4210 | clear_bit(STATUS_READY, &priv->status); |
| 4211 | |
| 4212 | if (!test_bit(STATUS_EXIT_PENDING, &priv->status)) { |
| 4213 | IWL_DEBUG(IWL_DL_INFO | IWL_DL_FW_ERRORS, |
| 4214 | "Restarting adapter due to uCode error.\n"); |
| 4215 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4216 | if (iwl3945_is_associated(priv)) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4217 | memcpy(&priv->recovery_rxon, &priv->active_rxon, |
| 4218 | sizeof(priv->recovery_rxon)); |
| 4219 | priv->error_recovering = 1; |
| 4220 | } |
| 4221 | queue_work(priv->workqueue, &priv->restart); |
| 4222 | } |
| 4223 | } |
| 4224 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4225 | static void iwl3945_error_recovery(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4226 | { |
| 4227 | unsigned long flags; |
| 4228 | |
| 4229 | memcpy(&priv->staging_rxon, &priv->recovery_rxon, |
| 4230 | sizeof(priv->staging_rxon)); |
| 4231 | priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4232 | iwl3945_commit_rxon(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4233 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4234 | iwl3945_add_station(priv, priv->bssid, 1, 0); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4235 | |
| 4236 | spin_lock_irqsave(&priv->lock, flags); |
| 4237 | priv->assoc_id = le16_to_cpu(priv->staging_rxon.assoc_id); |
| 4238 | priv->error_recovering = 0; |
| 4239 | spin_unlock_irqrestore(&priv->lock, flags); |
| 4240 | } |
| 4241 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4242 | static void iwl3945_irq_tasklet(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4243 | { |
| 4244 | u32 inta, handled = 0; |
| 4245 | u32 inta_fh; |
| 4246 | unsigned long flags; |
Christoph Hellwig | c8b0e6e | 2007-10-25 17:15:51 +0800 | [diff] [blame] | 4247 | #ifdef CONFIG_IWL3945_DEBUG |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4248 | u32 inta_mask; |
| 4249 | #endif |
| 4250 | |
| 4251 | spin_lock_irqsave(&priv->lock, flags); |
| 4252 | |
| 4253 | /* Ack/clear/reset pending uCode interrupts. |
| 4254 | * Note: Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS, |
| 4255 | * and will clear only when CSR_FH_INT_STATUS gets cleared. */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4256 | inta = iwl3945_read32(priv, CSR_INT); |
| 4257 | iwl3945_write32(priv, CSR_INT, inta); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4258 | |
| 4259 | /* Ack/clear/reset pending flow-handler (DMA) interrupts. |
| 4260 | * Any new interrupts that happen after this, either while we're |
| 4261 | * in this tasklet, or later, will show up in next ISR/tasklet. */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4262 | inta_fh = iwl3945_read32(priv, CSR_FH_INT_STATUS); |
| 4263 | iwl3945_write32(priv, CSR_FH_INT_STATUS, inta_fh); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4264 | |
Christoph Hellwig | c8b0e6e | 2007-10-25 17:15:51 +0800 | [diff] [blame] | 4265 | #ifdef CONFIG_IWL3945_DEBUG |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4266 | if (iwl3945_debug_level & IWL_DL_ISR) { |
Ben Cahill | 9fbab51 | 2007-11-29 11:09:47 +0800 | [diff] [blame] | 4267 | /* just for debug */ |
| 4268 | inta_mask = iwl3945_read32(priv, CSR_INT_MASK); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4269 | IWL_DEBUG_ISR("inta 0x%08x, enabled 0x%08x, fh 0x%08x\n", |
| 4270 | inta, inta_mask, inta_fh); |
| 4271 | } |
| 4272 | #endif |
| 4273 | |
| 4274 | /* Since CSR_INT and CSR_FH_INT_STATUS reads and clears are not |
| 4275 | * atomic, make sure that inta covers all the interrupts that |
| 4276 | * we've discovered, even if FH interrupt came in just after |
| 4277 | * reading CSR_INT. */ |
Tomas Winkler | 6f83eaa | 2008-03-04 18:09:28 -0800 | [diff] [blame] | 4278 | if (inta_fh & CSR39_FH_INT_RX_MASK) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4279 | inta |= CSR_INT_BIT_FH_RX; |
Tomas Winkler | 6f83eaa | 2008-03-04 18:09:28 -0800 | [diff] [blame] | 4280 | if (inta_fh & CSR39_FH_INT_TX_MASK) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4281 | inta |= CSR_INT_BIT_FH_TX; |
| 4282 | |
| 4283 | /* Now service all interrupt bits discovered above. */ |
| 4284 | if (inta & CSR_INT_BIT_HW_ERR) { |
| 4285 | IWL_ERROR("Microcode HW error detected. Restarting.\n"); |
| 4286 | |
| 4287 | /* Tell the device to stop sending interrupts */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4288 | iwl3945_disable_interrupts(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4289 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4290 | iwl3945_irq_handle_error(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4291 | |
| 4292 | handled |= CSR_INT_BIT_HW_ERR; |
| 4293 | |
| 4294 | spin_unlock_irqrestore(&priv->lock, flags); |
| 4295 | |
| 4296 | return; |
| 4297 | } |
| 4298 | |
Christoph Hellwig | c8b0e6e | 2007-10-25 17:15:51 +0800 | [diff] [blame] | 4299 | #ifdef CONFIG_IWL3945_DEBUG |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4300 | if (iwl3945_debug_level & (IWL_DL_ISR)) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4301 | /* NIC fires this, but we don't use it, redundant with WAKEUP */ |
Joonwoo Park | 25c03d8 | 2008-01-23 10:15:20 -0800 | [diff] [blame] | 4302 | if (inta & CSR_INT_BIT_SCD) |
| 4303 | IWL_DEBUG_ISR("Scheduler finished to transmit " |
| 4304 | "the frame/frames.\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4305 | |
| 4306 | /* Alive notification via Rx interrupt will do the real work */ |
| 4307 | if (inta & CSR_INT_BIT_ALIVE) |
| 4308 | IWL_DEBUG_ISR("Alive interrupt\n"); |
| 4309 | } |
| 4310 | #endif |
| 4311 | /* Safely ignore these bits for debug checks below */ |
Joonwoo Park | 25c03d8 | 2008-01-23 10:15:20 -0800 | [diff] [blame] | 4312 | inta &= ~(CSR_INT_BIT_SCD | CSR_INT_BIT_ALIVE); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4313 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4314 | /* Error detected by uCode */ |
| 4315 | if (inta & CSR_INT_BIT_SW_ERR) { |
| 4316 | IWL_ERROR("Microcode SW error detected. Restarting 0x%X.\n", |
| 4317 | inta); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4318 | iwl3945_irq_handle_error(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4319 | handled |= CSR_INT_BIT_SW_ERR; |
| 4320 | } |
| 4321 | |
| 4322 | /* uCode wakes up after power-down sleep */ |
| 4323 | if (inta & CSR_INT_BIT_WAKEUP) { |
| 4324 | IWL_DEBUG_ISR("Wakeup interrupt\n"); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4325 | iwl3945_rx_queue_update_write_ptr(priv, &priv->rxq); |
| 4326 | iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[0]); |
| 4327 | iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[1]); |
| 4328 | iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[2]); |
| 4329 | iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[3]); |
| 4330 | iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[4]); |
| 4331 | iwl3945_tx_queue_update_write_ptr(priv, &priv->txq[5]); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4332 | |
| 4333 | handled |= CSR_INT_BIT_WAKEUP; |
| 4334 | } |
| 4335 | |
| 4336 | /* All uCode command responses, including Tx command responses, |
| 4337 | * Rx "responses" (frame-received notification), and other |
| 4338 | * notifications from uCode come through here*/ |
| 4339 | if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4340 | iwl3945_rx_handle(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4341 | handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX); |
| 4342 | } |
| 4343 | |
| 4344 | if (inta & CSR_INT_BIT_FH_TX) { |
| 4345 | IWL_DEBUG_ISR("Tx interrupt\n"); |
| 4346 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4347 | iwl3945_write32(priv, CSR_FH_INT_STATUS, (1 << 6)); |
| 4348 | if (!iwl3945_grab_nic_access(priv)) { |
| 4349 | iwl3945_write_direct32(priv, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4350 | FH_TCSR_CREDIT |
| 4351 | (ALM_FH_SRVC_CHNL), 0x0); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4352 | iwl3945_release_nic_access(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4353 | } |
| 4354 | handled |= CSR_INT_BIT_FH_TX; |
| 4355 | } |
| 4356 | |
| 4357 | if (inta & ~handled) |
| 4358 | IWL_ERROR("Unhandled INTA bits 0x%08x\n", inta & ~handled); |
| 4359 | |
| 4360 | if (inta & ~CSR_INI_SET_MASK) { |
| 4361 | IWL_WARNING("Disabled INTA bits 0x%08x were pending\n", |
| 4362 | inta & ~CSR_INI_SET_MASK); |
| 4363 | IWL_WARNING(" with FH_INT = 0x%08x\n", inta_fh); |
| 4364 | } |
| 4365 | |
| 4366 | /* Re-enable all interrupts */ |
Mohamed Abbas | 0359fac | 2008-03-28 16:21:08 -0700 | [diff] [blame] | 4367 | /* only Re-enable if disabled by irq */ |
| 4368 | if (test_bit(STATUS_INT_ENABLED, &priv->status)) |
| 4369 | iwl3945_enable_interrupts(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4370 | |
Christoph Hellwig | c8b0e6e | 2007-10-25 17:15:51 +0800 | [diff] [blame] | 4371 | #ifdef CONFIG_IWL3945_DEBUG |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4372 | if (iwl3945_debug_level & (IWL_DL_ISR)) { |
| 4373 | inta = iwl3945_read32(priv, CSR_INT); |
| 4374 | inta_mask = iwl3945_read32(priv, CSR_INT_MASK); |
| 4375 | inta_fh = iwl3945_read32(priv, CSR_FH_INT_STATUS); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4376 | IWL_DEBUG_ISR("End inta 0x%08x, enabled 0x%08x, fh 0x%08x, " |
| 4377 | "flags 0x%08lx\n", inta, inta_mask, inta_fh, flags); |
| 4378 | } |
| 4379 | #endif |
| 4380 | spin_unlock_irqrestore(&priv->lock, flags); |
| 4381 | } |
| 4382 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4383 | static irqreturn_t iwl3945_isr(int irq, void *data) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4384 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4385 | struct iwl3945_priv *priv = data; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4386 | u32 inta, inta_mask; |
| 4387 | u32 inta_fh; |
| 4388 | if (!priv) |
| 4389 | return IRQ_NONE; |
| 4390 | |
| 4391 | spin_lock(&priv->lock); |
| 4392 | |
| 4393 | /* Disable (but don't clear!) interrupts here to avoid |
| 4394 | * back-to-back ISRs and sporadic interrupts from our NIC. |
| 4395 | * If we have something to service, the tasklet will re-enable ints. |
| 4396 | * If we *don't* have something, we'll re-enable before leaving here. */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4397 | inta_mask = iwl3945_read32(priv, CSR_INT_MASK); /* just for debug */ |
| 4398 | iwl3945_write32(priv, CSR_INT_MASK, 0x00000000); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4399 | |
| 4400 | /* Discover which interrupts are active/pending */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4401 | inta = iwl3945_read32(priv, CSR_INT); |
| 4402 | inta_fh = iwl3945_read32(priv, CSR_FH_INT_STATUS); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4403 | |
| 4404 | /* Ignore interrupt if there's nothing in NIC to service. |
| 4405 | * This may be due to IRQ shared with another device, |
| 4406 | * or due to sporadic interrupts thrown from our NIC. */ |
| 4407 | if (!inta && !inta_fh) { |
| 4408 | IWL_DEBUG_ISR("Ignore interrupt, inta == 0, inta_fh == 0\n"); |
| 4409 | goto none; |
| 4410 | } |
| 4411 | |
| 4412 | if ((inta == 0xFFFFFFFF) || ((inta & 0xFFFFFFF0) == 0xa5a5a5a0)) { |
| 4413 | /* Hardware disappeared */ |
Zhu Yi | 99df630 | 2008-12-02 12:13:58 -0800 | [diff] [blame] | 4414 | IWL_WARNING("HARDWARE GONE?? INTA == 0x%08x\n", inta); |
Oliver Neukum | cb4da1a | 2007-11-13 21:10:32 -0800 | [diff] [blame] | 4415 | goto unplugged; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4416 | } |
| 4417 | |
| 4418 | IWL_DEBUG_ISR("ISR inta 0x%08x, enabled 0x%08x, fh 0x%08x\n", |
| 4419 | inta, inta_mask, inta_fh); |
| 4420 | |
Joonwoo Park | 25c03d8 | 2008-01-23 10:15:20 -0800 | [diff] [blame] | 4421 | inta &= ~CSR_INT_BIT_SCD; |
| 4422 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4423 | /* iwl3945_irq_tasklet() will service interrupts and re-enable them */ |
Joonwoo Park | 25c03d8 | 2008-01-23 10:15:20 -0800 | [diff] [blame] | 4424 | if (likely(inta || inta_fh)) |
| 4425 | tasklet_schedule(&priv->irq_tasklet); |
Oliver Neukum | cb4da1a | 2007-11-13 21:10:32 -0800 | [diff] [blame] | 4426 | unplugged: |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4427 | spin_unlock(&priv->lock); |
| 4428 | |
| 4429 | return IRQ_HANDLED; |
| 4430 | |
| 4431 | none: |
| 4432 | /* re-enable interrupts here since we don't have anything to service. */ |
Mohamed Abbas | 0359fac | 2008-03-28 16:21:08 -0700 | [diff] [blame] | 4433 | /* only Re-enable if disabled by irq */ |
| 4434 | if (test_bit(STATUS_INT_ENABLED, &priv->status)) |
| 4435 | iwl3945_enable_interrupts(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4436 | spin_unlock(&priv->lock); |
| 4437 | return IRQ_NONE; |
| 4438 | } |
| 4439 | |
| 4440 | /************************** EEPROM BANDS **************************** |
| 4441 | * |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4442 | * The iwl3945_eeprom_band definitions below provide the mapping from the |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4443 | * EEPROM contents to the specific channel number supported for each |
| 4444 | * band. |
| 4445 | * |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4446 | * For example, iwl3945_priv->eeprom.band_3_channels[4] from the band_3 |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4447 | * definition below maps to physical channel 42 in the 5.2GHz spectrum. |
| 4448 | * The specific geography and calibration information for that channel |
| 4449 | * is contained in the eeprom map itself. |
| 4450 | * |
| 4451 | * During init, we copy the eeprom information and channel map |
| 4452 | * information into priv->channel_info_24/52 and priv->channel_map_24/52 |
| 4453 | * |
| 4454 | * channel_map_24/52 provides the index in the channel_info array for a |
| 4455 | * given channel. We have to have two separate maps as there is channel |
| 4456 | * overlap with the 2.4GHz and 5.2GHz spectrum as seen in band_1 and |
| 4457 | * band_2 |
| 4458 | * |
| 4459 | * A value of 0xff stored in the channel_map indicates that the channel |
| 4460 | * is not supported by the hardware at all. |
| 4461 | * |
| 4462 | * A value of 0xfe in the channel_map indicates that the channel is not |
| 4463 | * valid for Tx with the current hardware. This means that |
| 4464 | * while the system can tune and receive on a given channel, it may not |
| 4465 | * be able to associate or transmit any frames on that |
| 4466 | * channel. There is no corresponding channel information for that |
| 4467 | * entry. |
| 4468 | * |
| 4469 | *********************************************************************/ |
| 4470 | |
| 4471 | /* 2.4 GHz */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4472 | static const u8 iwl3945_eeprom_band_1[14] = { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4473 | 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14 |
| 4474 | }; |
| 4475 | |
| 4476 | /* 5.2 GHz bands */ |
Ben Cahill | 9fbab51 | 2007-11-29 11:09:47 +0800 | [diff] [blame] | 4477 | static const u8 iwl3945_eeprom_band_2[] = { /* 4915-5080MHz */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4478 | 183, 184, 185, 187, 188, 189, 192, 196, 7, 8, 11, 12, 16 |
| 4479 | }; |
| 4480 | |
Ben Cahill | 9fbab51 | 2007-11-29 11:09:47 +0800 | [diff] [blame] | 4481 | static const u8 iwl3945_eeprom_band_3[] = { /* 5170-5320MHz */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4482 | 34, 36, 38, 40, 42, 44, 46, 48, 52, 56, 60, 64 |
| 4483 | }; |
| 4484 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4485 | static const u8 iwl3945_eeprom_band_4[] = { /* 5500-5700MHz */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4486 | 100, 104, 108, 112, 116, 120, 124, 128, 132, 136, 140 |
| 4487 | }; |
| 4488 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4489 | static const u8 iwl3945_eeprom_band_5[] = { /* 5725-5825MHz */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4490 | 145, 149, 153, 157, 161, 165 |
| 4491 | }; |
| 4492 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4493 | static void iwl3945_init_band_reference(const struct iwl3945_priv *priv, int band, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4494 | int *eeprom_ch_count, |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4495 | const struct iwl3945_eeprom_channel |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4496 | **eeprom_ch_info, |
| 4497 | const u8 **eeprom_ch_index) |
| 4498 | { |
| 4499 | switch (band) { |
| 4500 | case 1: /* 2.4GHz band */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4501 | *eeprom_ch_count = ARRAY_SIZE(iwl3945_eeprom_band_1); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4502 | *eeprom_ch_info = priv->eeprom.band_1_channels; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4503 | *eeprom_ch_index = iwl3945_eeprom_band_1; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4504 | break; |
Ben Cahill | 9fbab51 | 2007-11-29 11:09:47 +0800 | [diff] [blame] | 4505 | case 2: /* 4.9GHz band */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4506 | *eeprom_ch_count = ARRAY_SIZE(iwl3945_eeprom_band_2); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4507 | *eeprom_ch_info = priv->eeprom.band_2_channels; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4508 | *eeprom_ch_index = iwl3945_eeprom_band_2; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4509 | break; |
| 4510 | case 3: /* 5.2GHz band */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4511 | *eeprom_ch_count = ARRAY_SIZE(iwl3945_eeprom_band_3); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4512 | *eeprom_ch_info = priv->eeprom.band_3_channels; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4513 | *eeprom_ch_index = iwl3945_eeprom_band_3; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4514 | break; |
Ben Cahill | 9fbab51 | 2007-11-29 11:09:47 +0800 | [diff] [blame] | 4515 | case 4: /* 5.5GHz band */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4516 | *eeprom_ch_count = ARRAY_SIZE(iwl3945_eeprom_band_4); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4517 | *eeprom_ch_info = priv->eeprom.band_4_channels; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4518 | *eeprom_ch_index = iwl3945_eeprom_band_4; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4519 | break; |
Ben Cahill | 9fbab51 | 2007-11-29 11:09:47 +0800 | [diff] [blame] | 4520 | case 5: /* 5.7GHz band */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4521 | *eeprom_ch_count = ARRAY_SIZE(iwl3945_eeprom_band_5); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4522 | *eeprom_ch_info = priv->eeprom.band_5_channels; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4523 | *eeprom_ch_index = iwl3945_eeprom_band_5; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4524 | break; |
| 4525 | default: |
| 4526 | BUG(); |
| 4527 | return; |
| 4528 | } |
| 4529 | } |
| 4530 | |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 4531 | /** |
| 4532 | * iwl3945_get_channel_info - Find driver's private channel info |
| 4533 | * |
| 4534 | * Based on band and channel number. |
| 4535 | */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4536 | const struct iwl3945_channel_info *iwl3945_get_channel_info(const struct iwl3945_priv *priv, |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 4537 | enum ieee80211_band band, u16 channel) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4538 | { |
| 4539 | int i; |
| 4540 | |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 4541 | switch (band) { |
| 4542 | case IEEE80211_BAND_5GHZ: |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4543 | for (i = 14; i < priv->channel_count; i++) { |
| 4544 | if (priv->channel_info[i].channel == channel) |
| 4545 | return &priv->channel_info[i]; |
| 4546 | } |
| 4547 | break; |
| 4548 | |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 4549 | case IEEE80211_BAND_2GHZ: |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4550 | if (channel >= 1 && channel <= 14) |
| 4551 | return &priv->channel_info[channel - 1]; |
| 4552 | break; |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 4553 | case IEEE80211_NUM_BANDS: |
| 4554 | WARN_ON(1); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4555 | } |
| 4556 | |
| 4557 | return NULL; |
| 4558 | } |
| 4559 | |
| 4560 | #define CHECK_AND_PRINT(x) ((eeprom_ch_info[ch].flags & EEPROM_CHANNEL_##x) \ |
| 4561 | ? # x " " : "") |
| 4562 | |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 4563 | /** |
| 4564 | * iwl3945_init_channel_map - Set up driver's info for all possible channels |
| 4565 | */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4566 | static int iwl3945_init_channel_map(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4567 | { |
| 4568 | int eeprom_ch_count = 0; |
| 4569 | const u8 *eeprom_ch_index = NULL; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4570 | const struct iwl3945_eeprom_channel *eeprom_ch_info = NULL; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4571 | int band, ch; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4572 | struct iwl3945_channel_info *ch_info; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4573 | |
| 4574 | if (priv->channel_count) { |
| 4575 | IWL_DEBUG_INFO("Channel map already initialized.\n"); |
| 4576 | return 0; |
| 4577 | } |
| 4578 | |
| 4579 | if (priv->eeprom.version < 0x2f) { |
| 4580 | IWL_WARNING("Unsupported EEPROM version: 0x%04X\n", |
| 4581 | priv->eeprom.version); |
| 4582 | return -EINVAL; |
| 4583 | } |
| 4584 | |
| 4585 | IWL_DEBUG_INFO("Initializing regulatory info from EEPROM\n"); |
| 4586 | |
| 4587 | priv->channel_count = |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4588 | ARRAY_SIZE(iwl3945_eeprom_band_1) + |
| 4589 | ARRAY_SIZE(iwl3945_eeprom_band_2) + |
| 4590 | ARRAY_SIZE(iwl3945_eeprom_band_3) + |
| 4591 | ARRAY_SIZE(iwl3945_eeprom_band_4) + |
| 4592 | ARRAY_SIZE(iwl3945_eeprom_band_5); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4593 | |
| 4594 | IWL_DEBUG_INFO("Parsing data for %d channels.\n", priv->channel_count); |
| 4595 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4596 | priv->channel_info = kzalloc(sizeof(struct iwl3945_channel_info) * |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4597 | priv->channel_count, GFP_KERNEL); |
| 4598 | if (!priv->channel_info) { |
| 4599 | IWL_ERROR("Could not allocate channel_info\n"); |
| 4600 | priv->channel_count = 0; |
| 4601 | return -ENOMEM; |
| 4602 | } |
| 4603 | |
| 4604 | ch_info = priv->channel_info; |
| 4605 | |
| 4606 | /* Loop through the 5 EEPROM bands adding them in order to the |
| 4607 | * channel map we maintain (that contains additional information than |
| 4608 | * what just in the EEPROM) */ |
| 4609 | for (band = 1; band <= 5; band++) { |
| 4610 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4611 | iwl3945_init_band_reference(priv, band, &eeprom_ch_count, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4612 | &eeprom_ch_info, &eeprom_ch_index); |
| 4613 | |
| 4614 | /* Loop through each band adding each of the channels */ |
| 4615 | for (ch = 0; ch < eeprom_ch_count; ch++) { |
| 4616 | ch_info->channel = eeprom_ch_index[ch]; |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 4617 | ch_info->band = (band == 1) ? IEEE80211_BAND_2GHZ : |
| 4618 | IEEE80211_BAND_5GHZ; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4619 | |
| 4620 | /* permanently store EEPROM's channel regulatory flags |
| 4621 | * and max power in channel info database. */ |
| 4622 | ch_info->eeprom = eeprom_ch_info[ch]; |
| 4623 | |
| 4624 | /* Copy the run-time flags so they are there even on |
| 4625 | * invalid channels */ |
| 4626 | ch_info->flags = eeprom_ch_info[ch].flags; |
| 4627 | |
| 4628 | if (!(is_channel_valid(ch_info))) { |
| 4629 | IWL_DEBUG_INFO("Ch. %d Flags %x [%sGHz] - " |
| 4630 | "No traffic\n", |
| 4631 | ch_info->channel, |
| 4632 | ch_info->flags, |
| 4633 | is_channel_a_band(ch_info) ? |
| 4634 | "5.2" : "2.4"); |
| 4635 | ch_info++; |
| 4636 | continue; |
| 4637 | } |
| 4638 | |
| 4639 | /* Initialize regulatory-based run-time data */ |
| 4640 | ch_info->max_power_avg = ch_info->curr_txpow = |
| 4641 | eeprom_ch_info[ch].max_power_avg; |
| 4642 | ch_info->scan_power = eeprom_ch_info[ch].max_power_avg; |
| 4643 | ch_info->min_power = 0; |
| 4644 | |
Guy Cohen | fe7c404 | 2008-04-21 15:41:56 -0700 | [diff] [blame] | 4645 | IWL_DEBUG_INFO("Ch. %d [%sGHz] %s%s%s%s%s%s(0x%02x" |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4646 | " %ddBm): Ad-Hoc %ssupported\n", |
| 4647 | ch_info->channel, |
| 4648 | is_channel_a_band(ch_info) ? |
| 4649 | "5.2" : "2.4", |
Tomas Winkler | 8211ef7 | 2008-03-02 01:36:04 +0200 | [diff] [blame] | 4650 | CHECK_AND_PRINT(VALID), |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4651 | CHECK_AND_PRINT(IBSS), |
| 4652 | CHECK_AND_PRINT(ACTIVE), |
| 4653 | CHECK_AND_PRINT(RADAR), |
| 4654 | CHECK_AND_PRINT(WIDE), |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4655 | CHECK_AND_PRINT(DFS), |
| 4656 | eeprom_ch_info[ch].flags, |
| 4657 | eeprom_ch_info[ch].max_power_avg, |
| 4658 | ((eeprom_ch_info[ch]. |
| 4659 | flags & EEPROM_CHANNEL_IBSS) |
| 4660 | && !(eeprom_ch_info[ch]. |
| 4661 | flags & EEPROM_CHANNEL_RADAR)) |
| 4662 | ? "" : "not "); |
| 4663 | |
| 4664 | /* Set the user_txpower_limit to the highest power |
| 4665 | * supported by any channel */ |
| 4666 | if (eeprom_ch_info[ch].max_power_avg > |
| 4667 | priv->user_txpower_limit) |
| 4668 | priv->user_txpower_limit = |
| 4669 | eeprom_ch_info[ch].max_power_avg; |
| 4670 | |
| 4671 | ch_info++; |
| 4672 | } |
| 4673 | } |
| 4674 | |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 4675 | /* Set up txpower settings in driver for all channels */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4676 | if (iwl3945_txpower_set_from_eeprom(priv)) |
| 4677 | return -EIO; |
| 4678 | |
| 4679 | return 0; |
| 4680 | } |
| 4681 | |
Reinette Chatre | 849e0dc | 2008-01-23 10:15:18 -0800 | [diff] [blame] | 4682 | /* |
| 4683 | * iwl3945_free_channel_map - undo allocations in iwl3945_init_channel_map |
| 4684 | */ |
| 4685 | static void iwl3945_free_channel_map(struct iwl3945_priv *priv) |
| 4686 | { |
| 4687 | kfree(priv->channel_info); |
| 4688 | priv->channel_count = 0; |
| 4689 | } |
| 4690 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4691 | /* For active scan, listen ACTIVE_DWELL_TIME (msec) on each channel after |
| 4692 | * sending probe req. This should be set long enough to hear probe responses |
| 4693 | * from more than one AP. */ |
Abhijeet Kolekar | f934052 | 2008-09-03 11:26:58 +0800 | [diff] [blame] | 4694 | #define IWL_ACTIVE_DWELL_TIME_24 (30) /* all times in msec */ |
| 4695 | #define IWL_ACTIVE_DWELL_TIME_52 (20) |
| 4696 | |
| 4697 | #define IWL_ACTIVE_DWELL_FACTOR_24GHZ (3) |
| 4698 | #define IWL_ACTIVE_DWELL_FACTOR_52GHZ (2) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4699 | |
| 4700 | /* For faster active scanning, scan will move to the next channel if fewer than |
| 4701 | * PLCP_QUIET_THRESH packets are heard on this channel within |
| 4702 | * ACTIVE_QUIET_TIME after sending probe request. This shortens the dwell |
| 4703 | * time if it's a quiet channel (nothing responded to our probe, and there's |
| 4704 | * no other traffic). |
| 4705 | * Disable "quiet" feature by setting PLCP_QUIET_THRESH to 0. */ |
| 4706 | #define IWL_PLCP_QUIET_THRESH __constant_cpu_to_le16(1) /* packets */ |
Abhijeet Kolekar | f934052 | 2008-09-03 11:26:58 +0800 | [diff] [blame] | 4707 | #define IWL_ACTIVE_QUIET_TIME __constant_cpu_to_le16(10) /* msec */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4708 | |
| 4709 | /* For passive scan, listen PASSIVE_DWELL_TIME (msec) on each channel. |
| 4710 | * Must be set longer than active dwell time. |
| 4711 | * For the most reliable scan, set > AP beacon interval (typically 100msec). */ |
| 4712 | #define IWL_PASSIVE_DWELL_TIME_24 (20) /* all times in msec */ |
| 4713 | #define IWL_PASSIVE_DWELL_TIME_52 (10) |
| 4714 | #define IWL_PASSIVE_DWELL_BASE (100) |
| 4715 | #define IWL_CHANNEL_TUNE_TIME 5 |
| 4716 | |
Kolekar, Abhijeet | e720ce9 | 2008-11-07 09:58:42 -0800 | [diff] [blame] | 4717 | #define IWL_SCAN_PROBE_MASK(n) (BIT(n) | (BIT(n) - BIT(1))) |
Abhijeet Kolekar | f934052 | 2008-09-03 11:26:58 +0800 | [diff] [blame] | 4718 | |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 4719 | static inline u16 iwl3945_get_active_dwell_time(struct iwl3945_priv *priv, |
Abhijeet Kolekar | f934052 | 2008-09-03 11:26:58 +0800 | [diff] [blame] | 4720 | enum ieee80211_band band, |
| 4721 | u8 n_probes) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4722 | { |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 4723 | if (band == IEEE80211_BAND_5GHZ) |
Abhijeet Kolekar | f934052 | 2008-09-03 11:26:58 +0800 | [diff] [blame] | 4724 | return IWL_ACTIVE_DWELL_TIME_52 + |
| 4725 | IWL_ACTIVE_DWELL_FACTOR_52GHZ * (n_probes + 1); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4726 | else |
Abhijeet Kolekar | f934052 | 2008-09-03 11:26:58 +0800 | [diff] [blame] | 4727 | return IWL_ACTIVE_DWELL_TIME_24 + |
| 4728 | IWL_ACTIVE_DWELL_FACTOR_24GHZ * (n_probes + 1); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4729 | } |
| 4730 | |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 4731 | static u16 iwl3945_get_passive_dwell_time(struct iwl3945_priv *priv, |
| 4732 | enum ieee80211_band band) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4733 | { |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 4734 | u16 passive = (band == IEEE80211_BAND_2GHZ) ? |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4735 | IWL_PASSIVE_DWELL_BASE + IWL_PASSIVE_DWELL_TIME_24 : |
| 4736 | IWL_PASSIVE_DWELL_BASE + IWL_PASSIVE_DWELL_TIME_52; |
| 4737 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4738 | if (iwl3945_is_associated(priv)) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4739 | /* If we're associated, we clamp the maximum passive |
| 4740 | * dwell time to be 98% of the beacon interval (minus |
| 4741 | * 2 * channel tune time) */ |
| 4742 | passive = priv->beacon_int; |
| 4743 | if ((passive > IWL_PASSIVE_DWELL_BASE) || !passive) |
| 4744 | passive = IWL_PASSIVE_DWELL_BASE; |
| 4745 | passive = (passive * 98) / 100 - IWL_CHANNEL_TUNE_TIME * 2; |
| 4746 | } |
| 4747 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4748 | return passive; |
| 4749 | } |
| 4750 | |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 4751 | static int iwl3945_get_channels_for_scan(struct iwl3945_priv *priv, |
| 4752 | enum ieee80211_band band, |
Abhijeet Kolekar | f934052 | 2008-09-03 11:26:58 +0800 | [diff] [blame] | 4753 | u8 is_active, u8 n_probes, |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4754 | struct iwl3945_scan_channel *scan_ch) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4755 | { |
| 4756 | const struct ieee80211_channel *channels = NULL; |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 4757 | const struct ieee80211_supported_band *sband; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4758 | const struct iwl3945_channel_info *ch_info; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4759 | u16 passive_dwell = 0; |
| 4760 | u16 active_dwell = 0; |
| 4761 | int added, i; |
| 4762 | |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 4763 | sband = iwl3945_get_band(priv, band); |
| 4764 | if (!sband) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4765 | return 0; |
| 4766 | |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 4767 | channels = sband->channels; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4768 | |
Abhijeet Kolekar | f934052 | 2008-09-03 11:26:58 +0800 | [diff] [blame] | 4769 | active_dwell = iwl3945_get_active_dwell_time(priv, band, n_probes); |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 4770 | passive_dwell = iwl3945_get_passive_dwell_time(priv, band); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4771 | |
Abhijeet Kolekar | 8f4807a | 2008-09-03 11:26:31 +0800 | [diff] [blame] | 4772 | if (passive_dwell <= active_dwell) |
| 4773 | passive_dwell = active_dwell + 1; |
| 4774 | |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 4775 | for (i = 0, added = 0; i < sband->n_channels; i++) { |
Johannes Berg | 182e2e6 | 2008-04-04 10:41:56 +0200 | [diff] [blame] | 4776 | if (channels[i].flags & IEEE80211_CHAN_DISABLED) |
| 4777 | continue; |
| 4778 | |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 4779 | scan_ch->channel = channels[i].hw_value; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4780 | |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 4781 | ch_info = iwl3945_get_channel_info(priv, band, scan_ch->channel); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4782 | if (!is_channel_valid(ch_info)) { |
Ron Rindjunsky | 66b5004 | 2008-06-25 16:46:31 +0800 | [diff] [blame] | 4783 | IWL_DEBUG_SCAN("Channel %d is INVALID for this band.\n", |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4784 | scan_ch->channel); |
| 4785 | continue; |
| 4786 | } |
| 4787 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4788 | scan_ch->active_dwell = cpu_to_le16(active_dwell); |
| 4789 | scan_ch->passive_dwell = cpu_to_le16(passive_dwell); |
Abhijeet Kolekar | 011a033 | 2008-12-02 12:14:07 -0800 | [diff] [blame^] | 4790 | /* If passive , set up for auto-switch |
| 4791 | * and use long active_dwell time. |
| 4792 | */ |
| 4793 | if (!is_active || is_channel_passive(ch_info) || |
| 4794 | (channels[i].flags & IEEE80211_CHAN_PASSIVE_SCAN)) { |
| 4795 | scan_ch->type = 0; /* passive */ |
| 4796 | if (IWL_UCODE_API(priv->ucode_ver) == 1) |
| 4797 | scan_ch->active_dwell = cpu_to_le16(passive_dwell - 1); |
| 4798 | } else { |
| 4799 | scan_ch->type = 1; /* active */ |
| 4800 | } |
| 4801 | |
| 4802 | /* Set direct probe bits. These may be used both for active |
| 4803 | * scan channels (probes gets sent right away), |
| 4804 | * or for passive channels (probes get se sent only after |
| 4805 | * hearing clear Rx packet).*/ |
| 4806 | if (IWL_UCODE_API(priv->ucode_ver) >= 2) { |
| 4807 | if (n_probes) |
| 4808 | scan_ch->type |= IWL_SCAN_PROBE_MASK(n_probes); |
| 4809 | } else { |
| 4810 | /* uCode v1 does not allow setting direct probe bits on |
| 4811 | * passive channel. */ |
| 4812 | if ((scan_ch->type & 1) && n_probes) |
| 4813 | scan_ch->type |= IWL_SCAN_PROBE_MASK(n_probes); |
| 4814 | } |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4815 | |
Ben Cahill | 9fbab51 | 2007-11-29 11:09:47 +0800 | [diff] [blame] | 4816 | /* Set txpower levels to defaults */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4817 | scan_ch->tpc.dsp_atten = 110; |
| 4818 | /* scan_pwr_info->tpc.dsp_atten; */ |
| 4819 | |
| 4820 | /*scan_pwr_info->tpc.tx_gain; */ |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 4821 | if (band == IEEE80211_BAND_5GHZ) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4822 | scan_ch->tpc.tx_gain = ((1 << 5) | (3 << 3)) | 3; |
| 4823 | else { |
| 4824 | scan_ch->tpc.tx_gain = ((1 << 5) | (5 << 3)); |
| 4825 | /* NOTE: if we were doing 6Mb OFDM for scans we'd use |
Ben Cahill | 9fbab51 | 2007-11-29 11:09:47 +0800 | [diff] [blame] | 4826 | * power level: |
Reinette Chatre | 8a1b024 | 2008-01-14 17:46:25 -0800 | [diff] [blame] | 4827 | * scan_ch->tpc.tx_gain = ((1 << 5) | (2 << 3)) | 3; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4828 | */ |
| 4829 | } |
| 4830 | |
| 4831 | IWL_DEBUG_SCAN("Scanning %d [%s %d]\n", |
| 4832 | scan_ch->channel, |
| 4833 | (scan_ch->type & 1) ? "ACTIVE" : "PASSIVE", |
| 4834 | (scan_ch->type & 1) ? |
| 4835 | active_dwell : passive_dwell); |
| 4836 | |
| 4837 | scan_ch++; |
| 4838 | added++; |
| 4839 | } |
| 4840 | |
| 4841 | IWL_DEBUG_SCAN("total channels to scan %d \n", added); |
| 4842 | return added; |
| 4843 | } |
| 4844 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4845 | static void iwl3945_init_hw_rates(struct iwl3945_priv *priv, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4846 | struct ieee80211_rate *rates) |
| 4847 | { |
| 4848 | int i; |
| 4849 | |
| 4850 | for (i = 0; i < IWL_RATE_COUNT; i++) { |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 4851 | rates[i].bitrate = iwl3945_rates[i].ieee * 5; |
| 4852 | rates[i].hw_value = i; /* Rate scaling will work on indexes */ |
| 4853 | rates[i].hw_value_short = i; |
| 4854 | rates[i].flags = 0; |
| 4855 | if ((i > IWL_LAST_OFDM_RATE) || (i < IWL_FIRST_OFDM_RATE)) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4856 | /* |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 4857 | * If CCK != 1M then set short preamble rate flag. |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4858 | */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4859 | rates[i].flags |= (iwl3945_rates[i].plcp == 10) ? |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 4860 | 0 : IEEE80211_RATE_SHORT_PREAMBLE; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4861 | } |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4862 | } |
| 4863 | } |
| 4864 | |
| 4865 | /** |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4866 | * iwl3945_init_geos - Initialize mac80211's geo/channel info based from eeprom |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4867 | */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4868 | static int iwl3945_init_geos(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4869 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4870 | struct iwl3945_channel_info *ch; |
Tomas Winkler | 8211ef7 | 2008-03-02 01:36:04 +0200 | [diff] [blame] | 4871 | struct ieee80211_supported_band *sband; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4872 | struct ieee80211_channel *channels; |
| 4873 | struct ieee80211_channel *geo_ch; |
| 4874 | struct ieee80211_rate *rates; |
| 4875 | int i = 0; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4876 | |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 4877 | if (priv->bands[IEEE80211_BAND_2GHZ].n_bitrates || |
| 4878 | priv->bands[IEEE80211_BAND_5GHZ].n_bitrates) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4879 | IWL_DEBUG_INFO("Geography modes already initialized.\n"); |
| 4880 | set_bit(STATUS_GEO_CONFIGURED, &priv->status); |
| 4881 | return 0; |
| 4882 | } |
| 4883 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4884 | channels = kzalloc(sizeof(struct ieee80211_channel) * |
| 4885 | priv->channel_count, GFP_KERNEL); |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 4886 | if (!channels) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4887 | return -ENOMEM; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4888 | |
Tomas Winkler | 8211ef7 | 2008-03-02 01:36:04 +0200 | [diff] [blame] | 4889 | rates = kzalloc((sizeof(struct ieee80211_rate) * (IWL_RATE_COUNT + 1)), |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4890 | GFP_KERNEL); |
| 4891 | if (!rates) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4892 | kfree(channels); |
| 4893 | return -ENOMEM; |
| 4894 | } |
| 4895 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4896 | /* 5.2GHz channels start after the 2.4GHz channels */ |
Tomas Winkler | 8211ef7 | 2008-03-02 01:36:04 +0200 | [diff] [blame] | 4897 | sband = &priv->bands[IEEE80211_BAND_5GHZ]; |
| 4898 | sband->channels = &channels[ARRAY_SIZE(iwl3945_eeprom_band_1)]; |
| 4899 | /* just OFDM */ |
| 4900 | sband->bitrates = &rates[IWL_FIRST_OFDM_RATE]; |
| 4901 | sband->n_bitrates = IWL_RATE_COUNT - IWL_FIRST_OFDM_RATE; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4902 | |
Tomas Winkler | 8211ef7 | 2008-03-02 01:36:04 +0200 | [diff] [blame] | 4903 | sband = &priv->bands[IEEE80211_BAND_2GHZ]; |
| 4904 | sband->channels = channels; |
| 4905 | /* OFDM & CCK */ |
| 4906 | sband->bitrates = rates; |
| 4907 | sband->n_bitrates = IWL_RATE_COUNT; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4908 | |
| 4909 | priv->ieee_channels = channels; |
| 4910 | priv->ieee_rates = rates; |
| 4911 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 4912 | iwl3945_init_hw_rates(priv, rates); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4913 | |
Tomas Winkler | 8211ef7 | 2008-03-02 01:36:04 +0200 | [diff] [blame] | 4914 | for (i = 0; i < priv->channel_count; i++) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4915 | ch = &priv->channel_info[i]; |
| 4916 | |
Tomas Winkler | 8211ef7 | 2008-03-02 01:36:04 +0200 | [diff] [blame] | 4917 | /* FIXME: might be removed if scan is OK*/ |
| 4918 | if (!is_channel_valid(ch)) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4919 | continue; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4920 | |
| 4921 | if (is_channel_a_band(ch)) |
Tomas Winkler | 8211ef7 | 2008-03-02 01:36:04 +0200 | [diff] [blame] | 4922 | sband = &priv->bands[IEEE80211_BAND_5GHZ]; |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 4923 | else |
Tomas Winkler | 8211ef7 | 2008-03-02 01:36:04 +0200 | [diff] [blame] | 4924 | sband = &priv->bands[IEEE80211_BAND_2GHZ]; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4925 | |
Tomas Winkler | 8211ef7 | 2008-03-02 01:36:04 +0200 | [diff] [blame] | 4926 | geo_ch = &sband->channels[sband->n_channels++]; |
| 4927 | |
| 4928 | geo_ch->center_freq = ieee80211_channel_to_frequency(ch->channel); |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 4929 | geo_ch->max_power = ch->max_power_avg; |
| 4930 | geo_ch->max_antenna_gain = 0xff; |
Mohamed Abbas | 7b72304 | 2008-01-31 21:46:40 -0800 | [diff] [blame] | 4931 | geo_ch->hw_value = ch->channel; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4932 | |
| 4933 | if (is_channel_valid(ch)) { |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 4934 | if (!(ch->flags & EEPROM_CHANNEL_IBSS)) |
| 4935 | geo_ch->flags |= IEEE80211_CHAN_NO_IBSS; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4936 | |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 4937 | if (!(ch->flags & EEPROM_CHANNEL_ACTIVE)) |
| 4938 | geo_ch->flags |= IEEE80211_CHAN_PASSIVE_SCAN; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4939 | |
| 4940 | if (ch->flags & EEPROM_CHANNEL_RADAR) |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 4941 | geo_ch->flags |= IEEE80211_CHAN_RADAR; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4942 | |
| 4943 | if (ch->max_power_avg > priv->max_channel_txpower_limit) |
| 4944 | priv->max_channel_txpower_limit = |
| 4945 | ch->max_power_avg; |
Tomas Winkler | 8211ef7 | 2008-03-02 01:36:04 +0200 | [diff] [blame] | 4946 | } else { |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 4947 | geo_ch->flags |= IEEE80211_CHAN_DISABLED; |
Tomas Winkler | 8211ef7 | 2008-03-02 01:36:04 +0200 | [diff] [blame] | 4948 | } |
| 4949 | |
| 4950 | /* Save flags for reg domain usage */ |
| 4951 | geo_ch->orig_flags = geo_ch->flags; |
| 4952 | |
| 4953 | IWL_DEBUG_INFO("Channel %d Freq=%d[%sGHz] %s flag=0%X\n", |
| 4954 | ch->channel, geo_ch->center_freq, |
| 4955 | is_channel_a_band(ch) ? "5.2" : "2.4", |
| 4956 | geo_ch->flags & IEEE80211_CHAN_DISABLED ? |
| 4957 | "restricted" : "valid", |
| 4958 | geo_ch->flags); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4959 | } |
| 4960 | |
Tomas Winkler | 82b9a12 | 2008-03-04 18:09:30 -0800 | [diff] [blame] | 4961 | if ((priv->bands[IEEE80211_BAND_5GHZ].n_channels == 0) && |
| 4962 | priv->cfg->sku & IWL_SKU_A) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4963 | printk(KERN_INFO DRV_NAME |
| 4964 | ": Incorrectly detected BG card as ABG. Please send " |
| 4965 | "your PCI ID 0x%04X:0x%04X to maintainer.\n", |
| 4966 | priv->pci_dev->device, priv->pci_dev->subsystem_device); |
Tomas Winkler | 82b9a12 | 2008-03-04 18:09:30 -0800 | [diff] [blame] | 4967 | priv->cfg->sku &= ~IWL_SKU_A; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4968 | } |
| 4969 | |
| 4970 | printk(KERN_INFO DRV_NAME |
| 4971 | ": Tunable channels: %d 802.11bg, %d 802.11a channels\n", |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 4972 | priv->bands[IEEE80211_BAND_2GHZ].n_channels, |
| 4973 | priv->bands[IEEE80211_BAND_5GHZ].n_channels); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4974 | |
John W. Linville | e0e0a67 | 2008-03-25 15:58:40 -0400 | [diff] [blame] | 4975 | if (priv->bands[IEEE80211_BAND_2GHZ].n_channels) |
| 4976 | priv->hw->wiphy->bands[IEEE80211_BAND_2GHZ] = |
| 4977 | &priv->bands[IEEE80211_BAND_2GHZ]; |
| 4978 | if (priv->bands[IEEE80211_BAND_5GHZ].n_channels) |
| 4979 | priv->hw->wiphy->bands[IEEE80211_BAND_5GHZ] = |
| 4980 | &priv->bands[IEEE80211_BAND_5GHZ]; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4981 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4982 | set_bit(STATUS_GEO_CONFIGURED, &priv->status); |
| 4983 | |
| 4984 | return 0; |
| 4985 | } |
| 4986 | |
Reinette Chatre | 849e0dc | 2008-01-23 10:15:18 -0800 | [diff] [blame] | 4987 | /* |
| 4988 | * iwl3945_free_geos - undo allocations in iwl3945_init_geos |
| 4989 | */ |
| 4990 | static void iwl3945_free_geos(struct iwl3945_priv *priv) |
| 4991 | { |
Reinette Chatre | 849e0dc | 2008-01-23 10:15:18 -0800 | [diff] [blame] | 4992 | kfree(priv->ieee_channels); |
| 4993 | kfree(priv->ieee_rates); |
| 4994 | clear_bit(STATUS_GEO_CONFIGURED, &priv->status); |
| 4995 | } |
| 4996 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4997 | /****************************************************************************** |
| 4998 | * |
| 4999 | * uCode download functions |
| 5000 | * |
| 5001 | ******************************************************************************/ |
| 5002 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5003 | static void iwl3945_dealloc_ucode_pci(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5004 | { |
Tomas Winkler | 98c9221 | 2008-01-14 17:46:20 -0800 | [diff] [blame] | 5005 | iwl_free_fw_desc(priv->pci_dev, &priv->ucode_code); |
| 5006 | iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data); |
| 5007 | iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data_backup); |
| 5008 | iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init); |
| 5009 | iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init_data); |
| 5010 | iwl_free_fw_desc(priv->pci_dev, &priv->ucode_boot); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5011 | } |
| 5012 | |
| 5013 | /** |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5014 | * iwl3945_verify_inst_full - verify runtime uCode image in card vs. host, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5015 | * looking at all data. |
| 5016 | */ |
Tomas Winkler | 3ac7f14 | 2008-07-21 02:40:14 +0300 | [diff] [blame] | 5017 | static int iwl3945_verify_inst_full(struct iwl3945_priv *priv, __le32 *image, u32 len) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5018 | { |
| 5019 | u32 val; |
| 5020 | u32 save_len = len; |
| 5021 | int rc = 0; |
| 5022 | u32 errcnt; |
| 5023 | |
| 5024 | IWL_DEBUG_INFO("ucode inst image size is %u\n", len); |
| 5025 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5026 | rc = iwl3945_grab_nic_access(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5027 | if (rc) |
| 5028 | return rc; |
| 5029 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5030 | iwl3945_write_direct32(priv, HBUS_TARG_MEM_RADDR, RTC_INST_LOWER_BOUND); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5031 | |
| 5032 | errcnt = 0; |
| 5033 | for (; len > 0; len -= sizeof(u32), image++) { |
| 5034 | /* read data comes through single port, auto-incr addr */ |
| 5035 | /* NOTE: Use the debugless read so we don't flood kernel log |
| 5036 | * if IWL_DL_IO is set */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5037 | val = _iwl3945_read_direct32(priv, HBUS_TARG_MEM_RDAT); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5038 | if (val != le32_to_cpu(*image)) { |
| 5039 | IWL_ERROR("uCode INST section is invalid at " |
| 5040 | "offset 0x%x, is 0x%x, s/b 0x%x\n", |
| 5041 | save_len - len, val, le32_to_cpu(*image)); |
| 5042 | rc = -EIO; |
| 5043 | errcnt++; |
| 5044 | if (errcnt >= 20) |
| 5045 | break; |
| 5046 | } |
| 5047 | } |
| 5048 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5049 | iwl3945_release_nic_access(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5050 | |
| 5051 | if (!errcnt) |
Ian Schram | bc434dd | 2007-10-25 17:15:29 +0800 | [diff] [blame] | 5052 | IWL_DEBUG_INFO("ucode image in INSTRUCTION memory is good\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5053 | |
| 5054 | return rc; |
| 5055 | } |
| 5056 | |
| 5057 | |
| 5058 | /** |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5059 | * iwl3945_verify_inst_sparse - verify runtime uCode image in card vs. host, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5060 | * using sample data 100 bytes apart. If these sample points are good, |
| 5061 | * it's a pretty good bet that everything between them is good, too. |
| 5062 | */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5063 | static int iwl3945_verify_inst_sparse(struct iwl3945_priv *priv, __le32 *image, u32 len) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5064 | { |
| 5065 | u32 val; |
| 5066 | int rc = 0; |
| 5067 | u32 errcnt = 0; |
| 5068 | u32 i; |
| 5069 | |
| 5070 | IWL_DEBUG_INFO("ucode inst image size is %u\n", len); |
| 5071 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5072 | rc = iwl3945_grab_nic_access(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5073 | if (rc) |
| 5074 | return rc; |
| 5075 | |
| 5076 | for (i = 0; i < len; i += 100, image += 100/sizeof(u32)) { |
| 5077 | /* read data comes through single port, auto-incr addr */ |
| 5078 | /* NOTE: Use the debugless read so we don't flood kernel log |
| 5079 | * if IWL_DL_IO is set */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5080 | iwl3945_write_direct32(priv, HBUS_TARG_MEM_RADDR, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5081 | i + RTC_INST_LOWER_BOUND); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5082 | val = _iwl3945_read_direct32(priv, HBUS_TARG_MEM_RDAT); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5083 | if (val != le32_to_cpu(*image)) { |
| 5084 | #if 0 /* Enable this if you want to see details */ |
| 5085 | IWL_ERROR("uCode INST section is invalid at " |
| 5086 | "offset 0x%x, is 0x%x, s/b 0x%x\n", |
| 5087 | i, val, *image); |
| 5088 | #endif |
| 5089 | rc = -EIO; |
| 5090 | errcnt++; |
| 5091 | if (errcnt >= 3) |
| 5092 | break; |
| 5093 | } |
| 5094 | } |
| 5095 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5096 | iwl3945_release_nic_access(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5097 | |
| 5098 | return rc; |
| 5099 | } |
| 5100 | |
| 5101 | |
| 5102 | /** |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5103 | * iwl3945_verify_ucode - determine which instruction image is in SRAM, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5104 | * and verify its contents |
| 5105 | */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5106 | static int iwl3945_verify_ucode(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5107 | { |
| 5108 | __le32 *image; |
| 5109 | u32 len; |
| 5110 | int rc = 0; |
| 5111 | |
| 5112 | /* Try bootstrap */ |
| 5113 | image = (__le32 *)priv->ucode_boot.v_addr; |
| 5114 | len = priv->ucode_boot.len; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5115 | rc = iwl3945_verify_inst_sparse(priv, image, len); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5116 | if (rc == 0) { |
| 5117 | IWL_DEBUG_INFO("Bootstrap uCode is good in inst SRAM\n"); |
| 5118 | return 0; |
| 5119 | } |
| 5120 | |
| 5121 | /* Try initialize */ |
| 5122 | image = (__le32 *)priv->ucode_init.v_addr; |
| 5123 | len = priv->ucode_init.len; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5124 | rc = iwl3945_verify_inst_sparse(priv, image, len); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5125 | if (rc == 0) { |
| 5126 | IWL_DEBUG_INFO("Initialize uCode is good in inst SRAM\n"); |
| 5127 | return 0; |
| 5128 | } |
| 5129 | |
| 5130 | /* Try runtime/protocol */ |
| 5131 | image = (__le32 *)priv->ucode_code.v_addr; |
| 5132 | len = priv->ucode_code.len; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5133 | rc = iwl3945_verify_inst_sparse(priv, image, len); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5134 | if (rc == 0) { |
| 5135 | IWL_DEBUG_INFO("Runtime uCode is good in inst SRAM\n"); |
| 5136 | return 0; |
| 5137 | } |
| 5138 | |
| 5139 | IWL_ERROR("NO VALID UCODE IMAGE IN INSTRUCTION SRAM!!\n"); |
| 5140 | |
Ben Cahill | 9fbab51 | 2007-11-29 11:09:47 +0800 | [diff] [blame] | 5141 | /* Since nothing seems to match, show first several data entries in |
| 5142 | * instruction SRAM, so maybe visual inspection will give a clue. |
| 5143 | * Selection of bootstrap image (vs. other images) is arbitrary. */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5144 | image = (__le32 *)priv->ucode_boot.v_addr; |
| 5145 | len = priv->ucode_boot.len; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5146 | rc = iwl3945_verify_inst_full(priv, image, len); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5147 | |
| 5148 | return rc; |
| 5149 | } |
| 5150 | |
| 5151 | |
| 5152 | /* check contents of special bootstrap uCode SRAM */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5153 | static int iwl3945_verify_bsm(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5154 | { |
| 5155 | __le32 *image = priv->ucode_boot.v_addr; |
| 5156 | u32 len = priv->ucode_boot.len; |
| 5157 | u32 reg; |
| 5158 | u32 val; |
| 5159 | |
| 5160 | IWL_DEBUG_INFO("Begin verify bsm\n"); |
| 5161 | |
| 5162 | /* verify BSM SRAM contents */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5163 | val = iwl3945_read_prph(priv, BSM_WR_DWCOUNT_REG); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5164 | for (reg = BSM_SRAM_LOWER_BOUND; |
| 5165 | reg < BSM_SRAM_LOWER_BOUND + len; |
Tomas Winkler | 3ac7f14 | 2008-07-21 02:40:14 +0300 | [diff] [blame] | 5166 | reg += sizeof(u32), image++) { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5167 | val = iwl3945_read_prph(priv, reg); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5168 | if (val != le32_to_cpu(*image)) { |
| 5169 | IWL_ERROR("BSM uCode verification failed at " |
| 5170 | "addr 0x%08X+%u (of %u), is 0x%x, s/b 0x%x\n", |
| 5171 | BSM_SRAM_LOWER_BOUND, |
| 5172 | reg - BSM_SRAM_LOWER_BOUND, len, |
| 5173 | val, le32_to_cpu(*image)); |
| 5174 | return -EIO; |
| 5175 | } |
| 5176 | } |
| 5177 | |
| 5178 | IWL_DEBUG_INFO("BSM bootstrap uCode image OK\n"); |
| 5179 | |
| 5180 | return 0; |
| 5181 | } |
| 5182 | |
| 5183 | /** |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5184 | * iwl3945_load_bsm - Load bootstrap instructions |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5185 | * |
| 5186 | * BSM operation: |
| 5187 | * |
| 5188 | * The Bootstrap State Machine (BSM) stores a short bootstrap uCode program |
| 5189 | * in special SRAM that does not power down during RFKILL. When powering back |
| 5190 | * up after power-saving sleeps (or during initial uCode load), the BSM loads |
| 5191 | * the bootstrap program into the on-board processor, and starts it. |
| 5192 | * |
| 5193 | * The bootstrap program loads (via DMA) instructions and data for a new |
| 5194 | * program from host DRAM locations indicated by the host driver in the |
| 5195 | * BSM_DRAM_* registers. Once the new program is loaded, it starts |
| 5196 | * automatically. |
| 5197 | * |
| 5198 | * When initializing the NIC, the host driver points the BSM to the |
| 5199 | * "initialize" uCode image. This uCode sets up some internal data, then |
| 5200 | * notifies host via "initialize alive" that it is complete. |
| 5201 | * |
| 5202 | * The host then replaces the BSM_DRAM_* pointer values to point to the |
| 5203 | * normal runtime uCode instructions and a backup uCode data cache buffer |
| 5204 | * (filled initially with starting data values for the on-board processor), |
| 5205 | * then triggers the "initialize" uCode to load and launch the runtime uCode, |
| 5206 | * which begins normal operation. |
| 5207 | * |
| 5208 | * When doing a power-save shutdown, runtime uCode saves data SRAM into |
| 5209 | * the backup data cache in DRAM before SRAM is powered down. |
| 5210 | * |
| 5211 | * When powering back up, the BSM loads the bootstrap program. This reloads |
| 5212 | * the runtime uCode instructions and the backup data cache into SRAM, |
| 5213 | * and re-launches the runtime uCode from where it left off. |
| 5214 | */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5215 | static int iwl3945_load_bsm(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5216 | { |
| 5217 | __le32 *image = priv->ucode_boot.v_addr; |
| 5218 | u32 len = priv->ucode_boot.len; |
| 5219 | dma_addr_t pinst; |
| 5220 | dma_addr_t pdata; |
| 5221 | u32 inst_len; |
| 5222 | u32 data_len; |
| 5223 | int rc; |
| 5224 | int i; |
| 5225 | u32 done; |
| 5226 | u32 reg_offset; |
| 5227 | |
| 5228 | IWL_DEBUG_INFO("Begin load bsm\n"); |
| 5229 | |
| 5230 | /* make sure bootstrap program is no larger than BSM's SRAM size */ |
| 5231 | if (len > IWL_MAX_BSM_SIZE) |
| 5232 | return -EINVAL; |
| 5233 | |
| 5234 | /* Tell bootstrap uCode where to find the "Initialize" uCode |
Ben Cahill | 9fbab51 | 2007-11-29 11:09:47 +0800 | [diff] [blame] | 5235 | * in host DRAM ... host DRAM physical address bits 31:0 for 3945. |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5236 | * NOTE: iwl3945_initialize_alive_start() will replace these values, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5237 | * after the "initialize" uCode has run, to point to |
| 5238 | * runtime/protocol instructions and backup data cache. */ |
| 5239 | pinst = priv->ucode_init.p_addr; |
| 5240 | pdata = priv->ucode_init_data.p_addr; |
| 5241 | inst_len = priv->ucode_init.len; |
| 5242 | data_len = priv->ucode_init_data.len; |
| 5243 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5244 | rc = iwl3945_grab_nic_access(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5245 | if (rc) |
| 5246 | return rc; |
| 5247 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5248 | iwl3945_write_prph(priv, BSM_DRAM_INST_PTR_REG, pinst); |
| 5249 | iwl3945_write_prph(priv, BSM_DRAM_DATA_PTR_REG, pdata); |
| 5250 | iwl3945_write_prph(priv, BSM_DRAM_INST_BYTECOUNT_REG, inst_len); |
| 5251 | iwl3945_write_prph(priv, BSM_DRAM_DATA_BYTECOUNT_REG, data_len); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5252 | |
| 5253 | /* Fill BSM memory with bootstrap instructions */ |
| 5254 | for (reg_offset = BSM_SRAM_LOWER_BOUND; |
| 5255 | reg_offset < BSM_SRAM_LOWER_BOUND + len; |
| 5256 | reg_offset += sizeof(u32), image++) |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5257 | _iwl3945_write_prph(priv, reg_offset, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5258 | le32_to_cpu(*image)); |
| 5259 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5260 | rc = iwl3945_verify_bsm(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5261 | if (rc) { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5262 | iwl3945_release_nic_access(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5263 | return rc; |
| 5264 | } |
| 5265 | |
| 5266 | /* Tell BSM to copy from BSM SRAM into instruction SRAM, when asked */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5267 | iwl3945_write_prph(priv, BSM_WR_MEM_SRC_REG, 0x0); |
| 5268 | iwl3945_write_prph(priv, BSM_WR_MEM_DST_REG, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5269 | RTC_INST_LOWER_BOUND); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5270 | iwl3945_write_prph(priv, BSM_WR_DWCOUNT_REG, len / sizeof(u32)); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5271 | |
| 5272 | /* Load bootstrap code into instruction SRAM now, |
| 5273 | * to prepare to load "initialize" uCode */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5274 | iwl3945_write_prph(priv, BSM_WR_CTRL_REG, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5275 | BSM_WR_CTRL_REG_BIT_START); |
| 5276 | |
| 5277 | /* Wait for load of bootstrap uCode to finish */ |
| 5278 | for (i = 0; i < 100; i++) { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5279 | done = iwl3945_read_prph(priv, BSM_WR_CTRL_REG); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5280 | if (!(done & BSM_WR_CTRL_REG_BIT_START)) |
| 5281 | break; |
| 5282 | udelay(10); |
| 5283 | } |
| 5284 | if (i < 100) |
| 5285 | IWL_DEBUG_INFO("BSM write complete, poll %d iterations\n", i); |
| 5286 | else { |
| 5287 | IWL_ERROR("BSM write did not complete!\n"); |
| 5288 | return -EIO; |
| 5289 | } |
| 5290 | |
| 5291 | /* Enable future boot loads whenever power management unit triggers it |
| 5292 | * (e.g. when powering back up after power-save shutdown) */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5293 | iwl3945_write_prph(priv, BSM_WR_CTRL_REG, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5294 | BSM_WR_CTRL_REG_BIT_START_EN); |
| 5295 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5296 | iwl3945_release_nic_access(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5297 | |
| 5298 | return 0; |
| 5299 | } |
| 5300 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5301 | static void iwl3945_nic_start(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5302 | { |
| 5303 | /* Remove all resets to allow NIC to operate */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5304 | iwl3945_write32(priv, CSR_RESET, 0); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5305 | } |
| 5306 | |
| 5307 | /** |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5308 | * iwl3945_read_ucode - Read uCode images from disk file. |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5309 | * |
| 5310 | * Copy into buffers for card to fetch via bus-mastering |
| 5311 | */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5312 | static int iwl3945_read_ucode(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5313 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5314 | struct iwl3945_ucode *ucode; |
Reinette Chatre | a0987a8 | 2008-12-02 12:14:06 -0800 | [diff] [blame] | 5315 | int ret = -EINVAL, index; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5316 | const struct firmware *ucode_raw; |
| 5317 | /* firmware file name contains uCode/driver compatibility version */ |
Reinette Chatre | a0987a8 | 2008-12-02 12:14:06 -0800 | [diff] [blame] | 5318 | const char *name_pre = priv->cfg->fw_name_pre; |
| 5319 | const unsigned int api_max = priv->cfg->ucode_api_max; |
| 5320 | const unsigned int api_min = priv->cfg->ucode_api_min; |
| 5321 | char buf[25]; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5322 | u8 *src; |
| 5323 | size_t len; |
Reinette Chatre | a0987a8 | 2008-12-02 12:14:06 -0800 | [diff] [blame] | 5324 | u32 api_ver, inst_size, data_size, init_size, init_data_size, boot_size; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5325 | |
| 5326 | /* Ask kernel firmware_class module to get the boot firmware off disk. |
| 5327 | * request_firmware() is synchronous, file is in memory on return. */ |
Reinette Chatre | a0987a8 | 2008-12-02 12:14:06 -0800 | [diff] [blame] | 5328 | for (index = api_max; index >= api_min; index--) { |
| 5329 | sprintf(buf, "%s%u%s", name_pre, index, ".ucode"); |
| 5330 | ret = request_firmware(&ucode_raw, buf, &priv->pci_dev->dev); |
| 5331 | if (ret < 0) { |
| 5332 | IWL_ERROR("%s firmware file req failed: Reason %d\n", |
| 5333 | buf, ret); |
| 5334 | if (ret == -ENOENT) |
| 5335 | continue; |
| 5336 | else |
| 5337 | goto error; |
| 5338 | } else { |
| 5339 | if (index < api_max) |
| 5340 | IWL_ERROR("Loaded firmware %s, which is deprecated. Please use API v%u instead.\n", |
| 5341 | buf, api_max); |
| 5342 | IWL_DEBUG_INFO("Got firmware '%s' file (%zd bytes) from disk\n", |
| 5343 | buf, ucode_raw->size); |
| 5344 | break; |
| 5345 | } |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5346 | } |
| 5347 | |
Reinette Chatre | a0987a8 | 2008-12-02 12:14:06 -0800 | [diff] [blame] | 5348 | if (ret < 0) |
| 5349 | goto error; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5350 | |
| 5351 | /* Make sure that we got at least our header! */ |
| 5352 | if (ucode_raw->size < sizeof(*ucode)) { |
| 5353 | IWL_ERROR("File size way too small!\n"); |
Tomas Winkler | 90e759d | 2007-11-29 11:09:41 +0800 | [diff] [blame] | 5354 | ret = -EINVAL; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5355 | goto err_release; |
| 5356 | } |
| 5357 | |
| 5358 | /* Data from ucode file: header followed by uCode images */ |
| 5359 | ucode = (void *)ucode_raw->data; |
| 5360 | |
Chatre, Reinette | c02b3ac | 2008-12-02 12:14:05 -0800 | [diff] [blame] | 5361 | priv->ucode_ver = le32_to_cpu(ucode->ver); |
Reinette Chatre | a0987a8 | 2008-12-02 12:14:06 -0800 | [diff] [blame] | 5362 | api_ver = IWL_UCODE_API(priv->ucode_ver); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5363 | inst_size = le32_to_cpu(ucode->inst_size); |
| 5364 | data_size = le32_to_cpu(ucode->data_size); |
| 5365 | init_size = le32_to_cpu(ucode->init_size); |
| 5366 | init_data_size = le32_to_cpu(ucode->init_data_size); |
| 5367 | boot_size = le32_to_cpu(ucode->boot_size); |
| 5368 | |
Reinette Chatre | a0987a8 | 2008-12-02 12:14:06 -0800 | [diff] [blame] | 5369 | /* api_ver should match the api version forming part of the |
| 5370 | * firmware filename ... but we don't check for that and only rely |
| 5371 | * on the API version read from firware header from here on forward */ |
| 5372 | |
| 5373 | if (api_ver < api_min || api_ver > api_max) { |
| 5374 | IWL_ERROR("Driver unable to support your firmware API. " |
| 5375 | "Driver supports v%u, firmware is v%u.\n", |
| 5376 | api_max, api_ver); |
| 5377 | priv->ucode_ver = 0; |
| 5378 | ret = -EINVAL; |
| 5379 | goto err_release; |
| 5380 | } |
| 5381 | if (api_ver != api_max) |
| 5382 | IWL_ERROR("Firmware has old API version. Expected %u, " |
| 5383 | "got %u. New firmware can be obtained " |
| 5384 | "from http://www.intellinuxwireless.org.\n", |
| 5385 | api_max, api_ver); |
| 5386 | |
| 5387 | printk(KERN_INFO DRV_NAME " loaded firmware version %u.%u.%u.%u\n", |
Chatre, Reinette | c02b3ac | 2008-12-02 12:14:05 -0800 | [diff] [blame] | 5388 | IWL_UCODE_MAJOR(priv->ucode_ver), |
| 5389 | IWL_UCODE_MINOR(priv->ucode_ver), |
| 5390 | IWL_UCODE_API(priv->ucode_ver), |
| 5391 | IWL_UCODE_SERIAL(priv->ucode_ver)); |
Reinette Chatre | a0987a8 | 2008-12-02 12:14:06 -0800 | [diff] [blame] | 5392 | IWL_DEBUG_INFO("f/w package hdr ucode version raw = 0x%x\n", |
| 5393 | priv->ucode_ver); |
Ian Schram | bc434dd | 2007-10-25 17:15:29 +0800 | [diff] [blame] | 5394 | IWL_DEBUG_INFO("f/w package hdr runtime inst size = %u\n", inst_size); |
| 5395 | IWL_DEBUG_INFO("f/w package hdr runtime data size = %u\n", data_size); |
| 5396 | IWL_DEBUG_INFO("f/w package hdr init inst size = %u\n", init_size); |
| 5397 | IWL_DEBUG_INFO("f/w package hdr init data size = %u\n", init_data_size); |
| 5398 | IWL_DEBUG_INFO("f/w package hdr boot inst size = %u\n", boot_size); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5399 | |
Reinette Chatre | a0987a8 | 2008-12-02 12:14:06 -0800 | [diff] [blame] | 5400 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5401 | /* Verify size of file vs. image size info in file's header */ |
| 5402 | if (ucode_raw->size < sizeof(*ucode) + |
| 5403 | inst_size + data_size + init_size + |
| 5404 | init_data_size + boot_size) { |
| 5405 | |
| 5406 | IWL_DEBUG_INFO("uCode file size %d too small\n", |
| 5407 | (int)ucode_raw->size); |
Tomas Winkler | 90e759d | 2007-11-29 11:09:41 +0800 | [diff] [blame] | 5408 | ret = -EINVAL; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5409 | goto err_release; |
| 5410 | } |
| 5411 | |
| 5412 | /* Verify that uCode images will fit in card's SRAM */ |
| 5413 | if (inst_size > IWL_MAX_INST_SIZE) { |
Tomas Winkler | 90e759d | 2007-11-29 11:09:41 +0800 | [diff] [blame] | 5414 | IWL_DEBUG_INFO("uCode instr len %d too large to fit in\n", |
| 5415 | inst_size); |
| 5416 | ret = -EINVAL; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5417 | goto err_release; |
| 5418 | } |
| 5419 | |
| 5420 | if (data_size > IWL_MAX_DATA_SIZE) { |
Tomas Winkler | 90e759d | 2007-11-29 11:09:41 +0800 | [diff] [blame] | 5421 | IWL_DEBUG_INFO("uCode data len %d too large to fit in\n", |
| 5422 | data_size); |
| 5423 | ret = -EINVAL; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5424 | goto err_release; |
| 5425 | } |
| 5426 | if (init_size > IWL_MAX_INST_SIZE) { |
Tomas Winkler | 90e759d | 2007-11-29 11:09:41 +0800 | [diff] [blame] | 5427 | IWL_DEBUG_INFO("uCode init instr len %d too large to fit in\n", |
| 5428 | init_size); |
| 5429 | ret = -EINVAL; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5430 | goto err_release; |
| 5431 | } |
| 5432 | if (init_data_size > IWL_MAX_DATA_SIZE) { |
Tomas Winkler | 90e759d | 2007-11-29 11:09:41 +0800 | [diff] [blame] | 5433 | IWL_DEBUG_INFO("uCode init data len %d too large to fit in\n", |
| 5434 | init_data_size); |
| 5435 | ret = -EINVAL; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5436 | goto err_release; |
| 5437 | } |
| 5438 | if (boot_size > IWL_MAX_BSM_SIZE) { |
Tomas Winkler | 90e759d | 2007-11-29 11:09:41 +0800 | [diff] [blame] | 5439 | IWL_DEBUG_INFO("uCode boot instr len %d too large to fit in\n", |
| 5440 | boot_size); |
| 5441 | ret = -EINVAL; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5442 | goto err_release; |
| 5443 | } |
| 5444 | |
| 5445 | /* Allocate ucode buffers for card's bus-master loading ... */ |
| 5446 | |
| 5447 | /* Runtime instructions and 2 copies of data: |
| 5448 | * 1) unmodified from disk |
| 5449 | * 2) backup cache for save/restore during power-downs */ |
| 5450 | priv->ucode_code.len = inst_size; |
Tomas Winkler | 98c9221 | 2008-01-14 17:46:20 -0800 | [diff] [blame] | 5451 | iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_code); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5452 | |
| 5453 | priv->ucode_data.len = data_size; |
Tomas Winkler | 98c9221 | 2008-01-14 17:46:20 -0800 | [diff] [blame] | 5454 | iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5455 | |
| 5456 | priv->ucode_data_backup.len = data_size; |
Tomas Winkler | 98c9221 | 2008-01-14 17:46:20 -0800 | [diff] [blame] | 5457 | iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data_backup); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5458 | |
| 5459 | if (!priv->ucode_code.v_addr || !priv->ucode_data.v_addr || |
Tomas Winkler | 90e759d | 2007-11-29 11:09:41 +0800 | [diff] [blame] | 5460 | !priv->ucode_data_backup.v_addr) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5461 | goto err_pci_alloc; |
| 5462 | |
Tomas Winkler | 90e759d | 2007-11-29 11:09:41 +0800 | [diff] [blame] | 5463 | /* Initialization instructions and data */ |
| 5464 | if (init_size && init_data_size) { |
| 5465 | priv->ucode_init.len = init_size; |
Tomas Winkler | 98c9221 | 2008-01-14 17:46:20 -0800 | [diff] [blame] | 5466 | iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init); |
Tomas Winkler | 90e759d | 2007-11-29 11:09:41 +0800 | [diff] [blame] | 5467 | |
| 5468 | priv->ucode_init_data.len = init_data_size; |
Tomas Winkler | 98c9221 | 2008-01-14 17:46:20 -0800 | [diff] [blame] | 5469 | iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init_data); |
Tomas Winkler | 90e759d | 2007-11-29 11:09:41 +0800 | [diff] [blame] | 5470 | |
| 5471 | if (!priv->ucode_init.v_addr || !priv->ucode_init_data.v_addr) |
| 5472 | goto err_pci_alloc; |
| 5473 | } |
| 5474 | |
| 5475 | /* Bootstrap (instructions only, no data) */ |
| 5476 | if (boot_size) { |
| 5477 | priv->ucode_boot.len = boot_size; |
Tomas Winkler | 98c9221 | 2008-01-14 17:46:20 -0800 | [diff] [blame] | 5478 | iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_boot); |
Tomas Winkler | 90e759d | 2007-11-29 11:09:41 +0800 | [diff] [blame] | 5479 | |
| 5480 | if (!priv->ucode_boot.v_addr) |
| 5481 | goto err_pci_alloc; |
| 5482 | } |
| 5483 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5484 | /* Copy images into buffers for card's bus-master reads ... */ |
| 5485 | |
| 5486 | /* Runtime instructions (first block of data in file) */ |
| 5487 | src = &ucode->data[0]; |
| 5488 | len = priv->ucode_code.len; |
Tomas Winkler | 90e759d | 2007-11-29 11:09:41 +0800 | [diff] [blame] | 5489 | IWL_DEBUG_INFO("Copying (but not loading) uCode instr len %Zd\n", len); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5490 | memcpy(priv->ucode_code.v_addr, src, len); |
| 5491 | IWL_DEBUG_INFO("uCode instr buf vaddr = 0x%p, paddr = 0x%08x\n", |
| 5492 | priv->ucode_code.v_addr, (u32)priv->ucode_code.p_addr); |
| 5493 | |
| 5494 | /* Runtime data (2nd block) |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5495 | * NOTE: Copy into backup buffer will be done in iwl3945_up() */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5496 | src = &ucode->data[inst_size]; |
| 5497 | len = priv->ucode_data.len; |
Tomas Winkler | 90e759d | 2007-11-29 11:09:41 +0800 | [diff] [blame] | 5498 | IWL_DEBUG_INFO("Copying (but not loading) uCode data len %Zd\n", len); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5499 | memcpy(priv->ucode_data.v_addr, src, len); |
| 5500 | memcpy(priv->ucode_data_backup.v_addr, src, len); |
| 5501 | |
| 5502 | /* Initialization instructions (3rd block) */ |
| 5503 | if (init_size) { |
| 5504 | src = &ucode->data[inst_size + data_size]; |
| 5505 | len = priv->ucode_init.len; |
Tomas Winkler | 90e759d | 2007-11-29 11:09:41 +0800 | [diff] [blame] | 5506 | IWL_DEBUG_INFO("Copying (but not loading) init instr len %Zd\n", |
| 5507 | len); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5508 | memcpy(priv->ucode_init.v_addr, src, len); |
| 5509 | } |
| 5510 | |
| 5511 | /* Initialization data (4th block) */ |
| 5512 | if (init_data_size) { |
| 5513 | src = &ucode->data[inst_size + data_size + init_size]; |
| 5514 | len = priv->ucode_init_data.len; |
| 5515 | IWL_DEBUG_INFO("Copying (but not loading) init data len %d\n", |
| 5516 | (int)len); |
| 5517 | memcpy(priv->ucode_init_data.v_addr, src, len); |
| 5518 | } |
| 5519 | |
| 5520 | /* Bootstrap instructions (5th block) */ |
| 5521 | src = &ucode->data[inst_size + data_size + init_size + init_data_size]; |
| 5522 | len = priv->ucode_boot.len; |
| 5523 | IWL_DEBUG_INFO("Copying (but not loading) boot instr len %d\n", |
| 5524 | (int)len); |
| 5525 | memcpy(priv->ucode_boot.v_addr, src, len); |
| 5526 | |
| 5527 | /* We have our copies now, allow OS release its copies */ |
| 5528 | release_firmware(ucode_raw); |
| 5529 | return 0; |
| 5530 | |
| 5531 | err_pci_alloc: |
| 5532 | IWL_ERROR("failed to allocate pci memory\n"); |
Tomas Winkler | 90e759d | 2007-11-29 11:09:41 +0800 | [diff] [blame] | 5533 | ret = -ENOMEM; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5534 | iwl3945_dealloc_ucode_pci(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5535 | |
| 5536 | err_release: |
| 5537 | release_firmware(ucode_raw); |
| 5538 | |
| 5539 | error: |
Tomas Winkler | 90e759d | 2007-11-29 11:09:41 +0800 | [diff] [blame] | 5540 | return ret; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5541 | } |
| 5542 | |
| 5543 | |
| 5544 | /** |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5545 | * iwl3945_set_ucode_ptrs - Set uCode address location |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5546 | * |
| 5547 | * Tell initialization uCode where to find runtime uCode. |
| 5548 | * |
| 5549 | * BSM registers initially contain pointers to initialization uCode. |
| 5550 | * We need to replace them to load runtime uCode inst and data, |
| 5551 | * and to save runtime data when powering down. |
| 5552 | */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5553 | static int iwl3945_set_ucode_ptrs(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5554 | { |
| 5555 | dma_addr_t pinst; |
| 5556 | dma_addr_t pdata; |
| 5557 | int rc = 0; |
| 5558 | unsigned long flags; |
| 5559 | |
| 5560 | /* bits 31:0 for 3945 */ |
| 5561 | pinst = priv->ucode_code.p_addr; |
| 5562 | pdata = priv->ucode_data_backup.p_addr; |
| 5563 | |
| 5564 | spin_lock_irqsave(&priv->lock, flags); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5565 | rc = iwl3945_grab_nic_access(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5566 | if (rc) { |
| 5567 | spin_unlock_irqrestore(&priv->lock, flags); |
| 5568 | return rc; |
| 5569 | } |
| 5570 | |
| 5571 | /* Tell bootstrap uCode where to find image to load */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5572 | iwl3945_write_prph(priv, BSM_DRAM_INST_PTR_REG, pinst); |
| 5573 | iwl3945_write_prph(priv, BSM_DRAM_DATA_PTR_REG, pdata); |
| 5574 | iwl3945_write_prph(priv, BSM_DRAM_DATA_BYTECOUNT_REG, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5575 | priv->ucode_data.len); |
| 5576 | |
Tomas Winkler | a96a27f | 2008-10-23 23:48:56 -0700 | [diff] [blame] | 5577 | /* Inst byte count must be last to set up, bit 31 signals uCode |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5578 | * that all new ptr/size info is in place */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5579 | iwl3945_write_prph(priv, BSM_DRAM_INST_BYTECOUNT_REG, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5580 | priv->ucode_code.len | BSM_DRAM_INST_LOAD); |
| 5581 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5582 | iwl3945_release_nic_access(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5583 | |
| 5584 | spin_unlock_irqrestore(&priv->lock, flags); |
| 5585 | |
| 5586 | IWL_DEBUG_INFO("Runtime uCode pointers are set.\n"); |
| 5587 | |
| 5588 | return rc; |
| 5589 | } |
| 5590 | |
| 5591 | /** |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5592 | * iwl3945_init_alive_start - Called after REPLY_ALIVE notification received |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5593 | * |
| 5594 | * Called after REPLY_ALIVE notification received from "initialize" uCode. |
| 5595 | * |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5596 | * Tell "initialize" uCode to go ahead and load the runtime uCode. |
Ben Cahill | 9fbab51 | 2007-11-29 11:09:47 +0800 | [diff] [blame] | 5597 | */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5598 | static void iwl3945_init_alive_start(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5599 | { |
| 5600 | /* Check alive response for "valid" sign from uCode */ |
| 5601 | if (priv->card_alive_init.is_valid != UCODE_VALID_OK) { |
| 5602 | /* We had an error bringing up the hardware, so take it |
| 5603 | * all the way back down so we can try again */ |
| 5604 | IWL_DEBUG_INFO("Initialize Alive failed.\n"); |
| 5605 | goto restart; |
| 5606 | } |
| 5607 | |
| 5608 | /* Bootstrap uCode has loaded initialize uCode ... verify inst image. |
| 5609 | * This is a paranoid check, because we would not have gotten the |
| 5610 | * "initialize" alive if code weren't properly loaded. */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5611 | if (iwl3945_verify_ucode(priv)) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5612 | /* Runtime instruction load was bad; |
| 5613 | * take it all the way back down so we can try again */ |
| 5614 | IWL_DEBUG_INFO("Bad \"initialize\" uCode load.\n"); |
| 5615 | goto restart; |
| 5616 | } |
| 5617 | |
| 5618 | /* Send pointers to protocol/runtime uCode image ... init code will |
| 5619 | * load and launch runtime uCode, which will send us another "Alive" |
| 5620 | * notification. */ |
| 5621 | IWL_DEBUG_INFO("Initialization Alive received.\n"); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5622 | if (iwl3945_set_ucode_ptrs(priv)) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5623 | /* Runtime instruction load won't happen; |
| 5624 | * take it all the way back down so we can try again */ |
| 5625 | IWL_DEBUG_INFO("Couldn't set up uCode pointers.\n"); |
| 5626 | goto restart; |
| 5627 | } |
| 5628 | return; |
| 5629 | |
| 5630 | restart: |
| 5631 | queue_work(priv->workqueue, &priv->restart); |
| 5632 | } |
| 5633 | |
| 5634 | |
Mohamed Abbas | 9bdf5ec | 2008-11-07 09:58:35 -0800 | [diff] [blame] | 5635 | /* temporary */ |
| 5636 | static int iwl3945_mac_beacon_update(struct ieee80211_hw *hw, |
| 5637 | struct sk_buff *skb); |
| 5638 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5639 | /** |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5640 | * iwl3945_alive_start - called after REPLY_ALIVE notification received |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5641 | * from protocol/runtime uCode (initialization uCode's |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5642 | * Alive gets handled by iwl3945_init_alive_start()). |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5643 | */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5644 | static void iwl3945_alive_start(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5645 | { |
| 5646 | int rc = 0; |
| 5647 | int thermal_spin = 0; |
| 5648 | u32 rfkill; |
| 5649 | |
| 5650 | IWL_DEBUG_INFO("Runtime Alive received.\n"); |
| 5651 | |
| 5652 | if (priv->card_alive.is_valid != UCODE_VALID_OK) { |
| 5653 | /* We had an error bringing up the hardware, so take it |
| 5654 | * all the way back down so we can try again */ |
| 5655 | IWL_DEBUG_INFO("Alive failed.\n"); |
| 5656 | goto restart; |
| 5657 | } |
| 5658 | |
| 5659 | /* Initialize uCode has loaded Runtime uCode ... verify inst image. |
| 5660 | * This is a paranoid check, because we would not have gotten the |
| 5661 | * "runtime" alive if code weren't properly loaded. */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5662 | if (iwl3945_verify_ucode(priv)) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5663 | /* Runtime instruction load was bad; |
| 5664 | * take it all the way back down so we can try again */ |
| 5665 | IWL_DEBUG_INFO("Bad runtime uCode load.\n"); |
| 5666 | goto restart; |
| 5667 | } |
| 5668 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5669 | iwl3945_clear_stations_table(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5670 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5671 | rc = iwl3945_grab_nic_access(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5672 | if (rc) { |
Tomas Winkler | a96a27f | 2008-10-23 23:48:56 -0700 | [diff] [blame] | 5673 | IWL_WARNING("Can not read RFKILL status from adapter\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5674 | return; |
| 5675 | } |
| 5676 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5677 | rfkill = iwl3945_read_prph(priv, APMG_RFKILL_REG); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5678 | IWL_DEBUG_INFO("RFKILL status: 0x%x\n", rfkill); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5679 | iwl3945_release_nic_access(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5680 | |
| 5681 | if (rfkill & 0x1) { |
| 5682 | clear_bit(STATUS_RF_KILL_HW, &priv->status); |
Tomas Winkler | a96a27f | 2008-10-23 23:48:56 -0700 | [diff] [blame] | 5683 | /* if RFKILL is not on, then wait for thermal |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5684 | * sensor in adapter to kick in */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5685 | while (iwl3945_hw_get_temperature(priv) == 0) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5686 | thermal_spin++; |
| 5687 | udelay(10); |
| 5688 | } |
| 5689 | |
| 5690 | if (thermal_spin) |
| 5691 | IWL_DEBUG_INFO("Thermal calibration took %dus\n", |
| 5692 | thermal_spin * 10); |
| 5693 | } else |
| 5694 | set_bit(STATUS_RF_KILL_HW, &priv->status); |
| 5695 | |
Ben Cahill | 9fbab51 | 2007-11-29 11:09:47 +0800 | [diff] [blame] | 5696 | /* After the ALIVE response, we can send commands to 3945 uCode */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5697 | set_bit(STATUS_ALIVE, &priv->status); |
| 5698 | |
| 5699 | /* Clear out the uCode error bit if it is set */ |
| 5700 | clear_bit(STATUS_FW_ERROR, &priv->status); |
| 5701 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5702 | if (iwl3945_is_rfkill(priv)) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5703 | return; |
| 5704 | |
Johannes Berg | 36d6825 | 2008-05-15 12:55:26 +0200 | [diff] [blame] | 5705 | ieee80211_wake_queues(priv->hw); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5706 | |
| 5707 | priv->active_rate = priv->rates_mask; |
| 5708 | priv->active_rate_basic = priv->rates_mask & IWL_BASIC_RATES_MASK; |
| 5709 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5710 | iwl3945_send_power_mode(priv, IWL_POWER_LEVEL(priv->power_mode)); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5711 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5712 | if (iwl3945_is_associated(priv)) { |
| 5713 | struct iwl3945_rxon_cmd *active_rxon = |
| 5714 | (struct iwl3945_rxon_cmd *)(&priv->active_rxon); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5715 | |
| 5716 | memcpy(&priv->staging_rxon, &priv->active_rxon, |
| 5717 | sizeof(priv->staging_rxon)); |
| 5718 | active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK; |
| 5719 | } else { |
| 5720 | /* Initialize our rx_config data */ |
Zhu, Yi | 60294de | 2008-10-29 14:05:45 -0700 | [diff] [blame] | 5721 | iwl3945_connection_init_rx_config(priv, priv->iw_mode); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5722 | memcpy(priv->staging_rxon.node_addr, priv->mac_addr, ETH_ALEN); |
| 5723 | } |
| 5724 | |
Ben Cahill | 9fbab51 | 2007-11-29 11:09:47 +0800 | [diff] [blame] | 5725 | /* Configure Bluetooth device coexistence support */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5726 | iwl3945_send_bt_config(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5727 | |
| 5728 | /* Configure the adapter for unassociated operation */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5729 | iwl3945_commit_rxon(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5730 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5731 | iwl3945_reg_txpower_periodic(priv); |
| 5732 | |
Reinette Chatre | fe00b5a | 2008-04-03 16:05:23 -0700 | [diff] [blame] | 5733 | iwl3945_led_register(priv); |
| 5734 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5735 | IWL_DEBUG_INFO("ALIVE processing complete.\n"); |
Rick Farrington | a9f4678 | 2008-03-18 14:57:49 -0700 | [diff] [blame] | 5736 | set_bit(STATUS_READY, &priv->status); |
Zhu Yi | 5a66926 | 2008-01-14 17:46:18 -0800 | [diff] [blame] | 5737 | wake_up_interruptible(&priv->wait_command_queue); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5738 | |
| 5739 | if (priv->error_recovering) |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5740 | iwl3945_error_recovery(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5741 | |
Mohamed Abbas | 9bdf5ec | 2008-11-07 09:58:35 -0800 | [diff] [blame] | 5742 | /* reassociate for ADHOC mode */ |
| 5743 | if (priv->vif && (priv->iw_mode == NL80211_IFTYPE_ADHOC)) { |
| 5744 | struct sk_buff *beacon = ieee80211_beacon_get(priv->hw, |
| 5745 | priv->vif); |
| 5746 | if (beacon) |
| 5747 | iwl3945_mac_beacon_update(priv->hw, beacon); |
| 5748 | } |
| 5749 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5750 | return; |
| 5751 | |
| 5752 | restart: |
| 5753 | queue_work(priv->workqueue, &priv->restart); |
| 5754 | } |
| 5755 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5756 | static void iwl3945_cancel_deferred_work(struct iwl3945_priv *priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5757 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5758 | static void __iwl3945_down(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5759 | { |
| 5760 | unsigned long flags; |
| 5761 | int exit_pending = test_bit(STATUS_EXIT_PENDING, &priv->status); |
| 5762 | struct ieee80211_conf *conf = NULL; |
| 5763 | |
| 5764 | IWL_DEBUG_INFO(DRV_NAME " is going down\n"); |
| 5765 | |
| 5766 | conf = ieee80211_get_hw_conf(priv->hw); |
| 5767 | |
| 5768 | if (!exit_pending) |
| 5769 | set_bit(STATUS_EXIT_PENDING, &priv->status); |
| 5770 | |
Mohamed Abbas | ab53d8a | 2008-03-25 16:33:36 -0700 | [diff] [blame] | 5771 | iwl3945_led_unregister(priv); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5772 | iwl3945_clear_stations_table(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5773 | |
| 5774 | /* Unblock any waiting calls */ |
| 5775 | wake_up_interruptible_all(&priv->wait_command_queue); |
| 5776 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5777 | /* Wipe out the EXIT_PENDING status bit if we are not actually |
| 5778 | * exiting the module */ |
| 5779 | if (!exit_pending) |
| 5780 | clear_bit(STATUS_EXIT_PENDING, &priv->status); |
| 5781 | |
| 5782 | /* stop and reset the on-board processor */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5783 | iwl3945_write32(priv, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5784 | |
| 5785 | /* tell the device to stop sending interrupts */ |
Mohamed Abbas | 0359fac | 2008-03-28 16:21:08 -0700 | [diff] [blame] | 5786 | spin_lock_irqsave(&priv->lock, flags); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5787 | iwl3945_disable_interrupts(priv); |
Mohamed Abbas | 0359fac | 2008-03-28 16:21:08 -0700 | [diff] [blame] | 5788 | spin_unlock_irqrestore(&priv->lock, flags); |
| 5789 | iwl_synchronize_irq(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5790 | |
| 5791 | if (priv->mac80211_registered) |
| 5792 | ieee80211_stop_queues(priv->hw); |
| 5793 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5794 | /* If we have not previously called iwl3945_init() then |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5795 | * clear all bits but the RF Kill and SUSPEND bits and return */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5796 | if (!iwl3945_is_init(priv)) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5797 | priv->status = test_bit(STATUS_RF_KILL_HW, &priv->status) << |
| 5798 | STATUS_RF_KILL_HW | |
| 5799 | test_bit(STATUS_RF_KILL_SW, &priv->status) << |
| 5800 | STATUS_RF_KILL_SW | |
Reinette Chatre | 9788864 | 2008-02-06 11:20:38 -0800 | [diff] [blame] | 5801 | test_bit(STATUS_GEO_CONFIGURED, &priv->status) << |
| 5802 | STATUS_GEO_CONFIGURED | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5803 | test_bit(STATUS_IN_SUSPEND, &priv->status) << |
Abhijeet Kolekar | ebef200 | 2008-06-30 17:23:18 +0800 | [diff] [blame] | 5804 | STATUS_IN_SUSPEND | |
| 5805 | test_bit(STATUS_EXIT_PENDING, &priv->status) << |
| 5806 | STATUS_EXIT_PENDING; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5807 | goto exit; |
| 5808 | } |
| 5809 | |
| 5810 | /* ...otherwise clear out all the status bits but the RF Kill and |
| 5811 | * SUSPEND bits and continue taking the NIC down. */ |
| 5812 | priv->status &= test_bit(STATUS_RF_KILL_HW, &priv->status) << |
| 5813 | STATUS_RF_KILL_HW | |
| 5814 | test_bit(STATUS_RF_KILL_SW, &priv->status) << |
| 5815 | STATUS_RF_KILL_SW | |
Reinette Chatre | 9788864 | 2008-02-06 11:20:38 -0800 | [diff] [blame] | 5816 | test_bit(STATUS_GEO_CONFIGURED, &priv->status) << |
| 5817 | STATUS_GEO_CONFIGURED | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5818 | test_bit(STATUS_IN_SUSPEND, &priv->status) << |
| 5819 | STATUS_IN_SUSPEND | |
| 5820 | test_bit(STATUS_FW_ERROR, &priv->status) << |
Abhijeet Kolekar | ebef200 | 2008-06-30 17:23:18 +0800 | [diff] [blame] | 5821 | STATUS_FW_ERROR | |
| 5822 | test_bit(STATUS_EXIT_PENDING, &priv->status) << |
| 5823 | STATUS_EXIT_PENDING; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5824 | |
| 5825 | spin_lock_irqsave(&priv->lock, flags); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5826 | iwl3945_clear_bit(priv, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5827 | spin_unlock_irqrestore(&priv->lock, flags); |
| 5828 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5829 | iwl3945_hw_txq_ctx_stop(priv); |
| 5830 | iwl3945_hw_rxq_stop(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5831 | |
| 5832 | spin_lock_irqsave(&priv->lock, flags); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5833 | if (!iwl3945_grab_nic_access(priv)) { |
| 5834 | iwl3945_write_prph(priv, APMG_CLK_DIS_REG, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5835 | APMG_CLK_VAL_DMA_CLK_RQT); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5836 | iwl3945_release_nic_access(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5837 | } |
| 5838 | spin_unlock_irqrestore(&priv->lock, flags); |
| 5839 | |
| 5840 | udelay(5); |
| 5841 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5842 | iwl3945_hw_nic_stop_master(priv); |
| 5843 | iwl3945_set_bit(priv, CSR_RESET, CSR_RESET_REG_FLAG_SW_RESET); |
| 5844 | iwl3945_hw_nic_reset(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5845 | |
| 5846 | exit: |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5847 | memset(&priv->card_alive, 0, sizeof(struct iwl3945_alive_resp)); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5848 | |
| 5849 | if (priv->ibss_beacon) |
| 5850 | dev_kfree_skb(priv->ibss_beacon); |
| 5851 | priv->ibss_beacon = NULL; |
| 5852 | |
| 5853 | /* clear out any free frames */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5854 | iwl3945_clear_free_frames(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5855 | } |
| 5856 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5857 | static void iwl3945_down(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5858 | { |
| 5859 | mutex_lock(&priv->mutex); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5860 | __iwl3945_down(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5861 | mutex_unlock(&priv->mutex); |
Zhu Yi | b24d22b | 2007-12-19 13:59:52 +0800 | [diff] [blame] | 5862 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5863 | iwl3945_cancel_deferred_work(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5864 | } |
| 5865 | |
| 5866 | #define MAX_HW_RESTARTS 5 |
| 5867 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5868 | static int __iwl3945_up(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5869 | { |
| 5870 | int rc, i; |
| 5871 | |
| 5872 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) { |
| 5873 | IWL_WARNING("Exit pending; will not bring the NIC up\n"); |
| 5874 | return -EIO; |
| 5875 | } |
| 5876 | |
| 5877 | if (test_bit(STATUS_RF_KILL_SW, &priv->status)) { |
| 5878 | IWL_WARNING("Radio disabled by SW RF kill (module " |
| 5879 | "parameter)\n"); |
Zhu Yi | e655b9f | 2008-01-24 02:19:38 -0800 | [diff] [blame] | 5880 | return -ENODEV; |
| 5881 | } |
| 5882 | |
Reinette Chatre | e903fbd | 2008-01-30 22:05:15 -0800 | [diff] [blame] | 5883 | if (!priv->ucode_data_backup.v_addr || !priv->ucode_data.v_addr) { |
Tomas Winkler | a96a27f | 2008-10-23 23:48:56 -0700 | [diff] [blame] | 5884 | IWL_ERROR("ucode not available for device bring up\n"); |
Reinette Chatre | e903fbd | 2008-01-30 22:05:15 -0800 | [diff] [blame] | 5885 | return -EIO; |
| 5886 | } |
| 5887 | |
Zhu Yi | e655b9f | 2008-01-24 02:19:38 -0800 | [diff] [blame] | 5888 | /* If platform's RF_KILL switch is NOT set to KILL */ |
| 5889 | if (iwl3945_read32(priv, CSR_GP_CNTRL) & |
| 5890 | CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW) |
| 5891 | clear_bit(STATUS_RF_KILL_HW, &priv->status); |
| 5892 | else { |
| 5893 | set_bit(STATUS_RF_KILL_HW, &priv->status); |
| 5894 | if (!test_bit(STATUS_IN_SUSPEND, &priv->status)) { |
| 5895 | IWL_WARNING("Radio disabled by HW RF Kill switch\n"); |
| 5896 | return -ENODEV; |
| 5897 | } |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5898 | } |
Adel Gadllah | 80fcc9e | 2008-07-01 17:49:50 +0200 | [diff] [blame] | 5899 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5900 | iwl3945_write32(priv, CSR_INT, 0xFFFFFFFF); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5901 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5902 | rc = iwl3945_hw_nic_init(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5903 | if (rc) { |
| 5904 | IWL_ERROR("Unable to int nic\n"); |
| 5905 | return rc; |
| 5906 | } |
| 5907 | |
| 5908 | /* make sure rfkill handshake bits are cleared */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5909 | iwl3945_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL); |
| 5910 | iwl3945_write32(priv, CSR_UCODE_DRV_GP1_CLR, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5911 | CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED); |
| 5912 | |
| 5913 | /* clear (again), then enable host interrupts */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5914 | iwl3945_write32(priv, CSR_INT, 0xFFFFFFFF); |
| 5915 | iwl3945_enable_interrupts(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5916 | |
| 5917 | /* really make sure rfkill handshake bits are cleared */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5918 | iwl3945_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL); |
| 5919 | iwl3945_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5920 | |
| 5921 | /* Copy original ucode data image from disk into backup cache. |
| 5922 | * This will be used to initialize the on-board processor's |
| 5923 | * data SRAM for a clean start when the runtime program first loads. */ |
| 5924 | memcpy(priv->ucode_data_backup.v_addr, priv->ucode_data.v_addr, |
Zhu Yi | 5a66926 | 2008-01-14 17:46:18 -0800 | [diff] [blame] | 5925 | priv->ucode_data.len); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5926 | |
Zhu Yi | e655b9f | 2008-01-24 02:19:38 -0800 | [diff] [blame] | 5927 | /* We return success when we resume from suspend and rf_kill is on. */ |
| 5928 | if (test_bit(STATUS_RF_KILL_HW, &priv->status)) |
| 5929 | return 0; |
| 5930 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5931 | for (i = 0; i < MAX_HW_RESTARTS; i++) { |
| 5932 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5933 | iwl3945_clear_stations_table(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5934 | |
| 5935 | /* load bootstrap state machine, |
| 5936 | * load bootstrap program into processor's memory, |
| 5937 | * prepare to load the "initialize" uCode */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5938 | rc = iwl3945_load_bsm(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5939 | |
| 5940 | if (rc) { |
| 5941 | IWL_ERROR("Unable to set up bootstrap uCode: %d\n", rc); |
| 5942 | continue; |
| 5943 | } |
| 5944 | |
| 5945 | /* start card; "initialize" will load runtime ucode */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5946 | iwl3945_nic_start(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5947 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5948 | IWL_DEBUG_INFO(DRV_NAME " is coming up\n"); |
| 5949 | |
| 5950 | return 0; |
| 5951 | } |
| 5952 | |
| 5953 | set_bit(STATUS_EXIT_PENDING, &priv->status); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5954 | __iwl3945_down(priv); |
Abhijeet Kolekar | ebef200 | 2008-06-30 17:23:18 +0800 | [diff] [blame] | 5955 | clear_bit(STATUS_EXIT_PENDING, &priv->status); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5956 | |
| 5957 | /* tried to restart and config the device for as long as our |
| 5958 | * patience could withstand */ |
| 5959 | IWL_ERROR("Unable to initialize device after %d attempts.\n", i); |
| 5960 | return -EIO; |
| 5961 | } |
| 5962 | |
| 5963 | |
| 5964 | /***************************************************************************** |
| 5965 | * |
| 5966 | * Workqueue callbacks |
| 5967 | * |
| 5968 | *****************************************************************************/ |
| 5969 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5970 | static void iwl3945_bg_init_alive_start(struct work_struct *data) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5971 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5972 | struct iwl3945_priv *priv = |
| 5973 | container_of(data, struct iwl3945_priv, init_alive_start.work); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5974 | |
| 5975 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) |
| 5976 | return; |
| 5977 | |
| 5978 | mutex_lock(&priv->mutex); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5979 | iwl3945_init_alive_start(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5980 | mutex_unlock(&priv->mutex); |
| 5981 | } |
| 5982 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5983 | static void iwl3945_bg_alive_start(struct work_struct *data) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5984 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5985 | struct iwl3945_priv *priv = |
| 5986 | container_of(data, struct iwl3945_priv, alive_start.work); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5987 | |
| 5988 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) |
| 5989 | return; |
| 5990 | |
| 5991 | mutex_lock(&priv->mutex); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5992 | iwl3945_alive_start(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5993 | mutex_unlock(&priv->mutex); |
| 5994 | } |
| 5995 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5996 | static void iwl3945_bg_rf_kill(struct work_struct *work) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5997 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 5998 | struct iwl3945_priv *priv = container_of(work, struct iwl3945_priv, rf_kill); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5999 | |
| 6000 | wake_up_interruptible(&priv->wait_command_queue); |
| 6001 | |
| 6002 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) |
| 6003 | return; |
| 6004 | |
| 6005 | mutex_lock(&priv->mutex); |
| 6006 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6007 | if (!iwl3945_is_rfkill(priv)) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6008 | IWL_DEBUG(IWL_DL_INFO | IWL_DL_RF_KILL, |
| 6009 | "HW and/or SW RF Kill no longer active, restarting " |
| 6010 | "device\n"); |
| 6011 | if (!test_bit(STATUS_EXIT_PENDING, &priv->status)) |
| 6012 | queue_work(priv->workqueue, &priv->restart); |
| 6013 | } else { |
| 6014 | |
| 6015 | if (!test_bit(STATUS_RF_KILL_HW, &priv->status)) |
| 6016 | IWL_DEBUG_RF_KILL("Can not turn radio back on - " |
| 6017 | "disabled by SW switch\n"); |
| 6018 | else |
| 6019 | IWL_WARNING("Radio Frequency Kill Switch is On:\n" |
| 6020 | "Kill switch must be turned off for " |
| 6021 | "wireless networking to work.\n"); |
| 6022 | } |
Abhijeet Kolekar | ebef200 | 2008-06-30 17:23:18 +0800 | [diff] [blame] | 6023 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6024 | mutex_unlock(&priv->mutex); |
Adel Gadllah | 80fcc9e | 2008-07-01 17:49:50 +0200 | [diff] [blame] | 6025 | iwl3945_rfkill_set_hw_state(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6026 | } |
| 6027 | |
| 6028 | #define IWL_SCAN_CHECK_WATCHDOG (7 * HZ) |
| 6029 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6030 | static void iwl3945_bg_scan_check(struct work_struct *data) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6031 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6032 | struct iwl3945_priv *priv = |
| 6033 | container_of(data, struct iwl3945_priv, scan_check.work); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6034 | |
| 6035 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) |
| 6036 | return; |
| 6037 | |
| 6038 | mutex_lock(&priv->mutex); |
| 6039 | if (test_bit(STATUS_SCANNING, &priv->status) || |
| 6040 | test_bit(STATUS_SCAN_ABORTING, &priv->status)) { |
| 6041 | IWL_DEBUG(IWL_DL_INFO | IWL_DL_SCAN, |
| 6042 | "Scan completion watchdog resetting adapter (%dms)\n", |
| 6043 | jiffies_to_msecs(IWL_SCAN_CHECK_WATCHDOG)); |
Mohamed Abbas | 15e869d | 2007-10-25 17:15:46 +0800 | [diff] [blame] | 6044 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6045 | if (!test_bit(STATUS_EXIT_PENDING, &priv->status)) |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6046 | iwl3945_send_scan_abort(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6047 | } |
| 6048 | mutex_unlock(&priv->mutex); |
| 6049 | } |
| 6050 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6051 | static void iwl3945_bg_request_scan(struct work_struct *data) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6052 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6053 | struct iwl3945_priv *priv = |
| 6054 | container_of(data, struct iwl3945_priv, request_scan); |
| 6055 | struct iwl3945_host_cmd cmd = { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6056 | .id = REPLY_SCAN_CMD, |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6057 | .len = sizeof(struct iwl3945_scan_cmd), |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6058 | .meta.flags = CMD_SIZE_HUGE, |
| 6059 | }; |
| 6060 | int rc = 0; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6061 | struct iwl3945_scan_cmd *scan; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6062 | struct ieee80211_conf *conf = NULL; |
Abhijeet Kolekar | f934052 | 2008-09-03 11:26:58 +0800 | [diff] [blame] | 6063 | u8 n_probes = 2; |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 6064 | enum ieee80211_band band; |
John W. Linville | 9387b7c | 2008-09-30 20:59:05 -0400 | [diff] [blame] | 6065 | DECLARE_SSID_BUF(ssid); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6066 | |
| 6067 | conf = ieee80211_get_hw_conf(priv->hw); |
| 6068 | |
| 6069 | mutex_lock(&priv->mutex); |
| 6070 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6071 | if (!iwl3945_is_ready(priv)) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6072 | IWL_WARNING("request scan called when driver not ready.\n"); |
| 6073 | goto done; |
| 6074 | } |
| 6075 | |
Tomas Winkler | a96a27f | 2008-10-23 23:48:56 -0700 | [diff] [blame] | 6076 | /* Make sure the scan wasn't canceled before this queued work |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6077 | * was given the chance to run... */ |
| 6078 | if (!test_bit(STATUS_SCANNING, &priv->status)) |
| 6079 | goto done; |
| 6080 | |
| 6081 | /* This should never be called or scheduled if there is currently |
| 6082 | * a scan active in the hardware. */ |
| 6083 | if (test_bit(STATUS_SCAN_HW, &priv->status)) { |
| 6084 | IWL_DEBUG_INFO("Multiple concurrent scan requests in parallel. " |
| 6085 | "Ignoring second request.\n"); |
| 6086 | rc = -EIO; |
| 6087 | goto done; |
| 6088 | } |
| 6089 | |
| 6090 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) { |
| 6091 | IWL_DEBUG_SCAN("Aborting scan due to device shutdown\n"); |
| 6092 | goto done; |
| 6093 | } |
| 6094 | |
| 6095 | if (test_bit(STATUS_SCAN_ABORTING, &priv->status)) { |
| 6096 | IWL_DEBUG_HC("Scan request while abort pending. Queuing.\n"); |
| 6097 | goto done; |
| 6098 | } |
| 6099 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6100 | if (iwl3945_is_rfkill(priv)) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6101 | IWL_DEBUG_HC("Aborting scan due to RF Kill activation\n"); |
| 6102 | goto done; |
| 6103 | } |
| 6104 | |
| 6105 | if (!test_bit(STATUS_READY, &priv->status)) { |
| 6106 | IWL_DEBUG_HC("Scan request while uninitialized. Queuing.\n"); |
| 6107 | goto done; |
| 6108 | } |
| 6109 | |
| 6110 | if (!priv->scan_bands) { |
| 6111 | IWL_DEBUG_HC("Aborting scan due to no requested bands\n"); |
| 6112 | goto done; |
| 6113 | } |
| 6114 | |
| 6115 | if (!priv->scan) { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6116 | priv->scan = kmalloc(sizeof(struct iwl3945_scan_cmd) + |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6117 | IWL_MAX_SCAN_SIZE, GFP_KERNEL); |
| 6118 | if (!priv->scan) { |
| 6119 | rc = -ENOMEM; |
| 6120 | goto done; |
| 6121 | } |
| 6122 | } |
| 6123 | scan = priv->scan; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6124 | memset(scan, 0, sizeof(struct iwl3945_scan_cmd) + IWL_MAX_SCAN_SIZE); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6125 | |
| 6126 | scan->quiet_plcp_th = IWL_PLCP_QUIET_THRESH; |
| 6127 | scan->quiet_time = IWL_ACTIVE_QUIET_TIME; |
| 6128 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6129 | if (iwl3945_is_associated(priv)) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6130 | u16 interval = 0; |
| 6131 | u32 extra; |
| 6132 | u32 suspend_time = 100; |
| 6133 | u32 scan_suspend_time = 100; |
| 6134 | unsigned long flags; |
| 6135 | |
| 6136 | IWL_DEBUG_INFO("Scanning while associated...\n"); |
| 6137 | |
| 6138 | spin_lock_irqsave(&priv->lock, flags); |
| 6139 | interval = priv->beacon_int; |
| 6140 | spin_unlock_irqrestore(&priv->lock, flags); |
| 6141 | |
| 6142 | scan->suspend_time = 0; |
Mohamed Abbas | 15e869d | 2007-10-25 17:15:46 +0800 | [diff] [blame] | 6143 | scan->max_out_time = cpu_to_le32(200 * 1024); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6144 | if (!interval) |
| 6145 | interval = suspend_time; |
| 6146 | /* |
| 6147 | * suspend time format: |
| 6148 | * 0-19: beacon interval in usec (time before exec.) |
| 6149 | * 20-23: 0 |
| 6150 | * 24-31: number of beacons (suspend between channels) |
| 6151 | */ |
| 6152 | |
| 6153 | extra = (suspend_time / interval) << 24; |
| 6154 | scan_suspend_time = 0xFF0FFFFF & |
| 6155 | (extra | ((suspend_time % interval) * 1024)); |
| 6156 | |
| 6157 | scan->suspend_time = cpu_to_le32(scan_suspend_time); |
| 6158 | IWL_DEBUG_SCAN("suspend_time 0x%X beacon interval %d\n", |
| 6159 | scan_suspend_time, interval); |
| 6160 | } |
| 6161 | |
| 6162 | /* We should add the ability for user to lock to PASSIVE ONLY */ |
| 6163 | if (priv->one_direct_scan) { |
| 6164 | IWL_DEBUG_SCAN |
| 6165 | ("Kicking off one direct scan for '%s'\n", |
John W. Linville | 9387b7c | 2008-09-30 20:59:05 -0400 | [diff] [blame] | 6166 | print_ssid(ssid, priv->direct_ssid, |
| 6167 | priv->direct_ssid_len)); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6168 | scan->direct_scan[0].id = WLAN_EID_SSID; |
| 6169 | scan->direct_scan[0].len = priv->direct_ssid_len; |
| 6170 | memcpy(scan->direct_scan[0].ssid, |
| 6171 | priv->direct_ssid, priv->direct_ssid_len); |
Abhijeet Kolekar | f934052 | 2008-09-03 11:26:58 +0800 | [diff] [blame] | 6172 | n_probes++; |
Abhijeet Kolekar | f934052 | 2008-09-03 11:26:58 +0800 | [diff] [blame] | 6173 | } else |
Bill Moss | 786b455 | 2008-04-17 16:03:40 -0700 | [diff] [blame] | 6174 | IWL_DEBUG_SCAN("Kicking off one indirect scan.\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6175 | |
| 6176 | /* We don't build a direct scan probe request; the uCode will do |
| 6177 | * that based on the direct_mask added to each channel entry */ |
| 6178 | scan->tx_cmd.len = cpu_to_le16( |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6179 | iwl3945_fill_probe_req(priv, (struct ieee80211_mgmt *)scan->data, |
Johannes Berg | 430cfe9 | 2008-10-28 18:06:02 +0100 | [diff] [blame] | 6180 | IWL_MAX_SCAN_SIZE - sizeof(*scan))); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6181 | scan->tx_cmd.tx_flags = TX_CMD_FLG_SEQ_CTL_MSK; |
| 6182 | scan->tx_cmd.sta_id = priv->hw_setting.bcast_sta_id; |
| 6183 | scan->tx_cmd.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE; |
| 6184 | |
| 6185 | /* flags + rate selection */ |
| 6186 | |
Ron Rindjunsky | 66b5004 | 2008-06-25 16:46:31 +0800 | [diff] [blame] | 6187 | if (priv->scan_bands & BIT(IEEE80211_BAND_2GHZ)) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6188 | scan->flags = RXON_FLG_BAND_24G_MSK | RXON_FLG_AUTO_DETECT_MSK; |
| 6189 | scan->tx_cmd.rate = IWL_RATE_1M_PLCP; |
| 6190 | scan->good_CRC_th = 0; |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 6191 | band = IEEE80211_BAND_2GHZ; |
Ron Rindjunsky | 66b5004 | 2008-06-25 16:46:31 +0800 | [diff] [blame] | 6192 | } else if (priv->scan_bands & BIT(IEEE80211_BAND_5GHZ)) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6193 | scan->tx_cmd.rate = IWL_RATE_6M_PLCP; |
| 6194 | scan->good_CRC_th = IWL_GOOD_CRC_TH; |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 6195 | band = IEEE80211_BAND_5GHZ; |
Ron Rindjunsky | 66b5004 | 2008-06-25 16:46:31 +0800 | [diff] [blame] | 6196 | } else { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6197 | IWL_WARNING("Invalid scan band count\n"); |
| 6198 | goto done; |
| 6199 | } |
| 6200 | |
| 6201 | /* select Rx antennas */ |
| 6202 | scan->flags |= iwl3945_get_antenna_flags(priv); |
| 6203 | |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 6204 | if (priv->iw_mode == NL80211_IFTYPE_MONITOR) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6205 | scan->filter_flags = RXON_FILTER_PROMISC_MSK; |
| 6206 | |
Abhijeet Kolekar | f934052 | 2008-09-03 11:26:58 +0800 | [diff] [blame] | 6207 | scan->channel_count = |
| 6208 | iwl3945_get_channels_for_scan(priv, band, 1, /* active */ |
| 6209 | n_probes, |
| 6210 | (void *)&scan->data[le16_to_cpu(scan->tx_cmd.len)]); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6211 | |
Reinette Chatre | 14b5433 | 2008-11-04 12:21:35 -0800 | [diff] [blame] | 6212 | if (scan->channel_count == 0) { |
| 6213 | IWL_DEBUG_SCAN("channel count %d\n", scan->channel_count); |
| 6214 | goto done; |
| 6215 | } |
| 6216 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6217 | cmd.len += le16_to_cpu(scan->tx_cmd.len) + |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6218 | scan->channel_count * sizeof(struct iwl3945_scan_channel); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6219 | cmd.data = scan; |
| 6220 | scan->len = cpu_to_le16(cmd.len); |
| 6221 | |
| 6222 | set_bit(STATUS_SCAN_HW, &priv->status); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6223 | rc = iwl3945_send_cmd_sync(priv, &cmd); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6224 | if (rc) |
| 6225 | goto done; |
| 6226 | |
| 6227 | queue_delayed_work(priv->workqueue, &priv->scan_check, |
| 6228 | IWL_SCAN_CHECK_WATCHDOG); |
| 6229 | |
| 6230 | mutex_unlock(&priv->mutex); |
| 6231 | return; |
| 6232 | |
| 6233 | done: |
Mohamed Abbas | 2420ebc | 2008-11-04 12:21:34 -0800 | [diff] [blame] | 6234 | /* can not perform scan make sure we clear scanning |
| 6235 | * bits from status so next scan request can be performed. |
| 6236 | * if we dont clear scanning status bit here all next scan |
| 6237 | * will fail |
| 6238 | */ |
| 6239 | clear_bit(STATUS_SCAN_HW, &priv->status); |
| 6240 | clear_bit(STATUS_SCANNING, &priv->status); |
| 6241 | |
Ian Schram | 01ebd06 | 2007-10-25 17:15:22 +0800 | [diff] [blame] | 6242 | /* inform mac80211 scan aborted */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6243 | queue_work(priv->workqueue, &priv->scan_completed); |
| 6244 | mutex_unlock(&priv->mutex); |
| 6245 | } |
| 6246 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6247 | static void iwl3945_bg_up(struct work_struct *data) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6248 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6249 | struct iwl3945_priv *priv = container_of(data, struct iwl3945_priv, up); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6250 | |
| 6251 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) |
| 6252 | return; |
| 6253 | |
| 6254 | mutex_lock(&priv->mutex); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6255 | __iwl3945_up(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6256 | mutex_unlock(&priv->mutex); |
Adel Gadllah | 80fcc9e | 2008-07-01 17:49:50 +0200 | [diff] [blame] | 6257 | iwl3945_rfkill_set_hw_state(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6258 | } |
| 6259 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6260 | static void iwl3945_bg_restart(struct work_struct *data) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6261 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6262 | struct iwl3945_priv *priv = container_of(data, struct iwl3945_priv, restart); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6263 | |
| 6264 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) |
| 6265 | return; |
| 6266 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6267 | iwl3945_down(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6268 | queue_work(priv->workqueue, &priv->up); |
| 6269 | } |
| 6270 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6271 | static void iwl3945_bg_rx_replenish(struct work_struct *data) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6272 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6273 | struct iwl3945_priv *priv = |
| 6274 | container_of(data, struct iwl3945_priv, rx_replenish); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6275 | |
| 6276 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) |
| 6277 | return; |
| 6278 | |
| 6279 | mutex_lock(&priv->mutex); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6280 | iwl3945_rx_replenish(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6281 | mutex_unlock(&priv->mutex); |
| 6282 | } |
| 6283 | |
Mohamed Abbas | 7878a5a | 2007-11-29 11:10:13 +0800 | [diff] [blame] | 6284 | #define IWL_DELAY_NEXT_SCAN (HZ*2) |
| 6285 | |
Abhijeet Kolekar | cd56d33 | 2008-09-03 11:26:21 +0800 | [diff] [blame] | 6286 | static void iwl3945_post_associate(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6287 | { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6288 | int rc = 0; |
| 6289 | struct ieee80211_conf *conf = NULL; |
| 6290 | |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 6291 | if (priv->iw_mode == NL80211_IFTYPE_AP) { |
Tomas Winkler | 3ac7f14 | 2008-07-21 02:40:14 +0300 | [diff] [blame] | 6292 | IWL_ERROR("%s Should not be called in AP mode\n", __func__); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6293 | return; |
| 6294 | } |
| 6295 | |
| 6296 | |
Johannes Berg | e174961 | 2008-10-27 15:59:26 -0700 | [diff] [blame] | 6297 | IWL_DEBUG_ASSOC("Associated as %d to: %pM\n", |
| 6298 | priv->assoc_id, priv->active_rxon.bssid_addr); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6299 | |
| 6300 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) |
| 6301 | return; |
| 6302 | |
Abhijeet Kolekar | 322a981 | 2008-09-03 11:26:27 +0800 | [diff] [blame] | 6303 | if (!priv->vif || !priv->is_open) |
Mohamed Abbas | 6ef89d0 | 2007-10-25 17:15:47 +0800 | [diff] [blame] | 6304 | return; |
Abhijeet Kolekar | 322a981 | 2008-09-03 11:26:27 +0800 | [diff] [blame] | 6305 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6306 | iwl3945_scan_cancel_timeout(priv, 200); |
Mohamed Abbas | 15e869d | 2007-10-25 17:15:46 +0800 | [diff] [blame] | 6307 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6308 | conf = ieee80211_get_hw_conf(priv->hw); |
| 6309 | |
| 6310 | priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6311 | iwl3945_commit_rxon(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6312 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6313 | memset(&priv->rxon_timing, 0, sizeof(struct iwl3945_rxon_time_cmd)); |
| 6314 | iwl3945_setup_rxon_timing(priv); |
| 6315 | rc = iwl3945_send_cmd_pdu(priv, REPLY_RXON_TIMING, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6316 | sizeof(priv->rxon_timing), &priv->rxon_timing); |
| 6317 | if (rc) |
| 6318 | IWL_WARNING("REPLY_RXON_TIMING failed - " |
| 6319 | "Attempting to continue.\n"); |
| 6320 | |
| 6321 | priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK; |
| 6322 | |
| 6323 | priv->staging_rxon.assoc_id = cpu_to_le16(priv->assoc_id); |
| 6324 | |
| 6325 | IWL_DEBUG_ASSOC("assoc id %d beacon interval %d\n", |
| 6326 | priv->assoc_id, priv->beacon_int); |
| 6327 | |
| 6328 | if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE) |
| 6329 | priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK; |
| 6330 | else |
| 6331 | priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK; |
| 6332 | |
| 6333 | if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) { |
| 6334 | if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_SLOT_TIME) |
| 6335 | priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK; |
| 6336 | else |
| 6337 | priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK; |
| 6338 | |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 6339 | if (priv->iw_mode == NL80211_IFTYPE_ADHOC) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6340 | priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK; |
| 6341 | |
| 6342 | } |
| 6343 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6344 | iwl3945_commit_rxon(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6345 | |
| 6346 | switch (priv->iw_mode) { |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 6347 | case NL80211_IFTYPE_STATION: |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6348 | iwl3945_rate_scale_init(priv->hw, IWL_AP_ID); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6349 | break; |
| 6350 | |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 6351 | case NL80211_IFTYPE_ADHOC: |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6352 | |
Abhijeet Kolekar | ce546fd | 2008-11-19 15:32:22 -0800 | [diff] [blame] | 6353 | priv->assoc_id = 1; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6354 | iwl3945_add_station(priv, priv->bssid, 0, 0); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6355 | iwl3945_sync_sta(priv, IWL_STA_ID, |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 6356 | (priv->band == IEEE80211_BAND_5GHZ) ? |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6357 | IWL_RATE_6M_PLCP : IWL_RATE_1M_PLCP, |
| 6358 | CMD_ASYNC); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6359 | iwl3945_rate_scale_init(priv->hw, IWL_STA_ID); |
| 6360 | iwl3945_send_beacon_cmd(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6361 | |
| 6362 | break; |
| 6363 | |
| 6364 | default: |
| 6365 | IWL_ERROR("%s Should not be called in %d mode\n", |
Tomas Winkler | 3ac7f14 | 2008-07-21 02:40:14 +0300 | [diff] [blame] | 6366 | __func__, priv->iw_mode); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6367 | break; |
| 6368 | } |
| 6369 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6370 | iwl3945_activate_qos(priv, 0); |
Ron Rindjunsky | 292ae17 | 2008-02-06 11:20:39 -0800 | [diff] [blame] | 6371 | |
Mohamed Abbas | 7878a5a | 2007-11-29 11:10:13 +0800 | [diff] [blame] | 6372 | /* we have just associated, don't start scan too early */ |
| 6373 | priv->next_scan_jiffies = jiffies + IWL_DELAY_NEXT_SCAN; |
Abhijeet Kolekar | cd56d33 | 2008-09-03 11:26:21 +0800 | [diff] [blame] | 6374 | } |
| 6375 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6376 | static void iwl3945_bg_abort_scan(struct work_struct *work) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6377 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6378 | struct iwl3945_priv *priv = container_of(work, struct iwl3945_priv, abort_scan); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6379 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6380 | if (!iwl3945_is_ready(priv)) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6381 | return; |
| 6382 | |
| 6383 | mutex_lock(&priv->mutex); |
| 6384 | |
| 6385 | set_bit(STATUS_SCAN_ABORTING, &priv->status); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6386 | iwl3945_send_scan_abort(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6387 | |
| 6388 | mutex_unlock(&priv->mutex); |
| 6389 | } |
| 6390 | |
Johannes Berg | e897558 | 2008-10-09 12:18:51 +0200 | [diff] [blame] | 6391 | static int iwl3945_mac_config(struct ieee80211_hw *hw, u32 changed); |
Zhu Yi | 76bb77e | 2007-11-22 10:53:22 +0800 | [diff] [blame] | 6392 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6393 | static void iwl3945_bg_scan_completed(struct work_struct *work) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6394 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6395 | struct iwl3945_priv *priv = |
| 6396 | container_of(work, struct iwl3945_priv, scan_completed); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6397 | |
| 6398 | IWL_DEBUG(IWL_DL_INFO | IWL_DL_SCAN, "SCAN complete scan\n"); |
| 6399 | |
| 6400 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) |
| 6401 | return; |
| 6402 | |
Zhu Yi | a064647 | 2007-12-20 14:10:01 +0800 | [diff] [blame] | 6403 | if (test_bit(STATUS_CONF_PENDING, &priv->status)) |
Johannes Berg | e897558 | 2008-10-09 12:18:51 +0200 | [diff] [blame] | 6404 | iwl3945_mac_config(priv->hw, 0); |
Zhu Yi | 76bb77e | 2007-11-22 10:53:22 +0800 | [diff] [blame] | 6405 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6406 | ieee80211_scan_completed(priv->hw); |
| 6407 | |
| 6408 | /* Since setting the TXPOWER may have been deferred while |
| 6409 | * performing the scan, fire one off */ |
| 6410 | mutex_lock(&priv->mutex); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6411 | iwl3945_hw_reg_send_txpower(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6412 | mutex_unlock(&priv->mutex); |
| 6413 | } |
| 6414 | |
| 6415 | /***************************************************************************** |
| 6416 | * |
| 6417 | * mac80211 entry point functions |
| 6418 | * |
| 6419 | *****************************************************************************/ |
| 6420 | |
Zhu Yi | 5a66926 | 2008-01-14 17:46:18 -0800 | [diff] [blame] | 6421 | #define UCODE_READY_TIMEOUT (2 * HZ) |
| 6422 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6423 | static int iwl3945_mac_start(struct ieee80211_hw *hw) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6424 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6425 | struct iwl3945_priv *priv = hw->priv; |
Zhu Yi | 5a66926 | 2008-01-14 17:46:18 -0800 | [diff] [blame] | 6426 | int ret; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6427 | |
| 6428 | IWL_DEBUG_MAC80211("enter\n"); |
| 6429 | |
Zhu Yi | 5a66926 | 2008-01-14 17:46:18 -0800 | [diff] [blame] | 6430 | if (pci_enable_device(priv->pci_dev)) { |
| 6431 | IWL_ERROR("Fail to pci_enable_device\n"); |
| 6432 | return -ENODEV; |
| 6433 | } |
| 6434 | pci_restore_state(priv->pci_dev); |
| 6435 | pci_enable_msi(priv->pci_dev); |
| 6436 | |
| 6437 | ret = request_irq(priv->pci_dev->irq, iwl3945_isr, IRQF_SHARED, |
| 6438 | DRV_NAME, priv); |
| 6439 | if (ret) { |
| 6440 | IWL_ERROR("Error allocating IRQ %d\n", priv->pci_dev->irq); |
| 6441 | goto out_disable_msi; |
| 6442 | } |
| 6443 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6444 | /* we should be verifying the device is ready to be opened */ |
| 6445 | mutex_lock(&priv->mutex); |
| 6446 | |
Zhu Yi | 5a66926 | 2008-01-14 17:46:18 -0800 | [diff] [blame] | 6447 | memset(&priv->staging_rxon, 0, sizeof(struct iwl3945_rxon_cmd)); |
| 6448 | /* fetch ucode file from disk, alloc and copy to bus-master buffers ... |
| 6449 | * ucode filename and max sizes are card-specific. */ |
| 6450 | |
| 6451 | if (!priv->ucode_code.len) { |
| 6452 | ret = iwl3945_read_ucode(priv); |
| 6453 | if (ret) { |
| 6454 | IWL_ERROR("Could not read microcode: %d\n", ret); |
| 6455 | mutex_unlock(&priv->mutex); |
| 6456 | goto out_release_irq; |
| 6457 | } |
| 6458 | } |
| 6459 | |
Zhu Yi | e655b9f | 2008-01-24 02:19:38 -0800 | [diff] [blame] | 6460 | ret = __iwl3945_up(priv); |
Zhu Yi | 5a66926 | 2008-01-14 17:46:18 -0800 | [diff] [blame] | 6461 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6462 | mutex_unlock(&priv->mutex); |
Zhu Yi | 5a66926 | 2008-01-14 17:46:18 -0800 | [diff] [blame] | 6463 | |
Adel Gadllah | 80fcc9e | 2008-07-01 17:49:50 +0200 | [diff] [blame] | 6464 | iwl3945_rfkill_set_hw_state(priv); |
| 6465 | |
Zhu Yi | e655b9f | 2008-01-24 02:19:38 -0800 | [diff] [blame] | 6466 | if (ret) |
| 6467 | goto out_release_irq; |
| 6468 | |
| 6469 | IWL_DEBUG_INFO("Start UP work.\n"); |
| 6470 | |
| 6471 | if (test_bit(STATUS_IN_SUSPEND, &priv->status)) |
| 6472 | return 0; |
| 6473 | |
Zhu Yi | 5a66926 | 2008-01-14 17:46:18 -0800 | [diff] [blame] | 6474 | /* Wait for START_ALIVE from ucode. Otherwise callbacks from |
| 6475 | * mac80211 will not be run successfully. */ |
| 6476 | ret = wait_event_interruptible_timeout(priv->wait_command_queue, |
| 6477 | test_bit(STATUS_READY, &priv->status), |
| 6478 | UCODE_READY_TIMEOUT); |
| 6479 | if (!ret) { |
| 6480 | if (!test_bit(STATUS_READY, &priv->status)) { |
| 6481 | IWL_ERROR("Wait for START_ALIVE timeout after %dms.\n", |
| 6482 | jiffies_to_msecs(UCODE_READY_TIMEOUT)); |
| 6483 | ret = -ETIMEDOUT; |
| 6484 | goto out_release_irq; |
| 6485 | } |
| 6486 | } |
| 6487 | |
Zhu Yi | e655b9f | 2008-01-24 02:19:38 -0800 | [diff] [blame] | 6488 | priv->is_open = 1; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6489 | IWL_DEBUG_MAC80211("leave\n"); |
| 6490 | return 0; |
Zhu Yi | 5a66926 | 2008-01-14 17:46:18 -0800 | [diff] [blame] | 6491 | |
| 6492 | out_release_irq: |
| 6493 | free_irq(priv->pci_dev->irq, priv); |
| 6494 | out_disable_msi: |
| 6495 | pci_disable_msi(priv->pci_dev); |
Zhu Yi | e655b9f | 2008-01-24 02:19:38 -0800 | [diff] [blame] | 6496 | pci_disable_device(priv->pci_dev); |
| 6497 | priv->is_open = 0; |
| 6498 | IWL_DEBUG_MAC80211("leave - failed\n"); |
Zhu Yi | 5a66926 | 2008-01-14 17:46:18 -0800 | [diff] [blame] | 6499 | return ret; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6500 | } |
| 6501 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6502 | static void iwl3945_mac_stop(struct ieee80211_hw *hw) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6503 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6504 | struct iwl3945_priv *priv = hw->priv; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6505 | |
| 6506 | IWL_DEBUG_MAC80211("enter\n"); |
Mohamed Abbas | 6ef89d0 | 2007-10-25 17:15:47 +0800 | [diff] [blame] | 6507 | |
Zhu Yi | e655b9f | 2008-01-24 02:19:38 -0800 | [diff] [blame] | 6508 | if (!priv->is_open) { |
| 6509 | IWL_DEBUG_MAC80211("leave - skip\n"); |
| 6510 | return; |
| 6511 | } |
| 6512 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6513 | priv->is_open = 0; |
Zhu Yi | 5a66926 | 2008-01-14 17:46:18 -0800 | [diff] [blame] | 6514 | |
| 6515 | if (iwl3945_is_ready_rf(priv)) { |
Zhu Yi | e655b9f | 2008-01-24 02:19:38 -0800 | [diff] [blame] | 6516 | /* stop mac, cancel any scan request and clear |
| 6517 | * RXON_FILTER_ASSOC_MSK BIT |
| 6518 | */ |
Zhu Yi | 5a66926 | 2008-01-14 17:46:18 -0800 | [diff] [blame] | 6519 | mutex_lock(&priv->mutex); |
| 6520 | iwl3945_scan_cancel_timeout(priv, 100); |
Mohamed Abbas | fde3571 | 2007-11-29 11:10:15 +0800 | [diff] [blame] | 6521 | mutex_unlock(&priv->mutex); |
Mohamed Abbas | fde3571 | 2007-11-29 11:10:15 +0800 | [diff] [blame] | 6522 | } |
| 6523 | |
Zhu Yi | 5a66926 | 2008-01-14 17:46:18 -0800 | [diff] [blame] | 6524 | iwl3945_down(priv); |
| 6525 | |
| 6526 | flush_workqueue(priv->workqueue); |
| 6527 | free_irq(priv->pci_dev->irq, priv); |
| 6528 | pci_disable_msi(priv->pci_dev); |
| 6529 | pci_save_state(priv->pci_dev); |
| 6530 | pci_disable_device(priv->pci_dev); |
Mohamed Abbas | 6ef89d0 | 2007-10-25 17:15:47 +0800 | [diff] [blame] | 6531 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6532 | IWL_DEBUG_MAC80211("leave\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6533 | } |
| 6534 | |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 6535 | static int iwl3945_mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6536 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6537 | struct iwl3945_priv *priv = hw->priv; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6538 | |
| 6539 | IWL_DEBUG_MAC80211("enter\n"); |
| 6540 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6541 | IWL_DEBUG_TX("dev->xmit(%d bytes) at rate 0x%02x\n", skb->len, |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 6542 | ieee80211_get_tx_rate(hw, IEEE80211_SKB_CB(skb))->bitrate); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6543 | |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 6544 | if (iwl3945_tx_skb(priv, skb)) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6545 | dev_kfree_skb_any(skb); |
| 6546 | |
| 6547 | IWL_DEBUG_MAC80211("leave\n"); |
| 6548 | return 0; |
| 6549 | } |
| 6550 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6551 | static int iwl3945_mac_add_interface(struct ieee80211_hw *hw, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6552 | struct ieee80211_if_init_conf *conf) |
| 6553 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6554 | struct iwl3945_priv *priv = hw->priv; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6555 | unsigned long flags; |
| 6556 | |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 6557 | IWL_DEBUG_MAC80211("enter: type %d\n", conf->type); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6558 | |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 6559 | if (priv->vif) { |
| 6560 | IWL_DEBUG_MAC80211("leave - vif != NULL\n"); |
Tomas Winkler | 864792e | 2007-11-27 21:00:52 +0200 | [diff] [blame] | 6561 | return -EOPNOTSUPP; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6562 | } |
| 6563 | |
| 6564 | spin_lock_irqsave(&priv->lock, flags); |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 6565 | priv->vif = conf->vif; |
Zhu, Yi | 60294de | 2008-10-29 14:05:45 -0700 | [diff] [blame] | 6566 | priv->iw_mode = conf->type; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6567 | |
| 6568 | spin_unlock_irqrestore(&priv->lock, flags); |
| 6569 | |
| 6570 | mutex_lock(&priv->mutex); |
Tomas Winkler | 864792e | 2007-11-27 21:00:52 +0200 | [diff] [blame] | 6571 | |
| 6572 | if (conf->mac_addr) { |
Johannes Berg | e174961 | 2008-10-27 15:59:26 -0700 | [diff] [blame] | 6573 | IWL_DEBUG_MAC80211("Set: %pM\n", conf->mac_addr); |
Tomas Winkler | 864792e | 2007-11-27 21:00:52 +0200 | [diff] [blame] | 6574 | memcpy(priv->mac_addr, conf->mac_addr, ETH_ALEN); |
| 6575 | } |
| 6576 | |
Zhu Yi | 5a66926 | 2008-01-14 17:46:18 -0800 | [diff] [blame] | 6577 | if (iwl3945_is_ready(priv)) |
| 6578 | iwl3945_set_mode(priv, conf->type); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6579 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6580 | mutex_unlock(&priv->mutex); |
| 6581 | |
Zhu Yi | 5a66926 | 2008-01-14 17:46:18 -0800 | [diff] [blame] | 6582 | IWL_DEBUG_MAC80211("leave\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6583 | return 0; |
| 6584 | } |
| 6585 | |
| 6586 | /** |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6587 | * iwl3945_mac_config - mac80211 config callback |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6588 | * |
| 6589 | * We ignore conf->flags & IEEE80211_CONF_SHORT_SLOT_TIME since it seems to |
| 6590 | * be set inappropriately and the driver currently sets the hardware up to |
| 6591 | * use it whenever needed. |
| 6592 | */ |
Johannes Berg | e897558 | 2008-10-09 12:18:51 +0200 | [diff] [blame] | 6593 | static int iwl3945_mac_config(struct ieee80211_hw *hw, u32 changed) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6594 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6595 | struct iwl3945_priv *priv = hw->priv; |
| 6596 | const struct iwl3945_channel_info *ch_info; |
Johannes Berg | e897558 | 2008-10-09 12:18:51 +0200 | [diff] [blame] | 6597 | struct ieee80211_conf *conf = &hw->conf; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6598 | unsigned long flags; |
Zhu Yi | 76bb77e | 2007-11-22 10:53:22 +0800 | [diff] [blame] | 6599 | int ret = 0; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6600 | |
| 6601 | mutex_lock(&priv->mutex); |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 6602 | IWL_DEBUG_MAC80211("enter to channel %d\n", conf->channel->hw_value); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6603 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6604 | if (!iwl3945_is_ready(priv)) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6605 | IWL_DEBUG_MAC80211("leave - not ready\n"); |
Zhu Yi | 76bb77e | 2007-11-22 10:53:22 +0800 | [diff] [blame] | 6606 | ret = -EIO; |
| 6607 | goto out; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6608 | } |
| 6609 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6610 | if (unlikely(!iwl3945_param_disable_hw_scan && |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6611 | test_bit(STATUS_SCANNING, &priv->status))) { |
Zhu Yi | a064647 | 2007-12-20 14:10:01 +0800 | [diff] [blame] | 6612 | IWL_DEBUG_MAC80211("leave - scanning\n"); |
| 6613 | set_bit(STATUS_CONF_PENDING, &priv->status); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6614 | mutex_unlock(&priv->mutex); |
Zhu Yi | a064647 | 2007-12-20 14:10:01 +0800 | [diff] [blame] | 6615 | return 0; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6616 | } |
| 6617 | |
| 6618 | spin_lock_irqsave(&priv->lock, flags); |
| 6619 | |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 6620 | ch_info = iwl3945_get_channel_info(priv, conf->channel->band, |
| 6621 | conf->channel->hw_value); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6622 | if (!is_channel_valid(ch_info)) { |
Ron Rindjunsky | 66b5004 | 2008-06-25 16:46:31 +0800 | [diff] [blame] | 6623 | IWL_DEBUG_SCAN("Channel %d [%d] is INVALID for this band.\n", |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 6624 | conf->channel->hw_value, conf->channel->band); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6625 | IWL_DEBUG_MAC80211("leave - invalid channel\n"); |
| 6626 | spin_unlock_irqrestore(&priv->lock, flags); |
Zhu Yi | 76bb77e | 2007-11-22 10:53:22 +0800 | [diff] [blame] | 6627 | ret = -EINVAL; |
| 6628 | goto out; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6629 | } |
| 6630 | |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 6631 | iwl3945_set_rxon_channel(priv, conf->channel->band, conf->channel->hw_value); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6632 | |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 6633 | iwl3945_set_flags_for_phymode(priv, conf->channel->band); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6634 | |
| 6635 | /* The list of supported rates and rate mask can be different |
| 6636 | * for each phymode; since the phymode may have changed, reset |
| 6637 | * the rate mask to what mac80211 lists */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6638 | iwl3945_set_rate(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6639 | |
| 6640 | spin_unlock_irqrestore(&priv->lock, flags); |
| 6641 | |
| 6642 | #ifdef IEEE80211_CONF_CHANNEL_SWITCH |
| 6643 | if (conf->flags & IEEE80211_CONF_CHANNEL_SWITCH) { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6644 | iwl3945_hw_channel_switch(priv, conf->channel); |
Zhu Yi | 76bb77e | 2007-11-22 10:53:22 +0800 | [diff] [blame] | 6645 | goto out; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6646 | } |
| 6647 | #endif |
| 6648 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6649 | iwl3945_radio_kill_sw(priv, !conf->radio_enabled); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6650 | |
| 6651 | if (!conf->radio_enabled) { |
| 6652 | IWL_DEBUG_MAC80211("leave - radio disabled\n"); |
Zhu Yi | 76bb77e | 2007-11-22 10:53:22 +0800 | [diff] [blame] | 6653 | goto out; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6654 | } |
| 6655 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6656 | if (iwl3945_is_rfkill(priv)) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6657 | IWL_DEBUG_MAC80211("leave - RF kill\n"); |
Zhu Yi | 76bb77e | 2007-11-22 10:53:22 +0800 | [diff] [blame] | 6658 | ret = -EIO; |
| 6659 | goto out; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6660 | } |
| 6661 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6662 | iwl3945_set_rate(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6663 | |
| 6664 | if (memcmp(&priv->active_rxon, |
| 6665 | &priv->staging_rxon, sizeof(priv->staging_rxon))) |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6666 | iwl3945_commit_rxon(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6667 | else |
| 6668 | IWL_DEBUG_INFO("No re-sending same RXON configuration.\n"); |
| 6669 | |
| 6670 | IWL_DEBUG_MAC80211("leave\n"); |
| 6671 | |
Zhu Yi | 76bb77e | 2007-11-22 10:53:22 +0800 | [diff] [blame] | 6672 | out: |
Zhu Yi | a064647 | 2007-12-20 14:10:01 +0800 | [diff] [blame] | 6673 | clear_bit(STATUS_CONF_PENDING, &priv->status); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6674 | mutex_unlock(&priv->mutex); |
Zhu Yi | 76bb77e | 2007-11-22 10:53:22 +0800 | [diff] [blame] | 6675 | return ret; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6676 | } |
| 6677 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6678 | static void iwl3945_config_ap(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6679 | { |
| 6680 | int rc = 0; |
| 6681 | |
Maarten Lankhorst | d986bcd | 2008-01-23 10:15:16 -0800 | [diff] [blame] | 6682 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6683 | return; |
| 6684 | |
| 6685 | /* The following should be done only at AP bring up */ |
Ron Rindjunsky | 5d1e232 | 2008-06-30 17:23:04 +0800 | [diff] [blame] | 6686 | if (!(iwl3945_is_associated(priv))) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6687 | |
| 6688 | /* RXON - unassoc (to set timing command) */ |
| 6689 | priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6690 | iwl3945_commit_rxon(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6691 | |
| 6692 | /* RXON Timing */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6693 | memset(&priv->rxon_timing, 0, sizeof(struct iwl3945_rxon_time_cmd)); |
| 6694 | iwl3945_setup_rxon_timing(priv); |
| 6695 | rc = iwl3945_send_cmd_pdu(priv, REPLY_RXON_TIMING, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6696 | sizeof(priv->rxon_timing), &priv->rxon_timing); |
| 6697 | if (rc) |
| 6698 | IWL_WARNING("REPLY_RXON_TIMING failed - " |
| 6699 | "Attempting to continue.\n"); |
| 6700 | |
| 6701 | /* FIXME: what should be the assoc_id for AP? */ |
| 6702 | priv->staging_rxon.assoc_id = cpu_to_le16(priv->assoc_id); |
| 6703 | if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE) |
| 6704 | priv->staging_rxon.flags |= |
| 6705 | RXON_FLG_SHORT_PREAMBLE_MSK; |
| 6706 | else |
| 6707 | priv->staging_rxon.flags &= |
| 6708 | ~RXON_FLG_SHORT_PREAMBLE_MSK; |
| 6709 | |
| 6710 | if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) { |
| 6711 | if (priv->assoc_capability & |
| 6712 | WLAN_CAPABILITY_SHORT_SLOT_TIME) |
| 6713 | priv->staging_rxon.flags |= |
| 6714 | RXON_FLG_SHORT_SLOT_MSK; |
| 6715 | else |
| 6716 | priv->staging_rxon.flags &= |
| 6717 | ~RXON_FLG_SHORT_SLOT_MSK; |
| 6718 | |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 6719 | if (priv->iw_mode == NL80211_IFTYPE_ADHOC) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6720 | priv->staging_rxon.flags &= |
| 6721 | ~RXON_FLG_SHORT_SLOT_MSK; |
| 6722 | } |
| 6723 | /* restore RXON assoc */ |
| 6724 | priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6725 | iwl3945_commit_rxon(priv); |
| 6726 | iwl3945_add_station(priv, iwl3945_broadcast_addr, 0, 0); |
Zhu Yi | 556f8db | 2007-09-27 11:27:33 +0800 | [diff] [blame] | 6727 | } |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6728 | iwl3945_send_beacon_cmd(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6729 | |
| 6730 | /* FIXME - we need to add code here to detect a totally new |
| 6731 | * configuration, reset the AP, unassoc, rxon timing, assoc, |
| 6732 | * clear sta table, add BCAST sta... */ |
| 6733 | } |
| 6734 | |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 6735 | static int iwl3945_mac_config_interface(struct ieee80211_hw *hw, |
| 6736 | struct ieee80211_vif *vif, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6737 | struct ieee80211_if_conf *conf) |
| 6738 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6739 | struct iwl3945_priv *priv = hw->priv; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6740 | int rc; |
| 6741 | |
| 6742 | if (conf == NULL) |
| 6743 | return -EIO; |
| 6744 | |
Emmanuel Grumbach | b716bb9 | 2008-03-04 18:09:32 -0800 | [diff] [blame] | 6745 | if (priv->vif != vif) { |
| 6746 | IWL_DEBUG_MAC80211("leave - priv->vif != vif\n"); |
Emmanuel Grumbach | b716bb9 | 2008-03-04 18:09:32 -0800 | [diff] [blame] | 6747 | return 0; |
| 6748 | } |
| 6749 | |
Johannes Berg | 9d139c8 | 2008-07-09 14:40:37 +0200 | [diff] [blame] | 6750 | /* handle this temporarily here */ |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 6751 | if (priv->iw_mode == NL80211_IFTYPE_ADHOC && |
Johannes Berg | 9d139c8 | 2008-07-09 14:40:37 +0200 | [diff] [blame] | 6752 | conf->changed & IEEE80211_IFCC_BEACON) { |
| 6753 | struct sk_buff *beacon = ieee80211_beacon_get(hw, vif); |
| 6754 | if (!beacon) |
| 6755 | return -ENOMEM; |
Mohamed Abbas | 9bdf5ec | 2008-11-07 09:58:35 -0800 | [diff] [blame] | 6756 | mutex_lock(&priv->mutex); |
Johannes Berg | 9d139c8 | 2008-07-09 14:40:37 +0200 | [diff] [blame] | 6757 | rc = iwl3945_mac_beacon_update(hw, beacon); |
Mohamed Abbas | 9bdf5ec | 2008-11-07 09:58:35 -0800 | [diff] [blame] | 6758 | mutex_unlock(&priv->mutex); |
Johannes Berg | 9d139c8 | 2008-07-09 14:40:37 +0200 | [diff] [blame] | 6759 | if (rc) |
| 6760 | return rc; |
| 6761 | } |
| 6762 | |
Zhu Yi | 5a66926 | 2008-01-14 17:46:18 -0800 | [diff] [blame] | 6763 | if (!iwl3945_is_alive(priv)) |
| 6764 | return -EAGAIN; |
| 6765 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6766 | mutex_lock(&priv->mutex); |
| 6767 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6768 | if (conf->bssid) |
Johannes Berg | e174961 | 2008-10-27 15:59:26 -0700 | [diff] [blame] | 6769 | IWL_DEBUG_MAC80211("bssid: %pM\n", conf->bssid); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6770 | |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 6771 | /* |
| 6772 | * very dubious code was here; the probe filtering flag is never set: |
| 6773 | * |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6774 | if (unlikely(test_bit(STATUS_SCANNING, &priv->status)) && |
| 6775 | !(priv->hw->flags & IEEE80211_HW_NO_PROBE_FILTERING)) { |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 6776 | */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6777 | |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 6778 | if (priv->iw_mode == NL80211_IFTYPE_AP) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6779 | if (!conf->bssid) { |
| 6780 | conf->bssid = priv->mac_addr; |
| 6781 | memcpy(priv->bssid, priv->mac_addr, ETH_ALEN); |
Johannes Berg | e174961 | 2008-10-27 15:59:26 -0700 | [diff] [blame] | 6782 | IWL_DEBUG_MAC80211("bssid was set to: %pM\n", |
| 6783 | conf->bssid); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6784 | } |
| 6785 | if (priv->ibss_beacon) |
| 6786 | dev_kfree_skb(priv->ibss_beacon); |
| 6787 | |
Johannes Berg | 9d139c8 | 2008-07-09 14:40:37 +0200 | [diff] [blame] | 6788 | priv->ibss_beacon = ieee80211_beacon_get(hw, vif); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6789 | } |
| 6790 | |
Mohamed Abbas | fde3571 | 2007-11-29 11:10:15 +0800 | [diff] [blame] | 6791 | if (iwl3945_is_rfkill(priv)) |
| 6792 | goto done; |
| 6793 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6794 | if (conf->bssid && !is_zero_ether_addr(conf->bssid) && |
| 6795 | !is_multicast_ether_addr(conf->bssid)) { |
| 6796 | /* If there is currently a HW scan going on in the background |
| 6797 | * then we need to cancel it else the RXON below will fail. */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6798 | if (iwl3945_scan_cancel_timeout(priv, 100)) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6799 | IWL_WARNING("Aborted scan still in progress " |
| 6800 | "after 100ms\n"); |
| 6801 | IWL_DEBUG_MAC80211("leaving - scan abort failed.\n"); |
| 6802 | mutex_unlock(&priv->mutex); |
| 6803 | return -EAGAIN; |
| 6804 | } |
| 6805 | memcpy(priv->staging_rxon.bssid_addr, conf->bssid, ETH_ALEN); |
| 6806 | |
| 6807 | /* TODO: Audit driver for usage of these members and see |
| 6808 | * if mac80211 deprecates them (priv->bssid looks like it |
| 6809 | * shouldn't be there, but I haven't scanned the IBSS code |
| 6810 | * to verify) - jpk */ |
| 6811 | memcpy(priv->bssid, conf->bssid, ETH_ALEN); |
| 6812 | |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 6813 | if (priv->iw_mode == NL80211_IFTYPE_AP) |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6814 | iwl3945_config_ap(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6815 | else { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6816 | rc = iwl3945_commit_rxon(priv); |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 6817 | if ((priv->iw_mode == NL80211_IFTYPE_STATION) && rc) |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6818 | iwl3945_add_station(priv, |
Zhu Yi | 556f8db | 2007-09-27 11:27:33 +0800 | [diff] [blame] | 6819 | priv->active_rxon.bssid_addr, 1, 0); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6820 | } |
| 6821 | |
| 6822 | } else { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6823 | iwl3945_scan_cancel_timeout(priv, 100); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6824 | priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6825 | iwl3945_commit_rxon(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6826 | } |
| 6827 | |
Mohamed Abbas | fde3571 | 2007-11-29 11:10:15 +0800 | [diff] [blame] | 6828 | done: |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6829 | IWL_DEBUG_MAC80211("leave\n"); |
| 6830 | mutex_unlock(&priv->mutex); |
| 6831 | |
| 6832 | return 0; |
| 6833 | } |
| 6834 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6835 | static void iwl3945_configure_filter(struct ieee80211_hw *hw, |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 6836 | unsigned int changed_flags, |
| 6837 | unsigned int *total_flags, |
| 6838 | int mc_count, struct dev_addr_list *mc_list) |
| 6839 | { |
Abhijeet Kolekar | 5ec0397 | 2008-05-05 10:22:48 +0800 | [diff] [blame] | 6840 | struct iwl3945_priv *priv = hw->priv; |
Zhu, Yi | 352bc8d | 2008-11-12 13:14:09 -0800 | [diff] [blame] | 6841 | __le32 *filter_flags = &priv->staging_rxon.filter_flags; |
Rick Farrington | 25b3f57 | 2008-06-30 17:23:28 +0800 | [diff] [blame] | 6842 | |
Zhu, Yi | 352bc8d | 2008-11-12 13:14:09 -0800 | [diff] [blame] | 6843 | IWL_DEBUG_MAC80211("Enter: changed: 0x%x, total: 0x%x\n", |
| 6844 | changed_flags, *total_flags); |
| 6845 | |
| 6846 | if (changed_flags & (FIF_OTHER_BSS | FIF_PROMISC_IN_BSS)) { |
| 6847 | if (*total_flags & (FIF_OTHER_BSS | FIF_PROMISC_IN_BSS)) |
| 6848 | *filter_flags |= RXON_FILTER_PROMISC_MSK; |
| 6849 | else |
| 6850 | *filter_flags &= ~RXON_FILTER_PROMISC_MSK; |
Abhijeet Kolekar | 5ec0397 | 2008-05-05 10:22:48 +0800 | [diff] [blame] | 6851 | } |
Zhu, Yi | 352bc8d | 2008-11-12 13:14:09 -0800 | [diff] [blame] | 6852 | if (changed_flags & FIF_ALLMULTI) { |
| 6853 | if (*total_flags & FIF_ALLMULTI) |
| 6854 | *filter_flags |= RXON_FILTER_ACCEPT_GRP_MSK; |
| 6855 | else |
| 6856 | *filter_flags &= ~RXON_FILTER_ACCEPT_GRP_MSK; |
| 6857 | } |
| 6858 | if (changed_flags & FIF_CONTROL) { |
| 6859 | if (*total_flags & FIF_CONTROL) |
| 6860 | *filter_flags |= RXON_FILTER_CTL2HOST_MSK; |
| 6861 | else |
| 6862 | *filter_flags &= ~RXON_FILTER_CTL2HOST_MSK; |
| 6863 | } |
| 6864 | if (changed_flags & FIF_BCN_PRBRESP_PROMISC) { |
| 6865 | if (*total_flags & FIF_BCN_PRBRESP_PROMISC) |
| 6866 | *filter_flags |= RXON_FILTER_BCON_AWARE_MSK; |
| 6867 | else |
| 6868 | *filter_flags &= ~RXON_FILTER_BCON_AWARE_MSK; |
| 6869 | } |
| 6870 | |
| 6871 | /* We avoid iwl_commit_rxon here to commit the new filter flags |
| 6872 | * since mac80211 will call ieee80211_hw_config immediately. |
| 6873 | * (mc_list is not supported at this time). Otherwise, we need to |
| 6874 | * queue a background iwl_commit_rxon work. |
| 6875 | */ |
| 6876 | |
| 6877 | *total_flags &= FIF_OTHER_BSS | FIF_ALLMULTI | FIF_PROMISC_IN_BSS | |
Rick Farrington | 25b3f57 | 2008-06-30 17:23:28 +0800 | [diff] [blame] | 6878 | FIF_BCN_PRBRESP_PROMISC | FIF_CONTROL; |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 6879 | } |
| 6880 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6881 | static void iwl3945_mac_remove_interface(struct ieee80211_hw *hw, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6882 | struct ieee80211_if_init_conf *conf) |
| 6883 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6884 | struct iwl3945_priv *priv = hw->priv; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6885 | |
| 6886 | IWL_DEBUG_MAC80211("enter\n"); |
| 6887 | |
| 6888 | mutex_lock(&priv->mutex); |
Mohamed Abbas | 6ef89d0 | 2007-10-25 17:15:47 +0800 | [diff] [blame] | 6889 | |
Mohamed Abbas | fde3571 | 2007-11-29 11:10:15 +0800 | [diff] [blame] | 6890 | if (iwl3945_is_ready_rf(priv)) { |
| 6891 | iwl3945_scan_cancel_timeout(priv, 100); |
Mohamed Abbas | fde3571 | 2007-11-29 11:10:15 +0800 | [diff] [blame] | 6892 | priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK; |
| 6893 | iwl3945_commit_rxon(priv); |
| 6894 | } |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 6895 | if (priv->vif == conf->vif) { |
| 6896 | priv->vif = NULL; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6897 | memset(priv->bssid, 0, ETH_ALEN); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6898 | } |
| 6899 | mutex_unlock(&priv->mutex); |
| 6900 | |
| 6901 | IWL_DEBUG_MAC80211("leave\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6902 | } |
| 6903 | |
Abhijeet Kolekar | cd56d33 | 2008-09-03 11:26:21 +0800 | [diff] [blame] | 6904 | #define IWL_DELAY_NEXT_SCAN_AFTER_ASSOC (HZ*6) |
| 6905 | |
| 6906 | static void iwl3945_bss_info_changed(struct ieee80211_hw *hw, |
| 6907 | struct ieee80211_vif *vif, |
| 6908 | struct ieee80211_bss_conf *bss_conf, |
| 6909 | u32 changes) |
| 6910 | { |
| 6911 | struct iwl3945_priv *priv = hw->priv; |
| 6912 | |
| 6913 | IWL_DEBUG_MAC80211("changes = 0x%X\n", changes); |
| 6914 | |
| 6915 | if (changes & BSS_CHANGED_ERP_PREAMBLE) { |
| 6916 | IWL_DEBUG_MAC80211("ERP_PREAMBLE %d\n", |
| 6917 | bss_conf->use_short_preamble); |
| 6918 | if (bss_conf->use_short_preamble) |
| 6919 | priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK; |
| 6920 | else |
| 6921 | priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK; |
| 6922 | } |
| 6923 | |
| 6924 | if (changes & BSS_CHANGED_ERP_CTS_PROT) { |
| 6925 | IWL_DEBUG_MAC80211("ERP_CTS %d\n", bss_conf->use_cts_prot); |
| 6926 | if (bss_conf->use_cts_prot && (priv->band != IEEE80211_BAND_5GHZ)) |
| 6927 | priv->staging_rxon.flags |= RXON_FLG_TGG_PROTECT_MSK; |
| 6928 | else |
| 6929 | priv->staging_rxon.flags &= ~RXON_FLG_TGG_PROTECT_MSK; |
| 6930 | } |
| 6931 | |
| 6932 | if (changes & BSS_CHANGED_ASSOC) { |
| 6933 | IWL_DEBUG_MAC80211("ASSOC %d\n", bss_conf->assoc); |
| 6934 | /* This should never happen as this function should |
| 6935 | * never be called from interrupt context. */ |
| 6936 | if (WARN_ON_ONCE(in_interrupt())) |
| 6937 | return; |
| 6938 | if (bss_conf->assoc) { |
| 6939 | priv->assoc_id = bss_conf->aid; |
| 6940 | priv->beacon_int = bss_conf->beacon_int; |
| 6941 | priv->timestamp0 = bss_conf->timestamp & 0xFFFFFFFF; |
| 6942 | priv->timestamp1 = (bss_conf->timestamp >> 32) & |
| 6943 | 0xFFFFFFFF; |
| 6944 | priv->assoc_capability = bss_conf->assoc_capability; |
| 6945 | priv->next_scan_jiffies = jiffies + |
| 6946 | IWL_DELAY_NEXT_SCAN_AFTER_ASSOC; |
| 6947 | mutex_lock(&priv->mutex); |
| 6948 | iwl3945_post_associate(priv); |
| 6949 | mutex_unlock(&priv->mutex); |
| 6950 | } else { |
| 6951 | priv->assoc_id = 0; |
| 6952 | IWL_DEBUG_MAC80211("DISASSOC %d\n", bss_conf->assoc); |
| 6953 | } |
| 6954 | } else if (changes && iwl3945_is_associated(priv) && priv->assoc_id) { |
| 6955 | IWL_DEBUG_MAC80211("Associated Changes %d\n", changes); |
| 6956 | iwl3945_send_rxon_assoc(priv); |
| 6957 | } |
| 6958 | |
| 6959 | } |
| 6960 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6961 | static int iwl3945_mac_hw_scan(struct ieee80211_hw *hw, u8 *ssid, size_t len) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6962 | { |
| 6963 | int rc = 0; |
| 6964 | unsigned long flags; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6965 | struct iwl3945_priv *priv = hw->priv; |
John W. Linville | 9387b7c | 2008-09-30 20:59:05 -0400 | [diff] [blame] | 6966 | DECLARE_SSID_BUF(ssid_buf); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6967 | |
| 6968 | IWL_DEBUG_MAC80211("enter\n"); |
| 6969 | |
Mohamed Abbas | 15e869d | 2007-10-25 17:15:46 +0800 | [diff] [blame] | 6970 | mutex_lock(&priv->mutex); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6971 | spin_lock_irqsave(&priv->lock, flags); |
| 6972 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 6973 | if (!iwl3945_is_ready_rf(priv)) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6974 | rc = -EIO; |
| 6975 | IWL_DEBUG_MAC80211("leave - not ready or exit pending\n"); |
| 6976 | goto out_unlock; |
| 6977 | } |
| 6978 | |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 6979 | if (priv->iw_mode == NL80211_IFTYPE_AP) { /* APs don't scan */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6980 | rc = -EIO; |
| 6981 | IWL_ERROR("ERROR: APs don't scan\n"); |
| 6982 | goto out_unlock; |
| 6983 | } |
| 6984 | |
Mohamed Abbas | 7878a5a | 2007-11-29 11:10:13 +0800 | [diff] [blame] | 6985 | /* we don't schedule scan within next_scan_jiffies period */ |
| 6986 | if (priv->next_scan_jiffies && |
| 6987 | time_after(priv->next_scan_jiffies, jiffies)) { |
| 6988 | rc = -EAGAIN; |
| 6989 | goto out_unlock; |
| 6990 | } |
Bill Moss | 15dbf1b | 2008-05-06 11:05:15 +0800 | [diff] [blame] | 6991 | /* if we just finished scan ask for delay for a broadcast scan */ |
| 6992 | if ((len == 0) && priv->last_scan_jiffies && |
| 6993 | time_after(priv->last_scan_jiffies + IWL_DELAY_NEXT_SCAN, |
| 6994 | jiffies)) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6995 | rc = -EAGAIN; |
| 6996 | goto out_unlock; |
| 6997 | } |
| 6998 | if (len) { |
Mohamed Abbas | 7878a5a | 2007-11-29 11:10:13 +0800 | [diff] [blame] | 6999 | IWL_DEBUG_SCAN("direct scan for %s [%d]\n ", |
John W. Linville | 9387b7c | 2008-09-30 20:59:05 -0400 | [diff] [blame] | 7000 | print_ssid(ssid_buf, ssid, len), (int)len); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7001 | |
| 7002 | priv->one_direct_scan = 1; |
| 7003 | priv->direct_ssid_len = (u8) |
| 7004 | min((u8) len, (u8) IW_ESSID_MAX_SIZE); |
| 7005 | memcpy(priv->direct_ssid, ssid, priv->direct_ssid_len); |
Mohamed Abbas | 6ef89d0 | 2007-10-25 17:15:47 +0800 | [diff] [blame] | 7006 | } else |
| 7007 | priv->one_direct_scan = 0; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7008 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7009 | rc = iwl3945_scan_initiate(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7010 | |
| 7011 | IWL_DEBUG_MAC80211("leave\n"); |
| 7012 | |
| 7013 | out_unlock: |
| 7014 | spin_unlock_irqrestore(&priv->lock, flags); |
Mohamed Abbas | 15e869d | 2007-10-25 17:15:46 +0800 | [diff] [blame] | 7015 | mutex_unlock(&priv->mutex); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7016 | |
| 7017 | return rc; |
| 7018 | } |
| 7019 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7020 | static int iwl3945_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7021 | const u8 *local_addr, const u8 *addr, |
| 7022 | struct ieee80211_key_conf *key) |
| 7023 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7024 | struct iwl3945_priv *priv = hw->priv; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7025 | int rc = 0; |
| 7026 | u8 sta_id; |
| 7027 | |
| 7028 | IWL_DEBUG_MAC80211("enter\n"); |
| 7029 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7030 | if (!iwl3945_param_hwcrypto) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7031 | IWL_DEBUG_MAC80211("leave - hwcrypto disabled\n"); |
| 7032 | return -EOPNOTSUPP; |
| 7033 | } |
| 7034 | |
| 7035 | if (is_zero_ether_addr(addr)) |
| 7036 | /* only support pairwise keys */ |
| 7037 | return -EOPNOTSUPP; |
| 7038 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7039 | sta_id = iwl3945_hw_find_station(priv, addr); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7040 | if (sta_id == IWL_INVALID_STATION) { |
Johannes Berg | e174961 | 2008-10-27 15:59:26 -0700 | [diff] [blame] | 7041 | IWL_DEBUG_MAC80211("leave - %pM not in station map.\n", |
| 7042 | addr); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7043 | return -EINVAL; |
| 7044 | } |
| 7045 | |
| 7046 | mutex_lock(&priv->mutex); |
| 7047 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7048 | iwl3945_scan_cancel_timeout(priv, 100); |
Mohamed Abbas | 15e869d | 2007-10-25 17:15:46 +0800 | [diff] [blame] | 7049 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7050 | switch (cmd) { |
| 7051 | case SET_KEY: |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7052 | rc = iwl3945_update_sta_key_info(priv, key, sta_id); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7053 | if (!rc) { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7054 | iwl3945_set_rxon_hwcrypto(priv, 1); |
| 7055 | iwl3945_commit_rxon(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7056 | key->hw_key_idx = sta_id; |
| 7057 | IWL_DEBUG_MAC80211("set_key success, using hwcrypto\n"); |
| 7058 | key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV; |
| 7059 | } |
| 7060 | break; |
| 7061 | case DISABLE_KEY: |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7062 | rc = iwl3945_clear_sta_key_info(priv, sta_id); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7063 | if (!rc) { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7064 | iwl3945_set_rxon_hwcrypto(priv, 0); |
| 7065 | iwl3945_commit_rxon(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7066 | IWL_DEBUG_MAC80211("disable hwcrypto key\n"); |
| 7067 | } |
| 7068 | break; |
| 7069 | default: |
| 7070 | rc = -EINVAL; |
| 7071 | } |
| 7072 | |
| 7073 | IWL_DEBUG_MAC80211("leave\n"); |
| 7074 | mutex_unlock(&priv->mutex); |
| 7075 | |
| 7076 | return rc; |
| 7077 | } |
| 7078 | |
Johannes Berg | e100bb6 | 2008-04-30 18:51:21 +0200 | [diff] [blame] | 7079 | static int iwl3945_mac_conf_tx(struct ieee80211_hw *hw, u16 queue, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7080 | const struct ieee80211_tx_queue_params *params) |
| 7081 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7082 | struct iwl3945_priv *priv = hw->priv; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7083 | unsigned long flags; |
| 7084 | int q; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7085 | |
| 7086 | IWL_DEBUG_MAC80211("enter\n"); |
| 7087 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7088 | if (!iwl3945_is_ready_rf(priv)) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7089 | IWL_DEBUG_MAC80211("leave - RF not ready\n"); |
| 7090 | return -EIO; |
| 7091 | } |
| 7092 | |
| 7093 | if (queue >= AC_NUM) { |
| 7094 | IWL_DEBUG_MAC80211("leave - queue >= AC_NUM %d\n", queue); |
| 7095 | return 0; |
| 7096 | } |
| 7097 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7098 | if (!priv->qos_data.qos_enable) { |
| 7099 | priv->qos_data.qos_active = 0; |
| 7100 | IWL_DEBUG_MAC80211("leave - qos not enabled\n"); |
| 7101 | return 0; |
| 7102 | } |
| 7103 | q = AC_NUM - 1 - queue; |
| 7104 | |
| 7105 | spin_lock_irqsave(&priv->lock, flags); |
| 7106 | |
| 7107 | priv->qos_data.def_qos_parm.ac[q].cw_min = cpu_to_le16(params->cw_min); |
| 7108 | priv->qos_data.def_qos_parm.ac[q].cw_max = cpu_to_le16(params->cw_max); |
| 7109 | priv->qos_data.def_qos_parm.ac[q].aifsn = params->aifs; |
| 7110 | priv->qos_data.def_qos_parm.ac[q].edca_txop = |
Johannes Berg | 3330d7b | 2008-02-10 16:49:38 +0100 | [diff] [blame] | 7111 | cpu_to_le16((params->txop * 32)); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7112 | |
| 7113 | priv->qos_data.def_qos_parm.ac[q].reserved1 = 0; |
| 7114 | priv->qos_data.qos_active = 1; |
| 7115 | |
| 7116 | spin_unlock_irqrestore(&priv->lock, flags); |
| 7117 | |
| 7118 | mutex_lock(&priv->mutex); |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 7119 | if (priv->iw_mode == NL80211_IFTYPE_AP) |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7120 | iwl3945_activate_qos(priv, 1); |
| 7121 | else if (priv->assoc_id && iwl3945_is_associated(priv)) |
| 7122 | iwl3945_activate_qos(priv, 0); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7123 | |
| 7124 | mutex_unlock(&priv->mutex); |
| 7125 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7126 | IWL_DEBUG_MAC80211("leave\n"); |
| 7127 | return 0; |
| 7128 | } |
| 7129 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7130 | static int iwl3945_mac_get_tx_stats(struct ieee80211_hw *hw, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7131 | struct ieee80211_tx_queue_stats *stats) |
| 7132 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7133 | struct iwl3945_priv *priv = hw->priv; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7134 | int i, avail; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7135 | struct iwl3945_tx_queue *txq; |
| 7136 | struct iwl3945_queue *q; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7137 | unsigned long flags; |
| 7138 | |
| 7139 | IWL_DEBUG_MAC80211("enter\n"); |
| 7140 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7141 | if (!iwl3945_is_ready_rf(priv)) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7142 | IWL_DEBUG_MAC80211("leave - RF not ready\n"); |
| 7143 | return -EIO; |
| 7144 | } |
| 7145 | |
| 7146 | spin_lock_irqsave(&priv->lock, flags); |
| 7147 | |
| 7148 | for (i = 0; i < AC_NUM; i++) { |
| 7149 | txq = &priv->txq[i]; |
| 7150 | q = &txq->q; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7151 | avail = iwl3945_queue_space(q); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7152 | |
Johannes Berg | 57ffc58 | 2008-04-29 17:18:59 +0200 | [diff] [blame] | 7153 | stats[i].len = q->n_window - avail; |
| 7154 | stats[i].limit = q->n_window - q->high_mark; |
| 7155 | stats[i].count = q->n_window; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7156 | |
| 7157 | } |
| 7158 | spin_unlock_irqrestore(&priv->lock, flags); |
| 7159 | |
| 7160 | IWL_DEBUG_MAC80211("leave\n"); |
| 7161 | |
| 7162 | return 0; |
| 7163 | } |
| 7164 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7165 | static int iwl3945_mac_get_stats(struct ieee80211_hw *hw, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7166 | struct ieee80211_low_level_stats *stats) |
| 7167 | { |
| 7168 | IWL_DEBUG_MAC80211("enter\n"); |
| 7169 | IWL_DEBUG_MAC80211("leave\n"); |
| 7170 | |
| 7171 | return 0; |
| 7172 | } |
| 7173 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7174 | static void iwl3945_mac_reset_tsf(struct ieee80211_hw *hw) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7175 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7176 | struct iwl3945_priv *priv = hw->priv; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7177 | unsigned long flags; |
| 7178 | |
| 7179 | mutex_lock(&priv->mutex); |
| 7180 | IWL_DEBUG_MAC80211("enter\n"); |
| 7181 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7182 | iwl3945_reset_qos(priv); |
Ron Rindjunsky | 292ae17 | 2008-02-06 11:20:39 -0800 | [diff] [blame] | 7183 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7184 | spin_lock_irqsave(&priv->lock, flags); |
| 7185 | priv->assoc_id = 0; |
| 7186 | priv->assoc_capability = 0; |
| 7187 | priv->call_post_assoc_from_beacon = 0; |
| 7188 | |
| 7189 | /* new association get rid of ibss beacon skb */ |
| 7190 | if (priv->ibss_beacon) |
| 7191 | dev_kfree_skb(priv->ibss_beacon); |
| 7192 | |
| 7193 | priv->ibss_beacon = NULL; |
| 7194 | |
| 7195 | priv->beacon_int = priv->hw->conf.beacon_int; |
| 7196 | priv->timestamp1 = 0; |
| 7197 | priv->timestamp0 = 0; |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 7198 | if ((priv->iw_mode == NL80211_IFTYPE_STATION)) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7199 | priv->beacon_int = 0; |
| 7200 | |
| 7201 | spin_unlock_irqrestore(&priv->lock, flags); |
| 7202 | |
Mohamed Abbas | fde3571 | 2007-11-29 11:10:15 +0800 | [diff] [blame] | 7203 | if (!iwl3945_is_ready_rf(priv)) { |
| 7204 | IWL_DEBUG_MAC80211("leave - not ready\n"); |
| 7205 | mutex_unlock(&priv->mutex); |
| 7206 | return; |
| 7207 | } |
| 7208 | |
Mohamed Abbas | 15e869d | 2007-10-25 17:15:46 +0800 | [diff] [blame] | 7209 | /* we are restarting association process |
| 7210 | * clear RXON_FILTER_ASSOC_MSK bit |
| 7211 | */ |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 7212 | if (priv->iw_mode != NL80211_IFTYPE_AP) { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7213 | iwl3945_scan_cancel_timeout(priv, 100); |
Mohamed Abbas | 15e869d | 2007-10-25 17:15:46 +0800 | [diff] [blame] | 7214 | priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7215 | iwl3945_commit_rxon(priv); |
Mohamed Abbas | 15e869d | 2007-10-25 17:15:46 +0800 | [diff] [blame] | 7216 | } |
| 7217 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7218 | /* Per mac80211.h: This is only used in IBSS mode... */ |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 7219 | if (priv->iw_mode != NL80211_IFTYPE_ADHOC) { |
Mohamed Abbas | 15e869d | 2007-10-25 17:15:46 +0800 | [diff] [blame] | 7220 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7221 | IWL_DEBUG_MAC80211("leave - not in IBSS\n"); |
| 7222 | mutex_unlock(&priv->mutex); |
| 7223 | return; |
| 7224 | } |
| 7225 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7226 | iwl3945_set_rate(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7227 | |
| 7228 | mutex_unlock(&priv->mutex); |
| 7229 | |
| 7230 | IWL_DEBUG_MAC80211("leave\n"); |
| 7231 | |
| 7232 | } |
| 7233 | |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 7234 | static int iwl3945_mac_beacon_update(struct ieee80211_hw *hw, struct sk_buff *skb) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7235 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7236 | struct iwl3945_priv *priv = hw->priv; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7237 | unsigned long flags; |
| 7238 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7239 | IWL_DEBUG_MAC80211("enter\n"); |
| 7240 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7241 | if (!iwl3945_is_ready_rf(priv)) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7242 | IWL_DEBUG_MAC80211("leave - RF not ready\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7243 | return -EIO; |
| 7244 | } |
| 7245 | |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 7246 | if (priv->iw_mode != NL80211_IFTYPE_ADHOC) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7247 | IWL_DEBUG_MAC80211("leave - not IBSS\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7248 | return -EIO; |
| 7249 | } |
| 7250 | |
| 7251 | spin_lock_irqsave(&priv->lock, flags); |
| 7252 | |
| 7253 | if (priv->ibss_beacon) |
| 7254 | dev_kfree_skb(priv->ibss_beacon); |
| 7255 | |
| 7256 | priv->ibss_beacon = skb; |
| 7257 | |
| 7258 | priv->assoc_id = 0; |
| 7259 | |
| 7260 | IWL_DEBUG_MAC80211("leave\n"); |
| 7261 | spin_unlock_irqrestore(&priv->lock, flags); |
| 7262 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7263 | iwl3945_reset_qos(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7264 | |
Abhijeet Kolekar | dc4b1e7 | 2008-09-03 11:26:30 +0800 | [diff] [blame] | 7265 | iwl3945_post_associate(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7266 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7267 | |
| 7268 | return 0; |
| 7269 | } |
| 7270 | |
| 7271 | /***************************************************************************** |
| 7272 | * |
| 7273 | * sysfs attributes |
| 7274 | * |
| 7275 | *****************************************************************************/ |
| 7276 | |
Christoph Hellwig | c8b0e6e | 2007-10-25 17:15:51 +0800 | [diff] [blame] | 7277 | #ifdef CONFIG_IWL3945_DEBUG |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7278 | |
| 7279 | /* |
| 7280 | * The following adds a new attribute to the sysfs representation |
| 7281 | * of this device driver (i.e. a new file in /sys/bus/pci/drivers/iwl/) |
| 7282 | * used for controlling the debug level. |
| 7283 | * |
| 7284 | * See the level definitions in iwl for details. |
| 7285 | */ |
| 7286 | |
| 7287 | static ssize_t show_debug_level(struct device_driver *d, char *buf) |
| 7288 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7289 | return sprintf(buf, "0x%08X\n", iwl3945_debug_level); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7290 | } |
| 7291 | static ssize_t store_debug_level(struct device_driver *d, |
| 7292 | const char *buf, size_t count) |
| 7293 | { |
| 7294 | char *p = (char *)buf; |
| 7295 | u32 val; |
| 7296 | |
| 7297 | val = simple_strtoul(p, &p, 0); |
| 7298 | if (p == buf) |
| 7299 | printk(KERN_INFO DRV_NAME |
| 7300 | ": %s is not in hex or decimal form.\n", buf); |
| 7301 | else |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7302 | iwl3945_debug_level = val; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7303 | |
| 7304 | return strnlen(buf, count); |
| 7305 | } |
| 7306 | |
| 7307 | static DRIVER_ATTR(debug_level, S_IWUSR | S_IRUGO, |
| 7308 | show_debug_level, store_debug_level); |
| 7309 | |
Christoph Hellwig | c8b0e6e | 2007-10-25 17:15:51 +0800 | [diff] [blame] | 7310 | #endif /* CONFIG_IWL3945_DEBUG */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7311 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7312 | static ssize_t show_temperature(struct device *d, |
| 7313 | struct device_attribute *attr, char *buf) |
| 7314 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7315 | struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7316 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7317 | if (!iwl3945_is_alive(priv)) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7318 | return -EAGAIN; |
| 7319 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7320 | return sprintf(buf, "%d\n", iwl3945_hw_get_temperature(priv)); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7321 | } |
| 7322 | |
| 7323 | static DEVICE_ATTR(temperature, S_IRUGO, show_temperature, NULL); |
| 7324 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7325 | static ssize_t show_tx_power(struct device *d, |
| 7326 | struct device_attribute *attr, char *buf) |
| 7327 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7328 | struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7329 | return sprintf(buf, "%d\n", priv->user_txpower_limit); |
| 7330 | } |
| 7331 | |
| 7332 | static ssize_t store_tx_power(struct device *d, |
| 7333 | struct device_attribute *attr, |
| 7334 | const char *buf, size_t count) |
| 7335 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7336 | struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7337 | char *p = (char *)buf; |
| 7338 | u32 val; |
| 7339 | |
| 7340 | val = simple_strtoul(p, &p, 10); |
| 7341 | if (p == buf) |
| 7342 | printk(KERN_INFO DRV_NAME |
| 7343 | ": %s is not in decimal form.\n", buf); |
| 7344 | else |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7345 | iwl3945_hw_reg_set_txpower(priv, val); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7346 | |
| 7347 | return count; |
| 7348 | } |
| 7349 | |
| 7350 | static DEVICE_ATTR(tx_power, S_IWUSR | S_IRUGO, show_tx_power, store_tx_power); |
| 7351 | |
| 7352 | static ssize_t show_flags(struct device *d, |
| 7353 | struct device_attribute *attr, char *buf) |
| 7354 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7355 | struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7356 | |
| 7357 | return sprintf(buf, "0x%04X\n", priv->active_rxon.flags); |
| 7358 | } |
| 7359 | |
| 7360 | static ssize_t store_flags(struct device *d, |
| 7361 | struct device_attribute *attr, |
| 7362 | const char *buf, size_t count) |
| 7363 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7364 | struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7365 | u32 flags = simple_strtoul(buf, NULL, 0); |
| 7366 | |
| 7367 | mutex_lock(&priv->mutex); |
| 7368 | if (le32_to_cpu(priv->staging_rxon.flags) != flags) { |
| 7369 | /* Cancel any currently running scans... */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7370 | if (iwl3945_scan_cancel_timeout(priv, 100)) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7371 | IWL_WARNING("Could not cancel scan.\n"); |
| 7372 | else { |
| 7373 | IWL_DEBUG_INFO("Committing rxon.flags = 0x%04X\n", |
| 7374 | flags); |
| 7375 | priv->staging_rxon.flags = cpu_to_le32(flags); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7376 | iwl3945_commit_rxon(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7377 | } |
| 7378 | } |
| 7379 | mutex_unlock(&priv->mutex); |
| 7380 | |
| 7381 | return count; |
| 7382 | } |
| 7383 | |
| 7384 | static DEVICE_ATTR(flags, S_IWUSR | S_IRUGO, show_flags, store_flags); |
| 7385 | |
| 7386 | static ssize_t show_filter_flags(struct device *d, |
| 7387 | struct device_attribute *attr, char *buf) |
| 7388 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7389 | struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7390 | |
| 7391 | return sprintf(buf, "0x%04X\n", |
| 7392 | le32_to_cpu(priv->active_rxon.filter_flags)); |
| 7393 | } |
| 7394 | |
| 7395 | static ssize_t store_filter_flags(struct device *d, |
| 7396 | struct device_attribute *attr, |
| 7397 | const char *buf, size_t count) |
| 7398 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7399 | struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7400 | u32 filter_flags = simple_strtoul(buf, NULL, 0); |
| 7401 | |
| 7402 | mutex_lock(&priv->mutex); |
| 7403 | if (le32_to_cpu(priv->staging_rxon.filter_flags) != filter_flags) { |
| 7404 | /* Cancel any currently running scans... */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7405 | if (iwl3945_scan_cancel_timeout(priv, 100)) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7406 | IWL_WARNING("Could not cancel scan.\n"); |
| 7407 | else { |
| 7408 | IWL_DEBUG_INFO("Committing rxon.filter_flags = " |
| 7409 | "0x%04X\n", filter_flags); |
| 7410 | priv->staging_rxon.filter_flags = |
| 7411 | cpu_to_le32(filter_flags); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7412 | iwl3945_commit_rxon(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7413 | } |
| 7414 | } |
| 7415 | mutex_unlock(&priv->mutex); |
| 7416 | |
| 7417 | return count; |
| 7418 | } |
| 7419 | |
| 7420 | static DEVICE_ATTR(filter_flags, S_IWUSR | S_IRUGO, show_filter_flags, |
| 7421 | store_filter_flags); |
| 7422 | |
Christoph Hellwig | c8b0e6e | 2007-10-25 17:15:51 +0800 | [diff] [blame] | 7423 | #ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7424 | |
| 7425 | static ssize_t show_measurement(struct device *d, |
| 7426 | struct device_attribute *attr, char *buf) |
| 7427 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7428 | struct iwl3945_priv *priv = dev_get_drvdata(d); |
| 7429 | struct iwl3945_spectrum_notification measure_report; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7430 | u32 size = sizeof(measure_report), len = 0, ofs = 0; |
Tomas Winkler | 3ac7f14 | 2008-07-21 02:40:14 +0300 | [diff] [blame] | 7431 | u8 *data = (u8 *)&measure_report; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7432 | unsigned long flags; |
| 7433 | |
| 7434 | spin_lock_irqsave(&priv->lock, flags); |
| 7435 | if (!(priv->measurement_status & MEASUREMENT_READY)) { |
| 7436 | spin_unlock_irqrestore(&priv->lock, flags); |
| 7437 | return 0; |
| 7438 | } |
| 7439 | memcpy(&measure_report, &priv->measure_report, size); |
| 7440 | priv->measurement_status = 0; |
| 7441 | spin_unlock_irqrestore(&priv->lock, flags); |
| 7442 | |
| 7443 | while (size && (PAGE_SIZE - len)) { |
| 7444 | hex_dump_to_buffer(data + ofs, size, 16, 1, buf + len, |
| 7445 | PAGE_SIZE - len, 1); |
| 7446 | len = strlen(buf); |
| 7447 | if (PAGE_SIZE - len) |
| 7448 | buf[len++] = '\n'; |
| 7449 | |
| 7450 | ofs += 16; |
| 7451 | size -= min(size, 16U); |
| 7452 | } |
| 7453 | |
| 7454 | return len; |
| 7455 | } |
| 7456 | |
| 7457 | static ssize_t store_measurement(struct device *d, |
| 7458 | struct device_attribute *attr, |
| 7459 | const char *buf, size_t count) |
| 7460 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7461 | struct iwl3945_priv *priv = dev_get_drvdata(d); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7462 | struct ieee80211_measurement_params params = { |
| 7463 | .channel = le16_to_cpu(priv->active_rxon.channel), |
| 7464 | .start_time = cpu_to_le64(priv->last_tsf), |
| 7465 | .duration = cpu_to_le16(1), |
| 7466 | }; |
| 7467 | u8 type = IWL_MEASURE_BASIC; |
| 7468 | u8 buffer[32]; |
| 7469 | u8 channel; |
| 7470 | |
| 7471 | if (count) { |
| 7472 | char *p = buffer; |
| 7473 | strncpy(buffer, buf, min(sizeof(buffer), count)); |
| 7474 | channel = simple_strtoul(p, NULL, 0); |
| 7475 | if (channel) |
| 7476 | params.channel = channel; |
| 7477 | |
| 7478 | p = buffer; |
| 7479 | while (*p && *p != ' ') |
| 7480 | p++; |
| 7481 | if (*p) |
| 7482 | type = simple_strtoul(p + 1, NULL, 0); |
| 7483 | } |
| 7484 | |
| 7485 | IWL_DEBUG_INFO("Invoking measurement of type %d on " |
| 7486 | "channel %d (for '%s')\n", type, params.channel, buf); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7487 | iwl3945_get_measurement(priv, ¶ms, type); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7488 | |
| 7489 | return count; |
| 7490 | } |
| 7491 | |
| 7492 | static DEVICE_ATTR(measurement, S_IRUSR | S_IWUSR, |
| 7493 | show_measurement, store_measurement); |
Christoph Hellwig | c8b0e6e | 2007-10-25 17:15:51 +0800 | [diff] [blame] | 7494 | #endif /* CONFIG_IWL3945_SPECTRUM_MEASUREMENT */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7495 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7496 | static ssize_t store_retry_rate(struct device *d, |
| 7497 | struct device_attribute *attr, |
| 7498 | const char *buf, size_t count) |
| 7499 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7500 | struct iwl3945_priv *priv = dev_get_drvdata(d); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7501 | |
| 7502 | priv->retry_rate = simple_strtoul(buf, NULL, 0); |
| 7503 | if (priv->retry_rate <= 0) |
| 7504 | priv->retry_rate = 1; |
| 7505 | |
| 7506 | return count; |
| 7507 | } |
| 7508 | |
| 7509 | static ssize_t show_retry_rate(struct device *d, |
| 7510 | struct device_attribute *attr, char *buf) |
| 7511 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7512 | struct iwl3945_priv *priv = dev_get_drvdata(d); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7513 | return sprintf(buf, "%d", priv->retry_rate); |
| 7514 | } |
| 7515 | |
| 7516 | static DEVICE_ATTR(retry_rate, S_IWUSR | S_IRUSR, show_retry_rate, |
| 7517 | store_retry_rate); |
| 7518 | |
| 7519 | static ssize_t store_power_level(struct device *d, |
| 7520 | struct device_attribute *attr, |
| 7521 | const char *buf, size_t count) |
| 7522 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7523 | struct iwl3945_priv *priv = dev_get_drvdata(d); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7524 | int rc; |
| 7525 | int mode; |
| 7526 | |
| 7527 | mode = simple_strtoul(buf, NULL, 0); |
| 7528 | mutex_lock(&priv->mutex); |
| 7529 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7530 | if (!iwl3945_is_ready(priv)) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7531 | rc = -EAGAIN; |
| 7532 | goto out; |
| 7533 | } |
| 7534 | |
| 7535 | if ((mode < 1) || (mode > IWL_POWER_LIMIT) || (mode == IWL_POWER_AC)) |
| 7536 | mode = IWL_POWER_AC; |
| 7537 | else |
| 7538 | mode |= IWL_POWER_ENABLED; |
| 7539 | |
| 7540 | if (mode != priv->power_mode) { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7541 | rc = iwl3945_send_power_mode(priv, IWL_POWER_LEVEL(mode)); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7542 | if (rc) { |
| 7543 | IWL_DEBUG_MAC80211("failed setting power mode.\n"); |
| 7544 | goto out; |
| 7545 | } |
| 7546 | priv->power_mode = mode; |
| 7547 | } |
| 7548 | |
| 7549 | rc = count; |
| 7550 | |
| 7551 | out: |
| 7552 | mutex_unlock(&priv->mutex); |
| 7553 | return rc; |
| 7554 | } |
| 7555 | |
| 7556 | #define MAX_WX_STRING 80 |
| 7557 | |
| 7558 | /* Values are in microsecond */ |
| 7559 | static const s32 timeout_duration[] = { |
| 7560 | 350000, |
| 7561 | 250000, |
| 7562 | 75000, |
| 7563 | 37000, |
| 7564 | 25000, |
| 7565 | }; |
| 7566 | static const s32 period_duration[] = { |
| 7567 | 400000, |
| 7568 | 700000, |
| 7569 | 1000000, |
| 7570 | 1000000, |
| 7571 | 1000000 |
| 7572 | }; |
| 7573 | |
| 7574 | static ssize_t show_power_level(struct device *d, |
| 7575 | struct device_attribute *attr, char *buf) |
| 7576 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7577 | struct iwl3945_priv *priv = dev_get_drvdata(d); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7578 | int level = IWL_POWER_LEVEL(priv->power_mode); |
| 7579 | char *p = buf; |
| 7580 | |
| 7581 | p += sprintf(p, "%d ", level); |
| 7582 | switch (level) { |
| 7583 | case IWL_POWER_MODE_CAM: |
| 7584 | case IWL_POWER_AC: |
| 7585 | p += sprintf(p, "(AC)"); |
| 7586 | break; |
| 7587 | case IWL_POWER_BATTERY: |
| 7588 | p += sprintf(p, "(BATTERY)"); |
| 7589 | break; |
| 7590 | default: |
| 7591 | p += sprintf(p, |
| 7592 | "(Timeout %dms, Period %dms)", |
| 7593 | timeout_duration[level - 1] / 1000, |
| 7594 | period_duration[level - 1] / 1000); |
| 7595 | } |
| 7596 | |
| 7597 | if (!(priv->power_mode & IWL_POWER_ENABLED)) |
| 7598 | p += sprintf(p, " OFF\n"); |
| 7599 | else |
| 7600 | p += sprintf(p, " \n"); |
| 7601 | |
Tomas Winkler | 3ac7f14 | 2008-07-21 02:40:14 +0300 | [diff] [blame] | 7602 | return p - buf + 1; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7603 | |
| 7604 | } |
| 7605 | |
| 7606 | static DEVICE_ATTR(power_level, S_IWUSR | S_IRUSR, show_power_level, |
| 7607 | store_power_level); |
| 7608 | |
| 7609 | static ssize_t show_channels(struct device *d, |
| 7610 | struct device_attribute *attr, char *buf) |
| 7611 | { |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 7612 | /* all this shit doesn't belong into sysfs anyway */ |
| 7613 | return 0; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7614 | } |
| 7615 | |
| 7616 | static DEVICE_ATTR(channels, S_IRUSR, show_channels, NULL); |
| 7617 | |
| 7618 | static ssize_t show_statistics(struct device *d, |
| 7619 | struct device_attribute *attr, char *buf) |
| 7620 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7621 | struct iwl3945_priv *priv = dev_get_drvdata(d); |
| 7622 | u32 size = sizeof(struct iwl3945_notif_statistics); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7623 | u32 len = 0, ofs = 0; |
Tomas Winkler | 3ac7f14 | 2008-07-21 02:40:14 +0300 | [diff] [blame] | 7624 | u8 *data = (u8 *)&priv->statistics; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7625 | int rc = 0; |
| 7626 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7627 | if (!iwl3945_is_alive(priv)) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7628 | return -EAGAIN; |
| 7629 | |
| 7630 | mutex_lock(&priv->mutex); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7631 | rc = iwl3945_send_statistics_request(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7632 | mutex_unlock(&priv->mutex); |
| 7633 | |
| 7634 | if (rc) { |
| 7635 | len = sprintf(buf, |
| 7636 | "Error sending statistics request: 0x%08X\n", rc); |
| 7637 | return len; |
| 7638 | } |
| 7639 | |
| 7640 | while (size && (PAGE_SIZE - len)) { |
| 7641 | hex_dump_to_buffer(data + ofs, size, 16, 1, buf + len, |
| 7642 | PAGE_SIZE - len, 1); |
| 7643 | len = strlen(buf); |
| 7644 | if (PAGE_SIZE - len) |
| 7645 | buf[len++] = '\n'; |
| 7646 | |
| 7647 | ofs += 16; |
| 7648 | size -= min(size, 16U); |
| 7649 | } |
| 7650 | |
| 7651 | return len; |
| 7652 | } |
| 7653 | |
| 7654 | static DEVICE_ATTR(statistics, S_IRUGO, show_statistics, NULL); |
| 7655 | |
| 7656 | static ssize_t show_antenna(struct device *d, |
| 7657 | struct device_attribute *attr, char *buf) |
| 7658 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7659 | struct iwl3945_priv *priv = dev_get_drvdata(d); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7660 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7661 | if (!iwl3945_is_alive(priv)) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7662 | return -EAGAIN; |
| 7663 | |
| 7664 | return sprintf(buf, "%d\n", priv->antenna); |
| 7665 | } |
| 7666 | |
| 7667 | static ssize_t store_antenna(struct device *d, |
| 7668 | struct device_attribute *attr, |
| 7669 | const char *buf, size_t count) |
| 7670 | { |
| 7671 | int ant; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7672 | struct iwl3945_priv *priv = dev_get_drvdata(d); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7673 | |
| 7674 | if (count == 0) |
| 7675 | return 0; |
| 7676 | |
| 7677 | if (sscanf(buf, "%1i", &ant) != 1) { |
| 7678 | IWL_DEBUG_INFO("not in hex or decimal form.\n"); |
| 7679 | return count; |
| 7680 | } |
| 7681 | |
| 7682 | if ((ant >= 0) && (ant <= 2)) { |
| 7683 | IWL_DEBUG_INFO("Setting antenna select to %d.\n", ant); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7684 | priv->antenna = (enum iwl3945_antenna)ant; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7685 | } else |
| 7686 | IWL_DEBUG_INFO("Bad antenna select value %d.\n", ant); |
| 7687 | |
| 7688 | |
| 7689 | return count; |
| 7690 | } |
| 7691 | |
| 7692 | static DEVICE_ATTR(antenna, S_IWUSR | S_IRUGO, show_antenna, store_antenna); |
| 7693 | |
| 7694 | static ssize_t show_status(struct device *d, |
| 7695 | struct device_attribute *attr, char *buf) |
| 7696 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7697 | struct iwl3945_priv *priv = (struct iwl3945_priv *)d->driver_data; |
| 7698 | if (!iwl3945_is_alive(priv)) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7699 | return -EAGAIN; |
| 7700 | return sprintf(buf, "0x%08x\n", (int)priv->status); |
| 7701 | } |
| 7702 | |
| 7703 | static DEVICE_ATTR(status, S_IRUGO, show_status, NULL); |
| 7704 | |
| 7705 | static ssize_t dump_error_log(struct device *d, |
| 7706 | struct device_attribute *attr, |
| 7707 | const char *buf, size_t count) |
| 7708 | { |
| 7709 | char *p = (char *)buf; |
| 7710 | |
| 7711 | if (p[0] == '1') |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7712 | iwl3945_dump_nic_error_log((struct iwl3945_priv *)d->driver_data); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7713 | |
| 7714 | return strnlen(buf, count); |
| 7715 | } |
| 7716 | |
| 7717 | static DEVICE_ATTR(dump_errors, S_IWUSR, NULL, dump_error_log); |
| 7718 | |
| 7719 | static ssize_t dump_event_log(struct device *d, |
| 7720 | struct device_attribute *attr, |
| 7721 | const char *buf, size_t count) |
| 7722 | { |
| 7723 | char *p = (char *)buf; |
| 7724 | |
| 7725 | if (p[0] == '1') |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7726 | iwl3945_dump_nic_event_log((struct iwl3945_priv *)d->driver_data); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7727 | |
| 7728 | return strnlen(buf, count); |
| 7729 | } |
| 7730 | |
| 7731 | static DEVICE_ATTR(dump_events, S_IWUSR, NULL, dump_event_log); |
| 7732 | |
| 7733 | /***************************************************************************** |
| 7734 | * |
Tomas Winkler | a96a27f | 2008-10-23 23:48:56 -0700 | [diff] [blame] | 7735 | * driver setup and tear down |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7736 | * |
| 7737 | *****************************************************************************/ |
| 7738 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7739 | static void iwl3945_setup_deferred_work(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7740 | { |
| 7741 | priv->workqueue = create_workqueue(DRV_NAME); |
| 7742 | |
| 7743 | init_waitqueue_head(&priv->wait_command_queue); |
| 7744 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7745 | INIT_WORK(&priv->up, iwl3945_bg_up); |
| 7746 | INIT_WORK(&priv->restart, iwl3945_bg_restart); |
| 7747 | INIT_WORK(&priv->rx_replenish, iwl3945_bg_rx_replenish); |
| 7748 | INIT_WORK(&priv->scan_completed, iwl3945_bg_scan_completed); |
| 7749 | INIT_WORK(&priv->request_scan, iwl3945_bg_request_scan); |
| 7750 | INIT_WORK(&priv->abort_scan, iwl3945_bg_abort_scan); |
| 7751 | INIT_WORK(&priv->rf_kill, iwl3945_bg_rf_kill); |
| 7752 | INIT_WORK(&priv->beacon_update, iwl3945_bg_beacon_update); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7753 | INIT_DELAYED_WORK(&priv->init_alive_start, iwl3945_bg_init_alive_start); |
| 7754 | INIT_DELAYED_WORK(&priv->alive_start, iwl3945_bg_alive_start); |
| 7755 | INIT_DELAYED_WORK(&priv->scan_check, iwl3945_bg_scan_check); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7756 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7757 | iwl3945_hw_setup_deferred_work(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7758 | |
| 7759 | tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long)) |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7760 | iwl3945_irq_tasklet, (unsigned long)priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7761 | } |
| 7762 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7763 | static void iwl3945_cancel_deferred_work(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7764 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7765 | iwl3945_hw_cancel_deferred_work(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7766 | |
Joonwoo Park | e47eb6a | 2007-11-29 10:42:49 +0900 | [diff] [blame] | 7767 | cancel_delayed_work_sync(&priv->init_alive_start); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7768 | cancel_delayed_work(&priv->scan_check); |
| 7769 | cancel_delayed_work(&priv->alive_start); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7770 | cancel_work_sync(&priv->beacon_update); |
| 7771 | } |
| 7772 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7773 | static struct attribute *iwl3945_sysfs_entries[] = { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7774 | &dev_attr_antenna.attr, |
| 7775 | &dev_attr_channels.attr, |
| 7776 | &dev_attr_dump_errors.attr, |
| 7777 | &dev_attr_dump_events.attr, |
| 7778 | &dev_attr_flags.attr, |
| 7779 | &dev_attr_filter_flags.attr, |
Christoph Hellwig | c8b0e6e | 2007-10-25 17:15:51 +0800 | [diff] [blame] | 7780 | #ifdef CONFIG_IWL3945_SPECTRUM_MEASUREMENT |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7781 | &dev_attr_measurement.attr, |
| 7782 | #endif |
| 7783 | &dev_attr_power_level.attr, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7784 | &dev_attr_retry_rate.attr, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7785 | &dev_attr_statistics.attr, |
| 7786 | &dev_attr_status.attr, |
| 7787 | &dev_attr_temperature.attr, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7788 | &dev_attr_tx_power.attr, |
| 7789 | |
| 7790 | NULL |
| 7791 | }; |
| 7792 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7793 | static struct attribute_group iwl3945_attribute_group = { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7794 | .name = NULL, /* put in device directory */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7795 | .attrs = iwl3945_sysfs_entries, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7796 | }; |
| 7797 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7798 | static struct ieee80211_ops iwl3945_hw_ops = { |
| 7799 | .tx = iwl3945_mac_tx, |
| 7800 | .start = iwl3945_mac_start, |
| 7801 | .stop = iwl3945_mac_stop, |
| 7802 | .add_interface = iwl3945_mac_add_interface, |
| 7803 | .remove_interface = iwl3945_mac_remove_interface, |
| 7804 | .config = iwl3945_mac_config, |
| 7805 | .config_interface = iwl3945_mac_config_interface, |
| 7806 | .configure_filter = iwl3945_configure_filter, |
| 7807 | .set_key = iwl3945_mac_set_key, |
| 7808 | .get_stats = iwl3945_mac_get_stats, |
| 7809 | .get_tx_stats = iwl3945_mac_get_tx_stats, |
| 7810 | .conf_tx = iwl3945_mac_conf_tx, |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7811 | .reset_tsf = iwl3945_mac_reset_tsf, |
Abhijeet Kolekar | cd56d33 | 2008-09-03 11:26:21 +0800 | [diff] [blame] | 7812 | .bss_info_changed = iwl3945_bss_info_changed, |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7813 | .hw_scan = iwl3945_mac_hw_scan |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7814 | }; |
| 7815 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7816 | static int iwl3945_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7817 | { |
| 7818 | int err = 0; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7819 | struct iwl3945_priv *priv; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7820 | struct ieee80211_hw *hw; |
Tomas Winkler | 82b9a12 | 2008-03-04 18:09:30 -0800 | [diff] [blame] | 7821 | struct iwl_3945_cfg *cfg = (struct iwl_3945_cfg *)(ent->driver_data); |
Mohamed Abbas | 0359fac | 2008-03-28 16:21:08 -0700 | [diff] [blame] | 7822 | unsigned long flags; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7823 | |
Kolekar, Abhijeet | cee53dd | 2008-11-12 13:14:04 -0800 | [diff] [blame] | 7824 | /*********************** |
| 7825 | * 1. Allocating HW data |
| 7826 | * ********************/ |
| 7827 | |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 7828 | /* Disabling hardware scan means that mac80211 will perform scans |
| 7829 | * "the hard way", rather than using device's scan. */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7830 | if (iwl3945_param_disable_hw_scan) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7831 | IWL_DEBUG_INFO("Disabling hw_scan\n"); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7832 | iwl3945_hw_ops.hw_scan = NULL; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7833 | } |
| 7834 | |
Ron Rindjunsky | dfe7d45 | 2008-04-15 16:01:45 -0700 | [diff] [blame] | 7835 | if ((iwl3945_param_queues_num > IWL39_MAX_NUM_QUEUES) || |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7836 | (iwl3945_param_queues_num < IWL_MIN_NUM_QUEUES)) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7837 | IWL_ERROR("invalid queues_num, should be between %d and %d\n", |
Ron Rindjunsky | dfe7d45 | 2008-04-15 16:01:45 -0700 | [diff] [blame] | 7838 | IWL_MIN_NUM_QUEUES, IWL39_MAX_NUM_QUEUES); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7839 | err = -EINVAL; |
| 7840 | goto out; |
| 7841 | } |
| 7842 | |
| 7843 | /* mac80211 allocates memory for this device instance, including |
| 7844 | * space for this driver's private structure */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7845 | hw = ieee80211_alloc_hw(sizeof(struct iwl3945_priv), &iwl3945_hw_ops); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7846 | if (hw == NULL) { |
| 7847 | IWL_ERROR("Can not allocate network device\n"); |
| 7848 | err = -ENOMEM; |
| 7849 | goto out; |
| 7850 | } |
Kolekar, Abhijeet | cee53dd | 2008-11-12 13:14:04 -0800 | [diff] [blame] | 7851 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7852 | SET_IEEE80211_DEV(hw, &pdev->dev); |
| 7853 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7854 | priv = hw->priv; |
| 7855 | priv->hw = hw; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7856 | priv->pci_dev = pdev; |
Tomas Winkler | 82b9a12 | 2008-03-04 18:09:30 -0800 | [diff] [blame] | 7857 | priv->cfg = cfg; |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 7858 | |
Kolekar, Abhijeet | cee53dd | 2008-11-12 13:14:04 -0800 | [diff] [blame] | 7859 | IWL_DEBUG_INFO("*** LOAD DRIVER ***\n"); |
| 7860 | hw->rate_control_algorithm = "iwl-3945-rs"; |
| 7861 | hw->sta_data_size = sizeof(struct iwl3945_sta_priv); |
| 7862 | |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 7863 | /* Select antenna (may be helpful if only one antenna is connected) */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7864 | priv->antenna = (enum iwl3945_antenna)iwl3945_param_antenna; |
Christoph Hellwig | c8b0e6e | 2007-10-25 17:15:51 +0800 | [diff] [blame] | 7865 | #ifdef CONFIG_IWL3945_DEBUG |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 7866 | iwl3945_debug_level = iwl3945_param_debug; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7867 | atomic_set(&priv->restrict_refcnt, 0); |
| 7868 | #endif |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7869 | |
Bruno Randolf | 566bfe5 | 2008-05-08 19:15:40 +0200 | [diff] [blame] | 7870 | /* Tell mac80211 our characteristics */ |
Johannes Berg | 605a0bd | 2008-07-15 10:10:01 +0200 | [diff] [blame] | 7871 | hw->flags = IEEE80211_HW_SIGNAL_DBM | |
Bruno Randolf | 566bfe5 | 2008-05-08 19:15:40 +0200 | [diff] [blame] | 7872 | IEEE80211_HW_NOISE_DBM; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7873 | |
Luis R. Rodriguez | f59ac04 | 2008-08-29 16:26:43 -0700 | [diff] [blame] | 7874 | hw->wiphy->interface_modes = |
Luis R. Rodriguez | f59ac04 | 2008-08-29 16:26:43 -0700 | [diff] [blame] | 7875 | BIT(NL80211_IFTYPE_STATION) | |
| 7876 | BIT(NL80211_IFTYPE_ADHOC); |
| 7877 | |
Luis R. Rodriguez | ea4a82dc | 2008-11-12 14:22:04 -0800 | [diff] [blame] | 7878 | hw->wiphy->fw_handles_regulatory = true; |
| 7879 | |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 7880 | /* 4 EDCA QOS priorities */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7881 | hw->queues = 4; |
| 7882 | |
Kolekar, Abhijeet | cee53dd | 2008-11-12 13:14:04 -0800 | [diff] [blame] | 7883 | /*************************** |
| 7884 | * 2. Initializing PCI bus |
| 7885 | * *************************/ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7886 | if (pci_enable_device(pdev)) { |
| 7887 | err = -ENODEV; |
| 7888 | goto out_ieee80211_free_hw; |
| 7889 | } |
| 7890 | |
| 7891 | pci_set_master(pdev); |
| 7892 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7893 | err = pci_set_dma_mask(pdev, DMA_32BIT_MASK); |
| 7894 | if (!err) |
| 7895 | err = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK); |
| 7896 | if (err) { |
| 7897 | printk(KERN_WARNING DRV_NAME ": No suitable DMA available.\n"); |
| 7898 | goto out_pci_disable_device; |
| 7899 | } |
| 7900 | |
| 7901 | pci_set_drvdata(pdev, priv); |
| 7902 | err = pci_request_regions(pdev, DRV_NAME); |
| 7903 | if (err) |
| 7904 | goto out_pci_disable_device; |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 7905 | |
Kolekar, Abhijeet | cee53dd | 2008-11-12 13:14:04 -0800 | [diff] [blame] | 7906 | /*********************** |
| 7907 | * 3. Read REV Register |
| 7908 | * ********************/ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7909 | priv->hw_base = pci_iomap(pdev, 0, 0); |
| 7910 | if (!priv->hw_base) { |
| 7911 | err = -ENODEV; |
| 7912 | goto out_pci_release_regions; |
| 7913 | } |
| 7914 | |
| 7915 | IWL_DEBUG_INFO("pci_resource_len = 0x%08llx\n", |
| 7916 | (unsigned long long) pci_resource_len(pdev, 0)); |
| 7917 | IWL_DEBUG_INFO("pci_resource_base = %p\n", priv->hw_base); |
| 7918 | |
Kolekar, Abhijeet | cee53dd | 2008-11-12 13:14:04 -0800 | [diff] [blame] | 7919 | /* We disable the RETRY_TIMEOUT register (0x41) to keep |
| 7920 | * PCI Tx retries from interfering with C3 CPU state */ |
| 7921 | pci_write_config_byte(pdev, 0x41, 0x00); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7922 | |
Zhu Yi | 5a66926 | 2008-01-14 17:46:18 -0800 | [diff] [blame] | 7923 | /* nic init */ |
| 7924 | iwl3945_set_bit(priv, CSR_GIO_CHICKEN_BITS, |
Tomas Winkler | 3ac7f14 | 2008-07-21 02:40:14 +0300 | [diff] [blame] | 7925 | CSR_GIO_CHICKEN_BITS_REG_BIT_DIS_L0S_EXIT_TIMER); |
Zhu Yi | 5a66926 | 2008-01-14 17:46:18 -0800 | [diff] [blame] | 7926 | |
Tomas Winkler | 3ac7f14 | 2008-07-21 02:40:14 +0300 | [diff] [blame] | 7927 | iwl3945_set_bit(priv, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_INIT_DONE); |
| 7928 | err = iwl3945_poll_bit(priv, CSR_GP_CNTRL, |
| 7929 | CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY, |
| 7930 | CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY, 25000); |
| 7931 | if (err < 0) { |
| 7932 | IWL_DEBUG_INFO("Failed to init the card\n"); |
Zhu Yi | 5a66926 | 2008-01-14 17:46:18 -0800 | [diff] [blame] | 7933 | goto out_remove_sysfs; |
Tomas Winkler | 3ac7f14 | 2008-07-21 02:40:14 +0300 | [diff] [blame] | 7934 | } |
Kolekar, Abhijeet | cee53dd | 2008-11-12 13:14:04 -0800 | [diff] [blame] | 7935 | |
| 7936 | /*********************** |
| 7937 | * 4. Read EEPROM |
| 7938 | * ********************/ |
Zhu Yi | 5a66926 | 2008-01-14 17:46:18 -0800 | [diff] [blame] | 7939 | /* Read the EEPROM */ |
| 7940 | err = iwl3945_eeprom_init(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 7941 | if (err) { |
Zhu Yi | 5a66926 | 2008-01-14 17:46:18 -0800 | [diff] [blame] | 7942 | IWL_ERROR("Unable to init EEPROM\n"); |
| 7943 | goto out_remove_sysfs; |
| 7944 | } |
| 7945 | /* MAC Address location in EEPROM same for 3945/4965 */ |
| 7946 | get_eeprom_mac(priv, priv->mac_addr); |
Johannes Berg | e174961 | 2008-10-27 15:59:26 -0700 | [diff] [blame] | 7947 | IWL_DEBUG_INFO("MAC address: %pM\n", priv->mac_addr); |
Zhu Yi | 5a66926 | 2008-01-14 17:46:18 -0800 | [diff] [blame] | 7948 | SET_IEEE80211_PERM_ADDR(priv->hw, priv->mac_addr); |
| 7949 | |
Kolekar, Abhijeet | cee53dd | 2008-11-12 13:14:04 -0800 | [diff] [blame] | 7950 | /*********************** |
| 7951 | * 5. Setup HW Constants |
| 7952 | * ********************/ |
| 7953 | /* Device-specific setup */ |
| 7954 | if (iwl3945_hw_set_hw_setting(priv)) { |
| 7955 | IWL_ERROR("failed to set hw settings\n"); |
| 7956 | goto out_iounmap; |
| 7957 | } |
| 7958 | |
| 7959 | /*********************** |
| 7960 | * 6. Setup priv |
| 7961 | * ********************/ |
| 7962 | priv->retry_rate = 1; |
| 7963 | priv->ibss_beacon = NULL; |
| 7964 | |
| 7965 | spin_lock_init(&priv->lock); |
| 7966 | spin_lock_init(&priv->power_data.lock); |
| 7967 | spin_lock_init(&priv->sta_lock); |
| 7968 | spin_lock_init(&priv->hcmd_lock); |
| 7969 | |
| 7970 | INIT_LIST_HEAD(&priv->free_frames); |
| 7971 | mutex_init(&priv->mutex); |
| 7972 | |
| 7973 | /* Clear the driver's (not device's) station table */ |
| 7974 | iwl3945_clear_stations_table(priv); |
| 7975 | |
| 7976 | priv->data_retry_limit = -1; |
| 7977 | priv->ieee_channels = NULL; |
| 7978 | priv->ieee_rates = NULL; |
| 7979 | priv->band = IEEE80211_BAND_2GHZ; |
| 7980 | |
| 7981 | priv->iw_mode = NL80211_IFTYPE_STATION; |
| 7982 | |
| 7983 | if (iwl3945_param_qos_enable) |
| 7984 | priv->qos_data.qos_enable = 1; |
| 7985 | |
| 7986 | iwl3945_reset_qos(priv); |
| 7987 | |
| 7988 | priv->qos_data.qos_active = 0; |
| 7989 | priv->qos_data.qos_cap.val = 0; |
| 7990 | |
| 7991 | |
| 7992 | priv->rates_mask = IWL_RATES_MASK; |
| 7993 | /* If power management is turned on, default to AC mode */ |
| 7994 | priv->power_mode = IWL_POWER_AC; |
| 7995 | priv->user_txpower_limit = IWL_DEFAULT_TX_POWER; |
| 7996 | |
Reinette Chatre | 849e0dc | 2008-01-23 10:15:18 -0800 | [diff] [blame] | 7997 | err = iwl3945_init_channel_map(priv); |
| 7998 | if (err) { |
| 7999 | IWL_ERROR("initializing regulatory failed: %d\n", err); |
Kolekar, Abhijeet | cee53dd | 2008-11-12 13:14:04 -0800 | [diff] [blame] | 8000 | goto out_release_irq; |
Reinette Chatre | 849e0dc | 2008-01-23 10:15:18 -0800 | [diff] [blame] | 8001 | } |
| 8002 | |
| 8003 | err = iwl3945_init_geos(priv); |
| 8004 | if (err) { |
| 8005 | IWL_ERROR("initializing geos failed: %d\n", err); |
| 8006 | goto out_free_channel_map; |
| 8007 | } |
Reinette Chatre | 849e0dc | 2008-01-23 10:15:18 -0800 | [diff] [blame] | 8008 | |
Kolekar, Abhijeet | cee53dd | 2008-11-12 13:14:04 -0800 | [diff] [blame] | 8009 | printk(KERN_INFO DRV_NAME |
| 8010 | ": Detected Intel Wireless WiFi Link %s\n", priv->cfg->name); |
| 8011 | |
| 8012 | /*********************************** |
| 8013 | * 7. Initialize Module Parameters |
| 8014 | * **********************************/ |
| 8015 | |
| 8016 | /* Initialize module parameter values here */ |
| 8017 | /* Disable radio (SW RF KILL) via parameter when loading driver */ |
| 8018 | if (iwl3945_param_disable) { |
| 8019 | set_bit(STATUS_RF_KILL_SW, &priv->status); |
| 8020 | IWL_DEBUG_INFO("Radio disabled.\n"); |
| 8021 | } |
| 8022 | |
| 8023 | |
| 8024 | /*********************** |
| 8025 | * 8. Setup Services |
| 8026 | * ********************/ |
| 8027 | |
| 8028 | spin_lock_irqsave(&priv->lock, flags); |
| 8029 | iwl3945_disable_interrupts(priv); |
| 8030 | spin_unlock_irqrestore(&priv->lock, flags); |
| 8031 | |
| 8032 | err = sysfs_create_group(&pdev->dev.kobj, &iwl3945_attribute_group); |
| 8033 | if (err) { |
| 8034 | IWL_ERROR("failed to create sysfs device attributes\n"); |
| 8035 | goto out_free_geos; |
| 8036 | } |
| 8037 | |
| 8038 | iwl3945_set_rxon_channel(priv, IEEE80211_BAND_2GHZ, 6); |
| 8039 | iwl3945_setup_deferred_work(priv); |
| 8040 | iwl3945_setup_rx_handlers(priv); |
| 8041 | |
| 8042 | /*********************** |
| 8043 | * 9. Conclude |
| 8044 | * ********************/ |
| 8045 | pci_save_state(pdev); |
| 8046 | pci_disable_device(pdev); |
| 8047 | |
| 8048 | /********************************* |
| 8049 | * 10. Setup and Register mac80211 |
| 8050 | * *******************************/ |
| 8051 | |
Zhu Yi | 5a66926 | 2008-01-14 17:46:18 -0800 | [diff] [blame] | 8052 | err = ieee80211_register_hw(priv->hw); |
| 8053 | if (err) { |
| 8054 | IWL_ERROR("Failed to register network device (error %d)\n", err); |
Kolekar, Abhijeet | cee53dd | 2008-11-12 13:14:04 -0800 | [diff] [blame] | 8055 | goto out_remove_sysfs; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 8056 | } |
| 8057 | |
Zhu Yi | 5a66926 | 2008-01-14 17:46:18 -0800 | [diff] [blame] | 8058 | priv->hw->conf.beacon_int = 100; |
| 8059 | priv->mac80211_registered = 1; |
Kolekar, Abhijeet | cee53dd | 2008-11-12 13:14:04 -0800 | [diff] [blame] | 8060 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 8061 | |
Abhijeet Kolekar | ebef200 | 2008-06-30 17:23:18 +0800 | [diff] [blame] | 8062 | err = iwl3945_rfkill_init(priv); |
| 8063 | if (err) |
| 8064 | IWL_ERROR("Unable to initialize RFKILL system. " |
| 8065 | "Ignoring error: %d\n", err); |
| 8066 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 8067 | return 0; |
| 8068 | |
Kolekar, Abhijeet | cee53dd | 2008-11-12 13:14:04 -0800 | [diff] [blame] | 8069 | out_remove_sysfs: |
| 8070 | sysfs_remove_group(&pdev->dev.kobj, &iwl3945_attribute_group); |
Reinette Chatre | 849e0dc | 2008-01-23 10:15:18 -0800 | [diff] [blame] | 8071 | out_free_geos: |
| 8072 | iwl3945_free_geos(priv); |
| 8073 | out_free_channel_map: |
| 8074 | iwl3945_free_channel_map(priv); |
Kolekar, Abhijeet | cee53dd | 2008-11-12 13:14:04 -0800 | [diff] [blame] | 8075 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 8076 | |
| 8077 | out_release_irq: |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 8078 | destroy_workqueue(priv->workqueue); |
| 8079 | priv->workqueue = NULL; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 8080 | iwl3945_unset_hw_setting(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 8081 | |
| 8082 | out_iounmap: |
| 8083 | pci_iounmap(pdev, priv->hw_base); |
| 8084 | out_pci_release_regions: |
| 8085 | pci_release_regions(pdev); |
| 8086 | out_pci_disable_device: |
| 8087 | pci_disable_device(pdev); |
| 8088 | pci_set_drvdata(pdev, NULL); |
| 8089 | out_ieee80211_free_hw: |
| 8090 | ieee80211_free_hw(priv->hw); |
| 8091 | out: |
| 8092 | return err; |
| 8093 | } |
| 8094 | |
Reinette Chatre | c83dbf6 | 2008-03-21 13:53:41 -0700 | [diff] [blame] | 8095 | static void __devexit iwl3945_pci_remove(struct pci_dev *pdev) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 8096 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 8097 | struct iwl3945_priv *priv = pci_get_drvdata(pdev); |
Mohamed Abbas | 0359fac | 2008-03-28 16:21:08 -0700 | [diff] [blame] | 8098 | unsigned long flags; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 8099 | |
| 8100 | if (!priv) |
| 8101 | return; |
| 8102 | |
| 8103 | IWL_DEBUG_INFO("*** UNLOAD DRIVER ***\n"); |
| 8104 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 8105 | set_bit(STATUS_EXIT_PENDING, &priv->status); |
Zhu Yi | b24d22b | 2007-12-19 13:59:52 +0800 | [diff] [blame] | 8106 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 8107 | iwl3945_down(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 8108 | |
Mohamed Abbas | 0359fac | 2008-03-28 16:21:08 -0700 | [diff] [blame] | 8109 | /* make sure we flush any pending irq or |
| 8110 | * tasklet for the driver |
| 8111 | */ |
| 8112 | spin_lock_irqsave(&priv->lock, flags); |
| 8113 | iwl3945_disable_interrupts(priv); |
| 8114 | spin_unlock_irqrestore(&priv->lock, flags); |
| 8115 | |
| 8116 | iwl_synchronize_irq(priv); |
| 8117 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 8118 | sysfs_remove_group(&pdev->dev.kobj, &iwl3945_attribute_group); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 8119 | |
Abhijeet Kolekar | ebef200 | 2008-06-30 17:23:18 +0800 | [diff] [blame] | 8120 | iwl3945_rfkill_unregister(priv); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 8121 | iwl3945_dealloc_ucode_pci(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 8122 | |
| 8123 | if (priv->rxq.bd) |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 8124 | iwl3945_rx_queue_free(priv, &priv->rxq); |
| 8125 | iwl3945_hw_txq_ctx_free(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 8126 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 8127 | iwl3945_unset_hw_setting(priv); |
| 8128 | iwl3945_clear_stations_table(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 8129 | |
Tomas Winkler | 3ac7f14 | 2008-07-21 02:40:14 +0300 | [diff] [blame] | 8130 | if (priv->mac80211_registered) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 8131 | ieee80211_unregister_hw(priv->hw); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 8132 | |
Mohamed Abbas | 6ef89d0 | 2007-10-25 17:15:47 +0800 | [diff] [blame] | 8133 | /*netif_stop_queue(dev); */ |
| 8134 | flush_workqueue(priv->workqueue); |
| 8135 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 8136 | /* ieee80211_unregister_hw calls iwl3945_mac_stop, which flushes |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 8137 | * priv->workqueue... so we can't take down the workqueue |
| 8138 | * until now... */ |
| 8139 | destroy_workqueue(priv->workqueue); |
| 8140 | priv->workqueue = NULL; |
| 8141 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 8142 | pci_iounmap(pdev, priv->hw_base); |
| 8143 | pci_release_regions(pdev); |
| 8144 | pci_disable_device(pdev); |
| 8145 | pci_set_drvdata(pdev, NULL); |
| 8146 | |
Reinette Chatre | 849e0dc | 2008-01-23 10:15:18 -0800 | [diff] [blame] | 8147 | iwl3945_free_channel_map(priv); |
| 8148 | iwl3945_free_geos(priv); |
Emmanuel Grumbach | 261415f | 2008-05-29 16:35:25 +0800 | [diff] [blame] | 8149 | kfree(priv->scan); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 8150 | if (priv->ibss_beacon) |
| 8151 | dev_kfree_skb(priv->ibss_beacon); |
| 8152 | |
| 8153 | ieee80211_free_hw(priv->hw); |
| 8154 | } |
| 8155 | |
| 8156 | #ifdef CONFIG_PM |
| 8157 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 8158 | static int iwl3945_pci_suspend(struct pci_dev *pdev, pm_message_t state) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 8159 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 8160 | struct iwl3945_priv *priv = pci_get_drvdata(pdev); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 8161 | |
Zhu Yi | e655b9f | 2008-01-24 02:19:38 -0800 | [diff] [blame] | 8162 | if (priv->is_open) { |
| 8163 | set_bit(STATUS_IN_SUSPEND, &priv->status); |
| 8164 | iwl3945_mac_stop(priv->hw); |
| 8165 | priv->is_open = 1; |
| 8166 | } |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 8167 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 8168 | pci_set_power_state(pdev, PCI_D3hot); |
| 8169 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 8170 | return 0; |
| 8171 | } |
| 8172 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 8173 | static int iwl3945_pci_resume(struct pci_dev *pdev) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 8174 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 8175 | struct iwl3945_priv *priv = pci_get_drvdata(pdev); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 8176 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 8177 | pci_set_power_state(pdev, PCI_D0); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 8178 | |
Zhu Yi | e655b9f | 2008-01-24 02:19:38 -0800 | [diff] [blame] | 8179 | if (priv->is_open) |
| 8180 | iwl3945_mac_start(priv->hw); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 8181 | |
Zhu Yi | e655b9f | 2008-01-24 02:19:38 -0800 | [diff] [blame] | 8182 | clear_bit(STATUS_IN_SUSPEND, &priv->status); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 8183 | return 0; |
| 8184 | } |
| 8185 | |
| 8186 | #endif /* CONFIG_PM */ |
| 8187 | |
Abhijeet Kolekar | ebef200 | 2008-06-30 17:23:18 +0800 | [diff] [blame] | 8188 | /*************** RFKILL FUNCTIONS **********/ |
Adel Gadllah | 80fcc9e | 2008-07-01 17:49:50 +0200 | [diff] [blame] | 8189 | #ifdef CONFIG_IWL3945_RFKILL |
Abhijeet Kolekar | ebef200 | 2008-06-30 17:23:18 +0800 | [diff] [blame] | 8190 | /* software rf-kill from user */ |
| 8191 | static int iwl3945_rfkill_soft_rf_kill(void *data, enum rfkill_state state) |
| 8192 | { |
| 8193 | struct iwl3945_priv *priv = data; |
| 8194 | int err = 0; |
| 8195 | |
Adel Gadllah | 80fcc9e | 2008-07-01 17:49:50 +0200 | [diff] [blame] | 8196 | if (!priv->rfkill) |
Abhijeet Kolekar | ebef200 | 2008-06-30 17:23:18 +0800 | [diff] [blame] | 8197 | return 0; |
| 8198 | |
| 8199 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) |
| 8200 | return 0; |
| 8201 | |
Tomas Winkler | a96a27f | 2008-10-23 23:48:56 -0700 | [diff] [blame] | 8202 | IWL_DEBUG_RF_KILL("we received soft RFKILL set to state %d\n", state); |
Abhijeet Kolekar | ebef200 | 2008-06-30 17:23:18 +0800 | [diff] [blame] | 8203 | mutex_lock(&priv->mutex); |
| 8204 | |
| 8205 | switch (state) { |
Zhu Yi | acdfe9b | 2008-06-30 17:23:32 +0800 | [diff] [blame] | 8206 | case RFKILL_STATE_UNBLOCKED: |
Adel Gadllah | 80fcc9e | 2008-07-01 17:49:50 +0200 | [diff] [blame] | 8207 | if (iwl3945_is_rfkill_hw(priv)) { |
Abhijeet Kolekar | ebef200 | 2008-06-30 17:23:18 +0800 | [diff] [blame] | 8208 | err = -EBUSY; |
Adel Gadllah | 80fcc9e | 2008-07-01 17:49:50 +0200 | [diff] [blame] | 8209 | goto out_unlock; |
| 8210 | } |
| 8211 | iwl3945_radio_kill_sw(priv, 0); |
Abhijeet Kolekar | ebef200 | 2008-06-30 17:23:18 +0800 | [diff] [blame] | 8212 | break; |
Zhu Yi | acdfe9b | 2008-06-30 17:23:32 +0800 | [diff] [blame] | 8213 | case RFKILL_STATE_SOFT_BLOCKED: |
Abhijeet Kolekar | ebef200 | 2008-06-30 17:23:18 +0800 | [diff] [blame] | 8214 | iwl3945_radio_kill_sw(priv, 1); |
Abhijeet Kolekar | ebef200 | 2008-06-30 17:23:18 +0800 | [diff] [blame] | 8215 | break; |
Zhu Yi | acdfe9b | 2008-06-30 17:23:32 +0800 | [diff] [blame] | 8216 | default: |
Tomas Winkler | a96a27f | 2008-10-23 23:48:56 -0700 | [diff] [blame] | 8217 | IWL_WARNING("we received unexpected RFKILL state %d\n", state); |
Zhu Yi | acdfe9b | 2008-06-30 17:23:32 +0800 | [diff] [blame] | 8218 | break; |
Abhijeet Kolekar | ebef200 | 2008-06-30 17:23:18 +0800 | [diff] [blame] | 8219 | } |
Adel Gadllah | 80fcc9e | 2008-07-01 17:49:50 +0200 | [diff] [blame] | 8220 | out_unlock: |
Abhijeet Kolekar | ebef200 | 2008-06-30 17:23:18 +0800 | [diff] [blame] | 8221 | mutex_unlock(&priv->mutex); |
| 8222 | |
| 8223 | return err; |
| 8224 | } |
| 8225 | |
| 8226 | int iwl3945_rfkill_init(struct iwl3945_priv *priv) |
| 8227 | { |
| 8228 | struct device *device = wiphy_dev(priv->hw->wiphy); |
| 8229 | int ret = 0; |
| 8230 | |
| 8231 | BUG_ON(device == NULL); |
| 8232 | |
| 8233 | IWL_DEBUG_RF_KILL("Initializing RFKILL.\n"); |
Adel Gadllah | 80fcc9e | 2008-07-01 17:49:50 +0200 | [diff] [blame] | 8234 | priv->rfkill = rfkill_allocate(device, RFKILL_TYPE_WLAN); |
| 8235 | if (!priv->rfkill) { |
Abhijeet Kolekar | ebef200 | 2008-06-30 17:23:18 +0800 | [diff] [blame] | 8236 | IWL_ERROR("Unable to allocate rfkill device.\n"); |
| 8237 | ret = -ENOMEM; |
| 8238 | goto error; |
| 8239 | } |
| 8240 | |
Adel Gadllah | 80fcc9e | 2008-07-01 17:49:50 +0200 | [diff] [blame] | 8241 | priv->rfkill->name = priv->cfg->name; |
| 8242 | priv->rfkill->data = priv; |
| 8243 | priv->rfkill->state = RFKILL_STATE_UNBLOCKED; |
| 8244 | priv->rfkill->toggle_radio = iwl3945_rfkill_soft_rf_kill; |
| 8245 | priv->rfkill->user_claim_unsupported = 1; |
Abhijeet Kolekar | ebef200 | 2008-06-30 17:23:18 +0800 | [diff] [blame] | 8246 | |
Adel Gadllah | 80fcc9e | 2008-07-01 17:49:50 +0200 | [diff] [blame] | 8247 | priv->rfkill->dev.class->suspend = NULL; |
| 8248 | priv->rfkill->dev.class->resume = NULL; |
Abhijeet Kolekar | ebef200 | 2008-06-30 17:23:18 +0800 | [diff] [blame] | 8249 | |
Adel Gadllah | 80fcc9e | 2008-07-01 17:49:50 +0200 | [diff] [blame] | 8250 | ret = rfkill_register(priv->rfkill); |
Abhijeet Kolekar | ebef200 | 2008-06-30 17:23:18 +0800 | [diff] [blame] | 8251 | if (ret) { |
| 8252 | IWL_ERROR("Unable to register rfkill: %d\n", ret); |
Adel Gadllah | 80fcc9e | 2008-07-01 17:49:50 +0200 | [diff] [blame] | 8253 | goto freed_rfkill; |
Abhijeet Kolekar | ebef200 | 2008-06-30 17:23:18 +0800 | [diff] [blame] | 8254 | } |
| 8255 | |
| 8256 | IWL_DEBUG_RF_KILL("RFKILL initialization complete.\n"); |
| 8257 | return ret; |
| 8258 | |
Abhijeet Kolekar | ebef200 | 2008-06-30 17:23:18 +0800 | [diff] [blame] | 8259 | freed_rfkill: |
Adel Gadllah | 80fcc9e | 2008-07-01 17:49:50 +0200 | [diff] [blame] | 8260 | if (priv->rfkill != NULL) |
| 8261 | rfkill_free(priv->rfkill); |
| 8262 | priv->rfkill = NULL; |
Abhijeet Kolekar | ebef200 | 2008-06-30 17:23:18 +0800 | [diff] [blame] | 8263 | |
| 8264 | error: |
| 8265 | IWL_DEBUG_RF_KILL("RFKILL initialization complete.\n"); |
| 8266 | return ret; |
| 8267 | } |
| 8268 | |
| 8269 | void iwl3945_rfkill_unregister(struct iwl3945_priv *priv) |
| 8270 | { |
Adel Gadllah | 80fcc9e | 2008-07-01 17:49:50 +0200 | [diff] [blame] | 8271 | if (priv->rfkill) |
| 8272 | rfkill_unregister(priv->rfkill); |
Abhijeet Kolekar | ebef200 | 2008-06-30 17:23:18 +0800 | [diff] [blame] | 8273 | |
Adel Gadllah | 80fcc9e | 2008-07-01 17:49:50 +0200 | [diff] [blame] | 8274 | priv->rfkill = NULL; |
Abhijeet Kolekar | ebef200 | 2008-06-30 17:23:18 +0800 | [diff] [blame] | 8275 | } |
| 8276 | |
| 8277 | /* set rf-kill to the right state. */ |
| 8278 | void iwl3945_rfkill_set_hw_state(struct iwl3945_priv *priv) |
| 8279 | { |
| 8280 | |
Adel Gadllah | 80fcc9e | 2008-07-01 17:49:50 +0200 | [diff] [blame] | 8281 | if (!priv->rfkill) |
Abhijeet Kolekar | ebef200 | 2008-06-30 17:23:18 +0800 | [diff] [blame] | 8282 | return; |
| 8283 | |
Adel Gadllah | 80fcc9e | 2008-07-01 17:49:50 +0200 | [diff] [blame] | 8284 | if (iwl3945_is_rfkill_hw(priv)) { |
| 8285 | rfkill_force_state(priv->rfkill, RFKILL_STATE_HARD_BLOCKED); |
| 8286 | return; |
| 8287 | } |
| 8288 | |
| 8289 | if (!iwl3945_is_rfkill_sw(priv)) |
| 8290 | rfkill_force_state(priv->rfkill, RFKILL_STATE_UNBLOCKED); |
Abhijeet Kolekar | ebef200 | 2008-06-30 17:23:18 +0800 | [diff] [blame] | 8291 | else |
Adel Gadllah | 80fcc9e | 2008-07-01 17:49:50 +0200 | [diff] [blame] | 8292 | rfkill_force_state(priv->rfkill, RFKILL_STATE_SOFT_BLOCKED); |
Abhijeet Kolekar | ebef200 | 2008-06-30 17:23:18 +0800 | [diff] [blame] | 8293 | } |
| 8294 | #endif |
| 8295 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 8296 | /***************************************************************************** |
| 8297 | * |
| 8298 | * driver and module entry point |
| 8299 | * |
| 8300 | *****************************************************************************/ |
| 8301 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 8302 | static struct pci_driver iwl3945_driver = { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 8303 | .name = DRV_NAME, |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 8304 | .id_table = iwl3945_hw_card_ids, |
| 8305 | .probe = iwl3945_pci_probe, |
| 8306 | .remove = __devexit_p(iwl3945_pci_remove), |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 8307 | #ifdef CONFIG_PM |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 8308 | .suspend = iwl3945_pci_suspend, |
| 8309 | .resume = iwl3945_pci_resume, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 8310 | #endif |
| 8311 | }; |
| 8312 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 8313 | static int __init iwl3945_init(void) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 8314 | { |
| 8315 | |
| 8316 | int ret; |
| 8317 | printk(KERN_INFO DRV_NAME ": " DRV_DESCRIPTION ", " DRV_VERSION "\n"); |
| 8318 | printk(KERN_INFO DRV_NAME ": " DRV_COPYRIGHT "\n"); |
Reinette Chatre | 897e1cf | 2008-03-28 16:21:09 -0700 | [diff] [blame] | 8319 | |
| 8320 | ret = iwl3945_rate_control_register(); |
| 8321 | if (ret) { |
| 8322 | IWL_ERROR("Unable to register rate control algorithm: %d\n", ret); |
| 8323 | return ret; |
| 8324 | } |
| 8325 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 8326 | ret = pci_register_driver(&iwl3945_driver); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 8327 | if (ret) { |
| 8328 | IWL_ERROR("Unable to initialize PCI module\n"); |
Reinette Chatre | 897e1cf | 2008-03-28 16:21:09 -0700 | [diff] [blame] | 8329 | goto error_register; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 8330 | } |
Christoph Hellwig | c8b0e6e | 2007-10-25 17:15:51 +0800 | [diff] [blame] | 8331 | #ifdef CONFIG_IWL3945_DEBUG |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 8332 | ret = driver_create_file(&iwl3945_driver.driver, &driver_attr_debug_level); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 8333 | if (ret) { |
| 8334 | IWL_ERROR("Unable to create driver sysfs file\n"); |
Reinette Chatre | 897e1cf | 2008-03-28 16:21:09 -0700 | [diff] [blame] | 8335 | goto error_debug; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 8336 | } |
| 8337 | #endif |
| 8338 | |
| 8339 | return ret; |
Reinette Chatre | 897e1cf | 2008-03-28 16:21:09 -0700 | [diff] [blame] | 8340 | |
| 8341 | #ifdef CONFIG_IWL3945_DEBUG |
| 8342 | error_debug: |
| 8343 | pci_unregister_driver(&iwl3945_driver); |
| 8344 | #endif |
| 8345 | error_register: |
| 8346 | iwl3945_rate_control_unregister(); |
| 8347 | return ret; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 8348 | } |
| 8349 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 8350 | static void __exit iwl3945_exit(void) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 8351 | { |
Christoph Hellwig | c8b0e6e | 2007-10-25 17:15:51 +0800 | [diff] [blame] | 8352 | #ifdef CONFIG_IWL3945_DEBUG |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 8353 | driver_remove_file(&iwl3945_driver.driver, &driver_attr_debug_level); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 8354 | #endif |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 8355 | pci_unregister_driver(&iwl3945_driver); |
Reinette Chatre | 897e1cf | 2008-03-28 16:21:09 -0700 | [diff] [blame] | 8356 | iwl3945_rate_control_unregister(); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 8357 | } |
| 8358 | |
Reinette Chatre | a0987a8 | 2008-12-02 12:14:06 -0800 | [diff] [blame] | 8359 | MODULE_FIRMWARE(IWL3945_MODULE_FIRMWARE(IWL3945_UCODE_API_MAX)); |
Zhu Yi | 25cb6ca | 2008-09-11 11:45:22 +0800 | [diff] [blame] | 8360 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 8361 | module_param_named(antenna, iwl3945_param_antenna, int, 0444); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 8362 | MODULE_PARM_DESC(antenna, "select antenna (1=Main, 2=Aux, default 0 [both])"); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 8363 | module_param_named(disable, iwl3945_param_disable, int, 0444); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 8364 | MODULE_PARM_DESC(disable, "manually disable the radio (default 0 [radio on])"); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 8365 | module_param_named(hwcrypto, iwl3945_param_hwcrypto, int, 0444); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 8366 | MODULE_PARM_DESC(hwcrypto, |
| 8367 | "using hardware crypto engine (default 0 [software])\n"); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 8368 | module_param_named(debug, iwl3945_param_debug, int, 0444); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 8369 | MODULE_PARM_DESC(debug, "debug output mask"); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 8370 | module_param_named(disable_hw_scan, iwl3945_param_disable_hw_scan, int, 0444); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 8371 | MODULE_PARM_DESC(disable_hw_scan, "disable hardware scanning (default 0)"); |
| 8372 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 8373 | module_param_named(queues_num, iwl3945_param_queues_num, int, 0444); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 8374 | MODULE_PARM_DESC(queues_num, "number of hw queues."); |
| 8375 | |
| 8376 | /* QoS */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 8377 | module_param_named(qos_enable, iwl3945_param_qos_enable, int, 0444); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 8378 | MODULE_PARM_DESC(qos_enable, "enable all QoS functionality"); |
| 8379 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 8380 | module_exit(iwl3945_exit); |
| 8381 | module_init(iwl3945_init); |