Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 1 | /****************************************************************************** |
| 2 | * |
| 3 | * Copyright(c) 2003 - 2011 Intel Corporation. All rights reserved. |
| 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 | * Intel Linux Wireless <ilw@linux.intel.com> |
| 26 | * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 |
| 27 | * |
| 28 | *****************************************************************************/ |
| 29 | |
| 30 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 31 | |
| 32 | #include <linux/kernel.h> |
| 33 | #include <linux/module.h> |
| 34 | #include <linux/init.h> |
| 35 | #include <linux/pci.h> |
| 36 | #include <linux/pci-aspm.h> |
| 37 | #include <linux/slab.h> |
| 38 | #include <linux/dma-mapping.h> |
| 39 | #include <linux/delay.h> |
| 40 | #include <linux/sched.h> |
| 41 | #include <linux/skbuff.h> |
| 42 | #include <linux/netdevice.h> |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 43 | #include <linux/firmware.h> |
| 44 | #include <linux/etherdevice.h> |
| 45 | #include <linux/if_arp.h> |
| 46 | |
| 47 | #include <net/mac80211.h> |
| 48 | |
| 49 | #include <asm/div64.h> |
| 50 | |
| 51 | #define DRV_NAME "iwl4965" |
| 52 | |
Stanislaw Gruszka | 98613be | 2011-11-15 14:19:34 +0100 | [diff] [blame] | 53 | #include "common.h" |
Stanislaw Gruszka | af038f4 | 2011-08-30 13:58:27 +0200 | [diff] [blame] | 54 | #include "4965.h" |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 55 | |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 56 | /****************************************************************************** |
| 57 | * |
| 58 | * module boiler plate |
| 59 | * |
| 60 | ******************************************************************************/ |
| 61 | |
| 62 | /* |
| 63 | * module name, copyright, version, etc. |
| 64 | */ |
| 65 | #define DRV_DESCRIPTION "Intel(R) Wireless WiFi 4965 driver for Linux" |
| 66 | |
Stanislaw Gruszka | d317516 | 2011-11-15 11:25:42 +0100 | [diff] [blame] | 67 | #ifdef CONFIG_IWLEGACY_DEBUG |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 68 | #define VD "d" |
| 69 | #else |
| 70 | #define VD |
| 71 | #endif |
| 72 | |
| 73 | #define DRV_VERSION IWLWIFI_VERSION VD |
| 74 | |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 75 | MODULE_DESCRIPTION(DRV_DESCRIPTION); |
| 76 | MODULE_VERSION(DRV_VERSION); |
| 77 | MODULE_AUTHOR(DRV_COPYRIGHT " " DRV_AUTHOR); |
| 78 | MODULE_LICENSE("GPL"); |
| 79 | MODULE_ALIAS("iwl4965"); |
| 80 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 81 | void |
| 82 | il4965_check_abort_status(struct il_priv *il, u8 frame_count, u32 status) |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 83 | { |
| 84 | if (frame_count == 1 && status == TX_STATUS_FAIL_RFKILL_FLUSH) { |
| 85 | IL_ERR("Tx flush command to flush out all frames\n"); |
Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 86 | if (!test_bit(S_EXIT_PENDING, &il->status)) |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 87 | queue_work(il->workqueue, &il->tx_flush); |
| 88 | } |
| 89 | } |
| 90 | |
| 91 | /* |
| 92 | * EEPROM |
| 93 | */ |
| 94 | struct il_mod_params il4965_mod_params = { |
| 95 | .amsdu_size_8K = 1, |
| 96 | .restart_fw = 1, |
| 97 | /* the rest are 0 by default */ |
| 98 | }; |
| 99 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 100 | void |
| 101 | il4965_rx_queue_reset(struct il_priv *il, struct il_rx_queue *rxq) |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 102 | { |
| 103 | unsigned long flags; |
| 104 | int i; |
| 105 | spin_lock_irqsave(&rxq->lock, flags); |
| 106 | INIT_LIST_HEAD(&rxq->rx_free); |
| 107 | INIT_LIST_HEAD(&rxq->rx_used); |
| 108 | /* Fill the rx_used queue with _all_ of the Rx buffers */ |
| 109 | for (i = 0; i < RX_FREE_BUFFERS + RX_QUEUE_SIZE; i++) { |
| 110 | /* In the reset function, these buffers may have been allocated |
| 111 | * to an SKB, so we need to unmap and free potential storage */ |
| 112 | if (rxq->pool[i].page != NULL) { |
| 113 | pci_unmap_page(il->pci_dev, rxq->pool[i].page_dma, |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 114 | PAGE_SIZE << il->hw_params.rx_page_order, |
| 115 | PCI_DMA_FROMDEVICE); |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 116 | __il_free_pages(il, rxq->pool[i].page); |
| 117 | rxq->pool[i].page = NULL; |
| 118 | } |
| 119 | list_add_tail(&rxq->pool[i].list, &rxq->rx_used); |
| 120 | } |
| 121 | |
| 122 | for (i = 0; i < RX_QUEUE_SIZE; i++) |
| 123 | rxq->queue[i] = NULL; |
| 124 | |
| 125 | /* Set us so that we have processed and used all buffers, but have |
| 126 | * not restocked the Rx queue with fresh buffers */ |
| 127 | rxq->read = rxq->write = 0; |
| 128 | rxq->write_actual = 0; |
| 129 | rxq->free_count = 0; |
| 130 | spin_unlock_irqrestore(&rxq->lock, flags); |
| 131 | } |
| 132 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 133 | int |
| 134 | il4965_rx_init(struct il_priv *il, struct il_rx_queue *rxq) |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 135 | { |
| 136 | u32 rb_size; |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 137 | const u32 rfdnlog = RX_QUEUE_SIZE_LOG; /* 256 RBDs */ |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 138 | u32 rb_timeout = 0; |
| 139 | |
| 140 | if (il->cfg->mod_params->amsdu_size_8K) |
Stanislaw Gruszka | 9a95b37 | 2011-08-31 14:20:23 +0200 | [diff] [blame] | 141 | rb_size = FH49_RCSR_RX_CONFIG_REG_VAL_RB_SIZE_8K; |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 142 | else |
Stanislaw Gruszka | 9a95b37 | 2011-08-31 14:20:23 +0200 | [diff] [blame] | 143 | rb_size = FH49_RCSR_RX_CONFIG_REG_VAL_RB_SIZE_4K; |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 144 | |
| 145 | /* Stop Rx DMA */ |
Stanislaw Gruszka | 9a95b37 | 2011-08-31 14:20:23 +0200 | [diff] [blame] | 146 | il_wr(il, FH49_MEM_RCSR_CHNL0_CONFIG_REG, 0); |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 147 | |
| 148 | /* Reset driver's Rx queue write idx */ |
Stanislaw Gruszka | 9a95b37 | 2011-08-31 14:20:23 +0200 | [diff] [blame] | 149 | il_wr(il, FH49_RSCSR_CHNL0_RBDCB_WPTR_REG, 0); |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 150 | |
| 151 | /* Tell device where to find RBD circular buffer in DRAM */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 152 | il_wr(il, FH49_RSCSR_CHNL0_RBDCB_BASE_REG, (u32) (rxq->bd_dma >> 8)); |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 153 | |
| 154 | /* Tell device where in DRAM to update its Rx status */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 155 | il_wr(il, FH49_RSCSR_CHNL0_STTS_WPTR_REG, rxq->rb_stts_dma >> 4); |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 156 | |
| 157 | /* Enable Rx DMA |
| 158 | * Direct rx interrupts to hosts |
| 159 | * Rx buffer size 4 or 8k |
| 160 | * RB timeout 0x10 |
| 161 | * 256 RBDs |
| 162 | */ |
Stanislaw Gruszka | 9a95b37 | 2011-08-31 14:20:23 +0200 | [diff] [blame] | 163 | il_wr(il, FH49_MEM_RCSR_CHNL0_CONFIG_REG, |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 164 | FH49_RCSR_RX_CONFIG_CHNL_EN_ENABLE_VAL | |
| 165 | FH49_RCSR_CHNL0_RX_CONFIG_IRQ_DEST_INT_HOST_VAL | |
Stanislaw Gruszka | 1722f8e | 2011-11-15 14:51:01 +0100 | [diff] [blame] | 166 | FH49_RCSR_CHNL0_RX_CONFIG_SINGLE_FRAME_MSK | |
| 167 | rb_size | |
| 168 | (rb_timeout << FH49_RCSR_RX_CONFIG_REG_IRQ_RBTH_POS) | |
| 169 | (rfdnlog << FH49_RCSR_RX_CONFIG_RBDCB_SIZE_POS)); |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 170 | |
| 171 | /* Set interrupt coalescing timer to default (2048 usecs) */ |
| 172 | il_write8(il, CSR_INT_COALESCING, IL_HOST_INT_TIMEOUT_DEF); |
| 173 | |
| 174 | return 0; |
| 175 | } |
| 176 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 177 | static void |
| 178 | il4965_set_pwr_vmain(struct il_priv *il) |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 179 | { |
| 180 | /* |
| 181 | * (for documentation purposes) |
| 182 | * to set power to V_AUX, do: |
| 183 | |
| 184 | if (pci_pme_capable(il->pci_dev, PCI_D3cold)) |
| 185 | il_set_bits_mask_prph(il, APMG_PS_CTRL_REG, |
| 186 | APMG_PS_CTRL_VAL_PWR_SRC_VAUX, |
| 187 | ~APMG_PS_CTRL_MSK_PWR_SRC); |
| 188 | */ |
| 189 | |
| 190 | il_set_bits_mask_prph(il, APMG_PS_CTRL_REG, |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 191 | APMG_PS_CTRL_VAL_PWR_SRC_VMAIN, |
| 192 | ~APMG_PS_CTRL_MSK_PWR_SRC); |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 193 | } |
| 194 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 195 | int |
| 196 | il4965_hw_nic_init(struct il_priv *il) |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 197 | { |
| 198 | unsigned long flags; |
| 199 | struct il_rx_queue *rxq = &il->rxq; |
| 200 | int ret; |
| 201 | |
| 202 | /* nic_init */ |
| 203 | spin_lock_irqsave(&il->lock, flags); |
| 204 | il->cfg->ops->lib->apm_ops.init(il); |
| 205 | |
| 206 | /* Set interrupt coalescing calibration timer to default (512 usecs) */ |
| 207 | il_write8(il, CSR_INT_COALESCING, IL_HOST_INT_CALIB_TIMEOUT_DEF); |
| 208 | |
| 209 | spin_unlock_irqrestore(&il->lock, flags); |
| 210 | |
| 211 | il4965_set_pwr_vmain(il); |
| 212 | |
| 213 | il->cfg->ops->lib->apm_ops.config(il); |
| 214 | |
| 215 | /* Allocate the RX queue, or reset if it is already allocated */ |
| 216 | if (!rxq->bd) { |
| 217 | ret = il_rx_queue_alloc(il); |
| 218 | if (ret) { |
| 219 | IL_ERR("Unable to initialize Rx queue\n"); |
| 220 | return -ENOMEM; |
| 221 | } |
| 222 | } else |
| 223 | il4965_rx_queue_reset(il, rxq); |
| 224 | |
| 225 | il4965_rx_replenish(il); |
| 226 | |
| 227 | il4965_rx_init(il, rxq); |
| 228 | |
| 229 | spin_lock_irqsave(&il->lock, flags); |
| 230 | |
| 231 | rxq->need_update = 1; |
| 232 | il_rx_queue_update_write_ptr(il, rxq); |
| 233 | |
| 234 | spin_unlock_irqrestore(&il->lock, flags); |
| 235 | |
| 236 | /* Allocate or reset and init all Tx and Command queues */ |
| 237 | if (!il->txq) { |
| 238 | ret = il4965_txq_ctx_alloc(il); |
| 239 | if (ret) |
| 240 | return ret; |
| 241 | } else |
| 242 | il4965_txq_ctx_reset(il); |
| 243 | |
Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 244 | set_bit(S_INIT, &il->status); |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 245 | |
| 246 | return 0; |
| 247 | } |
| 248 | |
| 249 | /** |
| 250 | * il4965_dma_addr2rbd_ptr - convert a DMA address to a uCode read buffer ptr |
| 251 | */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 252 | static inline __le32 |
| 253 | il4965_dma_addr2rbd_ptr(struct il_priv *il, dma_addr_t dma_addr) |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 254 | { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 255 | return cpu_to_le32((u32) (dma_addr >> 8)); |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 256 | } |
| 257 | |
| 258 | /** |
| 259 | * il4965_rx_queue_restock - refill RX queue from pre-allocated pool |
| 260 | * |
| 261 | * If there are slots in the RX queue that need to be restocked, |
| 262 | * and we have free pre-allocated buffers, fill the ranks as much |
| 263 | * as we can, pulling from rx_free. |
| 264 | * |
| 265 | * This moves the 'write' idx forward to catch up with 'processed', and |
| 266 | * also updates the memory address in the firmware to reference the new |
| 267 | * target buffer. |
| 268 | */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 269 | void |
| 270 | il4965_rx_queue_restock(struct il_priv *il) |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 271 | { |
| 272 | struct il_rx_queue *rxq = &il->rxq; |
| 273 | struct list_head *element; |
| 274 | struct il_rx_buf *rxb; |
| 275 | unsigned long flags; |
| 276 | |
| 277 | spin_lock_irqsave(&rxq->lock, flags); |
| 278 | while (il_rx_queue_space(rxq) > 0 && rxq->free_count) { |
| 279 | /* The overwritten rxb must be a used one */ |
| 280 | rxb = rxq->queue[rxq->write]; |
| 281 | BUG_ON(rxb && rxb->page); |
| 282 | |
| 283 | /* Get next free Rx buffer, remove from free list */ |
| 284 | element = rxq->rx_free.next; |
| 285 | rxb = list_entry(element, struct il_rx_buf, list); |
| 286 | list_del(element); |
| 287 | |
| 288 | /* Point to Rx buffer via next RBD in circular buffer */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 289 | rxq->bd[rxq->write] = |
| 290 | il4965_dma_addr2rbd_ptr(il, rxb->page_dma); |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 291 | rxq->queue[rxq->write] = rxb; |
| 292 | rxq->write = (rxq->write + 1) & RX_QUEUE_MASK; |
| 293 | rxq->free_count--; |
| 294 | } |
| 295 | spin_unlock_irqrestore(&rxq->lock, flags); |
| 296 | /* If the pre-allocated buffer pool is dropping low, schedule to |
| 297 | * refill it */ |
| 298 | if (rxq->free_count <= RX_LOW_WATERMARK) |
| 299 | queue_work(il->workqueue, &il->rx_replenish); |
| 300 | |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 301 | /* If we've added more space for the firmware to place data, tell it. |
| 302 | * Increment device's write pointer in multiples of 8. */ |
| 303 | if (rxq->write_actual != (rxq->write & ~0x7)) { |
| 304 | spin_lock_irqsave(&rxq->lock, flags); |
| 305 | rxq->need_update = 1; |
| 306 | spin_unlock_irqrestore(&rxq->lock, flags); |
| 307 | il_rx_queue_update_write_ptr(il, rxq); |
| 308 | } |
| 309 | } |
| 310 | |
| 311 | /** |
| 312 | * il4965_rx_replenish - Move all used packet from rx_used to rx_free |
| 313 | * |
| 314 | * When moving to rx_free an SKB is allocated for the slot. |
| 315 | * |
| 316 | * Also restock the Rx queue via il_rx_queue_restock. |
| 317 | * This is called as a scheduled work item (except for during initialization) |
| 318 | */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 319 | static void |
| 320 | il4965_rx_allocate(struct il_priv *il, gfp_t priority) |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 321 | { |
| 322 | struct il_rx_queue *rxq = &il->rxq; |
| 323 | struct list_head *element; |
| 324 | struct il_rx_buf *rxb; |
| 325 | struct page *page; |
| 326 | unsigned long flags; |
| 327 | gfp_t gfp_mask = priority; |
| 328 | |
| 329 | while (1) { |
| 330 | spin_lock_irqsave(&rxq->lock, flags); |
| 331 | if (list_empty(&rxq->rx_used)) { |
| 332 | spin_unlock_irqrestore(&rxq->lock, flags); |
| 333 | return; |
| 334 | } |
| 335 | spin_unlock_irqrestore(&rxq->lock, flags); |
| 336 | |
| 337 | if (rxq->free_count > RX_LOW_WATERMARK) |
| 338 | gfp_mask |= __GFP_NOWARN; |
| 339 | |
| 340 | if (il->hw_params.rx_page_order > 0) |
| 341 | gfp_mask |= __GFP_COMP; |
| 342 | |
| 343 | /* Alloc a new receive buffer */ |
| 344 | page = alloc_pages(gfp_mask, il->hw_params.rx_page_order); |
| 345 | if (!page) { |
| 346 | if (net_ratelimit()) |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 347 | D_INFO("alloc_pages failed, " "order: %d\n", |
| 348 | il->hw_params.rx_page_order); |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 349 | |
| 350 | if (rxq->free_count <= RX_LOW_WATERMARK && |
| 351 | net_ratelimit()) |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 352 | IL_ERR("Failed to alloc_pages with %s. " |
| 353 | "Only %u free buffers remaining.\n", |
| 354 | priority == |
| 355 | GFP_ATOMIC ? "GFP_ATOMIC" : "GFP_KERNEL", |
| 356 | rxq->free_count); |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 357 | /* We don't reschedule replenish work here -- we will |
| 358 | * call the restock method and if it still needs |
| 359 | * more buffers it will schedule replenish */ |
| 360 | return; |
| 361 | } |
| 362 | |
| 363 | spin_lock_irqsave(&rxq->lock, flags); |
| 364 | |
| 365 | if (list_empty(&rxq->rx_used)) { |
| 366 | spin_unlock_irqrestore(&rxq->lock, flags); |
| 367 | __free_pages(page, il->hw_params.rx_page_order); |
| 368 | return; |
| 369 | } |
| 370 | element = rxq->rx_used.next; |
| 371 | rxb = list_entry(element, struct il_rx_buf, list); |
| 372 | list_del(element); |
| 373 | |
| 374 | spin_unlock_irqrestore(&rxq->lock, flags); |
| 375 | |
| 376 | BUG_ON(rxb->page); |
| 377 | rxb->page = page; |
| 378 | /* Get physical address of the RB */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 379 | rxb->page_dma = |
| 380 | pci_map_page(il->pci_dev, page, 0, |
| 381 | PAGE_SIZE << il->hw_params.rx_page_order, |
| 382 | PCI_DMA_FROMDEVICE); |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 383 | /* dma address must be no more than 36 bits */ |
| 384 | BUG_ON(rxb->page_dma & ~DMA_BIT_MASK(36)); |
| 385 | /* and also 256 byte aligned! */ |
| 386 | BUG_ON(rxb->page_dma & DMA_BIT_MASK(8)); |
| 387 | |
| 388 | spin_lock_irqsave(&rxq->lock, flags); |
| 389 | |
| 390 | list_add_tail(&rxb->list, &rxq->rx_free); |
| 391 | rxq->free_count++; |
| 392 | il->alloc_rxb_page++; |
| 393 | |
| 394 | spin_unlock_irqrestore(&rxq->lock, flags); |
| 395 | } |
| 396 | } |
| 397 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 398 | void |
| 399 | il4965_rx_replenish(struct il_priv *il) |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 400 | { |
| 401 | unsigned long flags; |
| 402 | |
| 403 | il4965_rx_allocate(il, GFP_KERNEL); |
| 404 | |
| 405 | spin_lock_irqsave(&il->lock, flags); |
| 406 | il4965_rx_queue_restock(il); |
| 407 | spin_unlock_irqrestore(&il->lock, flags); |
| 408 | } |
| 409 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 410 | void |
| 411 | il4965_rx_replenish_now(struct il_priv *il) |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 412 | { |
| 413 | il4965_rx_allocate(il, GFP_ATOMIC); |
| 414 | |
| 415 | il4965_rx_queue_restock(il); |
| 416 | } |
| 417 | |
| 418 | /* Assumes that the skb field of the buffers in 'pool' is kept accurate. |
| 419 | * If an SKB has been detached, the POOL needs to have its SKB set to NULL |
| 420 | * This free routine walks the list of POOL entries and if SKB is set to |
| 421 | * non NULL it is unmapped and freed |
| 422 | */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 423 | void |
| 424 | il4965_rx_queue_free(struct il_priv *il, struct il_rx_queue *rxq) |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 425 | { |
| 426 | int i; |
| 427 | for (i = 0; i < RX_QUEUE_SIZE + RX_FREE_BUFFERS; i++) { |
| 428 | if (rxq->pool[i].page != NULL) { |
| 429 | pci_unmap_page(il->pci_dev, rxq->pool[i].page_dma, |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 430 | PAGE_SIZE << il->hw_params.rx_page_order, |
| 431 | PCI_DMA_FROMDEVICE); |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 432 | __il_free_pages(il, rxq->pool[i].page); |
| 433 | rxq->pool[i].page = NULL; |
| 434 | } |
| 435 | } |
| 436 | |
| 437 | dma_free_coherent(&il->pci_dev->dev, 4 * RX_QUEUE_SIZE, rxq->bd, |
| 438 | rxq->bd_dma); |
| 439 | dma_free_coherent(&il->pci_dev->dev, sizeof(struct il_rb_status), |
| 440 | rxq->rb_stts, rxq->rb_stts_dma); |
| 441 | rxq->bd = NULL; |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 442 | rxq->rb_stts = NULL; |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 443 | } |
| 444 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 445 | int |
| 446 | il4965_rxq_stop(struct il_priv *il) |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 447 | { |
| 448 | |
| 449 | /* stop Rx DMA */ |
Stanislaw Gruszka | 9a95b37 | 2011-08-31 14:20:23 +0200 | [diff] [blame] | 450 | il_wr(il, FH49_MEM_RCSR_CHNL0_CONFIG_REG, 0); |
| 451 | il_poll_bit(il, FH49_MEM_RSSR_RX_STATUS_REG, |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 452 | FH49_RSSR_CHNL0_RX_STATUS_CHNL_IDLE, 1000); |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 453 | |
| 454 | return 0; |
| 455 | } |
| 456 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 457 | int |
| 458 | il4965_hwrate_to_mac80211_idx(u32 rate_n_flags, enum ieee80211_band band) |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 459 | { |
| 460 | int idx = 0; |
| 461 | int band_offset = 0; |
| 462 | |
| 463 | /* HT rate format: mac80211 wants an MCS number, which is just LSB */ |
| 464 | if (rate_n_flags & RATE_MCS_HT_MSK) { |
| 465 | idx = (rate_n_flags & 0xff); |
| 466 | return idx; |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 467 | /* Legacy rate format, search for match in table */ |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 468 | } else { |
| 469 | if (band == IEEE80211_BAND_5GHZ) |
| 470 | band_offset = IL_FIRST_OFDM_RATE; |
| 471 | for (idx = band_offset; idx < RATE_COUNT_LEGACY; idx++) |
| 472 | if (il_rates[idx].plcp == (rate_n_flags & 0xFF)) |
| 473 | return idx - band_offset; |
| 474 | } |
| 475 | |
| 476 | return -1; |
| 477 | } |
| 478 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 479 | static int |
| 480 | il4965_calc_rssi(struct il_priv *il, struct il_rx_phy_res *rx_resp) |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 481 | { |
| 482 | /* data from PHY/DSP regarding signal strength, etc., |
| 483 | * contents are always there, not configurable by host. */ |
| 484 | struct il4965_rx_non_cfg_phy *ncphy = |
| 485 | (struct il4965_rx_non_cfg_phy *)rx_resp->non_cfg_phy_buf; |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 486 | u32 agc = |
| 487 | (le16_to_cpu(ncphy->agc_info) & IL49_AGC_DB_MASK) >> |
| 488 | IL49_AGC_DB_POS; |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 489 | |
| 490 | u32 valid_antennae = |
| 491 | (le16_to_cpu(rx_resp->phy_flags) & IL49_RX_PHY_FLAGS_ANTENNAE_MASK) |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 492 | >> IL49_RX_PHY_FLAGS_ANTENNAE_OFFSET; |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 493 | u8 max_rssi = 0; |
| 494 | u32 i; |
| 495 | |
| 496 | /* Find max rssi among 3 possible receivers. |
| 497 | * These values are measured by the digital signal processor (DSP). |
| 498 | * They should stay fairly constant even as the signal strength varies, |
| 499 | * if the radio's automatic gain control (AGC) is working right. |
| 500 | * AGC value (see below) will provide the "interesting" info. */ |
| 501 | for (i = 0; i < 3; i++) |
| 502 | if (valid_antennae & (1 << i)) |
| 503 | max_rssi = max(ncphy->rssi_info[i << 1], max_rssi); |
| 504 | |
| 505 | D_STATS("Rssi In A %d B %d C %d Max %d AGC dB %d\n", |
| 506 | ncphy->rssi_info[0], ncphy->rssi_info[2], ncphy->rssi_info[4], |
| 507 | max_rssi, agc); |
| 508 | |
| 509 | /* dBm = max_rssi dB - agc dB - constant. |
| 510 | * Higher AGC (higher radio gain) means lower signal. */ |
| 511 | return max_rssi - agc - IL4965_RSSI_OFFSET; |
| 512 | } |
| 513 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 514 | static u32 |
| 515 | il4965_translate_rx_status(struct il_priv *il, u32 decrypt_in) |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 516 | { |
| 517 | u32 decrypt_out = 0; |
| 518 | |
| 519 | if ((decrypt_in & RX_RES_STATUS_STATION_FOUND) == |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 520 | RX_RES_STATUS_STATION_FOUND) |
| 521 | decrypt_out |= |
| 522 | (RX_RES_STATUS_STATION_FOUND | |
| 523 | RX_RES_STATUS_NO_STATION_INFO_MISMATCH); |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 524 | |
| 525 | decrypt_out |= (decrypt_in & RX_RES_STATUS_SEC_TYPE_MSK); |
| 526 | |
| 527 | /* packet was not encrypted */ |
| 528 | if ((decrypt_in & RX_RES_STATUS_SEC_TYPE_MSK) == |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 529 | RX_RES_STATUS_SEC_TYPE_NONE) |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 530 | return decrypt_out; |
| 531 | |
| 532 | /* packet was encrypted with unknown alg */ |
| 533 | if ((decrypt_in & RX_RES_STATUS_SEC_TYPE_MSK) == |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 534 | RX_RES_STATUS_SEC_TYPE_ERR) |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 535 | return decrypt_out; |
| 536 | |
| 537 | /* decryption was not done in HW */ |
| 538 | if ((decrypt_in & RX_MPDU_RES_STATUS_DEC_DONE_MSK) != |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 539 | RX_MPDU_RES_STATUS_DEC_DONE_MSK) |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 540 | return decrypt_out; |
| 541 | |
| 542 | switch (decrypt_in & RX_RES_STATUS_SEC_TYPE_MSK) { |
| 543 | |
| 544 | case RX_RES_STATUS_SEC_TYPE_CCMP: |
| 545 | /* alg is CCM: check MIC only */ |
| 546 | if (!(decrypt_in & RX_MPDU_RES_STATUS_MIC_OK)) |
| 547 | /* Bad MIC */ |
| 548 | decrypt_out |= RX_RES_STATUS_BAD_ICV_MIC; |
| 549 | else |
| 550 | decrypt_out |= RX_RES_STATUS_DECRYPT_OK; |
| 551 | |
| 552 | break; |
| 553 | |
| 554 | case RX_RES_STATUS_SEC_TYPE_TKIP: |
| 555 | if (!(decrypt_in & RX_MPDU_RES_STATUS_TTAK_OK)) { |
| 556 | /* Bad TTAK */ |
| 557 | decrypt_out |= RX_RES_STATUS_BAD_KEY_TTAK; |
| 558 | break; |
| 559 | } |
| 560 | /* fall through if TTAK OK */ |
| 561 | default: |
| 562 | if (!(decrypt_in & RX_MPDU_RES_STATUS_ICV_OK)) |
| 563 | decrypt_out |= RX_RES_STATUS_BAD_ICV_MIC; |
| 564 | else |
| 565 | decrypt_out |= RX_RES_STATUS_DECRYPT_OK; |
| 566 | break; |
| 567 | } |
| 568 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 569 | D_RX("decrypt_in:0x%x decrypt_out = 0x%x\n", decrypt_in, decrypt_out); |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 570 | |
| 571 | return decrypt_out; |
| 572 | } |
| 573 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 574 | static void |
| 575 | il4965_pass_packet_to_mac80211(struct il_priv *il, struct ieee80211_hdr *hdr, |
| 576 | u16 len, u32 ampdu_status, struct il_rx_buf *rxb, |
| 577 | struct ieee80211_rx_status *stats) |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 578 | { |
| 579 | struct sk_buff *skb; |
| 580 | __le16 fc = hdr->frame_control; |
| 581 | |
| 582 | /* We only process data packets if the interface is open */ |
| 583 | if (unlikely(!il->is_open)) { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 584 | D_DROP("Dropping packet while interface is not open.\n"); |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 585 | return; |
| 586 | } |
| 587 | |
| 588 | /* In case of HW accelerated crypto and bad decryption, drop */ |
| 589 | if (!il->cfg->mod_params->sw_crypto && |
| 590 | il_set_decrypted_flag(il, hdr, ampdu_status, stats)) |
| 591 | return; |
| 592 | |
| 593 | skb = dev_alloc_skb(128); |
| 594 | if (!skb) { |
| 595 | IL_ERR("dev_alloc_skb failed\n"); |
| 596 | return; |
| 597 | } |
| 598 | |
| 599 | skb_add_rx_frag(skb, 0, rxb->page, (void *)hdr - rxb_addr(rxb), len); |
| 600 | |
| 601 | il_update_stats(il, false, fc, len); |
| 602 | memcpy(IEEE80211_SKB_RXCB(skb), stats, sizeof(*stats)); |
| 603 | |
| 604 | ieee80211_rx(il->hw, skb); |
| 605 | il->alloc_rxb_page--; |
| 606 | rxb->page = NULL; |
| 607 | } |
| 608 | |
Stanislaw Gruszka | 4d69c75 | 2011-08-30 15:26:35 +0200 | [diff] [blame] | 609 | /* Called for N_RX (legacy ABG frames), or |
| 610 | * N_RX_MPDU (HT high-throughput N frames). */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 611 | void |
| 612 | il4965_hdl_rx(struct il_priv *il, struct il_rx_buf *rxb) |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 613 | { |
| 614 | struct ieee80211_hdr *header; |
| 615 | struct ieee80211_rx_status rx_status; |
| 616 | struct il_rx_pkt *pkt = rxb_addr(rxb); |
| 617 | struct il_rx_phy_res *phy_res; |
| 618 | __le32 rx_pkt_status; |
| 619 | struct il_rx_mpdu_res_start *amsdu; |
| 620 | u32 len; |
| 621 | u32 ampdu_status; |
| 622 | u32 rate_n_flags; |
| 623 | |
| 624 | /** |
Stanislaw Gruszka | 4d69c75 | 2011-08-30 15:26:35 +0200 | [diff] [blame] | 625 | * N_RX and N_RX_MPDU are handled differently. |
| 626 | * N_RX: physical layer info is in this buffer |
| 627 | * N_RX_MPDU: physical layer info was sent in separate |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 628 | * command and cached in il->last_phy_res |
| 629 | * |
| 630 | * Here we set up local variables depending on which command is |
| 631 | * received. |
| 632 | */ |
Stanislaw Gruszka | 4d69c75 | 2011-08-30 15:26:35 +0200 | [diff] [blame] | 633 | if (pkt->hdr.cmd == N_RX) { |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 634 | phy_res = (struct il_rx_phy_res *)pkt->u.raw; |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 635 | header = |
| 636 | (struct ieee80211_hdr *)(pkt->u.raw + sizeof(*phy_res) + |
| 637 | phy_res->cfg_phy_cnt); |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 638 | |
| 639 | len = le16_to_cpu(phy_res->byte_count); |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 640 | rx_pkt_status = |
| 641 | *(__le32 *) (pkt->u.raw + sizeof(*phy_res) + |
| 642 | phy_res->cfg_phy_cnt + len); |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 643 | ampdu_status = le32_to_cpu(rx_pkt_status); |
| 644 | } else { |
| 645 | if (!il->_4965.last_phy_res_valid) { |
| 646 | IL_ERR("MPDU frame without cached PHY data\n"); |
| 647 | return; |
| 648 | } |
| 649 | phy_res = &il->_4965.last_phy_res; |
| 650 | amsdu = (struct il_rx_mpdu_res_start *)pkt->u.raw; |
| 651 | header = (struct ieee80211_hdr *)(pkt->u.raw + sizeof(*amsdu)); |
| 652 | len = le16_to_cpu(amsdu->byte_count); |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 653 | rx_pkt_status = *(__le32 *) (pkt->u.raw + sizeof(*amsdu) + len); |
| 654 | ampdu_status = |
| 655 | il4965_translate_rx_status(il, le32_to_cpu(rx_pkt_status)); |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 656 | } |
| 657 | |
| 658 | if ((unlikely(phy_res->cfg_phy_cnt > 20))) { |
| 659 | D_DROP("dsp size out of range [0,20]: %d/n", |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 660 | phy_res->cfg_phy_cnt); |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 661 | return; |
| 662 | } |
| 663 | |
| 664 | if (!(rx_pkt_status & RX_RES_STATUS_NO_CRC32_ERROR) || |
| 665 | !(rx_pkt_status & RX_RES_STATUS_NO_RXE_OVERFLOW)) { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 666 | D_RX("Bad CRC or FIFO: 0x%08X.\n", le32_to_cpu(rx_pkt_status)); |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 667 | return; |
| 668 | } |
| 669 | |
| 670 | /* This will be used in several places later */ |
| 671 | rate_n_flags = le32_to_cpu(phy_res->rate_n_flags); |
| 672 | |
| 673 | /* rx_status carries information about the packet to mac80211 */ |
| 674 | rx_status.mactime = le64_to_cpu(phy_res->timestamp); |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 675 | rx_status.band = |
| 676 | (phy_res-> |
| 677 | phy_flags & RX_RES_PHY_FLAGS_BAND_24_MSK) ? IEEE80211_BAND_2GHZ : |
| 678 | IEEE80211_BAND_5GHZ; |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 679 | rx_status.freq = |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 680 | ieee80211_channel_to_frequency(le16_to_cpu(phy_res->channel), |
| 681 | rx_status.band); |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 682 | rx_status.rate_idx = |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 683 | il4965_hwrate_to_mac80211_idx(rate_n_flags, rx_status.band); |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 684 | rx_status.flag = 0; |
| 685 | |
| 686 | /* TSF isn't reliable. In order to allow smooth user experience, |
| 687 | * this W/A doesn't propagate it to the mac80211 */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 688 | /*rx_status.flag |= RX_FLAG_MACTIME_MPDU; */ |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 689 | |
| 690 | il->ucode_beacon_time = le32_to_cpu(phy_res->beacon_time_stamp); |
| 691 | |
| 692 | /* Find max signal strength (dBm) among 3 antenna/receiver chains */ |
| 693 | rx_status.signal = il4965_calc_rssi(il, phy_res); |
| 694 | |
| 695 | il_dbg_log_rx_data_frame(il, len, header); |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 696 | D_STATS("Rssi %d, TSF %llu\n", rx_status.signal, |
| 697 | (unsigned long long)rx_status.mactime); |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 698 | |
| 699 | /* |
| 700 | * "antenna number" |
| 701 | * |
| 702 | * It seems that the antenna field in the phy flags value |
| 703 | * is actually a bit field. This is undefined by radiotap, |
| 704 | * it wants an actual antenna number but I always get "7" |
| 705 | * for most legacy frames I receive indicating that the |
| 706 | * same frame was received on all three RX chains. |
| 707 | * |
| 708 | * I think this field should be removed in favor of a |
| 709 | * new 802.11n radiotap field "RX chains" that is defined |
| 710 | * as a bitmask. |
| 711 | */ |
| 712 | rx_status.antenna = |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 713 | (le16_to_cpu(phy_res->phy_flags) & RX_RES_PHY_FLAGS_ANTENNA_MSK) >> |
| 714 | RX_RES_PHY_FLAGS_ANTENNA_POS; |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 715 | |
| 716 | /* set the preamble flag if appropriate */ |
| 717 | if (phy_res->phy_flags & RX_RES_PHY_FLAGS_SHORT_PREAMBLE_MSK) |
| 718 | rx_status.flag |= RX_FLAG_SHORTPRE; |
| 719 | |
| 720 | /* Set up the HT phy flags */ |
| 721 | if (rate_n_flags & RATE_MCS_HT_MSK) |
| 722 | rx_status.flag |= RX_FLAG_HT; |
| 723 | if (rate_n_flags & RATE_MCS_HT40_MSK) |
| 724 | rx_status.flag |= RX_FLAG_40MHZ; |
| 725 | if (rate_n_flags & RATE_MCS_SGI_MSK) |
| 726 | rx_status.flag |= RX_FLAG_SHORT_GI; |
| 727 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 728 | il4965_pass_packet_to_mac80211(il, header, len, ampdu_status, rxb, |
| 729 | &rx_status); |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 730 | } |
| 731 | |
Stanislaw Gruszka | 4d69c75 | 2011-08-30 15:26:35 +0200 | [diff] [blame] | 732 | /* Cache phy data (Rx signal strength, etc) for HT frame (N_RX_PHY). |
Stanislaw Gruszka | 6e9848b4 | 2011-08-30 15:45:31 +0200 | [diff] [blame] | 733 | * This will be used later in il_hdl_rx() for N_RX_MPDU. */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 734 | void |
| 735 | il4965_hdl_rx_phy(struct il_priv *il, struct il_rx_buf *rxb) |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 736 | { |
| 737 | struct il_rx_pkt *pkt = rxb_addr(rxb); |
| 738 | il->_4965.last_phy_res_valid = true; |
| 739 | memcpy(&il->_4965.last_phy_res, pkt->u.raw, |
| 740 | sizeof(struct il_rx_phy_res)); |
| 741 | } |
| 742 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 743 | static int |
| 744 | il4965_get_channels_for_scan(struct il_priv *il, struct ieee80211_vif *vif, |
| 745 | enum ieee80211_band band, u8 is_active, |
| 746 | u8 n_probes, struct il_scan_channel *scan_ch) |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 747 | { |
| 748 | struct ieee80211_channel *chan; |
| 749 | const struct ieee80211_supported_band *sband; |
| 750 | const struct il_channel_info *ch_info; |
| 751 | u16 passive_dwell = 0; |
| 752 | u16 active_dwell = 0; |
| 753 | int added, i; |
| 754 | u16 channel; |
| 755 | |
| 756 | sband = il_get_hw_mode(il, band); |
| 757 | if (!sband) |
| 758 | return 0; |
| 759 | |
| 760 | active_dwell = il_get_active_dwell_time(il, band, n_probes); |
| 761 | passive_dwell = il_get_passive_dwell_time(il, band, vif); |
| 762 | |
| 763 | if (passive_dwell <= active_dwell) |
| 764 | passive_dwell = active_dwell + 1; |
| 765 | |
| 766 | for (i = 0, added = 0; i < il->scan_request->n_channels; i++) { |
| 767 | chan = il->scan_request->channels[i]; |
| 768 | |
| 769 | if (chan->band != band) |
| 770 | continue; |
| 771 | |
| 772 | channel = chan->hw_value; |
| 773 | scan_ch->channel = cpu_to_le16(channel); |
| 774 | |
| 775 | ch_info = il_get_channel_info(il, band, channel); |
| 776 | if (!il_is_channel_valid(ch_info)) { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 777 | D_SCAN("Channel %d is INVALID for this band.\n", |
| 778 | channel); |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 779 | continue; |
| 780 | } |
| 781 | |
| 782 | if (!is_active || il_is_channel_passive(ch_info) || |
| 783 | (chan->flags & IEEE80211_CHAN_PASSIVE_SCAN)) |
| 784 | scan_ch->type = SCAN_CHANNEL_TYPE_PASSIVE; |
| 785 | else |
| 786 | scan_ch->type = SCAN_CHANNEL_TYPE_ACTIVE; |
| 787 | |
| 788 | if (n_probes) |
| 789 | scan_ch->type |= IL_SCAN_PROBE_MASK(n_probes); |
| 790 | |
| 791 | scan_ch->active_dwell = cpu_to_le16(active_dwell); |
| 792 | scan_ch->passive_dwell = cpu_to_le16(passive_dwell); |
| 793 | |
| 794 | /* Set txpower levels to defaults */ |
| 795 | scan_ch->dsp_atten = 110; |
| 796 | |
| 797 | /* NOTE: if we were doing 6Mb OFDM for scans we'd use |
| 798 | * power level: |
| 799 | * scan_ch->tx_gain = ((1 << 5) | (2 << 3)) | 3; |
| 800 | */ |
| 801 | if (band == IEEE80211_BAND_5GHZ) |
| 802 | scan_ch->tx_gain = ((1 << 5) | (3 << 3)) | 3; |
| 803 | else |
| 804 | scan_ch->tx_gain = ((1 << 5) | (5 << 3)); |
| 805 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 806 | D_SCAN("Scanning ch=%d prob=0x%X [%s %d]\n", channel, |
| 807 | le32_to_cpu(scan_ch->type), |
| 808 | (scan_ch-> |
| 809 | type & SCAN_CHANNEL_TYPE_ACTIVE) ? "ACTIVE" : "PASSIVE", |
| 810 | (scan_ch-> |
| 811 | type & SCAN_CHANNEL_TYPE_ACTIVE) ? active_dwell : |
| 812 | passive_dwell); |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 813 | |
| 814 | scan_ch++; |
| 815 | added++; |
| 816 | } |
| 817 | |
| 818 | D_SCAN("total channels to scan %d\n", added); |
| 819 | return added; |
| 820 | } |
| 821 | |
Stanislaw Gruszka | a0c1ef3 | 2011-12-23 08:13:44 +0100 | [diff] [blame] | 822 | static void |
| 823 | il4965_toggle_tx_ant(struct il_priv *il, u8 *ant, u8 valid) |
| 824 | { |
| 825 | int i; |
| 826 | u8 ind = *ant; |
| 827 | |
| 828 | for (i = 0; i < RATE_ANT_NUM - 1; i++) { |
| 829 | ind = (ind + 1) < RATE_ANT_NUM ? ind + 1 : 0; |
| 830 | if (valid & BIT(ind)) { |
| 831 | *ant = ind; |
| 832 | return; |
| 833 | } |
| 834 | } |
| 835 | } |
| 836 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 837 | int |
| 838 | il4965_request_scan(struct il_priv *il, struct ieee80211_vif *vif) |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 839 | { |
| 840 | struct il_host_cmd cmd = { |
Stanislaw Gruszka | 4d69c75 | 2011-08-30 15:26:35 +0200 | [diff] [blame] | 841 | .id = C_SCAN, |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 842 | .len = sizeof(struct il_scan_cmd), |
| 843 | .flags = CMD_SIZE_HUGE, |
| 844 | }; |
| 845 | struct il_scan_cmd *scan; |
| 846 | struct il_rxon_context *ctx = &il->ctx; |
| 847 | u32 rate_flags = 0; |
| 848 | u16 cmd_len; |
| 849 | u16 rx_chain = 0; |
| 850 | enum ieee80211_band band; |
| 851 | u8 n_probes = 0; |
| 852 | u8 rx_ant = il->hw_params.valid_rx_ant; |
| 853 | u8 rate; |
| 854 | bool is_active = false; |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 855 | int chan_mod; |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 856 | u8 active_chains; |
| 857 | u8 scan_tx_antennas = il->hw_params.valid_tx_ant; |
| 858 | int ret; |
| 859 | |
| 860 | lockdep_assert_held(&il->mutex); |
| 861 | |
Greg Dietsche | 730b4c2 | 2011-09-06 17:33:51 -0500 | [diff] [blame] | 862 | ctx = il_rxon_ctx_from_vif(vif); |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 863 | |
| 864 | if (!il->scan_cmd) { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 865 | il->scan_cmd = |
| 866 | kmalloc(sizeof(struct il_scan_cmd) + IL_MAX_SCAN_SIZE, |
| 867 | GFP_KERNEL); |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 868 | if (!il->scan_cmd) { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 869 | D_SCAN("fail to allocate memory for scan\n"); |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 870 | return -ENOMEM; |
| 871 | } |
| 872 | } |
| 873 | scan = il->scan_cmd; |
| 874 | memset(scan, 0, sizeof(struct il_scan_cmd) + IL_MAX_SCAN_SIZE); |
| 875 | |
| 876 | scan->quiet_plcp_th = IL_PLCP_QUIET_THRESH; |
| 877 | scan->quiet_time = IL_ACTIVE_QUIET_TIME; |
| 878 | |
| 879 | if (il_is_any_associated(il)) { |
| 880 | u16 interval; |
| 881 | u32 extra; |
| 882 | u32 suspend_time = 100; |
| 883 | u32 scan_suspend_time = 100; |
| 884 | |
| 885 | D_INFO("Scanning while associated...\n"); |
| 886 | interval = vif->bss_conf.beacon_int; |
| 887 | |
| 888 | scan->suspend_time = 0; |
| 889 | scan->max_out_time = cpu_to_le32(200 * 1024); |
| 890 | if (!interval) |
| 891 | interval = suspend_time; |
| 892 | |
| 893 | extra = (suspend_time / interval) << 22; |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 894 | scan_suspend_time = |
| 895 | (extra | ((suspend_time % interval) * 1024)); |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 896 | scan->suspend_time = cpu_to_le32(scan_suspend_time); |
| 897 | D_SCAN("suspend_time 0x%X beacon interval %d\n", |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 898 | scan_suspend_time, interval); |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 899 | } |
| 900 | |
| 901 | if (il->scan_request->n_ssids) { |
| 902 | int i, p = 0; |
| 903 | D_SCAN("Kicking off active scan\n"); |
| 904 | for (i = 0; i < il->scan_request->n_ssids; i++) { |
| 905 | /* always does wildcard anyway */ |
| 906 | if (!il->scan_request->ssids[i].ssid_len) |
| 907 | continue; |
| 908 | scan->direct_scan[p].id = WLAN_EID_SSID; |
| 909 | scan->direct_scan[p].len = |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 910 | il->scan_request->ssids[i].ssid_len; |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 911 | memcpy(scan->direct_scan[p].ssid, |
| 912 | il->scan_request->ssids[i].ssid, |
| 913 | il->scan_request->ssids[i].ssid_len); |
| 914 | n_probes++; |
| 915 | p++; |
| 916 | } |
| 917 | is_active = true; |
| 918 | } else |
| 919 | D_SCAN("Start passive scan.\n"); |
| 920 | |
| 921 | scan->tx_cmd.tx_flags = TX_CMD_FLG_SEQ_CTL_MSK; |
| 922 | scan->tx_cmd.sta_id = ctx->bcast_sta_id; |
| 923 | scan->tx_cmd.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE; |
| 924 | |
| 925 | switch (il->scan_band) { |
| 926 | case IEEE80211_BAND_2GHZ: |
| 927 | scan->flags = RXON_FLG_BAND_24G_MSK | RXON_FLG_AUTO_DETECT_MSK; |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 928 | chan_mod = |
| 929 | le32_to_cpu(il->ctx.active. |
| 930 | flags & RXON_FLG_CHANNEL_MODE_MSK) >> |
| 931 | RXON_FLG_CHANNEL_MODE_POS; |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 932 | if (chan_mod == CHANNEL_MODE_PURE_40) { |
| 933 | rate = RATE_6M_PLCP; |
| 934 | } else { |
| 935 | rate = RATE_1M_PLCP; |
| 936 | rate_flags = RATE_MCS_CCK_MSK; |
| 937 | } |
| 938 | break; |
| 939 | case IEEE80211_BAND_5GHZ: |
| 940 | rate = RATE_6M_PLCP; |
| 941 | break; |
| 942 | default: |
| 943 | IL_WARN("Invalid scan band\n"); |
| 944 | return -EIO; |
| 945 | } |
| 946 | |
| 947 | /* |
| 948 | * If active scanning is requested but a certain channel is |
| 949 | * marked passive, we can do active scanning if we detect |
| 950 | * transmissions. |
| 951 | * |
| 952 | * There is an issue with some firmware versions that triggers |
| 953 | * a sysassert on a "good CRC threshold" of zero (== disabled), |
| 954 | * on a radar channel even though this means that we should NOT |
| 955 | * send probes. |
| 956 | * |
| 957 | * The "good CRC threshold" is the number of frames that we |
| 958 | * need to receive during our dwell time on a channel before |
| 959 | * sending out probes -- setting this to a huge value will |
| 960 | * mean we never reach it, but at the same time work around |
| 961 | * the aforementioned issue. Thus use IL_GOOD_CRC_TH_NEVER |
| 962 | * here instead of IL_GOOD_CRC_TH_DISABLED. |
| 963 | */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 964 | scan->good_CRC_th = |
| 965 | is_active ? IL_GOOD_CRC_TH_DEFAULT : IL_GOOD_CRC_TH_NEVER; |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 966 | |
| 967 | band = il->scan_band; |
| 968 | |
| 969 | if (il->cfg->scan_rx_antennas[band]) |
| 970 | rx_ant = il->cfg->scan_rx_antennas[band]; |
| 971 | |
Stanislaw Gruszka | a0c1ef3 | 2011-12-23 08:13:44 +0100 | [diff] [blame] | 972 | il4965_toggle_tx_ant(il, &il->scan_tx_ant[band], scan_tx_antennas); |
Stanislaw Gruszka | 616107e | 2011-12-23 08:13:45 +0100 | [diff] [blame^] | 973 | rate_flags |= BIT(il->scan_tx_ant[band]) << RATE_MCS_ANT_POS; |
| 974 | scan->tx_cmd.rate_n_flags = cpu_to_le32(rate | rate_flags); |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 975 | |
| 976 | /* In power save mode use one chain, otherwise use all chains */ |
Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 977 | if (test_bit(S_POWER_PMI, &il->status)) { |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 978 | /* rx_ant has been set to all valid chains previously */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 979 | active_chains = |
| 980 | rx_ant & ((u8) (il->chain_noise_data.active_chains)); |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 981 | if (!active_chains) |
| 982 | active_chains = rx_ant; |
| 983 | |
| 984 | D_SCAN("chain_noise_data.active_chains: %u\n", |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 985 | il->chain_noise_data.active_chains); |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 986 | |
| 987 | rx_ant = il4965_first_antenna(active_chains); |
| 988 | } |
| 989 | |
| 990 | /* MIMO is not used here, but value is required */ |
| 991 | rx_chain |= il->hw_params.valid_rx_ant << RXON_RX_CHAIN_VALID_POS; |
| 992 | rx_chain |= rx_ant << RXON_RX_CHAIN_FORCE_MIMO_SEL_POS; |
| 993 | rx_chain |= rx_ant << RXON_RX_CHAIN_FORCE_SEL_POS; |
| 994 | rx_chain |= 0x1 << RXON_RX_CHAIN_DRIVER_FORCE_POS; |
| 995 | scan->rx_chain = cpu_to_le16(rx_chain); |
| 996 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 997 | cmd_len = |
| 998 | il_fill_probe_req(il, (struct ieee80211_mgmt *)scan->data, |
| 999 | vif->addr, il->scan_request->ie, |
| 1000 | il->scan_request->ie_len, |
| 1001 | IL_MAX_SCAN_SIZE - sizeof(*scan)); |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 1002 | scan->tx_cmd.len = cpu_to_le16(cmd_len); |
| 1003 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1004 | scan->filter_flags |= |
| 1005 | (RXON_FILTER_ACCEPT_GRP_MSK | RXON_FILTER_BCON_AWARE_MSK); |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 1006 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1007 | scan->channel_count = |
| 1008 | il4965_get_channels_for_scan(il, vif, band, is_active, n_probes, |
| 1009 | (void *)&scan->data[cmd_len]); |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 1010 | if (scan->channel_count == 0) { |
| 1011 | D_SCAN("channel count %d\n", scan->channel_count); |
| 1012 | return -EIO; |
| 1013 | } |
| 1014 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1015 | cmd.len += |
| 1016 | le16_to_cpu(scan->tx_cmd.len) + |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 1017 | scan->channel_count * sizeof(struct il_scan_channel); |
| 1018 | cmd.data = scan; |
| 1019 | scan->len = cpu_to_le16(cmd.len); |
| 1020 | |
Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 1021 | set_bit(S_SCAN_HW, &il->status); |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 1022 | |
| 1023 | ret = il_send_cmd_sync(il, &cmd); |
| 1024 | if (ret) |
Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 1025 | clear_bit(S_SCAN_HW, &il->status); |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 1026 | |
| 1027 | return ret; |
| 1028 | } |
| 1029 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1030 | int |
| 1031 | il4965_manage_ibss_station(struct il_priv *il, struct ieee80211_vif *vif, |
| 1032 | bool add) |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 1033 | { |
| 1034 | struct il_vif_priv *vif_priv = (void *)vif->drv_priv; |
| 1035 | |
| 1036 | if (add) |
| 1037 | return il4965_add_bssid_station(il, vif_priv->ctx, |
| 1038 | vif->bss_conf.bssid, |
| 1039 | &vif_priv->ibss_bssid_sta_id); |
| 1040 | return il_remove_station(il, vif_priv->ibss_bssid_sta_id, |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1041 | vif->bss_conf.bssid); |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 1042 | } |
| 1043 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1044 | void |
| 1045 | il4965_free_tfds_in_queue(struct il_priv *il, int sta_id, int tid, int freed) |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 1046 | { |
| 1047 | lockdep_assert_held(&il->sta_lock); |
| 1048 | |
| 1049 | if (il->stations[sta_id].tid[tid].tfds_in_queue >= freed) |
| 1050 | il->stations[sta_id].tid[tid].tfds_in_queue -= freed; |
| 1051 | else { |
| 1052 | D_TX("free more than tfds_in_queue (%u:%d)\n", |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1053 | il->stations[sta_id].tid[tid].tfds_in_queue, freed); |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 1054 | il->stations[sta_id].tid[tid].tfds_in_queue = 0; |
| 1055 | } |
| 1056 | } |
| 1057 | |
| 1058 | #define IL_TX_QUEUE_MSK 0xfffff |
| 1059 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1060 | static bool |
| 1061 | il4965_is_single_rx_stream(struct il_priv *il) |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 1062 | { |
| 1063 | return il->current_ht_config.smps == IEEE80211_SMPS_STATIC || |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1064 | il->current_ht_config.single_chain_sufficient; |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 1065 | } |
| 1066 | |
| 1067 | #define IL_NUM_RX_CHAINS_MULTIPLE 3 |
| 1068 | #define IL_NUM_RX_CHAINS_SINGLE 2 |
| 1069 | #define IL_NUM_IDLE_CHAINS_DUAL 2 |
| 1070 | #define IL_NUM_IDLE_CHAINS_SINGLE 1 |
| 1071 | |
| 1072 | /* |
| 1073 | * Determine how many receiver/antenna chains to use. |
| 1074 | * |
| 1075 | * More provides better reception via diversity. Fewer saves power |
| 1076 | * at the expense of throughput, but only when not in powersave to |
| 1077 | * start with. |
| 1078 | * |
| 1079 | * MIMO (dual stream) requires at least 2, but works better with 3. |
| 1080 | * This does not determine *which* chains to use, just how many. |
| 1081 | */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1082 | static int |
| 1083 | il4965_get_active_rx_chain_count(struct il_priv *il) |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 1084 | { |
| 1085 | /* # of Rx chains to use when expecting MIMO. */ |
| 1086 | if (il4965_is_single_rx_stream(il)) |
| 1087 | return IL_NUM_RX_CHAINS_SINGLE; |
| 1088 | else |
| 1089 | return IL_NUM_RX_CHAINS_MULTIPLE; |
| 1090 | } |
| 1091 | |
| 1092 | /* |
| 1093 | * When we are in power saving mode, unless device support spatial |
| 1094 | * multiplexing power save, use the active count for rx chain count. |
| 1095 | */ |
| 1096 | static int |
| 1097 | il4965_get_idle_rx_chain_count(struct il_priv *il, int active_cnt) |
| 1098 | { |
| 1099 | /* # Rx chains when idling, depending on SMPS mode */ |
| 1100 | switch (il->current_ht_config.smps) { |
| 1101 | case IEEE80211_SMPS_STATIC: |
| 1102 | case IEEE80211_SMPS_DYNAMIC: |
| 1103 | return IL_NUM_IDLE_CHAINS_SINGLE; |
| 1104 | case IEEE80211_SMPS_OFF: |
| 1105 | return active_cnt; |
| 1106 | default: |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1107 | WARN(1, "invalid SMPS mode %d", il->current_ht_config.smps); |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 1108 | return active_cnt; |
| 1109 | } |
| 1110 | } |
| 1111 | |
| 1112 | /* up to 4 chains */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1113 | static u8 |
| 1114 | il4965_count_chain_bitmap(u32 chain_bitmap) |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 1115 | { |
| 1116 | u8 res; |
| 1117 | res = (chain_bitmap & BIT(0)) >> 0; |
| 1118 | res += (chain_bitmap & BIT(1)) >> 1; |
| 1119 | res += (chain_bitmap & BIT(2)) >> 2; |
| 1120 | res += (chain_bitmap & BIT(3)) >> 3; |
| 1121 | return res; |
| 1122 | } |
| 1123 | |
| 1124 | /** |
| 1125 | * il4965_set_rxon_chain - Set up Rx chain usage in "staging" RXON image |
| 1126 | * |
| 1127 | * Selects how many and which Rx receivers/antennas/chains to use. |
| 1128 | * This should not be used for scan command ... it puts data in wrong place. |
| 1129 | */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1130 | void |
| 1131 | il4965_set_rxon_chain(struct il_priv *il, struct il_rxon_context *ctx) |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 1132 | { |
| 1133 | bool is_single = il4965_is_single_rx_stream(il); |
Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 1134 | bool is_cam = !test_bit(S_POWER_PMI, &il->status); |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 1135 | u8 idle_rx_cnt, active_rx_cnt, valid_rx_cnt; |
| 1136 | u32 active_chains; |
| 1137 | u16 rx_chain; |
| 1138 | |
| 1139 | /* Tell uCode which antennas are actually connected. |
| 1140 | * Before first association, we assume all antennas are connected. |
| 1141 | * Just after first association, il4965_chain_noise_calibration() |
| 1142 | * checks which antennas actually *are* connected. */ |
| 1143 | if (il->chain_noise_data.active_chains) |
| 1144 | active_chains = il->chain_noise_data.active_chains; |
| 1145 | else |
| 1146 | active_chains = il->hw_params.valid_rx_ant; |
| 1147 | |
| 1148 | rx_chain = active_chains << RXON_RX_CHAIN_VALID_POS; |
| 1149 | |
| 1150 | /* How many receivers should we use? */ |
| 1151 | active_rx_cnt = il4965_get_active_rx_chain_count(il); |
| 1152 | idle_rx_cnt = il4965_get_idle_rx_chain_count(il, active_rx_cnt); |
| 1153 | |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 1154 | /* correct rx chain count according hw settings |
| 1155 | * and chain noise calibration |
| 1156 | */ |
| 1157 | valid_rx_cnt = il4965_count_chain_bitmap(active_chains); |
| 1158 | if (valid_rx_cnt < active_rx_cnt) |
| 1159 | active_rx_cnt = valid_rx_cnt; |
| 1160 | |
| 1161 | if (valid_rx_cnt < idle_rx_cnt) |
| 1162 | idle_rx_cnt = valid_rx_cnt; |
| 1163 | |
| 1164 | rx_chain |= active_rx_cnt << RXON_RX_CHAIN_MIMO_CNT_POS; |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1165 | rx_chain |= idle_rx_cnt << RXON_RX_CHAIN_CNT_POS; |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 1166 | |
| 1167 | ctx->staging.rx_chain = cpu_to_le16(rx_chain); |
| 1168 | |
| 1169 | if (!is_single && active_rx_cnt >= IL_NUM_RX_CHAINS_SINGLE && is_cam) |
| 1170 | ctx->staging.rx_chain |= RXON_RX_CHAIN_MIMO_FORCE_MSK; |
| 1171 | else |
| 1172 | ctx->staging.rx_chain &= ~RXON_RX_CHAIN_MIMO_FORCE_MSK; |
| 1173 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1174 | D_ASSOC("rx_chain=0x%X active=%d idle=%d\n", ctx->staging.rx_chain, |
| 1175 | active_rx_cnt, idle_rx_cnt); |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 1176 | |
| 1177 | WARN_ON(active_rx_cnt == 0 || idle_rx_cnt == 0 || |
| 1178 | active_rx_cnt < idle_rx_cnt); |
| 1179 | } |
| 1180 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1181 | static const char * |
| 1182 | il4965_get_fh_string(int cmd) |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 1183 | { |
| 1184 | switch (cmd) { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1185 | IL_CMD(FH49_RSCSR_CHNL0_STTS_WPTR_REG); |
| 1186 | IL_CMD(FH49_RSCSR_CHNL0_RBDCB_BASE_REG); |
| 1187 | IL_CMD(FH49_RSCSR_CHNL0_WPTR); |
| 1188 | IL_CMD(FH49_MEM_RCSR_CHNL0_CONFIG_REG); |
| 1189 | IL_CMD(FH49_MEM_RSSR_SHARED_CTRL_REG); |
| 1190 | IL_CMD(FH49_MEM_RSSR_RX_STATUS_REG); |
| 1191 | IL_CMD(FH49_MEM_RSSR_RX_ENABLE_ERR_IRQ2DRV); |
| 1192 | IL_CMD(FH49_TSSR_TX_STATUS_REG); |
| 1193 | IL_CMD(FH49_TSSR_TX_ERROR_REG); |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 1194 | default: |
| 1195 | return "UNKNOWN"; |
| 1196 | } |
| 1197 | } |
| 1198 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1199 | int |
| 1200 | il4965_dump_fh(struct il_priv *il, char **buf, bool display) |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 1201 | { |
| 1202 | int i; |
| 1203 | #ifdef CONFIG_IWLEGACY_DEBUG |
| 1204 | int pos = 0; |
| 1205 | size_t bufsz = 0; |
| 1206 | #endif |
| 1207 | static const u32 fh_tbl[] = { |
Stanislaw Gruszka | 9a95b37 | 2011-08-31 14:20:23 +0200 | [diff] [blame] | 1208 | FH49_RSCSR_CHNL0_STTS_WPTR_REG, |
| 1209 | FH49_RSCSR_CHNL0_RBDCB_BASE_REG, |
| 1210 | FH49_RSCSR_CHNL0_WPTR, |
| 1211 | FH49_MEM_RCSR_CHNL0_CONFIG_REG, |
| 1212 | FH49_MEM_RSSR_SHARED_CTRL_REG, |
| 1213 | FH49_MEM_RSSR_RX_STATUS_REG, |
| 1214 | FH49_MEM_RSSR_RX_ENABLE_ERR_IRQ2DRV, |
| 1215 | FH49_TSSR_TX_STATUS_REG, |
| 1216 | FH49_TSSR_TX_ERROR_REG |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 1217 | }; |
| 1218 | #ifdef CONFIG_IWLEGACY_DEBUG |
| 1219 | if (display) { |
| 1220 | bufsz = ARRAY_SIZE(fh_tbl) * 48 + 40; |
| 1221 | *buf = kmalloc(bufsz, GFP_KERNEL); |
| 1222 | if (!*buf) |
| 1223 | return -ENOMEM; |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1224 | pos += |
| 1225 | scnprintf(*buf + pos, bufsz - pos, "FH register values:\n"); |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 1226 | for (i = 0; i < ARRAY_SIZE(fh_tbl); i++) { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1227 | pos += |
| 1228 | scnprintf(*buf + pos, bufsz - pos, |
| 1229 | " %34s: 0X%08x\n", |
Stanislaw Gruszka | 1722f8e | 2011-11-15 14:51:01 +0100 | [diff] [blame] | 1230 | il4965_get_fh_string(fh_tbl[i]), |
| 1231 | il_rd(il, fh_tbl[i])); |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 1232 | } |
| 1233 | return pos; |
| 1234 | } |
| 1235 | #endif |
| 1236 | IL_ERR("FH register values:\n"); |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1237 | for (i = 0; i < ARRAY_SIZE(fh_tbl); i++) { |
| 1238 | IL_ERR(" %34s: 0X%08x\n", il4965_get_fh_string(fh_tbl[i]), |
| 1239 | il_rd(il, fh_tbl[i])); |
Stanislaw Gruszka | fcb7458 | 2011-08-30 13:06:03 +0200 | [diff] [blame] | 1240 | } |
| 1241 | return 0; |
| 1242 | } |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 1243 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1244 | void |
| 1245 | il4965_hdl_missed_beacon(struct il_priv *il, struct il_rx_buf *rxb) |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 1246 | { |
| 1247 | struct il_rx_pkt *pkt = rxb_addr(rxb); |
| 1248 | struct il_missed_beacon_notif *missed_beacon; |
| 1249 | |
| 1250 | missed_beacon = &pkt->u.missed_beacon; |
| 1251 | if (le32_to_cpu(missed_beacon->consecutive_missed_beacons) > |
| 1252 | il->missed_beacon_threshold) { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1253 | D_CALIB("missed bcn cnsq %d totl %d rcd %d expctd %d\n", |
| 1254 | le32_to_cpu(missed_beacon->consecutive_missed_beacons), |
| 1255 | le32_to_cpu(missed_beacon->total_missed_becons), |
| 1256 | le32_to_cpu(missed_beacon->num_recvd_beacons), |
| 1257 | le32_to_cpu(missed_beacon->num_expected_beacons)); |
Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 1258 | if (!test_bit(S_SCANNING, &il->status)) |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 1259 | il4965_init_sensitivity(il); |
| 1260 | } |
| 1261 | } |
| 1262 | |
| 1263 | /* Calculate noise level, based on measurements during network silence just |
| 1264 | * before arriving beacon. This measurement can be done only if we know |
| 1265 | * exactly when to expect beacons, therefore only when we're associated. */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1266 | static void |
| 1267 | il4965_rx_calc_noise(struct il_priv *il) |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 1268 | { |
| 1269 | struct stats_rx_non_phy *rx_info; |
| 1270 | int num_active_rx = 0; |
| 1271 | int total_silence = 0; |
| 1272 | int bcn_silence_a, bcn_silence_b, bcn_silence_c; |
| 1273 | int last_rx_noise; |
| 1274 | |
| 1275 | rx_info = &(il->_4965.stats.rx.general); |
| 1276 | bcn_silence_a = |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1277 | le32_to_cpu(rx_info->beacon_silence_rssi_a) & IN_BAND_FILTER; |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 1278 | bcn_silence_b = |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1279 | le32_to_cpu(rx_info->beacon_silence_rssi_b) & IN_BAND_FILTER; |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 1280 | bcn_silence_c = |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1281 | le32_to_cpu(rx_info->beacon_silence_rssi_c) & IN_BAND_FILTER; |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 1282 | |
| 1283 | if (bcn_silence_a) { |
| 1284 | total_silence += bcn_silence_a; |
| 1285 | num_active_rx++; |
| 1286 | } |
| 1287 | if (bcn_silence_b) { |
| 1288 | total_silence += bcn_silence_b; |
| 1289 | num_active_rx++; |
| 1290 | } |
| 1291 | if (bcn_silence_c) { |
| 1292 | total_silence += bcn_silence_c; |
| 1293 | num_active_rx++; |
| 1294 | } |
| 1295 | |
| 1296 | /* Average among active antennas */ |
| 1297 | if (num_active_rx) |
| 1298 | last_rx_noise = (total_silence / num_active_rx) - 107; |
| 1299 | else |
| 1300 | last_rx_noise = IL_NOISE_MEAS_NOT_AVAILABLE; |
| 1301 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1302 | D_CALIB("inband silence a %u, b %u, c %u, dBm %d\n", bcn_silence_a, |
| 1303 | bcn_silence_b, bcn_silence_c, last_rx_noise); |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 1304 | } |
| 1305 | |
| 1306 | #ifdef CONFIG_IWLEGACY_DEBUGFS |
| 1307 | /* |
| 1308 | * based on the assumption of all stats counter are in DWORD |
| 1309 | * FIXME: This function is for debugging, do not deal with |
| 1310 | * the case of counters roll-over. |
| 1311 | */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1312 | static void |
| 1313 | il4965_accumulative_stats(struct il_priv *il, __le32 * stats) |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 1314 | { |
| 1315 | int i, size; |
| 1316 | __le32 *prev_stats; |
| 1317 | u32 *accum_stats; |
| 1318 | u32 *delta, *max_delta; |
| 1319 | struct stats_general_common *general, *accum_general; |
| 1320 | struct stats_tx *tx, *accum_tx; |
| 1321 | |
Stanislaw Gruszka | 1722f8e | 2011-11-15 14:51:01 +0100 | [diff] [blame] | 1322 | prev_stats = (__le32 *) &il->_4965.stats; |
| 1323 | accum_stats = (u32 *) &il->_4965.accum_stats; |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 1324 | size = sizeof(struct il_notif_stats); |
| 1325 | general = &il->_4965.stats.general.common; |
| 1326 | accum_general = &il->_4965.accum_stats.general.common; |
| 1327 | tx = &il->_4965.stats.tx; |
| 1328 | accum_tx = &il->_4965.accum_stats.tx; |
Stanislaw Gruszka | 1722f8e | 2011-11-15 14:51:01 +0100 | [diff] [blame] | 1329 | delta = (u32 *) &il->_4965.delta_stats; |
| 1330 | max_delta = (u32 *) &il->_4965.max_delta; |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 1331 | |
| 1332 | for (i = sizeof(__le32); i < size; |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1333 | i += |
| 1334 | sizeof(__le32), stats++, prev_stats++, delta++, max_delta++, |
| 1335 | accum_stats++) { |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 1336 | if (le32_to_cpu(*stats) > le32_to_cpu(*prev_stats)) { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1337 | *delta = |
| 1338 | (le32_to_cpu(*stats) - le32_to_cpu(*prev_stats)); |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 1339 | *accum_stats += *delta; |
| 1340 | if (*delta > *max_delta) |
| 1341 | *max_delta = *delta; |
| 1342 | } |
| 1343 | } |
| 1344 | |
| 1345 | /* reset accumulative stats for "no-counter" type stats */ |
| 1346 | accum_general->temperature = general->temperature; |
| 1347 | accum_general->ttl_timestamp = general->ttl_timestamp; |
| 1348 | } |
| 1349 | #endif |
| 1350 | |
| 1351 | #define REG_RECALIB_PERIOD (60) |
| 1352 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1353 | void |
| 1354 | il4965_hdl_stats(struct il_priv *il, struct il_rx_buf *rxb) |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 1355 | { |
| 1356 | int change; |
| 1357 | struct il_rx_pkt *pkt = rxb_addr(rxb); |
| 1358 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1359 | D_RX("Statistics notification received (%d vs %d).\n", |
| 1360 | (int)sizeof(struct il_notif_stats), |
| 1361 | le32_to_cpu(pkt->len_n_flags) & IL_RX_FRAME_SIZE_MSK); |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 1362 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1363 | change = |
| 1364 | ((il->_4965.stats.general.common.temperature != |
| 1365 | pkt->u.stats.general.common.temperature) || |
| 1366 | ((il->_4965.stats.flag & STATS_REPLY_FLG_HT40_MODE_MSK) != |
| 1367 | (pkt->u.stats.flag & STATS_REPLY_FLG_HT40_MODE_MSK))); |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 1368 | #ifdef CONFIG_IWLEGACY_DEBUGFS |
Stanislaw Gruszka | 1722f8e | 2011-11-15 14:51:01 +0100 | [diff] [blame] | 1369 | il4965_accumulative_stats(il, (__le32 *) &pkt->u.stats); |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 1370 | #endif |
| 1371 | |
| 1372 | /* TODO: reading some of stats is unneeded */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1373 | memcpy(&il->_4965.stats, &pkt->u.stats, sizeof(il->_4965.stats)); |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 1374 | |
Stanislaw Gruszka | db7746f | 2011-11-15 13:11:50 +0100 | [diff] [blame] | 1375 | set_bit(S_STATS, &il->status); |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 1376 | |
| 1377 | /* Reschedule the stats timer to occur in |
| 1378 | * REG_RECALIB_PERIOD seconds to ensure we get a |
| 1379 | * thermal update even if the uCode doesn't give |
| 1380 | * us one */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1381 | mod_timer(&il->stats_periodic, |
| 1382 | jiffies + msecs_to_jiffies(REG_RECALIB_PERIOD * 1000)); |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 1383 | |
Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 1384 | if (unlikely(!test_bit(S_SCANNING, &il->status)) && |
Stanislaw Gruszka | 4d69c75 | 2011-08-30 15:26:35 +0200 | [diff] [blame] | 1385 | (pkt->hdr.cmd == N_STATS)) { |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 1386 | il4965_rx_calc_noise(il); |
| 1387 | queue_work(il->workqueue, &il->run_time_calib_work); |
| 1388 | } |
| 1389 | if (il->cfg->ops->lib->temp_ops.temperature && change) |
| 1390 | il->cfg->ops->lib->temp_ops.temperature(il); |
| 1391 | } |
| 1392 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1393 | void |
| 1394 | il4965_hdl_c_stats(struct il_priv *il, struct il_rx_buf *rxb) |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 1395 | { |
| 1396 | struct il_rx_pkt *pkt = rxb_addr(rxb); |
| 1397 | |
Stanislaw Gruszka | db7746f | 2011-11-15 13:11:50 +0100 | [diff] [blame] | 1398 | if (le32_to_cpu(pkt->u.stats.flag) & UCODE_STATS_CLEAR_MSK) { |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 1399 | #ifdef CONFIG_IWLEGACY_DEBUGFS |
| 1400 | memset(&il->_4965.accum_stats, 0, |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1401 | sizeof(struct il_notif_stats)); |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 1402 | memset(&il->_4965.delta_stats, 0, |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1403 | sizeof(struct il_notif_stats)); |
| 1404 | memset(&il->_4965.max_delta, 0, sizeof(struct il_notif_stats)); |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 1405 | #endif |
| 1406 | D_RX("Statistics have been cleared\n"); |
| 1407 | } |
Stanislaw Gruszka | d2dfb33 | 2011-11-15 13:16:38 +0100 | [diff] [blame] | 1408 | il4965_hdl_stats(il, rxb); |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 1409 | } |
| 1410 | |
Stanislaw Gruszka | 8f29b45 | 2011-11-15 12:57:25 +0100 | [diff] [blame] | 1411 | |
| 1412 | /* |
| 1413 | * mac80211 queues, ACs, hardware queues, FIFOs. |
| 1414 | * |
| 1415 | * Cf. http://wireless.kernel.org/en/developers/Documentation/mac80211/queues |
| 1416 | * |
| 1417 | * Mac80211 uses the following numbers, which we get as from it |
| 1418 | * by way of skb_get_queue_mapping(skb): |
| 1419 | * |
| 1420 | * VO 0 |
| 1421 | * VI 1 |
| 1422 | * BE 2 |
| 1423 | * BK 3 |
| 1424 | * |
| 1425 | * |
| 1426 | * Regular (not A-MPDU) frames are put into hardware queues corresponding |
| 1427 | * to the FIFOs, see comments in iwl-prph.h. Aggregated frames get their |
| 1428 | * own queue per aggregation session (RA/TID combination), such queues are |
| 1429 | * set up to map into FIFOs too, for which we need an AC->FIFO mapping. In |
| 1430 | * order to map frames to the right queue, we also need an AC->hw queue |
| 1431 | * mapping. This is implemented here. |
| 1432 | * |
| 1433 | * Due to the way hw queues are set up (by the hw specific modules like |
Stanislaw Gruszka | af038f4 | 2011-08-30 13:58:27 +0200 | [diff] [blame] | 1434 | * 4965.c), the AC->hw queue mapping is the identity |
Stanislaw Gruszka | 8f29b45 | 2011-11-15 12:57:25 +0100 | [diff] [blame] | 1435 | * mapping. |
| 1436 | */ |
| 1437 | |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 1438 | static const u8 tid_to_ac[] = { |
| 1439 | IEEE80211_AC_BE, |
| 1440 | IEEE80211_AC_BK, |
| 1441 | IEEE80211_AC_BK, |
| 1442 | IEEE80211_AC_BE, |
| 1443 | IEEE80211_AC_VI, |
| 1444 | IEEE80211_AC_VI, |
| 1445 | IEEE80211_AC_VO, |
| 1446 | IEEE80211_AC_VO |
| 1447 | }; |
| 1448 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1449 | static inline int |
| 1450 | il4965_get_ac_from_tid(u16 tid) |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 1451 | { |
| 1452 | if (likely(tid < ARRAY_SIZE(tid_to_ac))) |
| 1453 | return tid_to_ac[tid]; |
| 1454 | |
| 1455 | /* no support for TIDs 8-15 yet */ |
| 1456 | return -EINVAL; |
| 1457 | } |
| 1458 | |
| 1459 | static inline int |
| 1460 | il4965_get_fifo_from_tid(struct il_rxon_context *ctx, u16 tid) |
| 1461 | { |
| 1462 | if (likely(tid < ARRAY_SIZE(tid_to_ac))) |
| 1463 | return ctx->ac_to_fifo[tid_to_ac[tid]]; |
| 1464 | |
| 1465 | /* no support for TIDs 8-15 yet */ |
| 1466 | return -EINVAL; |
| 1467 | } |
| 1468 | |
| 1469 | /* |
Stanislaw Gruszka | 4d69c75 | 2011-08-30 15:26:35 +0200 | [diff] [blame] | 1470 | * handle build C_TX command notification. |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 1471 | */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1472 | static void |
| 1473 | il4965_tx_cmd_build_basic(struct il_priv *il, struct sk_buff *skb, |
| 1474 | struct il_tx_cmd *tx_cmd, |
| 1475 | struct ieee80211_tx_info *info, |
| 1476 | struct ieee80211_hdr *hdr, u8 std_id) |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 1477 | { |
| 1478 | __le16 fc = hdr->frame_control; |
| 1479 | __le32 tx_flags = tx_cmd->tx_flags; |
| 1480 | |
| 1481 | tx_cmd->stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE; |
| 1482 | if (!(info->flags & IEEE80211_TX_CTL_NO_ACK)) { |
| 1483 | tx_flags |= TX_CMD_FLG_ACK_MSK; |
| 1484 | if (ieee80211_is_mgmt(fc)) |
| 1485 | tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK; |
| 1486 | if (ieee80211_is_probe_resp(fc) && |
| 1487 | !(le16_to_cpu(hdr->seq_ctrl) & 0xf)) |
| 1488 | tx_flags |= TX_CMD_FLG_TSF_MSK; |
| 1489 | } else { |
| 1490 | tx_flags &= (~TX_CMD_FLG_ACK_MSK); |
| 1491 | tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK; |
| 1492 | } |
| 1493 | |
| 1494 | if (ieee80211_is_back_req(fc)) |
| 1495 | tx_flags |= TX_CMD_FLG_ACK_MSK | TX_CMD_FLG_IMM_BA_RSP_MASK; |
| 1496 | |
| 1497 | tx_cmd->sta_id = std_id; |
| 1498 | if (ieee80211_has_morefrags(fc)) |
| 1499 | tx_flags |= TX_CMD_FLG_MORE_FRAG_MSK; |
| 1500 | |
| 1501 | if (ieee80211_is_data_qos(fc)) { |
| 1502 | u8 *qc = ieee80211_get_qos_ctl(hdr); |
| 1503 | tx_cmd->tid_tspec = qc[0] & 0xf; |
| 1504 | tx_flags &= ~TX_CMD_FLG_SEQ_CTL_MSK; |
| 1505 | } else { |
| 1506 | tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK; |
| 1507 | } |
| 1508 | |
| 1509 | il_tx_cmd_protection(il, info, fc, &tx_flags); |
| 1510 | |
| 1511 | tx_flags &= ~(TX_CMD_FLG_ANT_SEL_MSK); |
| 1512 | if (ieee80211_is_mgmt(fc)) { |
| 1513 | if (ieee80211_is_assoc_req(fc) || ieee80211_is_reassoc_req(fc)) |
| 1514 | tx_cmd->timeout.pm_frame_timeout = cpu_to_le16(3); |
| 1515 | else |
| 1516 | tx_cmd->timeout.pm_frame_timeout = cpu_to_le16(2); |
| 1517 | } else { |
| 1518 | tx_cmd->timeout.pm_frame_timeout = 0; |
| 1519 | } |
| 1520 | |
| 1521 | tx_cmd->driver_txop = 0; |
| 1522 | tx_cmd->tx_flags = tx_flags; |
| 1523 | tx_cmd->next_frame_len = 0; |
| 1524 | } |
| 1525 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1526 | static void |
| 1527 | il4965_tx_cmd_build_rate(struct il_priv *il, struct il_tx_cmd *tx_cmd, |
| 1528 | struct ieee80211_tx_info *info, __le16 fc) |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 1529 | { |
Stanislaw Gruszka | 616107e | 2011-12-23 08:13:45 +0100 | [diff] [blame^] | 1530 | const u8 rts_retry_limit = 60; |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 1531 | u32 rate_flags; |
| 1532 | int rate_idx; |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 1533 | u8 data_retry_limit; |
| 1534 | u8 rate_plcp; |
| 1535 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1536 | /* Set retry limit on DATA packets and Probe Responses */ |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 1537 | if (ieee80211_is_probe_resp(fc)) |
| 1538 | data_retry_limit = 3; |
| 1539 | else |
| 1540 | data_retry_limit = IL4965_DEFAULT_TX_RETRY; |
| 1541 | tx_cmd->data_retry_limit = data_retry_limit; |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 1542 | /* Set retry limit on RTS packets */ |
Stanislaw Gruszka | 616107e | 2011-12-23 08:13:45 +0100 | [diff] [blame^] | 1543 | tx_cmd->rts_retry_limit = min(data_retry_limit, rts_retry_limit); |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 1544 | |
| 1545 | /* DATA packets will use the uCode station table for rate/antenna |
| 1546 | * selection */ |
| 1547 | if (ieee80211_is_data(fc)) { |
| 1548 | tx_cmd->initial_rate_idx = 0; |
| 1549 | tx_cmd->tx_flags |= TX_CMD_FLG_STA_RATE_MSK; |
| 1550 | return; |
| 1551 | } |
| 1552 | |
| 1553 | /** |
| 1554 | * If the current TX rate stored in mac80211 has the MCS bit set, it's |
| 1555 | * not really a TX rate. Thus, we use the lowest supported rate for |
| 1556 | * this band. Also use the lowest supported rate if the stored rate |
| 1557 | * idx is invalid. |
| 1558 | */ |
| 1559 | rate_idx = info->control.rates[0].idx; |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1560 | if ((info->control.rates[0].flags & IEEE80211_TX_RC_MCS) || rate_idx < 0 |
| 1561 | || rate_idx > RATE_COUNT_LEGACY) |
| 1562 | rate_idx = |
| 1563 | rate_lowest_index(&il->bands[info->band], |
| 1564 | info->control.sta); |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 1565 | /* For 5 GHZ band, remap mac80211 rate indices into driver indices */ |
| 1566 | if (info->band == IEEE80211_BAND_5GHZ) |
| 1567 | rate_idx += IL_FIRST_OFDM_RATE; |
| 1568 | /* Get PLCP rate for tx_cmd->rate_n_flags */ |
| 1569 | rate_plcp = il_rates[rate_idx].plcp; |
| 1570 | /* Zero out flags for this packet */ |
| 1571 | rate_flags = 0; |
| 1572 | |
| 1573 | /* Set CCK flag as needed */ |
| 1574 | if (rate_idx >= IL_FIRST_CCK_RATE && rate_idx <= IL_LAST_CCK_RATE) |
| 1575 | rate_flags |= RATE_MCS_CCK_MSK; |
| 1576 | |
| 1577 | /* Set up antennas */ |
Stanislaw Gruszka | a0c1ef3 | 2011-12-23 08:13:44 +0100 | [diff] [blame] | 1578 | il4965_toggle_tx_ant(il, &il->mgmt_tx_ant, il->hw_params.valid_tx_ant); |
Stanislaw Gruszka | 616107e | 2011-12-23 08:13:45 +0100 | [diff] [blame^] | 1579 | rate_flags |= BIT(il->mgmt_tx_ant) << RATE_MCS_ANT_POS; |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 1580 | |
| 1581 | /* Set the rate in the TX cmd */ |
Stanislaw Gruszka | 616107e | 2011-12-23 08:13:45 +0100 | [diff] [blame^] | 1582 | tx_cmd->rate_n_flags = cpu_to_le32(rate_plcp | rate_flags); |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 1583 | } |
| 1584 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1585 | static void |
| 1586 | il4965_tx_cmd_build_hwcrypto(struct il_priv *il, struct ieee80211_tx_info *info, |
| 1587 | struct il_tx_cmd *tx_cmd, struct sk_buff *skb_frag, |
| 1588 | int sta_id) |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 1589 | { |
| 1590 | struct ieee80211_key_conf *keyconf = info->control.hw_key; |
| 1591 | |
| 1592 | switch (keyconf->cipher) { |
| 1593 | case WLAN_CIPHER_SUITE_CCMP: |
| 1594 | tx_cmd->sec_ctl = TX_CMD_SEC_CCM; |
| 1595 | memcpy(tx_cmd->key, keyconf->key, keyconf->keylen); |
| 1596 | if (info->flags & IEEE80211_TX_CTL_AMPDU) |
| 1597 | tx_cmd->tx_flags |= TX_CMD_FLG_AGG_CCMP_MSK; |
| 1598 | D_TX("tx_cmd with AES hwcrypto\n"); |
| 1599 | break; |
| 1600 | |
| 1601 | case WLAN_CIPHER_SUITE_TKIP: |
| 1602 | tx_cmd->sec_ctl = TX_CMD_SEC_TKIP; |
| 1603 | ieee80211_get_tkip_p2k(keyconf, skb_frag, tx_cmd->key); |
| 1604 | D_TX("tx_cmd with tkip hwcrypto\n"); |
| 1605 | break; |
| 1606 | |
| 1607 | case WLAN_CIPHER_SUITE_WEP104: |
| 1608 | tx_cmd->sec_ctl |= TX_CMD_SEC_KEY128; |
| 1609 | /* fall through */ |
| 1610 | case WLAN_CIPHER_SUITE_WEP40: |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1611 | tx_cmd->sec_ctl |= |
| 1612 | (TX_CMD_SEC_WEP | (keyconf->keyidx & TX_CMD_SEC_MSK) << |
| 1613 | TX_CMD_SEC_SHIFT); |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 1614 | |
| 1615 | memcpy(&tx_cmd->key[3], keyconf->key, keyconf->keylen); |
| 1616 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1617 | D_TX("Configuring packet for WEP encryption " "with key %d\n", |
| 1618 | keyconf->keyidx); |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 1619 | break; |
| 1620 | |
| 1621 | default: |
| 1622 | IL_ERR("Unknown encode cipher %x\n", keyconf->cipher); |
| 1623 | break; |
| 1624 | } |
| 1625 | } |
| 1626 | |
| 1627 | /* |
Stanislaw Gruszka | 4d69c75 | 2011-08-30 15:26:35 +0200 | [diff] [blame] | 1628 | * start C_TX command process |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 1629 | */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1630 | int |
| 1631 | il4965_tx_skb(struct il_priv *il, struct sk_buff *skb) |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 1632 | { |
| 1633 | struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data; |
| 1634 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); |
| 1635 | struct ieee80211_sta *sta = info->control.sta; |
| 1636 | struct il_station_priv *sta_priv = NULL; |
| 1637 | struct il_tx_queue *txq; |
| 1638 | struct il_queue *q; |
| 1639 | struct il_device_cmd *out_cmd; |
| 1640 | struct il_cmd_meta *out_meta; |
| 1641 | struct il_tx_cmd *tx_cmd; |
| 1642 | struct il_rxon_context *ctx = &il->ctx; |
| 1643 | int txq_id; |
| 1644 | dma_addr_t phys_addr; |
| 1645 | dma_addr_t txcmd_phys; |
| 1646 | dma_addr_t scratch_phys; |
| 1647 | u16 len, firstlen, secondlen; |
| 1648 | u16 seq_number = 0; |
| 1649 | __le16 fc; |
| 1650 | u8 hdr_len; |
| 1651 | u8 sta_id; |
| 1652 | u8 wait_write_ptr = 0; |
| 1653 | u8 tid = 0; |
| 1654 | u8 *qc = NULL; |
| 1655 | unsigned long flags; |
| 1656 | bool is_agg = false; |
| 1657 | |
| 1658 | if (info->control.vif) |
| 1659 | ctx = il_rxon_ctx_from_vif(info->control.vif); |
| 1660 | |
| 1661 | spin_lock_irqsave(&il->lock, flags); |
| 1662 | if (il_is_rfkill(il)) { |
| 1663 | D_DROP("Dropping - RF KILL\n"); |
| 1664 | goto drop_unlock; |
| 1665 | } |
| 1666 | |
| 1667 | fc = hdr->frame_control; |
| 1668 | |
| 1669 | #ifdef CONFIG_IWLEGACY_DEBUG |
| 1670 | if (ieee80211_is_auth(fc)) |
| 1671 | D_TX("Sending AUTH frame\n"); |
| 1672 | else if (ieee80211_is_assoc_req(fc)) |
| 1673 | D_TX("Sending ASSOC frame\n"); |
| 1674 | else if (ieee80211_is_reassoc_req(fc)) |
| 1675 | D_TX("Sending REASSOC frame\n"); |
| 1676 | #endif |
| 1677 | |
| 1678 | hdr_len = ieee80211_hdrlen(fc); |
| 1679 | |
| 1680 | /* For management frames use broadcast id to do not break aggregation */ |
| 1681 | if (!ieee80211_is_data(fc)) |
| 1682 | sta_id = ctx->bcast_sta_id; |
| 1683 | else { |
| 1684 | /* Find idx into station table for destination station */ |
| 1685 | sta_id = il_sta_id_or_broadcast(il, ctx, info->control.sta); |
| 1686 | |
| 1687 | if (sta_id == IL_INVALID_STATION) { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1688 | D_DROP("Dropping - INVALID STATION: %pM\n", hdr->addr1); |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 1689 | goto drop_unlock; |
| 1690 | } |
| 1691 | } |
| 1692 | |
| 1693 | D_TX("station Id %d\n", sta_id); |
| 1694 | |
| 1695 | if (sta) |
| 1696 | sta_priv = (void *)sta->drv_priv; |
| 1697 | |
| 1698 | if (sta_priv && sta_priv->asleep && |
| 1699 | (info->flags & IEEE80211_TX_CTL_POLL_RESPONSE)) { |
| 1700 | /* |
| 1701 | * This sends an asynchronous command to the device, |
| 1702 | * but we can rely on it being processed before the |
| 1703 | * next frame is processed -- and the next frame to |
| 1704 | * this station is the one that will consume this |
| 1705 | * counter. |
| 1706 | * For now set the counter to just 1 since we do not |
| 1707 | * support uAPSD yet. |
| 1708 | */ |
| 1709 | il4965_sta_modify_sleep_tx_count(il, sta_id, 1); |
| 1710 | } |
| 1711 | |
| 1712 | /* |
| 1713 | * Send this frame after DTIM -- there's a special queue |
| 1714 | * reserved for this for contexts that support AP mode. |
| 1715 | */ |
| 1716 | if (info->flags & IEEE80211_TX_CTL_SEND_AFTER_DTIM) { |
| 1717 | txq_id = ctx->mcast_queue; |
| 1718 | /* |
| 1719 | * The microcode will clear the more data |
| 1720 | * bit in the last frame it transmits. |
| 1721 | */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1722 | hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_MOREDATA); |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 1723 | } else |
| 1724 | txq_id = ctx->ac_to_queue[skb_get_queue_mapping(skb)]; |
| 1725 | |
| 1726 | /* irqs already disabled/saved above when locking il->lock */ |
| 1727 | spin_lock(&il->sta_lock); |
| 1728 | |
| 1729 | if (ieee80211_is_data_qos(fc)) { |
| 1730 | qc = ieee80211_get_qos_ctl(hdr); |
| 1731 | tid = qc[0] & IEEE80211_QOS_CTL_TID_MASK; |
| 1732 | if (WARN_ON_ONCE(tid >= MAX_TID_COUNT)) { |
| 1733 | spin_unlock(&il->sta_lock); |
| 1734 | goto drop_unlock; |
| 1735 | } |
| 1736 | seq_number = il->stations[sta_id].tid[tid].seq_number; |
| 1737 | seq_number &= IEEE80211_SCTL_SEQ; |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1738 | hdr->seq_ctrl = |
| 1739 | hdr->seq_ctrl & cpu_to_le16(IEEE80211_SCTL_FRAG); |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 1740 | hdr->seq_ctrl |= cpu_to_le16(seq_number); |
| 1741 | seq_number += 0x10; |
| 1742 | /* aggregation is on for this <sta,tid> */ |
| 1743 | if (info->flags & IEEE80211_TX_CTL_AMPDU && |
| 1744 | il->stations[sta_id].tid[tid].agg.state == IL_AGG_ON) { |
| 1745 | txq_id = il->stations[sta_id].tid[tid].agg.txq_id; |
| 1746 | is_agg = true; |
| 1747 | } |
| 1748 | } |
| 1749 | |
| 1750 | txq = &il->txq[txq_id]; |
| 1751 | q = &txq->q; |
| 1752 | |
| 1753 | if (unlikely(il_queue_space(q) < q->high_mark)) { |
| 1754 | spin_unlock(&il->sta_lock); |
| 1755 | goto drop_unlock; |
| 1756 | } |
| 1757 | |
| 1758 | if (ieee80211_is_data_qos(fc)) { |
| 1759 | il->stations[sta_id].tid[tid].tfds_in_queue++; |
| 1760 | if (!ieee80211_has_morefrags(fc)) |
| 1761 | il->stations[sta_id].tid[tid].seq_number = seq_number; |
| 1762 | } |
| 1763 | |
| 1764 | spin_unlock(&il->sta_lock); |
| 1765 | |
| 1766 | /* Set up driver data for this TFD */ |
| 1767 | memset(&(txq->txb[q->write_ptr]), 0, sizeof(struct il_tx_info)); |
| 1768 | txq->txb[q->write_ptr].skb = skb; |
| 1769 | txq->txb[q->write_ptr].ctx = ctx; |
| 1770 | |
| 1771 | /* Set up first empty entry in queue's array of Tx/cmd buffers */ |
| 1772 | out_cmd = txq->cmd[q->write_ptr]; |
| 1773 | out_meta = &txq->meta[q->write_ptr]; |
| 1774 | tx_cmd = &out_cmd->cmd.tx; |
| 1775 | memset(&out_cmd->hdr, 0, sizeof(out_cmd->hdr)); |
| 1776 | memset(tx_cmd, 0, sizeof(struct il_tx_cmd)); |
| 1777 | |
| 1778 | /* |
| 1779 | * Set up the Tx-command (not MAC!) header. |
| 1780 | * Store the chosen Tx queue and TFD idx within the sequence field; |
| 1781 | * after Tx, uCode's Tx response will return this value so driver can |
| 1782 | * locate the frame within the tx queue and do post-tx processing. |
| 1783 | */ |
Stanislaw Gruszka | 4d69c75 | 2011-08-30 15:26:35 +0200 | [diff] [blame] | 1784 | out_cmd->hdr.cmd = C_TX; |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1785 | out_cmd->hdr.sequence = |
| 1786 | cpu_to_le16((u16) |
| 1787 | (QUEUE_TO_SEQ(txq_id) | IDX_TO_SEQ(q->write_ptr))); |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 1788 | |
| 1789 | /* Copy MAC header from skb into command buffer */ |
| 1790 | memcpy(tx_cmd->hdr, hdr, hdr_len); |
| 1791 | |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 1792 | /* Total # bytes to be transmitted */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1793 | len = (u16) skb->len; |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 1794 | tx_cmd->len = cpu_to_le16(len); |
| 1795 | |
| 1796 | if (info->control.hw_key) |
| 1797 | il4965_tx_cmd_build_hwcrypto(il, info, tx_cmd, skb, sta_id); |
| 1798 | |
| 1799 | /* TODO need this for burst mode later on */ |
| 1800 | il4965_tx_cmd_build_basic(il, skb, tx_cmd, info, hdr, sta_id); |
| 1801 | il_dbg_log_tx_data_frame(il, len, hdr); |
| 1802 | |
| 1803 | il4965_tx_cmd_build_rate(il, tx_cmd, info, fc); |
| 1804 | |
| 1805 | il_update_stats(il, true, fc, len); |
| 1806 | /* |
| 1807 | * Use the first empty entry in this queue's command buffer array |
| 1808 | * to contain the Tx command and MAC header concatenated together |
| 1809 | * (payload data will be in another buffer). |
| 1810 | * Size of this varies, due to varying MAC header length. |
| 1811 | * If end is not dword aligned, we'll have 2 extra bytes at the end |
| 1812 | * of the MAC header (device reads on dword boundaries). |
| 1813 | * We'll tell device about this padding later. |
| 1814 | */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1815 | len = sizeof(struct il_tx_cmd) + sizeof(struct il_cmd_header) + hdr_len; |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 1816 | firstlen = (len + 3) & ~3; |
| 1817 | |
| 1818 | /* Tell NIC about any 2-byte padding after MAC header */ |
| 1819 | if (firstlen != len) |
| 1820 | tx_cmd->tx_flags |= TX_CMD_FLG_MH_PAD_MSK; |
| 1821 | |
| 1822 | /* Physical address of this Tx command's header (not MAC header!), |
| 1823 | * within command buffer array. */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1824 | txcmd_phys = |
| 1825 | pci_map_single(il->pci_dev, &out_cmd->hdr, firstlen, |
| 1826 | PCI_DMA_BIDIRECTIONAL); |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 1827 | dma_unmap_addr_set(out_meta, mapping, txcmd_phys); |
| 1828 | dma_unmap_len_set(out_meta, len, firstlen); |
| 1829 | /* Add buffer containing Tx command and MAC(!) header to TFD's |
| 1830 | * first entry */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1831 | il->cfg->ops->lib->txq_attach_buf_to_tfd(il, txq, txcmd_phys, firstlen, |
| 1832 | 1, 0); |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 1833 | |
| 1834 | if (!ieee80211_has_morefrags(hdr->frame_control)) { |
| 1835 | txq->need_update = 1; |
| 1836 | } else { |
| 1837 | wait_write_ptr = 1; |
| 1838 | txq->need_update = 0; |
| 1839 | } |
| 1840 | |
| 1841 | /* Set up TFD's 2nd entry to point directly to remainder of skb, |
| 1842 | * if any (802.11 null frames have no payload). */ |
| 1843 | secondlen = skb->len - hdr_len; |
| 1844 | if (secondlen > 0) { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1845 | phys_addr = |
| 1846 | pci_map_single(il->pci_dev, skb->data + hdr_len, secondlen, |
| 1847 | PCI_DMA_TODEVICE); |
| 1848 | il->cfg->ops->lib->txq_attach_buf_to_tfd(il, txq, phys_addr, |
| 1849 | secondlen, 0, 0); |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 1850 | } |
| 1851 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1852 | scratch_phys = |
| 1853 | txcmd_phys + sizeof(struct il_cmd_header) + |
| 1854 | offsetof(struct il_tx_cmd, scratch); |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 1855 | |
| 1856 | /* take back ownership of DMA buffer to enable update */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1857 | pci_dma_sync_single_for_cpu(il->pci_dev, txcmd_phys, firstlen, |
| 1858 | PCI_DMA_BIDIRECTIONAL); |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 1859 | tx_cmd->dram_lsb_ptr = cpu_to_le32(scratch_phys); |
| 1860 | tx_cmd->dram_msb_ptr = il_get_dma_hi_addr(scratch_phys); |
| 1861 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1862 | D_TX("sequence nr = 0X%x\n", le16_to_cpu(out_cmd->hdr.sequence)); |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 1863 | D_TX("tx_flags = 0X%x\n", le32_to_cpu(tx_cmd->tx_flags)); |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1864 | il_print_hex_dump(il, IL_DL_TX, (u8 *) tx_cmd, sizeof(*tx_cmd)); |
| 1865 | il_print_hex_dump(il, IL_DL_TX, (u8 *) tx_cmd->hdr, hdr_len); |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 1866 | |
| 1867 | /* Set up entry for this TFD in Tx byte-count array */ |
| 1868 | if (info->flags & IEEE80211_TX_CTL_AMPDU) |
| 1869 | il->cfg->ops->lib->txq_update_byte_cnt_tbl(il, txq, |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1870 | le16_to_cpu(tx_cmd-> |
| 1871 | len)); |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 1872 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1873 | pci_dma_sync_single_for_device(il->pci_dev, txcmd_phys, firstlen, |
| 1874 | PCI_DMA_BIDIRECTIONAL); |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 1875 | |
| 1876 | /* Tell device the write idx *just past* this latest filled TFD */ |
| 1877 | q->write_ptr = il_queue_inc_wrap(q->write_ptr, q->n_bd); |
| 1878 | il_txq_update_write_ptr(il, txq); |
| 1879 | spin_unlock_irqrestore(&il->lock, flags); |
| 1880 | |
| 1881 | /* |
| 1882 | * At this point the frame is "transmitted" successfully |
| 1883 | * and we will get a TX status notification eventually, |
| 1884 | * regardless of the value of ret. "ret" only indicates |
| 1885 | * whether or not we should update the write pointer. |
| 1886 | */ |
| 1887 | |
| 1888 | /* |
| 1889 | * Avoid atomic ops if it isn't an associated client. |
| 1890 | * Also, if this is a packet for aggregation, don't |
| 1891 | * increase the counter because the ucode will stop |
| 1892 | * aggregation queues when their respective station |
| 1893 | * goes to sleep. |
| 1894 | */ |
| 1895 | if (sta_priv && sta_priv->client && !is_agg) |
| 1896 | atomic_inc(&sta_priv->pending_frames); |
| 1897 | |
| 1898 | if (il_queue_space(q) < q->high_mark && il->mac80211_registered) { |
| 1899 | if (wait_write_ptr) { |
| 1900 | spin_lock_irqsave(&il->lock, flags); |
| 1901 | txq->need_update = 1; |
| 1902 | il_txq_update_write_ptr(il, txq); |
| 1903 | spin_unlock_irqrestore(&il->lock, flags); |
| 1904 | } else { |
| 1905 | il_stop_queue(il, txq); |
| 1906 | } |
| 1907 | } |
| 1908 | |
| 1909 | return 0; |
| 1910 | |
| 1911 | drop_unlock: |
| 1912 | spin_unlock_irqrestore(&il->lock, flags); |
| 1913 | return -1; |
| 1914 | } |
| 1915 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1916 | static inline int |
| 1917 | il4965_alloc_dma_ptr(struct il_priv *il, struct il_dma_ptr *ptr, size_t size) |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 1918 | { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1919 | ptr->addr = |
| 1920 | dma_alloc_coherent(&il->pci_dev->dev, size, &ptr->dma, GFP_KERNEL); |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 1921 | if (!ptr->addr) |
| 1922 | return -ENOMEM; |
| 1923 | ptr->size = size; |
| 1924 | return 0; |
| 1925 | } |
| 1926 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1927 | static inline void |
| 1928 | il4965_free_dma_ptr(struct il_priv *il, struct il_dma_ptr *ptr) |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 1929 | { |
| 1930 | if (unlikely(!ptr->addr)) |
| 1931 | return; |
| 1932 | |
| 1933 | dma_free_coherent(&il->pci_dev->dev, ptr->size, ptr->addr, ptr->dma); |
| 1934 | memset(ptr, 0, sizeof(*ptr)); |
| 1935 | } |
| 1936 | |
| 1937 | /** |
| 1938 | * il4965_hw_txq_ctx_free - Free TXQ Context |
| 1939 | * |
| 1940 | * Destroy all TX DMA queues and structures |
| 1941 | */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1942 | void |
| 1943 | il4965_hw_txq_ctx_free(struct il_priv *il) |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 1944 | { |
| 1945 | int txq_id; |
| 1946 | |
| 1947 | /* Tx queues */ |
| 1948 | if (il->txq) { |
| 1949 | for (txq_id = 0; txq_id < il->hw_params.max_txq_num; txq_id++) |
| 1950 | if (txq_id == il->cmd_queue) |
| 1951 | il_cmd_queue_free(il); |
| 1952 | else |
| 1953 | il_tx_queue_free(il, txq_id); |
| 1954 | } |
| 1955 | il4965_free_dma_ptr(il, &il->kw); |
| 1956 | |
| 1957 | il4965_free_dma_ptr(il, &il->scd_bc_tbls); |
| 1958 | |
| 1959 | /* free tx queue structure */ |
| 1960 | il_txq_mem(il); |
| 1961 | } |
| 1962 | |
| 1963 | /** |
| 1964 | * il4965_txq_ctx_alloc - allocate TX queue context |
| 1965 | * Allocate all Tx DMA structures and initialize them |
| 1966 | * |
| 1967 | * @param il |
| 1968 | * @return error code |
| 1969 | */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1970 | int |
| 1971 | il4965_txq_ctx_alloc(struct il_priv *il) |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 1972 | { |
| 1973 | int ret; |
| 1974 | int txq_id, slots_num; |
| 1975 | unsigned long flags; |
| 1976 | |
| 1977 | /* Free all tx/cmd queues and keep-warm buffer */ |
| 1978 | il4965_hw_txq_ctx_free(il); |
| 1979 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1980 | ret = |
| 1981 | il4965_alloc_dma_ptr(il, &il->scd_bc_tbls, |
| 1982 | il->hw_params.scd_bc_tbls_size); |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 1983 | if (ret) { |
| 1984 | IL_ERR("Scheduler BC Table allocation failed\n"); |
| 1985 | goto error_bc_tbls; |
| 1986 | } |
| 1987 | /* Alloc keep-warm buffer */ |
| 1988 | ret = il4965_alloc_dma_ptr(il, &il->kw, IL_KW_SIZE); |
| 1989 | if (ret) { |
| 1990 | IL_ERR("Keep Warm allocation failed\n"); |
| 1991 | goto error_kw; |
| 1992 | } |
| 1993 | |
| 1994 | /* allocate tx queue structure */ |
| 1995 | ret = il_alloc_txq_mem(il); |
| 1996 | if (ret) |
| 1997 | goto error; |
| 1998 | |
| 1999 | spin_lock_irqsave(&il->lock, flags); |
| 2000 | |
| 2001 | /* Turn off all Tx DMA fifos */ |
| 2002 | il4965_txq_set_sched(il, 0); |
| 2003 | |
| 2004 | /* Tell NIC where to find the "keep warm" buffer */ |
Stanislaw Gruszka | 9a95b37 | 2011-08-31 14:20:23 +0200 | [diff] [blame] | 2005 | il_wr(il, FH49_KW_MEM_ADDR_REG, il->kw.dma >> 4); |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 2006 | |
| 2007 | spin_unlock_irqrestore(&il->lock, flags); |
| 2008 | |
| 2009 | /* Alloc and init all Tx queues, including the command queue (#4/#9) */ |
| 2010 | for (txq_id = 0; txq_id < il->hw_params.max_txq_num; txq_id++) { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2011 | slots_num = |
| 2012 | (txq_id == |
| 2013 | il->cmd_queue) ? TFD_CMD_SLOTS : TFD_TX_CMD_SLOTS; |
| 2014 | ret = il_tx_queue_init(il, &il->txq[txq_id], slots_num, txq_id); |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 2015 | if (ret) { |
| 2016 | IL_ERR("Tx %d queue init failed\n", txq_id); |
| 2017 | goto error; |
| 2018 | } |
| 2019 | } |
| 2020 | |
| 2021 | return ret; |
| 2022 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2023 | error: |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 2024 | il4965_hw_txq_ctx_free(il); |
| 2025 | il4965_free_dma_ptr(il, &il->kw); |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2026 | error_kw: |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 2027 | il4965_free_dma_ptr(il, &il->scd_bc_tbls); |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2028 | error_bc_tbls: |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 2029 | return ret; |
| 2030 | } |
| 2031 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2032 | void |
| 2033 | il4965_txq_ctx_reset(struct il_priv *il) |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 2034 | { |
| 2035 | int txq_id, slots_num; |
| 2036 | unsigned long flags; |
| 2037 | |
| 2038 | spin_lock_irqsave(&il->lock, flags); |
| 2039 | |
| 2040 | /* Turn off all Tx DMA fifos */ |
| 2041 | il4965_txq_set_sched(il, 0); |
| 2042 | |
| 2043 | /* Tell NIC where to find the "keep warm" buffer */ |
Stanislaw Gruszka | 9a95b37 | 2011-08-31 14:20:23 +0200 | [diff] [blame] | 2044 | il_wr(il, FH49_KW_MEM_ADDR_REG, il->kw.dma >> 4); |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 2045 | |
| 2046 | spin_unlock_irqrestore(&il->lock, flags); |
| 2047 | |
| 2048 | /* Alloc and init all Tx queues, including the command queue (#4) */ |
| 2049 | for (txq_id = 0; txq_id < il->hw_params.max_txq_num; txq_id++) { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2050 | slots_num = |
| 2051 | txq_id == il->cmd_queue ? TFD_CMD_SLOTS : TFD_TX_CMD_SLOTS; |
| 2052 | il_tx_queue_reset(il, &il->txq[txq_id], slots_num, txq_id); |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 2053 | } |
| 2054 | } |
| 2055 | |
| 2056 | /** |
| 2057 | * il4965_txq_ctx_stop - Stop all Tx DMA channels |
| 2058 | */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2059 | void |
| 2060 | il4965_txq_ctx_stop(struct il_priv *il) |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 2061 | { |
| 2062 | int ch, txq_id; |
| 2063 | unsigned long flags; |
| 2064 | |
| 2065 | /* Turn off all Tx DMA fifos */ |
| 2066 | spin_lock_irqsave(&il->lock, flags); |
| 2067 | |
| 2068 | il4965_txq_set_sched(il, 0); |
| 2069 | |
| 2070 | /* Stop each Tx DMA channel, and wait for it to be idle */ |
| 2071 | for (ch = 0; ch < il->hw_params.dma_chnl_num; ch++) { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2072 | il_wr(il, FH49_TCSR_CHNL_TX_CONFIG_REG(ch), 0x0); |
| 2073 | if (il_poll_bit |
| 2074 | (il, FH49_TSSR_TX_STATUS_REG, |
| 2075 | FH49_TSSR_TX_STATUS_REG_MSK_CHNL_IDLE(ch), 1000)) |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 2076 | IL_ERR("Failing on timeout while stopping" |
Stanislaw Gruszka | 1722f8e | 2011-11-15 14:51:01 +0100 | [diff] [blame] | 2077 | " DMA channel %d [0x%08x]", ch, |
| 2078 | il_rd(il, FH49_TSSR_TX_STATUS_REG)); |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 2079 | } |
| 2080 | spin_unlock_irqrestore(&il->lock, flags); |
| 2081 | |
| 2082 | if (!il->txq) |
| 2083 | return; |
| 2084 | |
| 2085 | /* Unmap DMA from host system and free skb's */ |
| 2086 | for (txq_id = 0; txq_id < il->hw_params.max_txq_num; txq_id++) |
| 2087 | if (txq_id == il->cmd_queue) |
| 2088 | il_cmd_queue_unmap(il); |
| 2089 | else |
| 2090 | il_tx_queue_unmap(il, txq_id); |
| 2091 | } |
| 2092 | |
| 2093 | /* |
| 2094 | * Find first available (lowest unused) Tx Queue, mark it "active". |
| 2095 | * Called only when finding queue for aggregation. |
| 2096 | * Should never return anything < 7, because they should already |
| 2097 | * be in use as EDCA AC (0-3), Command (4), reserved (5, 6) |
| 2098 | */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2099 | static int |
| 2100 | il4965_txq_ctx_activate_free(struct il_priv *il) |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 2101 | { |
| 2102 | int txq_id; |
| 2103 | |
| 2104 | for (txq_id = 0; txq_id < il->hw_params.max_txq_num; txq_id++) |
| 2105 | if (!test_and_set_bit(txq_id, &il->txq_ctx_active_msk)) |
| 2106 | return txq_id; |
| 2107 | return -1; |
| 2108 | } |
| 2109 | |
| 2110 | /** |
| 2111 | * il4965_tx_queue_stop_scheduler - Stop queue, but keep configuration |
| 2112 | */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2113 | static void |
| 2114 | il4965_tx_queue_stop_scheduler(struct il_priv *il, u16 txq_id) |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 2115 | { |
| 2116 | /* Simply stop the queue, but don't change any configuration; |
| 2117 | * the SCD_ACT_EN bit is the write-enable mask for the ACTIVE bit. */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2118 | il_wr_prph(il, IL49_SCD_QUEUE_STATUS_BITS(txq_id), |
Stanislaw Gruszka | 1722f8e | 2011-11-15 14:51:01 +0100 | [diff] [blame] | 2119 | (0 << IL49_SCD_QUEUE_STTS_REG_POS_ACTIVE) | |
| 2120 | (1 << IL49_SCD_QUEUE_STTS_REG_POS_SCD_ACT_EN)); |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 2121 | } |
| 2122 | |
| 2123 | /** |
| 2124 | * il4965_tx_queue_set_q2ratid - Map unique receiver/tid combination to a queue |
| 2125 | */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2126 | static int |
| 2127 | il4965_tx_queue_set_q2ratid(struct il_priv *il, u16 ra_tid, u16 txq_id) |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 2128 | { |
| 2129 | u32 tbl_dw_addr; |
| 2130 | u32 tbl_dw; |
| 2131 | u16 scd_q2ratid; |
| 2132 | |
| 2133 | scd_q2ratid = ra_tid & IL_SCD_QUEUE_RA_TID_MAP_RATID_MSK; |
| 2134 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2135 | tbl_dw_addr = |
| 2136 | il->scd_base_addr + IL49_SCD_TRANSLATE_TBL_OFFSET_QUEUE(txq_id); |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 2137 | |
| 2138 | tbl_dw = il_read_targ_mem(il, tbl_dw_addr); |
| 2139 | |
| 2140 | if (txq_id & 0x1) |
| 2141 | tbl_dw = (scd_q2ratid << 16) | (tbl_dw & 0x0000FFFF); |
| 2142 | else |
| 2143 | tbl_dw = scd_q2ratid | (tbl_dw & 0xFFFF0000); |
| 2144 | |
| 2145 | il_write_targ_mem(il, tbl_dw_addr, tbl_dw); |
| 2146 | |
| 2147 | return 0; |
| 2148 | } |
| 2149 | |
| 2150 | /** |
| 2151 | * il4965_tx_queue_agg_enable - Set up & enable aggregation for selected queue |
| 2152 | * |
| 2153 | * NOTE: txq_id must be greater than IL49_FIRST_AMPDU_QUEUE, |
| 2154 | * i.e. it must be one of the higher queues used for aggregation |
| 2155 | */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2156 | static int |
| 2157 | il4965_txq_agg_enable(struct il_priv *il, int txq_id, int tx_fifo, int sta_id, |
| 2158 | int tid, u16 ssn_idx) |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 2159 | { |
| 2160 | unsigned long flags; |
| 2161 | u16 ra_tid; |
| 2162 | int ret; |
| 2163 | |
| 2164 | if ((IL49_FIRST_AMPDU_QUEUE > txq_id) || |
| 2165 | (IL49_FIRST_AMPDU_QUEUE + |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2166 | il->cfg->base_params->num_of_ampdu_queues <= txq_id)) { |
| 2167 | IL_WARN("queue number out of range: %d, must be %d to %d\n", |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 2168 | txq_id, IL49_FIRST_AMPDU_QUEUE, |
| 2169 | IL49_FIRST_AMPDU_QUEUE + |
| 2170 | il->cfg->base_params->num_of_ampdu_queues - 1); |
| 2171 | return -EINVAL; |
| 2172 | } |
| 2173 | |
| 2174 | ra_tid = BUILD_RAxTID(sta_id, tid); |
| 2175 | |
| 2176 | /* Modify device's station table to Tx this TID */ |
| 2177 | ret = il4965_sta_tx_modify_enable_tid(il, sta_id, tid); |
| 2178 | if (ret) |
| 2179 | return ret; |
| 2180 | |
| 2181 | spin_lock_irqsave(&il->lock, flags); |
| 2182 | |
| 2183 | /* Stop this Tx queue before configuring it */ |
| 2184 | il4965_tx_queue_stop_scheduler(il, txq_id); |
| 2185 | |
| 2186 | /* Map receiver-address / traffic-ID to this queue */ |
| 2187 | il4965_tx_queue_set_q2ratid(il, ra_tid, txq_id); |
| 2188 | |
| 2189 | /* Set this queue as a chain-building queue */ |
| 2190 | il_set_bits_prph(il, IL49_SCD_QUEUECHAIN_SEL, (1 << txq_id)); |
| 2191 | |
| 2192 | /* Place first TFD at idx corresponding to start sequence number. |
| 2193 | * Assumes that ssn_idx is valid (!= 0xFFF) */ |
| 2194 | il->txq[txq_id].q.read_ptr = (ssn_idx & 0xff); |
| 2195 | il->txq[txq_id].q.write_ptr = (ssn_idx & 0xff); |
| 2196 | il4965_set_wr_ptrs(il, txq_id, ssn_idx); |
| 2197 | |
| 2198 | /* Set up Tx win size and frame limit for this queue */ |
| 2199 | il_write_targ_mem(il, |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2200 | il->scd_base_addr + |
| 2201 | IL49_SCD_CONTEXT_QUEUE_OFFSET(txq_id), |
| 2202 | (SCD_WIN_SIZE << IL49_SCD_QUEUE_CTX_REG1_WIN_SIZE_POS) |
| 2203 | & IL49_SCD_QUEUE_CTX_REG1_WIN_SIZE_MSK); |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 2204 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2205 | il_write_targ_mem(il, |
| 2206 | il->scd_base_addr + |
| 2207 | IL49_SCD_CONTEXT_QUEUE_OFFSET(txq_id) + sizeof(u32), |
| 2208 | (SCD_FRAME_LIMIT << |
| 2209 | IL49_SCD_QUEUE_CTX_REG2_FRAME_LIMIT_POS) & |
| 2210 | IL49_SCD_QUEUE_CTX_REG2_FRAME_LIMIT_MSK); |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 2211 | |
| 2212 | il_set_bits_prph(il, IL49_SCD_INTERRUPT_MASK, (1 << txq_id)); |
| 2213 | |
| 2214 | /* Set up Status area in SRAM, map to Tx DMA/FIFO, activate the queue */ |
| 2215 | il4965_tx_queue_set_status(il, &il->txq[txq_id], tx_fifo, 1); |
| 2216 | |
| 2217 | spin_unlock_irqrestore(&il->lock, flags); |
| 2218 | |
| 2219 | return 0; |
| 2220 | } |
| 2221 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2222 | int |
| 2223 | il4965_tx_agg_start(struct il_priv *il, struct ieee80211_vif *vif, |
| 2224 | struct ieee80211_sta *sta, u16 tid, u16 * ssn) |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 2225 | { |
| 2226 | int sta_id; |
| 2227 | int tx_fifo; |
| 2228 | int txq_id; |
| 2229 | int ret; |
| 2230 | unsigned long flags; |
| 2231 | struct il_tid_data *tid_data; |
| 2232 | |
| 2233 | tx_fifo = il4965_get_fifo_from_tid(il_rxon_ctx_from_vif(vif), tid); |
| 2234 | if (unlikely(tx_fifo < 0)) |
| 2235 | return tx_fifo; |
| 2236 | |
Greg Dietsche | 53611e0 | 2011-08-28 08:26:16 -0500 | [diff] [blame] | 2237 | D_HT("%s on ra = %pM tid = %d\n", __func__, sta->addr, tid); |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 2238 | |
| 2239 | sta_id = il_sta_id(sta); |
| 2240 | if (sta_id == IL_INVALID_STATION) { |
| 2241 | IL_ERR("Start AGG on invalid station\n"); |
| 2242 | return -ENXIO; |
| 2243 | } |
| 2244 | if (unlikely(tid >= MAX_TID_COUNT)) |
| 2245 | return -EINVAL; |
| 2246 | |
| 2247 | if (il->stations[sta_id].tid[tid].agg.state != IL_AGG_OFF) { |
| 2248 | IL_ERR("Start AGG when state is not IL_AGG_OFF !\n"); |
| 2249 | return -ENXIO; |
| 2250 | } |
| 2251 | |
| 2252 | txq_id = il4965_txq_ctx_activate_free(il); |
| 2253 | if (txq_id == -1) { |
| 2254 | IL_ERR("No free aggregation queue available\n"); |
| 2255 | return -ENXIO; |
| 2256 | } |
| 2257 | |
| 2258 | spin_lock_irqsave(&il->sta_lock, flags); |
| 2259 | tid_data = &il->stations[sta_id].tid[tid]; |
| 2260 | *ssn = SEQ_TO_SN(tid_data->seq_number); |
| 2261 | tid_data->agg.txq_id = txq_id; |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2262 | il_set_swq_id(&il->txq[txq_id], il4965_get_ac_from_tid(tid), txq_id); |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 2263 | spin_unlock_irqrestore(&il->sta_lock, flags); |
| 2264 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2265 | ret = il4965_txq_agg_enable(il, txq_id, tx_fifo, sta_id, tid, *ssn); |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 2266 | if (ret) |
| 2267 | return ret; |
| 2268 | |
| 2269 | spin_lock_irqsave(&il->sta_lock, flags); |
| 2270 | tid_data = &il->stations[sta_id].tid[tid]; |
| 2271 | if (tid_data->tfds_in_queue == 0) { |
| 2272 | D_HT("HW queue is empty\n"); |
| 2273 | tid_data->agg.state = IL_AGG_ON; |
| 2274 | ieee80211_start_tx_ba_cb_irqsafe(vif, sta->addr, tid); |
| 2275 | } else { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2276 | D_HT("HW queue is NOT empty: %d packets in HW queue\n", |
| 2277 | tid_data->tfds_in_queue); |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 2278 | tid_data->agg.state = IL_EMPTYING_HW_QUEUE_ADDBA; |
| 2279 | } |
| 2280 | spin_unlock_irqrestore(&il->sta_lock, flags); |
| 2281 | return ret; |
| 2282 | } |
| 2283 | |
| 2284 | /** |
| 2285 | * txq_id must be greater than IL49_FIRST_AMPDU_QUEUE |
| 2286 | * il->lock must be held by the caller |
| 2287 | */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2288 | static int |
| 2289 | il4965_txq_agg_disable(struct il_priv *il, u16 txq_id, u16 ssn_idx, u8 tx_fifo) |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 2290 | { |
| 2291 | if ((IL49_FIRST_AMPDU_QUEUE > txq_id) || |
| 2292 | (IL49_FIRST_AMPDU_QUEUE + |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2293 | il->cfg->base_params->num_of_ampdu_queues <= txq_id)) { |
| 2294 | IL_WARN("queue number out of range: %d, must be %d to %d\n", |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 2295 | txq_id, IL49_FIRST_AMPDU_QUEUE, |
| 2296 | IL49_FIRST_AMPDU_QUEUE + |
| 2297 | il->cfg->base_params->num_of_ampdu_queues - 1); |
| 2298 | return -EINVAL; |
| 2299 | } |
| 2300 | |
| 2301 | il4965_tx_queue_stop_scheduler(il, txq_id); |
| 2302 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2303 | il_clear_bits_prph(il, IL49_SCD_QUEUECHAIN_SEL, (1 << txq_id)); |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 2304 | |
| 2305 | il->txq[txq_id].q.read_ptr = (ssn_idx & 0xff); |
| 2306 | il->txq[txq_id].q.write_ptr = (ssn_idx & 0xff); |
| 2307 | /* supposes that ssn_idx is valid (!= 0xFFF) */ |
| 2308 | il4965_set_wr_ptrs(il, txq_id, ssn_idx); |
| 2309 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2310 | il_clear_bits_prph(il, IL49_SCD_INTERRUPT_MASK, (1 << txq_id)); |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 2311 | il_txq_ctx_deactivate(il, txq_id); |
| 2312 | il4965_tx_queue_set_status(il, &il->txq[txq_id], tx_fifo, 0); |
| 2313 | |
| 2314 | return 0; |
| 2315 | } |
| 2316 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2317 | int |
| 2318 | il4965_tx_agg_stop(struct il_priv *il, struct ieee80211_vif *vif, |
| 2319 | struct ieee80211_sta *sta, u16 tid) |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 2320 | { |
| 2321 | int tx_fifo_id, txq_id, sta_id, ssn; |
| 2322 | struct il_tid_data *tid_data; |
| 2323 | int write_ptr, read_ptr; |
| 2324 | unsigned long flags; |
| 2325 | |
| 2326 | tx_fifo_id = il4965_get_fifo_from_tid(il_rxon_ctx_from_vif(vif), tid); |
| 2327 | if (unlikely(tx_fifo_id < 0)) |
| 2328 | return tx_fifo_id; |
| 2329 | |
| 2330 | sta_id = il_sta_id(sta); |
| 2331 | |
| 2332 | if (sta_id == IL_INVALID_STATION) { |
| 2333 | IL_ERR("Invalid station for AGG tid %d\n", tid); |
| 2334 | return -ENXIO; |
| 2335 | } |
| 2336 | |
| 2337 | spin_lock_irqsave(&il->sta_lock, flags); |
| 2338 | |
| 2339 | tid_data = &il->stations[sta_id].tid[tid]; |
| 2340 | ssn = (tid_data->seq_number & IEEE80211_SCTL_SEQ) >> 4; |
| 2341 | txq_id = tid_data->agg.txq_id; |
| 2342 | |
| 2343 | switch (il->stations[sta_id].tid[tid].agg.state) { |
| 2344 | case IL_EMPTYING_HW_QUEUE_ADDBA: |
| 2345 | /* |
| 2346 | * This can happen if the peer stops aggregation |
| 2347 | * again before we've had a chance to drain the |
| 2348 | * queue we selected previously, i.e. before the |
| 2349 | * session was really started completely. |
| 2350 | */ |
| 2351 | D_HT("AGG stop before setup done\n"); |
| 2352 | goto turn_off; |
| 2353 | case IL_AGG_ON: |
| 2354 | break; |
| 2355 | default: |
| 2356 | IL_WARN("Stopping AGG while state not ON or starting\n"); |
| 2357 | } |
| 2358 | |
| 2359 | write_ptr = il->txq[txq_id].q.write_ptr; |
| 2360 | read_ptr = il->txq[txq_id].q.read_ptr; |
| 2361 | |
| 2362 | /* The queue is not empty */ |
| 2363 | if (write_ptr != read_ptr) { |
| 2364 | D_HT("Stopping a non empty AGG HW QUEUE\n"); |
| 2365 | il->stations[sta_id].tid[tid].agg.state = |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2366 | IL_EMPTYING_HW_QUEUE_DELBA; |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 2367 | spin_unlock_irqrestore(&il->sta_lock, flags); |
| 2368 | return 0; |
| 2369 | } |
| 2370 | |
| 2371 | D_HT("HW queue is empty\n"); |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2372 | turn_off: |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 2373 | il->stations[sta_id].tid[tid].agg.state = IL_AGG_OFF; |
| 2374 | |
| 2375 | /* do not restore/save irqs */ |
| 2376 | spin_unlock(&il->sta_lock); |
| 2377 | spin_lock(&il->lock); |
| 2378 | |
| 2379 | /* |
| 2380 | * the only reason this call can fail is queue number out of range, |
| 2381 | * which can happen if uCode is reloaded and all the station |
| 2382 | * information are lost. if it is outside the range, there is no need |
| 2383 | * to deactivate the uCode queue, just return "success" to allow |
| 2384 | * mac80211 to clean up it own data. |
| 2385 | */ |
| 2386 | il4965_txq_agg_disable(il, txq_id, ssn, tx_fifo_id); |
| 2387 | spin_unlock_irqrestore(&il->lock, flags); |
| 2388 | |
| 2389 | ieee80211_stop_tx_ba_cb_irqsafe(vif, sta->addr, tid); |
| 2390 | |
| 2391 | return 0; |
| 2392 | } |
| 2393 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2394 | int |
| 2395 | il4965_txq_check_empty(struct il_priv *il, int sta_id, u8 tid, int txq_id) |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 2396 | { |
| 2397 | struct il_queue *q = &il->txq[txq_id].q; |
| 2398 | u8 *addr = il->stations[sta_id].sta.sta.addr; |
| 2399 | struct il_tid_data *tid_data = &il->stations[sta_id].tid[tid]; |
| 2400 | struct il_rxon_context *ctx; |
| 2401 | |
| 2402 | ctx = &il->ctx; |
| 2403 | |
| 2404 | lockdep_assert_held(&il->sta_lock); |
| 2405 | |
| 2406 | switch (il->stations[sta_id].tid[tid].agg.state) { |
| 2407 | case IL_EMPTYING_HW_QUEUE_DELBA: |
| 2408 | /* We are reclaiming the last packet of the */ |
| 2409 | /* aggregated HW queue */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2410 | if (txq_id == tid_data->agg.txq_id && |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 2411 | q->read_ptr == q->write_ptr) { |
| 2412 | u16 ssn = SEQ_TO_SN(tid_data->seq_number); |
| 2413 | int tx_fifo = il4965_get_fifo_from_tid(ctx, tid); |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2414 | D_HT("HW queue empty: continue DELBA flow\n"); |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 2415 | il4965_txq_agg_disable(il, txq_id, ssn, tx_fifo); |
| 2416 | tid_data->agg.state = IL_AGG_OFF; |
| 2417 | ieee80211_stop_tx_ba_cb_irqsafe(ctx->vif, addr, tid); |
| 2418 | } |
| 2419 | break; |
| 2420 | case IL_EMPTYING_HW_QUEUE_ADDBA: |
| 2421 | /* We are reclaiming the last packet of the queue */ |
| 2422 | if (tid_data->tfds_in_queue == 0) { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2423 | D_HT("HW queue empty: continue ADDBA flow\n"); |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 2424 | tid_data->agg.state = IL_AGG_ON; |
| 2425 | ieee80211_start_tx_ba_cb_irqsafe(ctx->vif, addr, tid); |
| 2426 | } |
| 2427 | break; |
| 2428 | } |
| 2429 | |
| 2430 | return 0; |
| 2431 | } |
| 2432 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2433 | static void |
| 2434 | il4965_non_agg_tx_status(struct il_priv *il, struct il_rxon_context *ctx, |
Stanislaw Gruszka | 1722f8e | 2011-11-15 14:51:01 +0100 | [diff] [blame] | 2435 | const u8 *addr1) |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 2436 | { |
| 2437 | struct ieee80211_sta *sta; |
| 2438 | struct il_station_priv *sta_priv; |
| 2439 | |
| 2440 | rcu_read_lock(); |
| 2441 | sta = ieee80211_find_sta(ctx->vif, addr1); |
| 2442 | if (sta) { |
| 2443 | sta_priv = (void *)sta->drv_priv; |
| 2444 | /* avoid atomic ops if this isn't a client */ |
| 2445 | if (sta_priv->client && |
| 2446 | atomic_dec_return(&sta_priv->pending_frames) == 0) |
| 2447 | ieee80211_sta_block_awake(il->hw, sta, false); |
| 2448 | } |
| 2449 | rcu_read_unlock(); |
| 2450 | } |
| 2451 | |
| 2452 | static void |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2453 | il4965_tx_status(struct il_priv *il, struct il_tx_info *tx_info, bool is_agg) |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 2454 | { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2455 | struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx_info->skb->data; |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 2456 | |
| 2457 | if (!is_agg) |
| 2458 | il4965_non_agg_tx_status(il, tx_info->ctx, hdr->addr1); |
| 2459 | |
| 2460 | ieee80211_tx_status_irqsafe(il->hw, tx_info->skb); |
| 2461 | } |
| 2462 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2463 | int |
| 2464 | il4965_tx_queue_reclaim(struct il_priv *il, int txq_id, int idx) |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 2465 | { |
| 2466 | struct il_tx_queue *txq = &il->txq[txq_id]; |
| 2467 | struct il_queue *q = &txq->q; |
| 2468 | struct il_tx_info *tx_info; |
| 2469 | int nfreed = 0; |
| 2470 | struct ieee80211_hdr *hdr; |
| 2471 | |
| 2472 | if (idx >= q->n_bd || il_queue_used(q, idx) == 0) { |
| 2473 | IL_ERR("Read idx for DMA queue txq id (%d), idx %d, " |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2474 | "is out of range [0-%d] %d %d.\n", txq_id, idx, q->n_bd, |
| 2475 | q->write_ptr, q->read_ptr); |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 2476 | return 0; |
| 2477 | } |
| 2478 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2479 | for (idx = il_queue_inc_wrap(idx, q->n_bd); q->read_ptr != idx; |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 2480 | q->read_ptr = il_queue_inc_wrap(q->read_ptr, q->n_bd)) { |
| 2481 | |
| 2482 | tx_info = &txq->txb[txq->q.read_ptr]; |
| 2483 | |
| 2484 | if (WARN_ON_ONCE(tx_info->skb == NULL)) |
| 2485 | continue; |
| 2486 | |
| 2487 | hdr = (struct ieee80211_hdr *)tx_info->skb->data; |
| 2488 | if (ieee80211_is_data_qos(hdr->frame_control)) |
| 2489 | nfreed++; |
| 2490 | |
| 2491 | il4965_tx_status(il, tx_info, |
| 2492 | txq_id >= IL4965_FIRST_AMPDU_QUEUE); |
| 2493 | tx_info->skb = NULL; |
| 2494 | |
| 2495 | il->cfg->ops->lib->txq_free_tfd(il, txq); |
| 2496 | } |
| 2497 | return nfreed; |
| 2498 | } |
| 2499 | |
| 2500 | /** |
| 2501 | * il4965_tx_status_reply_compressed_ba - Update tx status from block-ack |
| 2502 | * |
| 2503 | * Go through block-ack's bitmap of ACK'd frames, update driver's record of |
| 2504 | * ACK vs. not. This gets sent to mac80211, then to rate scaling algo. |
| 2505 | */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2506 | static int |
| 2507 | il4965_tx_status_reply_compressed_ba(struct il_priv *il, struct il_ht_agg *agg, |
| 2508 | struct il_compressed_ba_resp *ba_resp) |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 2509 | { |
| 2510 | int i, sh, ack; |
| 2511 | u16 seq_ctl = le16_to_cpu(ba_resp->seq_ctl); |
| 2512 | u16 scd_flow = le16_to_cpu(ba_resp->scd_flow); |
| 2513 | int successes = 0; |
| 2514 | struct ieee80211_tx_info *info; |
| 2515 | u64 bitmap, sent_bitmap; |
| 2516 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2517 | if (unlikely(!agg->wait_for_ba)) { |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 2518 | if (unlikely(ba_resp->bitmap)) |
| 2519 | IL_ERR("Received BA when not expected\n"); |
| 2520 | return -EINVAL; |
| 2521 | } |
| 2522 | |
| 2523 | /* Mark that the expected block-ack response arrived */ |
| 2524 | agg->wait_for_ba = 0; |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2525 | D_TX_REPLY("BA %d %d\n", agg->start_idx, ba_resp->seq_ctl); |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 2526 | |
| 2527 | /* Calculate shift to align block-ack bits with our Tx win bits */ |
| 2528 | sh = agg->start_idx - SEQ_TO_IDX(seq_ctl >> 4); |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2529 | if (sh < 0) /* tbw something is wrong with indices */ |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 2530 | sh += 0x100; |
| 2531 | |
| 2532 | if (agg->frame_count > (64 - sh)) { |
| 2533 | D_TX_REPLY("more frames than bitmap size"); |
| 2534 | return -1; |
| 2535 | } |
| 2536 | |
| 2537 | /* don't use 64-bit values for now */ |
| 2538 | bitmap = le64_to_cpu(ba_resp->bitmap) >> sh; |
| 2539 | |
| 2540 | /* check for success or failure according to the |
| 2541 | * transmitted bitmap and block-ack bitmap */ |
| 2542 | sent_bitmap = bitmap & agg->bitmap; |
| 2543 | |
| 2544 | /* For each frame attempted in aggregation, |
| 2545 | * update driver's record of tx frame's status. */ |
| 2546 | i = 0; |
| 2547 | while (sent_bitmap) { |
| 2548 | ack = sent_bitmap & 1ULL; |
| 2549 | successes += ack; |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2550 | D_TX_REPLY("%s ON i=%d idx=%d raw=%d\n", ack ? "ACK" : "NACK", |
| 2551 | i, (agg->start_idx + i) & 0xff, agg->start_idx + i); |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 2552 | sent_bitmap >>= 1; |
| 2553 | ++i; |
| 2554 | } |
| 2555 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2556 | D_TX_REPLY("Bitmap %llx\n", (unsigned long long)bitmap); |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 2557 | |
| 2558 | info = IEEE80211_SKB_CB(il->txq[scd_flow].txb[agg->start_idx].skb); |
| 2559 | memset(&info->status, 0, sizeof(info->status)); |
| 2560 | info->flags |= IEEE80211_TX_STAT_ACK; |
| 2561 | info->flags |= IEEE80211_TX_STAT_AMPDU; |
| 2562 | info->status.ampdu_ack_len = successes; |
| 2563 | info->status.ampdu_len = agg->frame_count; |
| 2564 | il4965_hwrate_to_tx_control(il, agg->rate_n_flags, info); |
| 2565 | |
| 2566 | return 0; |
| 2567 | } |
| 2568 | |
| 2569 | /** |
| 2570 | * translate ucode response to mac80211 tx status control values |
| 2571 | */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2572 | void |
| 2573 | il4965_hwrate_to_tx_control(struct il_priv *il, u32 rate_n_flags, |
| 2574 | struct ieee80211_tx_info *info) |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 2575 | { |
| 2576 | struct ieee80211_tx_rate *r = &info->control.rates[0]; |
| 2577 | |
| 2578 | info->antenna_sel_tx = |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2579 | ((rate_n_flags & RATE_MCS_ANT_ABC_MSK) >> RATE_MCS_ANT_POS); |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 2580 | if (rate_n_flags & RATE_MCS_HT_MSK) |
| 2581 | r->flags |= IEEE80211_TX_RC_MCS; |
| 2582 | if (rate_n_flags & RATE_MCS_GF_MSK) |
| 2583 | r->flags |= IEEE80211_TX_RC_GREEN_FIELD; |
| 2584 | if (rate_n_flags & RATE_MCS_HT40_MSK) |
| 2585 | r->flags |= IEEE80211_TX_RC_40_MHZ_WIDTH; |
| 2586 | if (rate_n_flags & RATE_MCS_DUP_MSK) |
| 2587 | r->flags |= IEEE80211_TX_RC_DUP_DATA; |
| 2588 | if (rate_n_flags & RATE_MCS_SGI_MSK) |
| 2589 | r->flags |= IEEE80211_TX_RC_SHORT_GI; |
| 2590 | r->idx = il4965_hwrate_to_mac80211_idx(rate_n_flags, info->band); |
| 2591 | } |
| 2592 | |
| 2593 | /** |
Stanislaw Gruszka | 6e9848b4 | 2011-08-30 15:45:31 +0200 | [diff] [blame] | 2594 | * il4965_hdl_compressed_ba - Handler for N_COMPRESSED_BA |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 2595 | * |
| 2596 | * Handles block-acknowledge notification from device, which reports success |
| 2597 | * of frames sent via aggregation. |
| 2598 | */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2599 | void |
| 2600 | il4965_hdl_compressed_ba(struct il_priv *il, struct il_rx_buf *rxb) |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 2601 | { |
| 2602 | struct il_rx_pkt *pkt = rxb_addr(rxb); |
| 2603 | struct il_compressed_ba_resp *ba_resp = &pkt->u.compressed_ba; |
| 2604 | struct il_tx_queue *txq = NULL; |
| 2605 | struct il_ht_agg *agg; |
| 2606 | int idx; |
| 2607 | int sta_id; |
| 2608 | int tid; |
| 2609 | unsigned long flags; |
| 2610 | |
| 2611 | /* "flow" corresponds to Tx queue */ |
| 2612 | u16 scd_flow = le16_to_cpu(ba_resp->scd_flow); |
| 2613 | |
| 2614 | /* "ssn" is start of block-ack Tx win, corresponds to idx |
| 2615 | * (in Tx queue's circular buffer) of first TFD/frame in win */ |
| 2616 | u16 ba_resp_scd_ssn = le16_to_cpu(ba_resp->scd_ssn); |
| 2617 | |
| 2618 | if (scd_flow >= il->hw_params.max_txq_num) { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2619 | IL_ERR("BUG_ON scd_flow is bigger than number of queues\n"); |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 2620 | return; |
| 2621 | } |
| 2622 | |
| 2623 | txq = &il->txq[scd_flow]; |
| 2624 | sta_id = ba_resp->sta_id; |
| 2625 | tid = ba_resp->tid; |
| 2626 | agg = &il->stations[sta_id].tid[tid].agg; |
| 2627 | if (unlikely(agg->txq_id != scd_flow)) { |
| 2628 | /* |
| 2629 | * FIXME: this is a uCode bug which need to be addressed, |
| 2630 | * log the information and return for now! |
| 2631 | * since it is possible happen very often and in order |
| 2632 | * not to fill the syslog, don't enable the logging by default |
| 2633 | */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2634 | D_TX_REPLY("BA scd_flow %d does not match txq_id %d\n", |
| 2635 | scd_flow, agg->txq_id); |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 2636 | return; |
| 2637 | } |
| 2638 | |
| 2639 | /* Find idx just before block-ack win */ |
| 2640 | idx = il_queue_dec_wrap(ba_resp_scd_ssn & 0xff, txq->q.n_bd); |
| 2641 | |
| 2642 | spin_lock_irqsave(&il->sta_lock, flags); |
| 2643 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2644 | D_TX_REPLY("N_COMPRESSED_BA [%d] Received from %pM, " "sta_id = %d\n", |
Stanislaw Gruszka | 1722f8e | 2011-11-15 14:51:01 +0100 | [diff] [blame] | 2645 | agg->wait_for_ba, (u8 *) &ba_resp->sta_addr_lo32, |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2646 | ba_resp->sta_id); |
| 2647 | D_TX_REPLY("TID = %d, SeqCtl = %d, bitmap = 0x%llx," "scd_flow = " |
| 2648 | "%d, scd_ssn = %d\n", ba_resp->tid, ba_resp->seq_ctl, |
| 2649 | (unsigned long long)le64_to_cpu(ba_resp->bitmap), |
| 2650 | ba_resp->scd_flow, ba_resp->scd_ssn); |
| 2651 | D_TX_REPLY("DAT start_idx = %d, bitmap = 0x%llx\n", agg->start_idx, |
| 2652 | (unsigned long long)agg->bitmap); |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 2653 | |
| 2654 | /* Update driver's record of ACK vs. not for each frame in win */ |
| 2655 | il4965_tx_status_reply_compressed_ba(il, agg, ba_resp); |
| 2656 | |
| 2657 | /* Release all TFDs before the SSN, i.e. all TFDs in front of |
| 2658 | * block-ack win (we assume that they've been successfully |
| 2659 | * transmitted ... if not, it's too late anyway). */ |
| 2660 | if (txq->q.read_ptr != (ba_resp_scd_ssn & 0xff)) { |
| 2661 | /* calculate mac80211 ampdu sw queue to wake */ |
| 2662 | int freed = il4965_tx_queue_reclaim(il, scd_flow, idx); |
| 2663 | il4965_free_tfds_in_queue(il, sta_id, tid, freed); |
| 2664 | |
| 2665 | if (il_queue_space(&txq->q) > txq->q.low_mark && |
| 2666 | il->mac80211_registered && |
| 2667 | agg->state != IL_EMPTYING_HW_QUEUE_DELBA) |
| 2668 | il_wake_queue(il, txq); |
| 2669 | |
| 2670 | il4965_txq_check_empty(il, sta_id, tid, scd_flow); |
| 2671 | } |
| 2672 | |
| 2673 | spin_unlock_irqrestore(&il->sta_lock, flags); |
| 2674 | } |
| 2675 | |
| 2676 | #ifdef CONFIG_IWLEGACY_DEBUG |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2677 | const char * |
| 2678 | il4965_get_tx_fail_reason(u32 status) |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 2679 | { |
| 2680 | #define TX_STATUS_FAIL(x) case TX_STATUS_FAIL_ ## x: return #x |
| 2681 | #define TX_STATUS_POSTPONE(x) case TX_STATUS_POSTPONE_ ## x: return #x |
| 2682 | |
| 2683 | switch (status & TX_STATUS_MSK) { |
| 2684 | case TX_STATUS_SUCCESS: |
| 2685 | return "SUCCESS"; |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2686 | TX_STATUS_POSTPONE(DELAY); |
| 2687 | TX_STATUS_POSTPONE(FEW_BYTES); |
| 2688 | TX_STATUS_POSTPONE(QUIET_PERIOD); |
| 2689 | TX_STATUS_POSTPONE(CALC_TTAK); |
| 2690 | TX_STATUS_FAIL(INTERNAL_CROSSED_RETRY); |
| 2691 | TX_STATUS_FAIL(SHORT_LIMIT); |
| 2692 | TX_STATUS_FAIL(LONG_LIMIT); |
| 2693 | TX_STATUS_FAIL(FIFO_UNDERRUN); |
| 2694 | TX_STATUS_FAIL(DRAIN_FLOW); |
| 2695 | TX_STATUS_FAIL(RFKILL_FLUSH); |
| 2696 | TX_STATUS_FAIL(LIFE_EXPIRE); |
| 2697 | TX_STATUS_FAIL(DEST_PS); |
| 2698 | TX_STATUS_FAIL(HOST_ABORTED); |
| 2699 | TX_STATUS_FAIL(BT_RETRY); |
| 2700 | TX_STATUS_FAIL(STA_INVALID); |
| 2701 | TX_STATUS_FAIL(FRAG_DROPPED); |
| 2702 | TX_STATUS_FAIL(TID_DISABLE); |
| 2703 | TX_STATUS_FAIL(FIFO_FLUSHED); |
| 2704 | TX_STATUS_FAIL(INSUFFICIENT_CF_POLL); |
| 2705 | TX_STATUS_FAIL(PASSIVE_NO_RX); |
| 2706 | TX_STATUS_FAIL(NO_BEACON_ON_RADAR); |
Stanislaw Gruszka | a1751b2 | 2011-11-15 12:50:37 +0100 | [diff] [blame] | 2707 | } |
| 2708 | |
| 2709 | return "UNKNOWN"; |
| 2710 | |
| 2711 | #undef TX_STATUS_FAIL |
| 2712 | #undef TX_STATUS_POSTPONE |
| 2713 | } |
| 2714 | #endif /* CONFIG_IWLEGACY_DEBUG */ |
| 2715 | |
Stanislaw Gruszka | eb3cdfb | 2011-08-30 12:58:35 +0200 | [diff] [blame] | 2716 | static struct il_link_quality_cmd * |
| 2717 | il4965_sta_alloc_lq(struct il_priv *il, u8 sta_id) |
| 2718 | { |
| 2719 | int i, r; |
| 2720 | struct il_link_quality_cmd *link_cmd; |
| 2721 | u32 rate_flags = 0; |
| 2722 | __le32 rate_n_flags; |
| 2723 | |
| 2724 | link_cmd = kzalloc(sizeof(struct il_link_quality_cmd), GFP_KERNEL); |
| 2725 | if (!link_cmd) { |
| 2726 | IL_ERR("Unable to allocate memory for LQ cmd.\n"); |
| 2727 | return NULL; |
| 2728 | } |
| 2729 | /* Set up the rate scaling to start at selected rate, fall back |
| 2730 | * all the way down to 1M in IEEE order, and then spin on 1M */ |
| 2731 | if (il->band == IEEE80211_BAND_5GHZ) |
| 2732 | r = RATE_6M_IDX; |
| 2733 | else |
| 2734 | r = RATE_1M_IDX; |
| 2735 | |
| 2736 | if (r >= IL_FIRST_CCK_RATE && r <= IL_LAST_CCK_RATE) |
| 2737 | rate_flags |= RATE_MCS_CCK_MSK; |
| 2738 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2739 | rate_flags |= |
| 2740 | il4965_first_antenna(il->hw_params. |
| 2741 | valid_tx_ant) << RATE_MCS_ANT_POS; |
Stanislaw Gruszka | 616107e | 2011-12-23 08:13:45 +0100 | [diff] [blame^] | 2742 | rate_n_flags = cpu_to_le32(il_rates[r].plcp | rate_flags); |
Stanislaw Gruszka | eb3cdfb | 2011-08-30 12:58:35 +0200 | [diff] [blame] | 2743 | for (i = 0; i < LINK_QUAL_MAX_RETRY_NUM; i++) |
| 2744 | link_cmd->rs_table[i].rate_n_flags = rate_n_flags; |
| 2745 | |
| 2746 | link_cmd->general_params.single_stream_ant_msk = |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2747 | il4965_first_antenna(il->hw_params.valid_tx_ant); |
Stanislaw Gruszka | eb3cdfb | 2011-08-30 12:58:35 +0200 | [diff] [blame] | 2748 | |
| 2749 | link_cmd->general_params.dual_stream_ant_msk = |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2750 | il->hw_params.valid_tx_ant & ~il4965_first_antenna(il->hw_params. |
| 2751 | valid_tx_ant); |
Stanislaw Gruszka | eb3cdfb | 2011-08-30 12:58:35 +0200 | [diff] [blame] | 2752 | if (!link_cmd->general_params.dual_stream_ant_msk) { |
| 2753 | link_cmd->general_params.dual_stream_ant_msk = ANT_AB; |
| 2754 | } else if (il4965_num_of_ant(il->hw_params.valid_tx_ant) == 2) { |
| 2755 | link_cmd->general_params.dual_stream_ant_msk = |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2756 | il->hw_params.valid_tx_ant; |
Stanislaw Gruszka | eb3cdfb | 2011-08-30 12:58:35 +0200 | [diff] [blame] | 2757 | } |
| 2758 | |
| 2759 | link_cmd->agg_params.agg_dis_start_th = LINK_QUAL_AGG_DISABLE_START_DEF; |
| 2760 | link_cmd->agg_params.agg_time_limit = |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2761 | cpu_to_le16(LINK_QUAL_AGG_TIME_LIMIT_DEF); |
Stanislaw Gruszka | eb3cdfb | 2011-08-30 12:58:35 +0200 | [diff] [blame] | 2762 | |
| 2763 | link_cmd->sta_id = sta_id; |
| 2764 | |
| 2765 | return link_cmd; |
| 2766 | } |
| 2767 | |
| 2768 | /* |
| 2769 | * il4965_add_bssid_station - Add the special IBSS BSSID station |
| 2770 | * |
| 2771 | * Function sleeps. |
| 2772 | */ |
| 2773 | int |
| 2774 | il4965_add_bssid_station(struct il_priv *il, struct il_rxon_context *ctx, |
Stanislaw Gruszka | 1722f8e | 2011-11-15 14:51:01 +0100 | [diff] [blame] | 2775 | const u8 *addr, u8 *sta_id_r) |
Stanislaw Gruszka | eb3cdfb | 2011-08-30 12:58:35 +0200 | [diff] [blame] | 2776 | { |
| 2777 | int ret; |
| 2778 | u8 sta_id; |
| 2779 | struct il_link_quality_cmd *link_cmd; |
| 2780 | unsigned long flags; |
| 2781 | |
| 2782 | if (sta_id_r) |
| 2783 | *sta_id_r = IL_INVALID_STATION; |
| 2784 | |
| 2785 | ret = il_add_station_common(il, ctx, addr, 0, NULL, &sta_id); |
| 2786 | if (ret) { |
| 2787 | IL_ERR("Unable to add station %pM\n", addr); |
| 2788 | return ret; |
| 2789 | } |
| 2790 | |
| 2791 | if (sta_id_r) |
| 2792 | *sta_id_r = sta_id; |
| 2793 | |
| 2794 | spin_lock_irqsave(&il->sta_lock, flags); |
| 2795 | il->stations[sta_id].used |= IL_STA_LOCAL; |
| 2796 | spin_unlock_irqrestore(&il->sta_lock, flags); |
| 2797 | |
| 2798 | /* Set up default rate scaling table in device's station table */ |
| 2799 | link_cmd = il4965_sta_alloc_lq(il, sta_id); |
| 2800 | if (!link_cmd) { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2801 | IL_ERR("Unable to initialize rate scaling for station %pM.\n", |
| 2802 | addr); |
Stanislaw Gruszka | eb3cdfb | 2011-08-30 12:58:35 +0200 | [diff] [blame] | 2803 | return -ENOMEM; |
| 2804 | } |
| 2805 | |
| 2806 | ret = il_send_lq_cmd(il, ctx, link_cmd, CMD_SYNC, true); |
| 2807 | if (ret) |
| 2808 | IL_ERR("Link quality command failed (%d)\n", ret); |
| 2809 | |
| 2810 | spin_lock_irqsave(&il->sta_lock, flags); |
| 2811 | il->stations[sta_id].lq = link_cmd; |
| 2812 | spin_unlock_irqrestore(&il->sta_lock, flags); |
| 2813 | |
| 2814 | return 0; |
| 2815 | } |
| 2816 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2817 | static int |
| 2818 | il4965_static_wepkey_cmd(struct il_priv *il, struct il_rxon_context *ctx, |
| 2819 | bool send_if_empty) |
Stanislaw Gruszka | eb3cdfb | 2011-08-30 12:58:35 +0200 | [diff] [blame] | 2820 | { |
| 2821 | int i, not_empty = 0; |
| 2822 | u8 buff[sizeof(struct il_wep_cmd) + |
| 2823 | sizeof(struct il_wep_key) * WEP_KEYS_MAX]; |
| 2824 | struct il_wep_cmd *wep_cmd = (struct il_wep_cmd *)buff; |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2825 | size_t cmd_size = sizeof(struct il_wep_cmd); |
Stanislaw Gruszka | eb3cdfb | 2011-08-30 12:58:35 +0200 | [diff] [blame] | 2826 | struct il_host_cmd cmd = { |
| 2827 | .id = ctx->wep_key_cmd, |
| 2828 | .data = wep_cmd, |
| 2829 | .flags = CMD_SYNC, |
| 2830 | }; |
| 2831 | |
| 2832 | might_sleep(); |
| 2833 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2834 | memset(wep_cmd, 0, |
| 2835 | cmd_size + (sizeof(struct il_wep_key) * WEP_KEYS_MAX)); |
Stanislaw Gruszka | eb3cdfb | 2011-08-30 12:58:35 +0200 | [diff] [blame] | 2836 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2837 | for (i = 0; i < WEP_KEYS_MAX; i++) { |
Stanislaw Gruszka | eb3cdfb | 2011-08-30 12:58:35 +0200 | [diff] [blame] | 2838 | wep_cmd->key[i].key_idx = i; |
| 2839 | if (ctx->wep_keys[i].key_size) { |
| 2840 | wep_cmd->key[i].key_offset = i; |
| 2841 | not_empty = 1; |
| 2842 | } else { |
| 2843 | wep_cmd->key[i].key_offset = WEP_INVALID_OFFSET; |
| 2844 | } |
| 2845 | |
| 2846 | wep_cmd->key[i].key_size = ctx->wep_keys[i].key_size; |
| 2847 | memcpy(&wep_cmd->key[i].key[3], ctx->wep_keys[i].key, |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2848 | ctx->wep_keys[i].key_size); |
Stanislaw Gruszka | eb3cdfb | 2011-08-30 12:58:35 +0200 | [diff] [blame] | 2849 | } |
| 2850 | |
| 2851 | wep_cmd->global_key_type = WEP_KEY_WEP_TYPE; |
| 2852 | wep_cmd->num_keys = WEP_KEYS_MAX; |
| 2853 | |
| 2854 | cmd_size += sizeof(struct il_wep_key) * WEP_KEYS_MAX; |
| 2855 | |
| 2856 | cmd.len = cmd_size; |
| 2857 | |
| 2858 | if (not_empty || send_if_empty) |
| 2859 | return il_send_cmd(il, &cmd); |
| 2860 | else |
| 2861 | return 0; |
| 2862 | } |
| 2863 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2864 | int |
| 2865 | il4965_restore_default_wep_keys(struct il_priv *il, struct il_rxon_context *ctx) |
Stanislaw Gruszka | eb3cdfb | 2011-08-30 12:58:35 +0200 | [diff] [blame] | 2866 | { |
| 2867 | lockdep_assert_held(&il->mutex); |
| 2868 | |
| 2869 | return il4965_static_wepkey_cmd(il, ctx, false); |
| 2870 | } |
| 2871 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2872 | int |
| 2873 | il4965_remove_default_wep_key(struct il_priv *il, struct il_rxon_context *ctx, |
| 2874 | struct ieee80211_key_conf *keyconf) |
Stanislaw Gruszka | eb3cdfb | 2011-08-30 12:58:35 +0200 | [diff] [blame] | 2875 | { |
| 2876 | int ret; |
| 2877 | |
| 2878 | lockdep_assert_held(&il->mutex); |
| 2879 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2880 | D_WEP("Removing default WEP key: idx=%d\n", keyconf->keyidx); |
Stanislaw Gruszka | eb3cdfb | 2011-08-30 12:58:35 +0200 | [diff] [blame] | 2881 | |
| 2882 | memset(&ctx->wep_keys[keyconf->keyidx], 0, sizeof(ctx->wep_keys[0])); |
| 2883 | if (il_is_rfkill(il)) { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2884 | D_WEP("Not sending C_WEPKEY command due to RFKILL.\n"); |
Stanislaw Gruszka | eb3cdfb | 2011-08-30 12:58:35 +0200 | [diff] [blame] | 2885 | /* but keys in device are clear anyway so return success */ |
| 2886 | return 0; |
| 2887 | } |
| 2888 | ret = il4965_static_wepkey_cmd(il, ctx, 1); |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2889 | D_WEP("Remove default WEP key: idx=%d ret=%d\n", keyconf->keyidx, ret); |
Stanislaw Gruszka | eb3cdfb | 2011-08-30 12:58:35 +0200 | [diff] [blame] | 2890 | |
| 2891 | return ret; |
| 2892 | } |
| 2893 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2894 | int |
| 2895 | il4965_set_default_wep_key(struct il_priv *il, struct il_rxon_context *ctx, |
| 2896 | struct ieee80211_key_conf *keyconf) |
Stanislaw Gruszka | eb3cdfb | 2011-08-30 12:58:35 +0200 | [diff] [blame] | 2897 | { |
| 2898 | int ret; |
| 2899 | |
| 2900 | lockdep_assert_held(&il->mutex); |
| 2901 | |
| 2902 | if (keyconf->keylen != WEP_KEY_LEN_128 && |
| 2903 | keyconf->keylen != WEP_KEY_LEN_64) { |
| 2904 | D_WEP("Bad WEP key length %d\n", keyconf->keylen); |
| 2905 | return -EINVAL; |
| 2906 | } |
| 2907 | |
| 2908 | keyconf->flags &= ~IEEE80211_KEY_FLAG_GENERATE_IV; |
| 2909 | keyconf->hw_key_idx = HW_KEY_DEFAULT; |
| 2910 | il->stations[ctx->ap_sta_id].keyinfo.cipher = keyconf->cipher; |
| 2911 | |
| 2912 | ctx->wep_keys[keyconf->keyidx].key_size = keyconf->keylen; |
| 2913 | memcpy(&ctx->wep_keys[keyconf->keyidx].key, &keyconf->key, |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2914 | keyconf->keylen); |
Stanislaw Gruszka | eb3cdfb | 2011-08-30 12:58:35 +0200 | [diff] [blame] | 2915 | |
| 2916 | ret = il4965_static_wepkey_cmd(il, ctx, false); |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2917 | D_WEP("Set default WEP key: len=%d idx=%d ret=%d\n", keyconf->keylen, |
| 2918 | keyconf->keyidx, ret); |
Stanislaw Gruszka | eb3cdfb | 2011-08-30 12:58:35 +0200 | [diff] [blame] | 2919 | |
| 2920 | return ret; |
| 2921 | } |
| 2922 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2923 | static int |
| 2924 | il4965_set_wep_dynamic_key_info(struct il_priv *il, struct il_rxon_context *ctx, |
| 2925 | struct ieee80211_key_conf *keyconf, u8 sta_id) |
Stanislaw Gruszka | eb3cdfb | 2011-08-30 12:58:35 +0200 | [diff] [blame] | 2926 | { |
| 2927 | unsigned long flags; |
| 2928 | __le16 key_flags = 0; |
| 2929 | struct il_addsta_cmd sta_cmd; |
| 2930 | |
| 2931 | lockdep_assert_held(&il->mutex); |
| 2932 | |
| 2933 | keyconf->flags &= ~IEEE80211_KEY_FLAG_GENERATE_IV; |
| 2934 | |
| 2935 | key_flags |= (STA_KEY_FLG_WEP | STA_KEY_FLG_MAP_KEY_MSK); |
| 2936 | key_flags |= cpu_to_le16(keyconf->keyidx << STA_KEY_FLG_KEYID_POS); |
| 2937 | key_flags &= ~STA_KEY_FLG_INVALID; |
| 2938 | |
| 2939 | if (keyconf->keylen == WEP_KEY_LEN_128) |
| 2940 | key_flags |= STA_KEY_FLG_KEY_SIZE_MSK; |
| 2941 | |
| 2942 | if (sta_id == ctx->bcast_sta_id) |
| 2943 | key_flags |= STA_KEY_MULTICAST_MSK; |
| 2944 | |
| 2945 | spin_lock_irqsave(&il->sta_lock, flags); |
| 2946 | |
| 2947 | il->stations[sta_id].keyinfo.cipher = keyconf->cipher; |
| 2948 | il->stations[sta_id].keyinfo.keylen = keyconf->keylen; |
| 2949 | il->stations[sta_id].keyinfo.keyidx = keyconf->keyidx; |
| 2950 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2951 | memcpy(il->stations[sta_id].keyinfo.key, keyconf->key, keyconf->keylen); |
Stanislaw Gruszka | eb3cdfb | 2011-08-30 12:58:35 +0200 | [diff] [blame] | 2952 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2953 | memcpy(&il->stations[sta_id].sta.key.key[3], keyconf->key, |
| 2954 | keyconf->keylen); |
Stanislaw Gruszka | eb3cdfb | 2011-08-30 12:58:35 +0200 | [diff] [blame] | 2955 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2956 | if ((il->stations[sta_id].sta.key. |
| 2957 | key_flags & STA_KEY_FLG_ENCRYPT_MSK) == STA_KEY_FLG_NO_ENC) |
Stanislaw Gruszka | eb3cdfb | 2011-08-30 12:58:35 +0200 | [diff] [blame] | 2958 | il->stations[sta_id].sta.key.key_offset = |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2959 | il_get_free_ucode_key_idx(il); |
Stanislaw Gruszka | eb3cdfb | 2011-08-30 12:58:35 +0200 | [diff] [blame] | 2960 | /* else, we are overriding an existing key => no need to allocated room |
| 2961 | * in uCode. */ |
| 2962 | |
| 2963 | WARN(il->stations[sta_id].sta.key.key_offset == WEP_INVALID_OFFSET, |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2964 | "no space for a new key"); |
Stanislaw Gruszka | eb3cdfb | 2011-08-30 12:58:35 +0200 | [diff] [blame] | 2965 | |
| 2966 | il->stations[sta_id].sta.key.key_flags = key_flags; |
| 2967 | il->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK; |
| 2968 | il->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK; |
| 2969 | |
| 2970 | memcpy(&sta_cmd, &il->stations[sta_id].sta, |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2971 | sizeof(struct il_addsta_cmd)); |
Stanislaw Gruszka | eb3cdfb | 2011-08-30 12:58:35 +0200 | [diff] [blame] | 2972 | spin_unlock_irqrestore(&il->sta_lock, flags); |
| 2973 | |
| 2974 | return il_send_add_sta(il, &sta_cmd, CMD_SYNC); |
| 2975 | } |
| 2976 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2977 | static int |
| 2978 | il4965_set_ccmp_dynamic_key_info(struct il_priv *il, |
| 2979 | struct il_rxon_context *ctx, |
| 2980 | struct ieee80211_key_conf *keyconf, u8 sta_id) |
Stanislaw Gruszka | eb3cdfb | 2011-08-30 12:58:35 +0200 | [diff] [blame] | 2981 | { |
| 2982 | unsigned long flags; |
| 2983 | __le16 key_flags = 0; |
| 2984 | struct il_addsta_cmd sta_cmd; |
| 2985 | |
| 2986 | lockdep_assert_held(&il->mutex); |
| 2987 | |
| 2988 | key_flags |= (STA_KEY_FLG_CCMP | STA_KEY_FLG_MAP_KEY_MSK); |
| 2989 | key_flags |= cpu_to_le16(keyconf->keyidx << STA_KEY_FLG_KEYID_POS); |
| 2990 | key_flags &= ~STA_KEY_FLG_INVALID; |
| 2991 | |
| 2992 | if (sta_id == ctx->bcast_sta_id) |
| 2993 | key_flags |= STA_KEY_MULTICAST_MSK; |
| 2994 | |
| 2995 | keyconf->flags |= IEEE80211_KEY_FLAG_GENERATE_IV; |
| 2996 | |
| 2997 | spin_lock_irqsave(&il->sta_lock, flags); |
| 2998 | il->stations[sta_id].keyinfo.cipher = keyconf->cipher; |
| 2999 | il->stations[sta_id].keyinfo.keylen = keyconf->keylen; |
| 3000 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3001 | memcpy(il->stations[sta_id].keyinfo.key, keyconf->key, keyconf->keylen); |
Stanislaw Gruszka | eb3cdfb | 2011-08-30 12:58:35 +0200 | [diff] [blame] | 3002 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3003 | memcpy(il->stations[sta_id].sta.key.key, keyconf->key, keyconf->keylen); |
Stanislaw Gruszka | eb3cdfb | 2011-08-30 12:58:35 +0200 | [diff] [blame] | 3004 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3005 | if ((il->stations[sta_id].sta.key. |
| 3006 | key_flags & STA_KEY_FLG_ENCRYPT_MSK) == STA_KEY_FLG_NO_ENC) |
Stanislaw Gruszka | eb3cdfb | 2011-08-30 12:58:35 +0200 | [diff] [blame] | 3007 | il->stations[sta_id].sta.key.key_offset = |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3008 | il_get_free_ucode_key_idx(il); |
Stanislaw Gruszka | eb3cdfb | 2011-08-30 12:58:35 +0200 | [diff] [blame] | 3009 | /* else, we are overriding an existing key => no need to allocated room |
| 3010 | * in uCode. */ |
| 3011 | |
| 3012 | WARN(il->stations[sta_id].sta.key.key_offset == WEP_INVALID_OFFSET, |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3013 | "no space for a new key"); |
Stanislaw Gruszka | eb3cdfb | 2011-08-30 12:58:35 +0200 | [diff] [blame] | 3014 | |
| 3015 | il->stations[sta_id].sta.key.key_flags = key_flags; |
| 3016 | il->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK; |
| 3017 | il->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK; |
| 3018 | |
| 3019 | memcpy(&sta_cmd, &il->stations[sta_id].sta, |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3020 | sizeof(struct il_addsta_cmd)); |
Stanislaw Gruszka | eb3cdfb | 2011-08-30 12:58:35 +0200 | [diff] [blame] | 3021 | spin_unlock_irqrestore(&il->sta_lock, flags); |
| 3022 | |
| 3023 | return il_send_add_sta(il, &sta_cmd, CMD_SYNC); |
| 3024 | } |
| 3025 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3026 | static int |
| 3027 | il4965_set_tkip_dynamic_key_info(struct il_priv *il, |
| 3028 | struct il_rxon_context *ctx, |
| 3029 | struct ieee80211_key_conf *keyconf, u8 sta_id) |
Stanislaw Gruszka | eb3cdfb | 2011-08-30 12:58:35 +0200 | [diff] [blame] | 3030 | { |
| 3031 | unsigned long flags; |
| 3032 | int ret = 0; |
| 3033 | __le16 key_flags = 0; |
| 3034 | |
| 3035 | key_flags |= (STA_KEY_FLG_TKIP | STA_KEY_FLG_MAP_KEY_MSK); |
| 3036 | key_flags |= cpu_to_le16(keyconf->keyidx << STA_KEY_FLG_KEYID_POS); |
| 3037 | key_flags &= ~STA_KEY_FLG_INVALID; |
| 3038 | |
| 3039 | if (sta_id == ctx->bcast_sta_id) |
| 3040 | key_flags |= STA_KEY_MULTICAST_MSK; |
| 3041 | |
| 3042 | keyconf->flags |= IEEE80211_KEY_FLAG_GENERATE_IV; |
| 3043 | keyconf->flags |= IEEE80211_KEY_FLAG_GENERATE_MMIC; |
| 3044 | |
| 3045 | spin_lock_irqsave(&il->sta_lock, flags); |
| 3046 | |
| 3047 | il->stations[sta_id].keyinfo.cipher = keyconf->cipher; |
| 3048 | il->stations[sta_id].keyinfo.keylen = 16; |
| 3049 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3050 | if ((il->stations[sta_id].sta.key. |
| 3051 | key_flags & STA_KEY_FLG_ENCRYPT_MSK) == STA_KEY_FLG_NO_ENC) |
Stanislaw Gruszka | eb3cdfb | 2011-08-30 12:58:35 +0200 | [diff] [blame] | 3052 | il->stations[sta_id].sta.key.key_offset = |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3053 | il_get_free_ucode_key_idx(il); |
Stanislaw Gruszka | eb3cdfb | 2011-08-30 12:58:35 +0200 | [diff] [blame] | 3054 | /* else, we are overriding an existing key => no need to allocated room |
| 3055 | * in uCode. */ |
| 3056 | |
| 3057 | WARN(il->stations[sta_id].sta.key.key_offset == WEP_INVALID_OFFSET, |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3058 | "no space for a new key"); |
Stanislaw Gruszka | eb3cdfb | 2011-08-30 12:58:35 +0200 | [diff] [blame] | 3059 | |
| 3060 | il->stations[sta_id].sta.key.key_flags = key_flags; |
| 3061 | |
Stanislaw Gruszka | eb3cdfb | 2011-08-30 12:58:35 +0200 | [diff] [blame] | 3062 | /* This copy is acutally not needed: we get the key with each TX */ |
| 3063 | memcpy(il->stations[sta_id].keyinfo.key, keyconf->key, 16); |
| 3064 | |
| 3065 | memcpy(il->stations[sta_id].sta.key.key, keyconf->key, 16); |
| 3066 | |
| 3067 | spin_unlock_irqrestore(&il->sta_lock, flags); |
| 3068 | |
| 3069 | return ret; |
| 3070 | } |
| 3071 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3072 | void |
| 3073 | il4965_update_tkip_key(struct il_priv *il, struct il_rxon_context *ctx, |
| 3074 | struct ieee80211_key_conf *keyconf, |
| 3075 | struct ieee80211_sta *sta, u32 iv32, u16 * phase1key) |
Stanislaw Gruszka | eb3cdfb | 2011-08-30 12:58:35 +0200 | [diff] [blame] | 3076 | { |
| 3077 | u8 sta_id; |
| 3078 | unsigned long flags; |
| 3079 | int i; |
| 3080 | |
| 3081 | if (il_scan_cancel(il)) { |
| 3082 | /* cancel scan failed, just live w/ bad key and rely |
| 3083 | briefly on SW decryption */ |
| 3084 | return; |
| 3085 | } |
| 3086 | |
| 3087 | sta_id = il_sta_id_or_broadcast(il, ctx, sta); |
| 3088 | if (sta_id == IL_INVALID_STATION) |
| 3089 | return; |
| 3090 | |
| 3091 | spin_lock_irqsave(&il->sta_lock, flags); |
| 3092 | |
| 3093 | il->stations[sta_id].sta.key.tkip_rx_tsc_byte2 = (u8) iv32; |
| 3094 | |
| 3095 | for (i = 0; i < 5; i++) |
| 3096 | il->stations[sta_id].sta.key.tkip_rx_ttak[i] = |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3097 | cpu_to_le16(phase1key[i]); |
Stanislaw Gruszka | eb3cdfb | 2011-08-30 12:58:35 +0200 | [diff] [blame] | 3098 | |
| 3099 | il->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK; |
| 3100 | il->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK; |
| 3101 | |
| 3102 | il_send_add_sta(il, &il->stations[sta_id].sta, CMD_ASYNC); |
| 3103 | |
| 3104 | spin_unlock_irqrestore(&il->sta_lock, flags); |
| 3105 | |
| 3106 | } |
| 3107 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3108 | int |
| 3109 | il4965_remove_dynamic_key(struct il_priv *il, struct il_rxon_context *ctx, |
| 3110 | struct ieee80211_key_conf *keyconf, u8 sta_id) |
Stanislaw Gruszka | eb3cdfb | 2011-08-30 12:58:35 +0200 | [diff] [blame] | 3111 | { |
| 3112 | unsigned long flags; |
| 3113 | u16 key_flags; |
| 3114 | u8 keyidx; |
| 3115 | struct il_addsta_cmd sta_cmd; |
| 3116 | |
| 3117 | lockdep_assert_held(&il->mutex); |
| 3118 | |
| 3119 | ctx->key_mapping_keys--; |
| 3120 | |
| 3121 | spin_lock_irqsave(&il->sta_lock, flags); |
| 3122 | key_flags = le16_to_cpu(il->stations[sta_id].sta.key.key_flags); |
| 3123 | keyidx = (key_flags >> STA_KEY_FLG_KEYID_POS) & 0x3; |
| 3124 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3125 | D_WEP("Remove dynamic key: idx=%d sta=%d\n", keyconf->keyidx, sta_id); |
Stanislaw Gruszka | eb3cdfb | 2011-08-30 12:58:35 +0200 | [diff] [blame] | 3126 | |
| 3127 | if (keyconf->keyidx != keyidx) { |
| 3128 | /* We need to remove a key with idx different that the one |
| 3129 | * in the uCode. This means that the key we need to remove has |
| 3130 | * been replaced by another one with different idx. |
| 3131 | * Don't do anything and return ok |
| 3132 | */ |
| 3133 | spin_unlock_irqrestore(&il->sta_lock, flags); |
| 3134 | return 0; |
| 3135 | } |
| 3136 | |
| 3137 | if (il->stations[sta_id].sta.key.key_offset == WEP_INVALID_OFFSET) { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3138 | IL_WARN("Removing wrong key %d 0x%x\n", keyconf->keyidx, |
| 3139 | key_flags); |
Stanislaw Gruszka | eb3cdfb | 2011-08-30 12:58:35 +0200 | [diff] [blame] | 3140 | spin_unlock_irqrestore(&il->sta_lock, flags); |
| 3141 | return 0; |
| 3142 | } |
| 3143 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3144 | if (!test_and_clear_bit |
| 3145 | (il->stations[sta_id].sta.key.key_offset, &il->ucode_key_table)) |
Stanislaw Gruszka | eb3cdfb | 2011-08-30 12:58:35 +0200 | [diff] [blame] | 3146 | IL_ERR("idx %d not used in uCode key table.\n", |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3147 | il->stations[sta_id].sta.key.key_offset); |
| 3148 | memset(&il->stations[sta_id].keyinfo, 0, sizeof(struct il_hw_key)); |
| 3149 | memset(&il->stations[sta_id].sta.key, 0, sizeof(struct il4965_keyinfo)); |
Stanislaw Gruszka | eb3cdfb | 2011-08-30 12:58:35 +0200 | [diff] [blame] | 3150 | il->stations[sta_id].sta.key.key_flags = |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3151 | STA_KEY_FLG_NO_ENC | STA_KEY_FLG_INVALID; |
Stanislaw Gruszka | eb3cdfb | 2011-08-30 12:58:35 +0200 | [diff] [blame] | 3152 | il->stations[sta_id].sta.key.key_offset = WEP_INVALID_OFFSET; |
| 3153 | il->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK; |
| 3154 | il->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK; |
| 3155 | |
| 3156 | if (il_is_rfkill(il)) { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3157 | D_WEP |
| 3158 | ("Not sending C_ADD_STA command because RFKILL enabled.\n"); |
Stanislaw Gruszka | eb3cdfb | 2011-08-30 12:58:35 +0200 | [diff] [blame] | 3159 | spin_unlock_irqrestore(&il->sta_lock, flags); |
| 3160 | return 0; |
| 3161 | } |
| 3162 | memcpy(&sta_cmd, &il->stations[sta_id].sta, |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3163 | sizeof(struct il_addsta_cmd)); |
Stanislaw Gruszka | eb3cdfb | 2011-08-30 12:58:35 +0200 | [diff] [blame] | 3164 | spin_unlock_irqrestore(&il->sta_lock, flags); |
| 3165 | |
| 3166 | return il_send_add_sta(il, &sta_cmd, CMD_SYNC); |
| 3167 | } |
| 3168 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3169 | int |
| 3170 | il4965_set_dynamic_key(struct il_priv *il, struct il_rxon_context *ctx, |
| 3171 | struct ieee80211_key_conf *keyconf, u8 sta_id) |
Stanislaw Gruszka | eb3cdfb | 2011-08-30 12:58:35 +0200 | [diff] [blame] | 3172 | { |
| 3173 | int ret; |
| 3174 | |
| 3175 | lockdep_assert_held(&il->mutex); |
| 3176 | |
| 3177 | ctx->key_mapping_keys++; |
| 3178 | keyconf->hw_key_idx = HW_KEY_DYNAMIC; |
| 3179 | |
| 3180 | switch (keyconf->cipher) { |
| 3181 | case WLAN_CIPHER_SUITE_CCMP: |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3182 | ret = |
| 3183 | il4965_set_ccmp_dynamic_key_info(il, ctx, keyconf, sta_id); |
Stanislaw Gruszka | eb3cdfb | 2011-08-30 12:58:35 +0200 | [diff] [blame] | 3184 | break; |
| 3185 | case WLAN_CIPHER_SUITE_TKIP: |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3186 | ret = |
| 3187 | il4965_set_tkip_dynamic_key_info(il, ctx, keyconf, sta_id); |
Stanislaw Gruszka | eb3cdfb | 2011-08-30 12:58:35 +0200 | [diff] [blame] | 3188 | break; |
| 3189 | case WLAN_CIPHER_SUITE_WEP40: |
| 3190 | case WLAN_CIPHER_SUITE_WEP104: |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3191 | ret = il4965_set_wep_dynamic_key_info(il, ctx, keyconf, sta_id); |
Stanislaw Gruszka | eb3cdfb | 2011-08-30 12:58:35 +0200 | [diff] [blame] | 3192 | break; |
| 3193 | default: |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3194 | IL_ERR("Unknown alg: %s cipher = %x\n", __func__, |
| 3195 | keyconf->cipher); |
Stanislaw Gruszka | eb3cdfb | 2011-08-30 12:58:35 +0200 | [diff] [blame] | 3196 | ret = -EINVAL; |
| 3197 | } |
| 3198 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3199 | D_WEP("Set dynamic key: cipher=%x len=%d idx=%d sta=%d ret=%d\n", |
| 3200 | keyconf->cipher, keyconf->keylen, keyconf->keyidx, sta_id, ret); |
Stanislaw Gruszka | eb3cdfb | 2011-08-30 12:58:35 +0200 | [diff] [blame] | 3201 | |
| 3202 | return ret; |
| 3203 | } |
| 3204 | |
| 3205 | /** |
| 3206 | * il4965_alloc_bcast_station - add broadcast station into driver's station table. |
| 3207 | * |
| 3208 | * This adds the broadcast station into the driver's station table |
| 3209 | * and marks it driver active, so that it will be restored to the |
| 3210 | * device at the next best time. |
| 3211 | */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3212 | int |
| 3213 | il4965_alloc_bcast_station(struct il_priv *il, struct il_rxon_context *ctx) |
Stanislaw Gruszka | eb3cdfb | 2011-08-30 12:58:35 +0200 | [diff] [blame] | 3214 | { |
| 3215 | struct il_link_quality_cmd *link_cmd; |
| 3216 | unsigned long flags; |
| 3217 | u8 sta_id; |
| 3218 | |
| 3219 | spin_lock_irqsave(&il->sta_lock, flags); |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3220 | sta_id = il_prep_station(il, ctx, il_bcast_addr, false, NULL); |
Stanislaw Gruszka | eb3cdfb | 2011-08-30 12:58:35 +0200 | [diff] [blame] | 3221 | if (sta_id == IL_INVALID_STATION) { |
| 3222 | IL_ERR("Unable to prepare broadcast station\n"); |
| 3223 | spin_unlock_irqrestore(&il->sta_lock, flags); |
| 3224 | |
| 3225 | return -EINVAL; |
| 3226 | } |
| 3227 | |
| 3228 | il->stations[sta_id].used |= IL_STA_DRIVER_ACTIVE; |
| 3229 | il->stations[sta_id].used |= IL_STA_BCAST; |
| 3230 | spin_unlock_irqrestore(&il->sta_lock, flags); |
| 3231 | |
| 3232 | link_cmd = il4965_sta_alloc_lq(il, sta_id); |
| 3233 | if (!link_cmd) { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3234 | IL_ERR |
| 3235 | ("Unable to initialize rate scaling for bcast station.\n"); |
Stanislaw Gruszka | eb3cdfb | 2011-08-30 12:58:35 +0200 | [diff] [blame] | 3236 | return -ENOMEM; |
| 3237 | } |
| 3238 | |
| 3239 | spin_lock_irqsave(&il->sta_lock, flags); |
| 3240 | il->stations[sta_id].lq = link_cmd; |
| 3241 | spin_unlock_irqrestore(&il->sta_lock, flags); |
| 3242 | |
| 3243 | return 0; |
| 3244 | } |
| 3245 | |
| 3246 | /** |
| 3247 | * il4965_update_bcast_station - update broadcast station's LQ command |
| 3248 | * |
| 3249 | * Only used by iwl4965. Placed here to have all bcast station management |
| 3250 | * code together. |
| 3251 | */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3252 | static int |
| 3253 | il4965_update_bcast_station(struct il_priv *il, struct il_rxon_context *ctx) |
Stanislaw Gruszka | eb3cdfb | 2011-08-30 12:58:35 +0200 | [diff] [blame] | 3254 | { |
| 3255 | unsigned long flags; |
| 3256 | struct il_link_quality_cmd *link_cmd; |
| 3257 | u8 sta_id = ctx->bcast_sta_id; |
| 3258 | |
| 3259 | link_cmd = il4965_sta_alloc_lq(il, sta_id); |
| 3260 | if (!link_cmd) { |
Stanislaw Gruszka | 1722f8e | 2011-11-15 14:51:01 +0100 | [diff] [blame] | 3261 | IL_ERR("Unable to initialize rate scaling for bcast sta.\n"); |
Stanislaw Gruszka | eb3cdfb | 2011-08-30 12:58:35 +0200 | [diff] [blame] | 3262 | return -ENOMEM; |
| 3263 | } |
| 3264 | |
| 3265 | spin_lock_irqsave(&il->sta_lock, flags); |
| 3266 | if (il->stations[sta_id].lq) |
| 3267 | kfree(il->stations[sta_id].lq); |
| 3268 | else |
Stanislaw Gruszka | 1722f8e | 2011-11-15 14:51:01 +0100 | [diff] [blame] | 3269 | D_INFO("Bcast sta rate scaling has not been initialized.\n"); |
Stanislaw Gruszka | eb3cdfb | 2011-08-30 12:58:35 +0200 | [diff] [blame] | 3270 | il->stations[sta_id].lq = link_cmd; |
| 3271 | spin_unlock_irqrestore(&il->sta_lock, flags); |
| 3272 | |
| 3273 | return 0; |
| 3274 | } |
| 3275 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3276 | int |
| 3277 | il4965_update_bcast_stations(struct il_priv *il) |
Stanislaw Gruszka | eb3cdfb | 2011-08-30 12:58:35 +0200 | [diff] [blame] | 3278 | { |
| 3279 | return il4965_update_bcast_station(il, &il->ctx); |
| 3280 | } |
| 3281 | |
| 3282 | /** |
| 3283 | * il4965_sta_tx_modify_enable_tid - Enable Tx for this TID in station table |
| 3284 | */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3285 | int |
| 3286 | il4965_sta_tx_modify_enable_tid(struct il_priv *il, int sta_id, int tid) |
Stanislaw Gruszka | eb3cdfb | 2011-08-30 12:58:35 +0200 | [diff] [blame] | 3287 | { |
| 3288 | unsigned long flags; |
| 3289 | struct il_addsta_cmd sta_cmd; |
| 3290 | |
| 3291 | lockdep_assert_held(&il->mutex); |
| 3292 | |
| 3293 | /* Remove "disable" flag, to enable Tx for this TID */ |
| 3294 | spin_lock_irqsave(&il->sta_lock, flags); |
| 3295 | il->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_TID_DISABLE_TX; |
| 3296 | il->stations[sta_id].sta.tid_disable_tx &= cpu_to_le16(~(1 << tid)); |
| 3297 | il->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK; |
| 3298 | memcpy(&sta_cmd, &il->stations[sta_id].sta, |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3299 | sizeof(struct il_addsta_cmd)); |
Stanislaw Gruszka | eb3cdfb | 2011-08-30 12:58:35 +0200 | [diff] [blame] | 3300 | spin_unlock_irqrestore(&il->sta_lock, flags); |
| 3301 | |
| 3302 | return il_send_add_sta(il, &sta_cmd, CMD_SYNC); |
| 3303 | } |
| 3304 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3305 | int |
| 3306 | il4965_sta_rx_agg_start(struct il_priv *il, struct ieee80211_sta *sta, int tid, |
| 3307 | u16 ssn) |
Stanislaw Gruszka | eb3cdfb | 2011-08-30 12:58:35 +0200 | [diff] [blame] | 3308 | { |
| 3309 | unsigned long flags; |
| 3310 | int sta_id; |
| 3311 | struct il_addsta_cmd sta_cmd; |
| 3312 | |
| 3313 | lockdep_assert_held(&il->mutex); |
| 3314 | |
| 3315 | sta_id = il_sta_id(sta); |
| 3316 | if (sta_id == IL_INVALID_STATION) |
| 3317 | return -ENXIO; |
| 3318 | |
| 3319 | spin_lock_irqsave(&il->sta_lock, flags); |
| 3320 | il->stations[sta_id].sta.station_flags_msk = 0; |
| 3321 | il->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_ADDBA_TID_MSK; |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3322 | il->stations[sta_id].sta.add_immediate_ba_tid = (u8) tid; |
Stanislaw Gruszka | eb3cdfb | 2011-08-30 12:58:35 +0200 | [diff] [blame] | 3323 | il->stations[sta_id].sta.add_immediate_ba_ssn = cpu_to_le16(ssn); |
| 3324 | il->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK; |
| 3325 | memcpy(&sta_cmd, &il->stations[sta_id].sta, |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3326 | sizeof(struct il_addsta_cmd)); |
Stanislaw Gruszka | eb3cdfb | 2011-08-30 12:58:35 +0200 | [diff] [blame] | 3327 | spin_unlock_irqrestore(&il->sta_lock, flags); |
| 3328 | |
| 3329 | return il_send_add_sta(il, &sta_cmd, CMD_SYNC); |
| 3330 | } |
| 3331 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3332 | int |
| 3333 | il4965_sta_rx_agg_stop(struct il_priv *il, struct ieee80211_sta *sta, int tid) |
Stanislaw Gruszka | eb3cdfb | 2011-08-30 12:58:35 +0200 | [diff] [blame] | 3334 | { |
| 3335 | unsigned long flags; |
| 3336 | int sta_id; |
| 3337 | struct il_addsta_cmd sta_cmd; |
| 3338 | |
| 3339 | lockdep_assert_held(&il->mutex); |
| 3340 | |
| 3341 | sta_id = il_sta_id(sta); |
| 3342 | if (sta_id == IL_INVALID_STATION) { |
| 3343 | IL_ERR("Invalid station for AGG tid %d\n", tid); |
| 3344 | return -ENXIO; |
| 3345 | } |
| 3346 | |
| 3347 | spin_lock_irqsave(&il->sta_lock, flags); |
| 3348 | il->stations[sta_id].sta.station_flags_msk = 0; |
| 3349 | il->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_DELBA_TID_MSK; |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3350 | il->stations[sta_id].sta.remove_immediate_ba_tid = (u8) tid; |
Stanislaw Gruszka | eb3cdfb | 2011-08-30 12:58:35 +0200 | [diff] [blame] | 3351 | il->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK; |
| 3352 | memcpy(&sta_cmd, &il->stations[sta_id].sta, |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3353 | sizeof(struct il_addsta_cmd)); |
Stanislaw Gruszka | eb3cdfb | 2011-08-30 12:58:35 +0200 | [diff] [blame] | 3354 | spin_unlock_irqrestore(&il->sta_lock, flags); |
| 3355 | |
| 3356 | return il_send_add_sta(il, &sta_cmd, CMD_SYNC); |
| 3357 | } |
| 3358 | |
| 3359 | void |
| 3360 | il4965_sta_modify_sleep_tx_count(struct il_priv *il, int sta_id, int cnt) |
| 3361 | { |
| 3362 | unsigned long flags; |
| 3363 | |
| 3364 | spin_lock_irqsave(&il->sta_lock, flags); |
| 3365 | il->stations[sta_id].sta.station_flags |= STA_FLG_PWR_SAVE_MSK; |
| 3366 | il->stations[sta_id].sta.station_flags_msk = STA_FLG_PWR_SAVE_MSK; |
| 3367 | il->stations[sta_id].sta.sta.modify_mask = |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3368 | STA_MODIFY_SLEEP_TX_COUNT_MSK; |
Stanislaw Gruszka | eb3cdfb | 2011-08-30 12:58:35 +0200 | [diff] [blame] | 3369 | il->stations[sta_id].sta.sleep_tx_count = cpu_to_le16(cnt); |
| 3370 | il->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK; |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3371 | il_send_add_sta(il, &il->stations[sta_id].sta, CMD_ASYNC); |
Stanislaw Gruszka | eb3cdfb | 2011-08-30 12:58:35 +0200 | [diff] [blame] | 3372 | spin_unlock_irqrestore(&il->sta_lock, flags); |
| 3373 | |
| 3374 | } |
| 3375 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3376 | void |
| 3377 | il4965_update_chain_flags(struct il_priv *il) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3378 | { |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3379 | if (il->cfg->ops->hcmd->set_rxon_chain) { |
Stanislaw Gruszka | 17d6e55 | 2011-08-29 12:52:20 +0200 | [diff] [blame] | 3380 | il->cfg->ops->hcmd->set_rxon_chain(il, &il->ctx); |
| 3381 | if (il->ctx.active.rx_chain != il->ctx.staging.rx_chain) |
| 3382 | il_commit_rxon(il, &il->ctx); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3383 | } |
| 3384 | } |
| 3385 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3386 | static void |
| 3387 | il4965_clear_free_frames(struct il_priv *il) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3388 | { |
| 3389 | struct list_head *element; |
| 3390 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3391 | D_INFO("%d frames on pre-allocated heap on clear.\n", il->frames_count); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3392 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3393 | while (!list_empty(&il->free_frames)) { |
| 3394 | element = il->free_frames.next; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3395 | list_del(element); |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3396 | kfree(list_entry(element, struct il_frame, list)); |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3397 | il->frames_count--; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3398 | } |
| 3399 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3400 | if (il->frames_count) { |
Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 3401 | IL_WARN("%d frames still in use. Did we lose one?\n", |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3402 | il->frames_count); |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3403 | il->frames_count = 0; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3404 | } |
| 3405 | } |
| 3406 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3407 | static struct il_frame * |
| 3408 | il4965_get_free_frame(struct il_priv *il) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3409 | { |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3410 | struct il_frame *frame; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3411 | struct list_head *element; |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3412 | if (list_empty(&il->free_frames)) { |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3413 | frame = kzalloc(sizeof(*frame), GFP_KERNEL); |
| 3414 | if (!frame) { |
Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 3415 | IL_ERR("Could not allocate frame!\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3416 | return NULL; |
| 3417 | } |
| 3418 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3419 | il->frames_count++; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3420 | return frame; |
| 3421 | } |
| 3422 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3423 | element = il->free_frames.next; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3424 | list_del(element); |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3425 | return list_entry(element, struct il_frame, list); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3426 | } |
| 3427 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3428 | static void |
| 3429 | il4965_free_frame(struct il_priv *il, struct il_frame *frame) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3430 | { |
| 3431 | memset(frame, 0, sizeof(*frame)); |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3432 | list_add(&frame->list, &il->free_frames); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3433 | } |
| 3434 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3435 | static u32 |
| 3436 | il4965_fill_beacon_frame(struct il_priv *il, struct ieee80211_hdr *hdr, |
| 3437 | int left) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3438 | { |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3439 | lockdep_assert_held(&il->mutex); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3440 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3441 | if (!il->beacon_skb) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3442 | return 0; |
| 3443 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3444 | if (il->beacon_skb->len > left) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3445 | return 0; |
| 3446 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3447 | memcpy(hdr, il->beacon_skb->data, il->beacon_skb->len); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3448 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3449 | return il->beacon_skb->len; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3450 | } |
| 3451 | |
| 3452 | /* Parse the beacon frame to find the TIM element and set tim_idx & tim_size */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3453 | static void |
| 3454 | il4965_set_beacon_tim(struct il_priv *il, |
| 3455 | struct il_tx_beacon_cmd *tx_beacon_cmd, u8 * beacon, |
| 3456 | u32 frame_size) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3457 | { |
| 3458 | u16 tim_idx; |
| 3459 | struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *)beacon; |
| 3460 | |
| 3461 | /* |
Stanislaw Gruszka | 0c2c885 | 2011-11-15 12:30:17 +0100 | [diff] [blame] | 3462 | * The idx is relative to frame start but we start looking at the |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3463 | * variable-length part of the beacon. |
| 3464 | */ |
| 3465 | tim_idx = mgmt->u.beacon.variable - beacon; |
| 3466 | |
| 3467 | /* Parse variable-length elements of beacon to find WLAN_EID_TIM */ |
| 3468 | while ((tim_idx < (frame_size - 2)) && |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3469 | (beacon[tim_idx] != WLAN_EID_TIM)) |
| 3470 | tim_idx += beacon[tim_idx + 1] + 2; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3471 | |
| 3472 | /* If TIM field was found, set variables */ |
| 3473 | if ((tim_idx < (frame_size - 1)) && (beacon[tim_idx] == WLAN_EID_TIM)) { |
| 3474 | tx_beacon_cmd->tim_idx = cpu_to_le16(tim_idx); |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3475 | tx_beacon_cmd->tim_size = beacon[tim_idx + 1]; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3476 | } else |
Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 3477 | IL_WARN("Unable to find TIM Element in beacon\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3478 | } |
| 3479 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3480 | static unsigned int |
| 3481 | il4965_hw_get_beacon_cmd(struct il_priv *il, struct il_frame *frame) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3482 | { |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3483 | struct il_tx_beacon_cmd *tx_beacon_cmd; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3484 | u32 frame_size; |
| 3485 | u32 rate_flags; |
| 3486 | u32 rate; |
| 3487 | /* |
| 3488 | * We have to set up the TX command, the TX Beacon command, and the |
| 3489 | * beacon contents. |
| 3490 | */ |
| 3491 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3492 | lockdep_assert_held(&il->mutex); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3493 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3494 | if (!il->beacon_ctx) { |
Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 3495 | IL_ERR("trying to build beacon w/o beacon context!\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3496 | return 0; |
| 3497 | } |
| 3498 | |
| 3499 | /* Initialize memory */ |
| 3500 | tx_beacon_cmd = &frame->u.beacon; |
| 3501 | memset(tx_beacon_cmd, 0, sizeof(*tx_beacon_cmd)); |
| 3502 | |
| 3503 | /* Set up TX beacon contents */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3504 | frame_size = |
| 3505 | il4965_fill_beacon_frame(il, tx_beacon_cmd->frame, |
| 3506 | sizeof(frame->u) - sizeof(*tx_beacon_cmd)); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3507 | if (WARN_ON_ONCE(frame_size > MAX_MPDU_SIZE)) |
| 3508 | return 0; |
| 3509 | if (!frame_size) |
| 3510 | return 0; |
| 3511 | |
| 3512 | /* Set up TX command fields */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3513 | tx_beacon_cmd->tx.len = cpu_to_le16((u16) frame_size); |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3514 | tx_beacon_cmd->tx.sta_id = il->beacon_ctx->bcast_sta_id; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3515 | tx_beacon_cmd->tx.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE; |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3516 | tx_beacon_cmd->tx.tx_flags = |
| 3517 | TX_CMD_FLG_SEQ_CTL_MSK | TX_CMD_FLG_TSF_MSK | |
| 3518 | TX_CMD_FLG_STA_RATE_MSK; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3519 | |
| 3520 | /* Set up TX beacon command fields */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3521 | il4965_set_beacon_tim(il, tx_beacon_cmd, (u8 *) tx_beacon_cmd->frame, |
| 3522 | frame_size); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3523 | |
| 3524 | /* Set up packet rate and flags */ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3525 | rate = il_get_lowest_plcp(il, il->beacon_ctx); |
Stanislaw Gruszka | a0c1ef3 | 2011-12-23 08:13:44 +0100 | [diff] [blame] | 3526 | il4965_toggle_tx_ant(il, &il->mgmt_tx_ant, il->hw_params.valid_tx_ant); |
Stanislaw Gruszka | 616107e | 2011-12-23 08:13:45 +0100 | [diff] [blame^] | 3527 | rate_flags = BIT(il->mgmt_tx_ant) << RATE_MCS_ANT_POS; |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3528 | if ((rate >= IL_FIRST_CCK_RATE) && (rate <= IL_LAST_CCK_RATE)) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3529 | rate_flags |= RATE_MCS_CCK_MSK; |
Stanislaw Gruszka | 616107e | 2011-12-23 08:13:45 +0100 | [diff] [blame^] | 3530 | tx_beacon_cmd->tx.rate_n_flags = cpu_to_le32(rate | rate_flags); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3531 | |
| 3532 | return sizeof(*tx_beacon_cmd) + frame_size; |
| 3533 | } |
| 3534 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3535 | int |
| 3536 | il4965_send_beacon_cmd(struct il_priv *il) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3537 | { |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3538 | struct il_frame *frame; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3539 | unsigned int frame_size; |
| 3540 | int rc; |
| 3541 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3542 | frame = il4965_get_free_frame(il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3543 | if (!frame) { |
Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 3544 | IL_ERR("Could not obtain free frame buffer for beacon " |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3545 | "command.\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3546 | return -ENOMEM; |
| 3547 | } |
| 3548 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3549 | frame_size = il4965_hw_get_beacon_cmd(il, frame); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3550 | if (!frame_size) { |
Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 3551 | IL_ERR("Error configuring the beacon command\n"); |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3552 | il4965_free_frame(il, frame); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3553 | return -EINVAL; |
| 3554 | } |
| 3555 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3556 | rc = il_send_cmd_pdu(il, C_TX_BEACON, frame_size, &frame->u.cmd[0]); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3557 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3558 | il4965_free_frame(il, frame); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3559 | |
| 3560 | return rc; |
| 3561 | } |
| 3562 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3563 | static inline dma_addr_t |
| 3564 | il4965_tfd_tb_get_addr(struct il_tfd *tfd, u8 idx) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3565 | { |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3566 | struct il_tfd_tb *tb = &tfd->tbs[idx]; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3567 | |
| 3568 | dma_addr_t addr = get_unaligned_le32(&tb->lo); |
| 3569 | if (sizeof(dma_addr_t) > sizeof(u32)) |
| 3570 | addr |= |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3571 | ((dma_addr_t) (le16_to_cpu(tb->hi_n_len) & 0xF) << 16) << |
| 3572 | 16; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3573 | |
| 3574 | return addr; |
| 3575 | } |
| 3576 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3577 | static inline u16 |
| 3578 | il4965_tfd_tb_get_len(struct il_tfd *tfd, u8 idx) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3579 | { |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3580 | struct il_tfd_tb *tb = &tfd->tbs[idx]; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3581 | |
| 3582 | return le16_to_cpu(tb->hi_n_len) >> 4; |
| 3583 | } |
| 3584 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3585 | static inline void |
| 3586 | il4965_tfd_set_tb(struct il_tfd *tfd, u8 idx, dma_addr_t addr, u16 len) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3587 | { |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3588 | struct il_tfd_tb *tb = &tfd->tbs[idx]; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3589 | u16 hi_n_len = len << 4; |
| 3590 | |
| 3591 | put_unaligned_le32(addr, &tb->lo); |
| 3592 | if (sizeof(dma_addr_t) > sizeof(u32)) |
| 3593 | hi_n_len |= ((addr >> 16) >> 16) & 0xF; |
| 3594 | |
| 3595 | tb->hi_n_len = cpu_to_le16(hi_n_len); |
| 3596 | |
| 3597 | tfd->num_tbs = idx + 1; |
| 3598 | } |
| 3599 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3600 | static inline u8 |
| 3601 | il4965_tfd_get_num_tbs(struct il_tfd *tfd) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3602 | { |
| 3603 | return tfd->num_tbs & 0x1f; |
| 3604 | } |
| 3605 | |
| 3606 | /** |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3607 | * il4965_hw_txq_free_tfd - Free all chunks referenced by TFD [txq->q.read_ptr] |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3608 | * @il - driver ilate data |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3609 | * @txq - tx queue |
| 3610 | * |
Stanislaw Gruszka | 0c2c885 | 2011-11-15 12:30:17 +0100 | [diff] [blame] | 3611 | * Does NOT advance any TFD circular buffer read/write idxes |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3612 | * Does NOT free the TFD itself (which is within circular buffer) |
| 3613 | */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3614 | void |
| 3615 | il4965_hw_txq_free_tfd(struct il_priv *il, struct il_tx_queue *txq) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3616 | { |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3617 | struct il_tfd *tfd_tmp = (struct il_tfd *)txq->tfds; |
| 3618 | struct il_tfd *tfd; |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3619 | struct pci_dev *dev = il->pci_dev; |
Stanislaw Gruszka | 0c2c885 | 2011-11-15 12:30:17 +0100 | [diff] [blame] | 3620 | int idx = txq->q.read_ptr; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3621 | int i; |
| 3622 | int num_tbs; |
| 3623 | |
Stanislaw Gruszka | 0c2c885 | 2011-11-15 12:30:17 +0100 | [diff] [blame] | 3624 | tfd = &tfd_tmp[idx]; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3625 | |
| 3626 | /* Sanity check on number of chunks */ |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3627 | num_tbs = il4965_tfd_get_num_tbs(tfd); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3628 | |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3629 | if (num_tbs >= IL_NUM_OF_TBS) { |
Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 3630 | IL_ERR("Too many chunks: %i\n", num_tbs); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3631 | /* @todo issue fatal error, it is quite serious situation */ |
| 3632 | return; |
| 3633 | } |
| 3634 | |
| 3635 | /* Unmap tx_cmd */ |
| 3636 | if (num_tbs) |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3637 | pci_unmap_single(dev, dma_unmap_addr(&txq->meta[idx], mapping), |
| 3638 | dma_unmap_len(&txq->meta[idx], len), |
| 3639 | PCI_DMA_BIDIRECTIONAL); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3640 | |
| 3641 | /* Unmap chunks, if any. */ |
| 3642 | for (i = 1; i < num_tbs; i++) |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3643 | pci_unmap_single(dev, il4965_tfd_tb_get_addr(tfd, i), |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3644 | il4965_tfd_tb_get_len(tfd, i), |
| 3645 | PCI_DMA_TODEVICE); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3646 | |
| 3647 | /* free SKB */ |
| 3648 | if (txq->txb) { |
| 3649 | struct sk_buff *skb; |
| 3650 | |
| 3651 | skb = txq->txb[txq->q.read_ptr].skb; |
| 3652 | |
| 3653 | /* can be called from irqs-disabled context */ |
| 3654 | if (skb) { |
| 3655 | dev_kfree_skb_any(skb); |
| 3656 | txq->txb[txq->q.read_ptr].skb = NULL; |
| 3657 | } |
| 3658 | } |
| 3659 | } |
| 3660 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3661 | int |
| 3662 | il4965_hw_txq_attach_buf_to_tfd(struct il_priv *il, struct il_tx_queue *txq, |
| 3663 | dma_addr_t addr, u16 len, u8 reset, u8 pad) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3664 | { |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3665 | struct il_queue *q; |
| 3666 | struct il_tfd *tfd, *tfd_tmp; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3667 | u32 num_tbs; |
| 3668 | |
| 3669 | q = &txq->q; |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3670 | tfd_tmp = (struct il_tfd *)txq->tfds; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3671 | tfd = &tfd_tmp[q->write_ptr]; |
| 3672 | |
| 3673 | if (reset) |
| 3674 | memset(tfd, 0, sizeof(*tfd)); |
| 3675 | |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3676 | num_tbs = il4965_tfd_get_num_tbs(tfd); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3677 | |
| 3678 | /* Each TFD can point to a maximum 20 Tx buffers */ |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3679 | if (num_tbs >= IL_NUM_OF_TBS) { |
Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 3680 | IL_ERR("Error can not send more than %d chunks\n", |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3681 | IL_NUM_OF_TBS); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3682 | return -EINVAL; |
| 3683 | } |
| 3684 | |
| 3685 | BUG_ON(addr & ~DMA_BIT_MASK(36)); |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3686 | if (unlikely(addr & ~IL_TX_DMA_MASK)) |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3687 | IL_ERR("Unaligned address = %llx\n", (unsigned long long)addr); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3688 | |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3689 | il4965_tfd_set_tb(tfd, num_tbs, addr, len); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3690 | |
| 3691 | return 0; |
| 3692 | } |
| 3693 | |
| 3694 | /* |
| 3695 | * Tell nic where to find circular buffer of Tx Frame Descriptors for |
| 3696 | * given Tx queue, and enable the DMA channel used for that queue. |
| 3697 | * |
| 3698 | * 4965 supports up to 16 Tx queues in DRAM, mapped to up to 8 Tx DMA |
| 3699 | * channels supported in hardware. |
| 3700 | */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3701 | int |
| 3702 | il4965_hw_tx_queue_init(struct il_priv *il, struct il_tx_queue *txq) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3703 | { |
| 3704 | int txq_id = txq->q.id; |
| 3705 | |
| 3706 | /* Circular buffer (TFD queue in DRAM) physical base address */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3707 | il_wr(il, FH49_MEM_CBBC_QUEUE(txq_id), txq->q.dma_addr >> 8); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3708 | |
| 3709 | return 0; |
| 3710 | } |
| 3711 | |
| 3712 | /****************************************************************************** |
| 3713 | * |
| 3714 | * Generic RX handler implementations |
| 3715 | * |
| 3716 | ******************************************************************************/ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3717 | static void |
| 3718 | il4965_hdl_alive(struct il_priv *il, struct il_rx_buf *rxb) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3719 | { |
Stanislaw Gruszka | dcae1c6 | 2011-08-26 14:36:21 +0200 | [diff] [blame] | 3720 | struct il_rx_pkt *pkt = rxb_addr(rxb); |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3721 | struct il_alive_resp *palive; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3722 | struct delayed_work *pwork; |
| 3723 | |
| 3724 | palive = &pkt->u.alive_frame; |
| 3725 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3726 | D_INFO("Alive ucode status 0x%08X revision " "0x%01X 0x%01X\n", |
| 3727 | palive->is_valid, palive->ver_type, palive->ver_subtype); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3728 | |
| 3729 | if (palive->ver_subtype == INITIALIZE_SUBTYPE) { |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 3730 | D_INFO("Initialization Alive received.\n"); |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3731 | memcpy(&il->card_alive_init, &pkt->u.alive_frame, |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3732 | sizeof(struct il_init_alive_resp)); |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3733 | pwork = &il->init_alive_start; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3734 | } else { |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 3735 | D_INFO("Runtime Alive received.\n"); |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3736 | memcpy(&il->card_alive, &pkt->u.alive_frame, |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3737 | sizeof(struct il_alive_resp)); |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3738 | pwork = &il->alive_start; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3739 | } |
| 3740 | |
| 3741 | /* We delay the ALIVE response by 5ms to |
| 3742 | * give the HW RF Kill time to activate... */ |
| 3743 | if (palive->is_valid == UCODE_VALID_OK) |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3744 | queue_delayed_work(il->workqueue, pwork, msecs_to_jiffies(5)); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3745 | else |
Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 3746 | IL_WARN("uCode did not respond OK.\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3747 | } |
| 3748 | |
| 3749 | /** |
Stanislaw Gruszka | ebf0d90 | 2011-08-26 15:43:47 +0200 | [diff] [blame] | 3750 | * il4965_bg_stats_periodic - Timer callback to queue stats |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3751 | * |
Stanislaw Gruszka | ebf0d90 | 2011-08-26 15:43:47 +0200 | [diff] [blame] | 3752 | * This callback is provided in order to send a stats request. |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3753 | * |
| 3754 | * This timer function is continually reset to execute within |
Stanislaw Gruszka | 4d69c75 | 2011-08-30 15:26:35 +0200 | [diff] [blame] | 3755 | * REG_RECALIB_PERIOD seconds since the last N_STATS |
Stanislaw Gruszka | ebf0d90 | 2011-08-26 15:43:47 +0200 | [diff] [blame] | 3756 | * was received. We need to ensure we receive the stats in order |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3757 | * to update the temperature used for calibrating the TXPOWER. |
| 3758 | */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3759 | static void |
| 3760 | il4965_bg_stats_periodic(unsigned long data) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3761 | { |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3762 | struct il_priv *il = (struct il_priv *)data; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3763 | |
Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 3764 | if (test_bit(S_EXIT_PENDING, &il->status)) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3765 | return; |
| 3766 | |
| 3767 | /* dont send host command if rf-kill is on */ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3768 | if (!il_is_ready_rf(il)) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3769 | return; |
| 3770 | |
Stanislaw Gruszka | ebf0d90 | 2011-08-26 15:43:47 +0200 | [diff] [blame] | 3771 | il_send_stats_request(il, CMD_ASYNC, false); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3772 | } |
| 3773 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3774 | static void |
| 3775 | il4965_hdl_beacon(struct il_priv *il, struct il_rx_buf *rxb) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3776 | { |
Stanislaw Gruszka | dcae1c6 | 2011-08-26 14:36:21 +0200 | [diff] [blame] | 3777 | struct il_rx_pkt *pkt = rxb_addr(rxb); |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3778 | struct il4965_beacon_notif *beacon = |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3779 | (struct il4965_beacon_notif *)pkt->u.raw; |
Stanislaw Gruszka | d317516 | 2011-11-15 11:25:42 +0100 | [diff] [blame] | 3780 | #ifdef CONFIG_IWLEGACY_DEBUG |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3781 | u8 rate = il4965_hw_get_rate(beacon->beacon_notify_hdr.rate_n_flags); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3782 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3783 | D_RX("beacon status %x retries %d iss %d " "tsf %d %d rate %d\n", |
| 3784 | le32_to_cpu(beacon->beacon_notify_hdr.u.status) & TX_STATUS_MSK, |
| 3785 | beacon->beacon_notify_hdr.failure_frame, |
| 3786 | le32_to_cpu(beacon->ibss_mgr_status), |
| 3787 | le32_to_cpu(beacon->high_tsf), le32_to_cpu(beacon->low_tsf), rate); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3788 | #endif |
| 3789 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3790 | il->ibss_manager = le32_to_cpu(beacon->ibss_mgr_status); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3791 | } |
| 3792 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3793 | static void |
| 3794 | il4965_perform_ct_kill_task(struct il_priv *il) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3795 | { |
| 3796 | unsigned long flags; |
| 3797 | |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 3798 | D_POWER("Stop all queues\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3799 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3800 | if (il->mac80211_registered) |
| 3801 | ieee80211_stop_queues(il->hw); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3802 | |
Stanislaw Gruszka | 841b2cc | 2011-08-24 15:14:03 +0200 | [diff] [blame] | 3803 | _il_wr(il, CSR_UCODE_DRV_GP1_SET, |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3804 | CSR_UCODE_DRV_GP1_REG_BIT_CT_KILL_EXIT); |
Stanislaw Gruszka | 841b2cc | 2011-08-24 15:14:03 +0200 | [diff] [blame] | 3805 | _il_rd(il, CSR_UCODE_DRV_GP1); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3806 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3807 | spin_lock_irqsave(&il->reg_lock, flags); |
Stanislaw Gruszka | 1388226 | 2011-08-24 15:39:23 +0200 | [diff] [blame] | 3808 | if (!_il_grab_nic_access(il)) |
| 3809 | _il_release_nic_access(il); |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3810 | spin_unlock_irqrestore(&il->reg_lock, flags); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3811 | } |
| 3812 | |
| 3813 | /* Handle notification from uCode that card's power state is changing |
| 3814 | * due to software, hardware, or critical temperature RFKILL */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3815 | static void |
| 3816 | il4965_hdl_card_state(struct il_priv *il, struct il_rx_buf *rxb) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3817 | { |
Stanislaw Gruszka | dcae1c6 | 2011-08-26 14:36:21 +0200 | [diff] [blame] | 3818 | struct il_rx_pkt *pkt = rxb_addr(rxb); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3819 | u32 flags = le32_to_cpu(pkt->u.card_state_notif.flags); |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3820 | unsigned long status = il->status; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3821 | |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 3822 | D_RF_KILL("Card state received: HW:%s SW:%s CT:%s\n", |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3823 | (flags & HW_CARD_DISABLED) ? "Kill" : "On", |
| 3824 | (flags & SW_CARD_DISABLED) ? "Kill" : "On", |
| 3825 | (flags & CT_CARD_DISABLED) ? "Reached" : "Not reached"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3826 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3827 | if (flags & (SW_CARD_DISABLED | HW_CARD_DISABLED | CT_CARD_DISABLED)) { |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3828 | |
Stanislaw Gruszka | 841b2cc | 2011-08-24 15:14:03 +0200 | [diff] [blame] | 3829 | _il_wr(il, CSR_UCODE_DRV_GP1_SET, |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3830 | CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3831 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3832 | il_wr(il, HBUS_TARG_MBX_C, HBUS_TARG_MBX_C_REG_BIT_CMD_BLOCKED); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3833 | |
| 3834 | if (!(flags & RXON_CARD_DISABLED)) { |
Stanislaw Gruszka | 841b2cc | 2011-08-24 15:14:03 +0200 | [diff] [blame] | 3835 | _il_wr(il, CSR_UCODE_DRV_GP1_CLR, |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3836 | CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED); |
Stanislaw Gruszka | 0c1a94e | 2011-08-24 17:37:16 +0200 | [diff] [blame] | 3837 | il_wr(il, HBUS_TARG_MBX_C, |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3838 | HBUS_TARG_MBX_C_REG_BIT_CMD_BLOCKED); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3839 | } |
| 3840 | } |
| 3841 | |
| 3842 | if (flags & CT_CARD_DISABLED) |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3843 | il4965_perform_ct_kill_task(il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3844 | |
| 3845 | if (flags & HW_CARD_DISABLED) |
Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 3846 | set_bit(S_RF_KILL_HW, &il->status); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3847 | else |
Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 3848 | clear_bit(S_RF_KILL_HW, &il->status); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3849 | |
| 3850 | if (!(flags & RXON_CARD_DISABLED)) |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3851 | il_scan_cancel(il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3852 | |
Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 3853 | if ((test_bit(S_RF_KILL_HW, &status) != |
| 3854 | test_bit(S_RF_KILL_HW, &il->status))) |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3855 | wiphy_rfkill_set_hw_state(il->hw->wiphy, |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3856 | test_bit(S_RF_KILL_HW, &il->status)); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3857 | else |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3858 | wake_up(&il->wait_command_queue); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3859 | } |
| 3860 | |
| 3861 | /** |
Stanislaw Gruszka | d0c7234 | 2011-08-30 15:39:42 +0200 | [diff] [blame] | 3862 | * il4965_setup_handlers - Initialize Rx handler callbacks |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3863 | * |
| 3864 | * Setup the RX handlers for each of the reply types sent from the uCode |
| 3865 | * to the host. |
| 3866 | * |
| 3867 | * This function chains into the hardware specific files for them to setup |
| 3868 | * any hardware specific handlers as well. |
| 3869 | */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3870 | static void |
| 3871 | il4965_setup_handlers(struct il_priv *il) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3872 | { |
Stanislaw Gruszka | 6e9848b4 | 2011-08-30 15:45:31 +0200 | [diff] [blame] | 3873 | il->handlers[N_ALIVE] = il4965_hdl_alive; |
| 3874 | il->handlers[N_ERROR] = il_hdl_error; |
Stanislaw Gruszka | d2dfb33 | 2011-11-15 13:16:38 +0100 | [diff] [blame] | 3875 | il->handlers[N_CHANNEL_SWITCH] = il_hdl_csa; |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3876 | il->handlers[N_SPECTRUM_MEASUREMENT] = il_hdl_spectrum_measurement; |
Stanislaw Gruszka | d2dfb33 | 2011-11-15 13:16:38 +0100 | [diff] [blame] | 3877 | il->handlers[N_PM_SLEEP] = il_hdl_pm_sleep; |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3878 | il->handlers[N_PM_DEBUG_STATS] = il_hdl_pm_debug_stats; |
Stanislaw Gruszka | d2dfb33 | 2011-11-15 13:16:38 +0100 | [diff] [blame] | 3879 | il->handlers[N_BEACON] = il4965_hdl_beacon; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3880 | |
| 3881 | /* |
| 3882 | * The same handler is used for both the REPLY to a discrete |
Stanislaw Gruszka | ebf0d90 | 2011-08-26 15:43:47 +0200 | [diff] [blame] | 3883 | * stats request from the host as well as for the periodic |
| 3884 | * stats notifications (after received beacons) from the uCode. |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3885 | */ |
Stanislaw Gruszka | d2dfb33 | 2011-11-15 13:16:38 +0100 | [diff] [blame] | 3886 | il->handlers[C_STATS] = il4965_hdl_c_stats; |
| 3887 | il->handlers[N_STATS] = il4965_hdl_stats; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3888 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3889 | il_setup_rx_scan_handlers(il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3890 | |
| 3891 | /* status change handler */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3892 | il->handlers[N_CARD_STATE] = il4965_hdl_card_state; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3893 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3894 | il->handlers[N_MISSED_BEACONS] = il4965_hdl_missed_beacon; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3895 | /* Rx handlers */ |
Stanislaw Gruszka | 6e9848b4 | 2011-08-30 15:45:31 +0200 | [diff] [blame] | 3896 | il->handlers[N_RX_PHY] = il4965_hdl_rx_phy; |
| 3897 | il->handlers[N_RX_MPDU] = il4965_hdl_rx; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3898 | /* block ack */ |
Stanislaw Gruszka | 6e9848b4 | 2011-08-30 15:45:31 +0200 | [diff] [blame] | 3899 | il->handlers[N_COMPRESSED_BA] = il4965_hdl_compressed_ba; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3900 | /* Set up hardware specific Rx handlers */ |
Stanislaw Gruszka | d0c7234 | 2011-08-30 15:39:42 +0200 | [diff] [blame] | 3901 | il->cfg->ops->lib->handler_setup(il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3902 | } |
| 3903 | |
| 3904 | /** |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3905 | * il4965_rx_handle - Main entry function for receiving responses from uCode |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3906 | * |
Stanislaw Gruszka | d0c7234 | 2011-08-30 15:39:42 +0200 | [diff] [blame] | 3907 | * Uses the il->handlers callback function array to invoke |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3908 | * the appropriate handlers, including command responses, |
| 3909 | * frame-received notifications, and other notifications. |
| 3910 | */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3911 | void |
| 3912 | il4965_rx_handle(struct il_priv *il) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3913 | { |
Stanislaw Gruszka | b73bb5f | 2011-08-26 14:37:54 +0200 | [diff] [blame] | 3914 | struct il_rx_buf *rxb; |
Stanislaw Gruszka | dcae1c6 | 2011-08-26 14:36:21 +0200 | [diff] [blame] | 3915 | struct il_rx_pkt *pkt; |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3916 | struct il_rx_queue *rxq = &il->rxq; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3917 | u32 r, i; |
| 3918 | int reclaim; |
| 3919 | unsigned long flags; |
| 3920 | u8 fill_rx = 0; |
| 3921 | u32 count = 8; |
| 3922 | int total_empty; |
| 3923 | |
Stanislaw Gruszka | 0c2c885 | 2011-11-15 12:30:17 +0100 | [diff] [blame] | 3924 | /* uCode's read idx (stored in shared DRAM) indicates the last Rx |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3925 | * buffer that the driver may process (last buffer filled by ucode). */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3926 | r = le16_to_cpu(rxq->rb_stts->closed_rb_num) & 0x0FFF; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3927 | i = rxq->read; |
| 3928 | |
| 3929 | /* Rx interrupt, but nothing sent from uCode */ |
| 3930 | if (i == r) |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 3931 | D_RX("r = %d, i = %d\n", r, i); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3932 | |
| 3933 | /* calculate total frames need to be restock after handling RX */ |
| 3934 | total_empty = r - rxq->write_actual; |
| 3935 | if (total_empty < 0) |
| 3936 | total_empty += RX_QUEUE_SIZE; |
| 3937 | |
| 3938 | if (total_empty > (RX_QUEUE_SIZE / 2)) |
| 3939 | fill_rx = 1; |
| 3940 | |
| 3941 | while (i != r) { |
| 3942 | int len; |
| 3943 | |
| 3944 | rxb = rxq->queue[i]; |
| 3945 | |
| 3946 | /* If an RXB doesn't have a Rx queue slot associated with it, |
| 3947 | * then a bug has been introduced in the queue refilling |
| 3948 | * routines -- catch it here */ |
| 3949 | BUG_ON(rxb == NULL); |
| 3950 | |
| 3951 | rxq->queue[i] = NULL; |
| 3952 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3953 | pci_unmap_page(il->pci_dev, rxb->page_dma, |
| 3954 | PAGE_SIZE << il->hw_params.rx_page_order, |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3955 | PCI_DMA_FROMDEVICE); |
| 3956 | pkt = rxb_addr(rxb); |
| 3957 | |
Stanislaw Gruszka | e94a409 | 2011-08-31 13:23:20 +0200 | [diff] [blame] | 3958 | len = le32_to_cpu(pkt->len_n_flags) & IL_RX_FRAME_SIZE_MSK; |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3959 | len += sizeof(u32); /* account for status word */ |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3960 | |
| 3961 | /* Reclaim a command buffer only if this packet is a response |
| 3962 | * to a (driver-originated) command. |
| 3963 | * If the packet (e.g. Rx frame) originated from uCode, |
| 3964 | * there is no command buffer to reclaim. |
| 3965 | * Ucode should set SEQ_RX_FRAME bit if ucode-originated, |
| 3966 | * but apparently a few don't get set; catch them here. */ |
| 3967 | reclaim = !(pkt->hdr.sequence & SEQ_RX_FRAME) && |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3968 | (pkt->hdr.cmd != N_RX_PHY) && (pkt->hdr.cmd != N_RX) && |
| 3969 | (pkt->hdr.cmd != N_RX_MPDU) && |
| 3970 | (pkt->hdr.cmd != N_COMPRESSED_BA) && |
| 3971 | (pkt->hdr.cmd != N_STATS) && (pkt->hdr.cmd != C_TX); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3972 | |
| 3973 | /* Based on type of command response or notification, |
| 3974 | * handle those that need handling via function in |
Stanislaw Gruszka | d0c7234 | 2011-08-30 15:39:42 +0200 | [diff] [blame] | 3975 | * handlers table. See il4965_setup_handlers() */ |
| 3976 | if (il->handlers[pkt->hdr.cmd]) { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3977 | D_RX("r = %d, i = %d, %s, 0x%02x\n", r, i, |
| 3978 | il_get_cmd_string(pkt->hdr.cmd), pkt->hdr.cmd); |
Stanislaw Gruszka | d0c7234 | 2011-08-30 15:39:42 +0200 | [diff] [blame] | 3979 | il->isr_stats.handlers[pkt->hdr.cmd]++; |
| 3980 | il->handlers[pkt->hdr.cmd] (il, rxb); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3981 | } else { |
| 3982 | /* No handling needed */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3983 | D_RX("r %d i %d No handler needed for %s, 0x%02x\n", r, |
| 3984 | i, il_get_cmd_string(pkt->hdr.cmd), pkt->hdr.cmd); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3985 | } |
| 3986 | |
| 3987 | /* |
| 3988 | * XXX: After here, we should always check rxb->page |
| 3989 | * against NULL before touching it or its virtual |
Stanislaw Gruszka | d0c7234 | 2011-08-30 15:39:42 +0200 | [diff] [blame] | 3990 | * memory (pkt). Because some handler might have |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3991 | * already taken or freed the pages. |
| 3992 | */ |
| 3993 | |
| 3994 | if (reclaim) { |
| 3995 | /* Invoke any callbacks, transfer the buffer to caller, |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3996 | * and fire off the (possibly) blocking il_send_cmd() |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3997 | * as we reclaim the driver command queue */ |
| 3998 | if (rxb->page) |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3999 | il_tx_cmd_complete(il, rxb); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4000 | else |
Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 4001 | IL_WARN("Claim null rxb?\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4002 | } |
| 4003 | |
| 4004 | /* Reuse the page if possible. For notification packets and |
| 4005 | * SKBs that fail to Rx correctly, add them back into the |
| 4006 | * rx_free list for reuse later. */ |
| 4007 | spin_lock_irqsave(&rxq->lock, flags); |
| 4008 | if (rxb->page != NULL) { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4009 | rxb->page_dma = |
| 4010 | pci_map_page(il->pci_dev, rxb->page, 0, |
| 4011 | PAGE_SIZE << il->hw_params. |
| 4012 | rx_page_order, PCI_DMA_FROMDEVICE); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4013 | list_add_tail(&rxb->list, &rxq->rx_free); |
| 4014 | rxq->free_count++; |
| 4015 | } else |
| 4016 | list_add_tail(&rxb->list, &rxq->rx_used); |
| 4017 | |
| 4018 | spin_unlock_irqrestore(&rxq->lock, flags); |
| 4019 | |
| 4020 | i = (i + 1) & RX_QUEUE_MASK; |
| 4021 | /* If there are a lot of unused frames, |
| 4022 | * restock the Rx queue so ucode wont assert. */ |
| 4023 | if (fill_rx) { |
| 4024 | count++; |
| 4025 | if (count >= 8) { |
| 4026 | rxq->read = i; |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4027 | il4965_rx_replenish_now(il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4028 | count = 0; |
| 4029 | } |
| 4030 | } |
| 4031 | } |
| 4032 | |
| 4033 | /* Backtrack one entry */ |
| 4034 | rxq->read = i; |
| 4035 | if (fill_rx) |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4036 | il4965_rx_replenish_now(il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4037 | else |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4038 | il4965_rx_queue_restock(il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4039 | } |
| 4040 | |
| 4041 | /* call this function to flush any scheduled tasklet */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4042 | static inline void |
| 4043 | il4965_synchronize_irq(struct il_priv *il) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4044 | { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4045 | /* wait to make sure we flush pending tasklet */ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4046 | synchronize_irq(il->pci_dev->irq); |
| 4047 | tasklet_kill(&il->irq_tasklet); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4048 | } |
| 4049 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4050 | static void |
| 4051 | il4965_irq_tasklet(struct il_priv *il) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4052 | { |
| 4053 | u32 inta, handled = 0; |
| 4054 | u32 inta_fh; |
| 4055 | unsigned long flags; |
| 4056 | u32 i; |
Stanislaw Gruszka | d317516 | 2011-11-15 11:25:42 +0100 | [diff] [blame] | 4057 | #ifdef CONFIG_IWLEGACY_DEBUG |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4058 | u32 inta_mask; |
| 4059 | #endif |
| 4060 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4061 | spin_lock_irqsave(&il->lock, flags); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4062 | |
| 4063 | /* Ack/clear/reset pending uCode interrupts. |
| 4064 | * Note: Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS, |
| 4065 | * and will clear only when CSR_FH_INT_STATUS gets cleared. */ |
Stanislaw Gruszka | 841b2cc | 2011-08-24 15:14:03 +0200 | [diff] [blame] | 4066 | inta = _il_rd(il, CSR_INT); |
| 4067 | _il_wr(il, CSR_INT, inta); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4068 | |
| 4069 | /* Ack/clear/reset pending flow-handler (DMA) interrupts. |
| 4070 | * Any new interrupts that happen after this, either while we're |
| 4071 | * in this tasklet, or later, will show up in next ISR/tasklet. */ |
Stanislaw Gruszka | 841b2cc | 2011-08-24 15:14:03 +0200 | [diff] [blame] | 4072 | inta_fh = _il_rd(il, CSR_FH_INT_STATUS); |
| 4073 | _il_wr(il, CSR_FH_INT_STATUS, inta_fh); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4074 | |
Stanislaw Gruszka | d317516 | 2011-11-15 11:25:42 +0100 | [diff] [blame] | 4075 | #ifdef CONFIG_IWLEGACY_DEBUG |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4076 | if (il_get_debug_level(il) & IL_DL_ISR) { |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4077 | /* just for debug */ |
Stanislaw Gruszka | 841b2cc | 2011-08-24 15:14:03 +0200 | [diff] [blame] | 4078 | inta_mask = _il_rd(il, CSR_INT_MASK); |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4079 | D_ISR("inta 0x%08x, enabled 0x%08x, fh 0x%08x\n", inta, |
| 4080 | inta_mask, inta_fh); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4081 | } |
| 4082 | #endif |
| 4083 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4084 | spin_unlock_irqrestore(&il->lock, flags); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4085 | |
| 4086 | /* Since CSR_INT and CSR_FH_INT_STATUS reads and clears are not |
| 4087 | * atomic, make sure that inta covers all the interrupts that |
| 4088 | * we've discovered, even if FH interrupt came in just after |
| 4089 | * reading CSR_INT. */ |
| 4090 | if (inta_fh & CSR49_FH_INT_RX_MASK) |
| 4091 | inta |= CSR_INT_BIT_FH_RX; |
| 4092 | if (inta_fh & CSR49_FH_INT_TX_MASK) |
| 4093 | inta |= CSR_INT_BIT_FH_TX; |
| 4094 | |
| 4095 | /* Now service all interrupt bits discovered above. */ |
| 4096 | if (inta & CSR_INT_BIT_HW_ERR) { |
Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 4097 | IL_ERR("Hardware error detected. Restarting.\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4098 | |
| 4099 | /* Tell the device to stop sending interrupts */ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4100 | il_disable_interrupts(il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4101 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4102 | il->isr_stats.hw++; |
| 4103 | il_irq_handle_error(il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4104 | |
| 4105 | handled |= CSR_INT_BIT_HW_ERR; |
| 4106 | |
| 4107 | return; |
| 4108 | } |
Stanislaw Gruszka | d317516 | 2011-11-15 11:25:42 +0100 | [diff] [blame] | 4109 | #ifdef CONFIG_IWLEGACY_DEBUG |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4110 | if (il_get_debug_level(il) & (IL_DL_ISR)) { |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4111 | /* NIC fires this, but we don't use it, redundant with WAKEUP */ |
| 4112 | if (inta & CSR_INT_BIT_SCD) { |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 4113 | D_ISR("Scheduler finished to transmit " |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4114 | "the frame/frames.\n"); |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4115 | il->isr_stats.sch++; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4116 | } |
| 4117 | |
| 4118 | /* Alive notification via Rx interrupt will do the real work */ |
| 4119 | if (inta & CSR_INT_BIT_ALIVE) { |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 4120 | D_ISR("Alive interrupt\n"); |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4121 | il->isr_stats.alive++; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4122 | } |
| 4123 | } |
| 4124 | #endif |
| 4125 | /* Safely ignore these bits for debug checks below */ |
| 4126 | inta &= ~(CSR_INT_BIT_SCD | CSR_INT_BIT_ALIVE); |
| 4127 | |
| 4128 | /* HW RF KILL switch toggled */ |
| 4129 | if (inta & CSR_INT_BIT_RF_KILL) { |
| 4130 | int hw_rf_kill = 0; |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4131 | if (! |
| 4132 | (_il_rd(il, CSR_GP_CNTRL) & |
| 4133 | CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4134 | hw_rf_kill = 1; |
| 4135 | |
Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 4136 | IL_WARN("RF_KILL bit toggled to %s.\n", |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4137 | hw_rf_kill ? "disable radio" : "enable radio"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4138 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4139 | il->isr_stats.rfkill++; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4140 | |
| 4141 | /* driver only loads ucode once setting the interface up. |
| 4142 | * the driver allows loading the ucode even if the radio |
| 4143 | * is killed. Hence update the killswitch state here. The |
| 4144 | * rfkill handler will care about restarting if needed. |
| 4145 | */ |
Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 4146 | if (!test_bit(S_ALIVE, &il->status)) { |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4147 | if (hw_rf_kill) |
Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 4148 | set_bit(S_RF_KILL_HW, &il->status); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4149 | else |
Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 4150 | clear_bit(S_RF_KILL_HW, &il->status); |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4151 | wiphy_rfkill_set_hw_state(il->hw->wiphy, hw_rf_kill); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4152 | } |
| 4153 | |
| 4154 | handled |= CSR_INT_BIT_RF_KILL; |
| 4155 | } |
| 4156 | |
| 4157 | /* Chip got too hot and stopped itself */ |
| 4158 | if (inta & CSR_INT_BIT_CT_KILL) { |
Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 4159 | IL_ERR("Microcode CT kill error detected.\n"); |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4160 | il->isr_stats.ctkill++; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4161 | handled |= CSR_INT_BIT_CT_KILL; |
| 4162 | } |
| 4163 | |
| 4164 | /* Error detected by uCode */ |
| 4165 | if (inta & CSR_INT_BIT_SW_ERR) { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4166 | IL_ERR("Microcode SW error detected. " " Restarting 0x%X.\n", |
| 4167 | inta); |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4168 | il->isr_stats.sw++; |
| 4169 | il_irq_handle_error(il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4170 | handled |= CSR_INT_BIT_SW_ERR; |
| 4171 | } |
| 4172 | |
| 4173 | /* |
| 4174 | * uCode wakes up after power-down sleep. |
| 4175 | * Tell device about any new tx or host commands enqueued, |
| 4176 | * and about any Rx buffers made available while asleep. |
| 4177 | */ |
| 4178 | if (inta & CSR_INT_BIT_WAKEUP) { |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 4179 | D_ISR("Wakeup interrupt\n"); |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4180 | il_rx_queue_update_write_ptr(il, &il->rxq); |
| 4181 | for (i = 0; i < il->hw_params.max_txq_num; i++) |
| 4182 | il_txq_update_write_ptr(il, &il->txq[i]); |
| 4183 | il->isr_stats.wakeup++; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4184 | handled |= CSR_INT_BIT_WAKEUP; |
| 4185 | } |
| 4186 | |
| 4187 | /* All uCode command responses, including Tx command responses, |
| 4188 | * Rx "responses" (frame-received notification), and other |
| 4189 | * notifications from uCode come through here*/ |
| 4190 | if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) { |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4191 | il4965_rx_handle(il); |
| 4192 | il->isr_stats.rx++; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4193 | handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX); |
| 4194 | } |
| 4195 | |
| 4196 | /* This "Tx" DMA channel is used only for loading uCode */ |
| 4197 | if (inta & CSR_INT_BIT_FH_TX) { |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 4198 | D_ISR("uCode load interrupt\n"); |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4199 | il->isr_stats.tx++; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4200 | handled |= CSR_INT_BIT_FH_TX; |
| 4201 | /* Wake up uCode load routine, now that load is complete */ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4202 | il->ucode_write_complete = 1; |
| 4203 | wake_up(&il->wait_command_queue); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4204 | } |
| 4205 | |
| 4206 | if (inta & ~handled) { |
Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 4207 | IL_ERR("Unhandled INTA bits 0x%08x\n", inta & ~handled); |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4208 | il->isr_stats.unhandled++; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4209 | } |
| 4210 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4211 | if (inta & ~(il->inta_mask)) { |
Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 4212 | IL_WARN("Disabled INTA bits 0x%08x were pending\n", |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4213 | inta & ~il->inta_mask); |
Stanislaw Gruszka | 9a95b37 | 2011-08-31 14:20:23 +0200 | [diff] [blame] | 4214 | IL_WARN(" with FH49_INT = 0x%08x\n", inta_fh); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4215 | } |
| 4216 | |
| 4217 | /* Re-enable all interrupts */ |
Stanislaw Gruszka | 93fd74e | 2011-04-28 11:51:30 +0200 | [diff] [blame] | 4218 | /* only Re-enable if disabled by irq */ |
Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 4219 | if (test_bit(S_INT_ENABLED, &il->status)) |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4220 | il_enable_interrupts(il); |
Stanislaw Gruszka | a078a1f | 2011-04-28 11:51:25 +0200 | [diff] [blame] | 4221 | /* Re-enable RF_KILL if it occurred */ |
| 4222 | else if (handled & CSR_INT_BIT_RF_KILL) |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4223 | il_enable_rfkill_int(il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4224 | |
Stanislaw Gruszka | d317516 | 2011-11-15 11:25:42 +0100 | [diff] [blame] | 4225 | #ifdef CONFIG_IWLEGACY_DEBUG |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4226 | if (il_get_debug_level(il) & (IL_DL_ISR)) { |
Stanislaw Gruszka | 841b2cc | 2011-08-24 15:14:03 +0200 | [diff] [blame] | 4227 | inta = _il_rd(il, CSR_INT); |
| 4228 | inta_mask = _il_rd(il, CSR_INT_MASK); |
| 4229 | inta_fh = _il_rd(il, CSR_FH_INT_STATUS); |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4230 | D_ISR("End inta 0x%08x, enabled 0x%08x, fh 0x%08x, " |
| 4231 | "flags 0x%08lx\n", inta, inta_mask, inta_fh, flags); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4232 | } |
| 4233 | #endif |
| 4234 | } |
| 4235 | |
| 4236 | /***************************************************************************** |
| 4237 | * |
| 4238 | * sysfs attributes |
| 4239 | * |
| 4240 | *****************************************************************************/ |
| 4241 | |
Stanislaw Gruszka | d317516 | 2011-11-15 11:25:42 +0100 | [diff] [blame] | 4242 | #ifdef CONFIG_IWLEGACY_DEBUG |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4243 | |
| 4244 | /* |
| 4245 | * The following adds a new attribute to the sysfs representation |
| 4246 | * of this device driver (i.e. a new file in /sys/class/net/wlan0/device/) |
| 4247 | * used for controlling the debug level. |
| 4248 | * |
| 4249 | * See the level definitions in iwl for details. |
| 4250 | * |
| 4251 | * The debug_level being managed using sysfs below is a per device debug |
| 4252 | * level that is used instead of the global debug level if it (the per |
| 4253 | * device debug level) is set. |
| 4254 | */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4255 | static ssize_t |
| 4256 | il4965_show_debug_level(struct device *d, struct device_attribute *attr, |
| 4257 | char *buf) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4258 | { |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4259 | struct il_priv *il = dev_get_drvdata(d); |
| 4260 | return sprintf(buf, "0x%08X\n", il_get_debug_level(il)); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4261 | } |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4262 | |
| 4263 | static ssize_t |
| 4264 | il4965_store_debug_level(struct device *d, struct device_attribute *attr, |
| 4265 | const char *buf, size_t count) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4266 | { |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4267 | struct il_priv *il = dev_get_drvdata(d); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4268 | unsigned long val; |
| 4269 | int ret; |
| 4270 | |
| 4271 | ret = strict_strtoul(buf, 0, &val); |
| 4272 | if (ret) |
Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 4273 | IL_ERR("%s is not in hex or decimal form.\n", buf); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4274 | else { |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4275 | il->debug_level = val; |
| 4276 | if (il_alloc_traffic_mem(il)) |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4277 | IL_ERR("Not enough memory to generate traffic log\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4278 | } |
| 4279 | return strnlen(buf, count); |
| 4280 | } |
| 4281 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4282 | static DEVICE_ATTR(debug_level, S_IWUSR | S_IRUGO, il4965_show_debug_level, |
| 4283 | il4965_store_debug_level); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4284 | |
Stanislaw Gruszka | d317516 | 2011-11-15 11:25:42 +0100 | [diff] [blame] | 4285 | #endif /* CONFIG_IWLEGACY_DEBUG */ |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4286 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4287 | static ssize_t |
| 4288 | il4965_show_temperature(struct device *d, struct device_attribute *attr, |
| 4289 | char *buf) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4290 | { |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4291 | struct il_priv *il = dev_get_drvdata(d); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4292 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4293 | if (!il_is_alive(il)) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4294 | return -EAGAIN; |
| 4295 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4296 | return sprintf(buf, "%d\n", il->temperature); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4297 | } |
| 4298 | |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4299 | static DEVICE_ATTR(temperature, S_IRUGO, il4965_show_temperature, NULL); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4300 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4301 | static ssize_t |
| 4302 | il4965_show_tx_power(struct device *d, struct device_attribute *attr, char *buf) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4303 | { |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4304 | struct il_priv *il = dev_get_drvdata(d); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4305 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4306 | if (!il_is_ready_rf(il)) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4307 | return sprintf(buf, "off\n"); |
| 4308 | else |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4309 | return sprintf(buf, "%d\n", il->tx_power_user_lmt); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4310 | } |
| 4311 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4312 | static ssize_t |
| 4313 | il4965_store_tx_power(struct device *d, struct device_attribute *attr, |
| 4314 | const char *buf, size_t count) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4315 | { |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4316 | struct il_priv *il = dev_get_drvdata(d); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4317 | unsigned long val; |
| 4318 | int ret; |
| 4319 | |
| 4320 | ret = strict_strtoul(buf, 10, &val); |
| 4321 | if (ret) |
Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 4322 | IL_INFO("%s is not in decimal form.\n", buf); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4323 | else { |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4324 | ret = il_set_tx_power(il, val, false); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4325 | if (ret) |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4326 | IL_ERR("failed setting tx power (0x%d).\n", ret); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4327 | else |
| 4328 | ret = count; |
| 4329 | } |
| 4330 | return ret; |
| 4331 | } |
| 4332 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4333 | static DEVICE_ATTR(tx_power, S_IWUSR | S_IRUGO, il4965_show_tx_power, |
| 4334 | il4965_store_tx_power); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4335 | |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4336 | static struct attribute *il_sysfs_entries[] = { |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4337 | &dev_attr_temperature.attr, |
| 4338 | &dev_attr_tx_power.attr, |
Stanislaw Gruszka | d317516 | 2011-11-15 11:25:42 +0100 | [diff] [blame] | 4339 | #ifdef CONFIG_IWLEGACY_DEBUG |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4340 | &dev_attr_debug_level.attr, |
| 4341 | #endif |
| 4342 | NULL |
| 4343 | }; |
| 4344 | |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4345 | static struct attribute_group il_attribute_group = { |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4346 | .name = NULL, /* put in device directory */ |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4347 | .attrs = il_sysfs_entries, |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4348 | }; |
| 4349 | |
| 4350 | /****************************************************************************** |
| 4351 | * |
| 4352 | * uCode download functions |
| 4353 | * |
| 4354 | ******************************************************************************/ |
| 4355 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4356 | static void |
| 4357 | il4965_dealloc_ucode_pci(struct il_priv *il) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4358 | { |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4359 | il_free_fw_desc(il->pci_dev, &il->ucode_code); |
| 4360 | il_free_fw_desc(il->pci_dev, &il->ucode_data); |
| 4361 | il_free_fw_desc(il->pci_dev, &il->ucode_data_backup); |
| 4362 | il_free_fw_desc(il->pci_dev, &il->ucode_init); |
| 4363 | il_free_fw_desc(il->pci_dev, &il->ucode_init_data); |
| 4364 | il_free_fw_desc(il->pci_dev, &il->ucode_boot); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4365 | } |
| 4366 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4367 | static void |
| 4368 | il4965_nic_start(struct il_priv *il) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4369 | { |
| 4370 | /* Remove all resets to allow NIC to operate */ |
Stanislaw Gruszka | 841b2cc | 2011-08-24 15:14:03 +0200 | [diff] [blame] | 4371 | _il_wr(il, CSR_RESET, 0); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4372 | } |
| 4373 | |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4374 | static void il4965_ucode_callback(const struct firmware *ucode_raw, |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4375 | void *context); |
| 4376 | static int il4965_mac_setup_register(struct il_priv *il, u32 max_probe_length); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4377 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4378 | static int __must_check |
| 4379 | il4965_request_firmware(struct il_priv *il, bool first) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4380 | { |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4381 | const char *name_pre = il->cfg->fw_name_pre; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4382 | char tag[8]; |
| 4383 | |
| 4384 | if (first) { |
Stanislaw Gruszka | 0c2c885 | 2011-11-15 12:30:17 +0100 | [diff] [blame] | 4385 | il->fw_idx = il->cfg->ucode_api_max; |
| 4386 | sprintf(tag, "%d", il->fw_idx); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4387 | } else { |
Stanislaw Gruszka | 0c2c885 | 2011-11-15 12:30:17 +0100 | [diff] [blame] | 4388 | il->fw_idx--; |
| 4389 | sprintf(tag, "%d", il->fw_idx); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4390 | } |
| 4391 | |
Stanislaw Gruszka | 0c2c885 | 2011-11-15 12:30:17 +0100 | [diff] [blame] | 4392 | if (il->fw_idx < il->cfg->ucode_api_min) { |
Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 4393 | IL_ERR("no suitable firmware found!\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4394 | return -ENOENT; |
| 4395 | } |
| 4396 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4397 | sprintf(il->firmware_name, "%s%s%s", name_pre, tag, ".ucode"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4398 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4399 | D_INFO("attempting to load firmware '%s'\n", il->firmware_name); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4400 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4401 | return request_firmware_nowait(THIS_MODULE, 1, il->firmware_name, |
| 4402 | &il->pci_dev->dev, GFP_KERNEL, il, |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4403 | il4965_ucode_callback); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4404 | } |
| 4405 | |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4406 | struct il4965_firmware_pieces { |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4407 | const void *inst, *data, *init, *init_data, *boot; |
| 4408 | size_t inst_size, data_size, init_size, init_data_size, boot_size; |
| 4409 | }; |
| 4410 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4411 | static int |
| 4412 | il4965_load_firmware(struct il_priv *il, const struct firmware *ucode_raw, |
| 4413 | struct il4965_firmware_pieces *pieces) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4414 | { |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4415 | struct il_ucode_header *ucode = (void *)ucode_raw->data; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4416 | u32 api_ver, hdr_size; |
| 4417 | const u8 *src; |
| 4418 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4419 | il->ucode_ver = le32_to_cpu(ucode->ver); |
| 4420 | api_ver = IL_UCODE_API(il->ucode_ver); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4421 | |
| 4422 | switch (api_ver) { |
| 4423 | default: |
| 4424 | case 0: |
| 4425 | case 1: |
| 4426 | case 2: |
| 4427 | hdr_size = 24; |
| 4428 | if (ucode_raw->size < hdr_size) { |
Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 4429 | IL_ERR("File size too small!\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4430 | return -EINVAL; |
| 4431 | } |
| 4432 | pieces->inst_size = le32_to_cpu(ucode->v1.inst_size); |
| 4433 | pieces->data_size = le32_to_cpu(ucode->v1.data_size); |
| 4434 | pieces->init_size = le32_to_cpu(ucode->v1.init_size); |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4435 | pieces->init_data_size = le32_to_cpu(ucode->v1.init_data_size); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4436 | pieces->boot_size = le32_to_cpu(ucode->v1.boot_size); |
| 4437 | src = ucode->v1.data; |
| 4438 | break; |
| 4439 | } |
| 4440 | |
| 4441 | /* Verify size of file vs. image size info in file's header */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4442 | if (ucode_raw->size != |
| 4443 | hdr_size + pieces->inst_size + pieces->data_size + |
| 4444 | pieces->init_size + pieces->init_data_size + pieces->boot_size) { |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4445 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4446 | IL_ERR("uCode file size %d does not match expected size\n", |
| 4447 | (int)ucode_raw->size); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4448 | return -EINVAL; |
| 4449 | } |
| 4450 | |
| 4451 | pieces->inst = src; |
| 4452 | src += pieces->inst_size; |
| 4453 | pieces->data = src; |
| 4454 | src += pieces->data_size; |
| 4455 | pieces->init = src; |
| 4456 | src += pieces->init_size; |
| 4457 | pieces->init_data = src; |
| 4458 | src += pieces->init_data_size; |
| 4459 | pieces->boot = src; |
| 4460 | src += pieces->boot_size; |
| 4461 | |
| 4462 | return 0; |
| 4463 | } |
| 4464 | |
| 4465 | /** |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4466 | * il4965_ucode_callback - callback when firmware was loaded |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4467 | * |
| 4468 | * If loaded successfully, copies the firmware into buffers |
| 4469 | * for the card to fetch (via DMA). |
| 4470 | */ |
| 4471 | static void |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4472 | il4965_ucode_callback(const struct firmware *ucode_raw, void *context) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4473 | { |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4474 | struct il_priv *il = context; |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4475 | struct il_ucode_header *ucode; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4476 | int err; |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4477 | struct il4965_firmware_pieces pieces; |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4478 | const unsigned int api_max = il->cfg->ucode_api_max; |
| 4479 | const unsigned int api_min = il->cfg->ucode_api_min; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4480 | u32 api_ver; |
| 4481 | |
| 4482 | u32 max_probe_length = 200; |
| 4483 | u32 standard_phy_calibration_size = |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4484 | IL_DEFAULT_STANDARD_PHY_CALIBRATE_TBL_SIZE; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4485 | |
| 4486 | memset(&pieces, 0, sizeof(pieces)); |
| 4487 | |
| 4488 | if (!ucode_raw) { |
Stanislaw Gruszka | 0c2c885 | 2011-11-15 12:30:17 +0100 | [diff] [blame] | 4489 | if (il->fw_idx <= il->cfg->ucode_api_max) |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4490 | IL_ERR("request for firmware file '%s' failed.\n", |
| 4491 | il->firmware_name); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4492 | goto try_again; |
| 4493 | } |
| 4494 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4495 | D_INFO("Loaded firmware file '%s' (%zd bytes).\n", il->firmware_name, |
| 4496 | ucode_raw->size); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4497 | |
| 4498 | /* Make sure that we got at least the API version number */ |
| 4499 | if (ucode_raw->size < 4) { |
Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 4500 | IL_ERR("File size way too small!\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4501 | goto try_again; |
| 4502 | } |
| 4503 | |
| 4504 | /* Data from ucode file: header followed by uCode images */ |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4505 | ucode = (struct il_ucode_header *)ucode_raw->data; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4506 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4507 | err = il4965_load_firmware(il, ucode_raw, &pieces); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4508 | |
| 4509 | if (err) |
| 4510 | goto try_again; |
| 4511 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4512 | api_ver = IL_UCODE_API(il->ucode_ver); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4513 | |
| 4514 | /* |
| 4515 | * api_ver should match the api version forming part of the |
| 4516 | * firmware filename ... but we don't check for that and only rely |
| 4517 | * on the API version read from firmware header from here on forward |
| 4518 | */ |
| 4519 | if (api_ver < api_min || api_ver > api_max) { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4520 | IL_ERR("Driver unable to support your firmware API. " |
| 4521 | "Driver supports v%u, firmware is v%u.\n", api_max, |
| 4522 | api_ver); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4523 | goto try_again; |
| 4524 | } |
| 4525 | |
| 4526 | if (api_ver != api_max) |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4527 | IL_ERR("Firmware has old API version. Expected v%u, " |
| 4528 | "got v%u. New firmware can be obtained " |
| 4529 | "from http://www.intellinuxwireless.org.\n", api_max, |
| 4530 | api_ver); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4531 | |
Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 4532 | IL_INFO("loaded firmware version %u.%u.%u.%u\n", |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4533 | IL_UCODE_MAJOR(il->ucode_ver), IL_UCODE_MINOR(il->ucode_ver), |
| 4534 | IL_UCODE_API(il->ucode_ver), IL_UCODE_SERIAL(il->ucode_ver)); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4535 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4536 | snprintf(il->hw->wiphy->fw_version, sizeof(il->hw->wiphy->fw_version), |
| 4537 | "%u.%u.%u.%u", IL_UCODE_MAJOR(il->ucode_ver), |
| 4538 | IL_UCODE_MINOR(il->ucode_ver), IL_UCODE_API(il->ucode_ver), |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4539 | IL_UCODE_SERIAL(il->ucode_ver)); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4540 | |
| 4541 | /* |
| 4542 | * For any of the failures below (before allocating pci memory) |
| 4543 | * we will try to load a version with a smaller API -- maybe the |
| 4544 | * user just got a corrupted version of the latest API. |
| 4545 | */ |
| 4546 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4547 | D_INFO("f/w package hdr ucode version raw = 0x%x\n", il->ucode_ver); |
| 4548 | D_INFO("f/w package hdr runtime inst size = %Zd\n", pieces.inst_size); |
| 4549 | D_INFO("f/w package hdr runtime data size = %Zd\n", pieces.data_size); |
| 4550 | D_INFO("f/w package hdr init inst size = %Zd\n", pieces.init_size); |
| 4551 | D_INFO("f/w package hdr init data size = %Zd\n", pieces.init_data_size); |
| 4552 | D_INFO("f/w package hdr boot inst size = %Zd\n", pieces.boot_size); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4553 | |
| 4554 | /* Verify that uCode images will fit in card's SRAM */ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4555 | if (pieces.inst_size > il->hw_params.max_inst_size) { |
Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 4556 | IL_ERR("uCode instr len %Zd too large to fit in\n", |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4557 | pieces.inst_size); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4558 | goto try_again; |
| 4559 | } |
| 4560 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4561 | if (pieces.data_size > il->hw_params.max_data_size) { |
Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 4562 | IL_ERR("uCode data len %Zd too large to fit in\n", |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4563 | pieces.data_size); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4564 | goto try_again; |
| 4565 | } |
| 4566 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4567 | if (pieces.init_size > il->hw_params.max_inst_size) { |
Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 4568 | IL_ERR("uCode init instr len %Zd too large to fit in\n", |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4569 | pieces.init_size); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4570 | goto try_again; |
| 4571 | } |
| 4572 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4573 | if (pieces.init_data_size > il->hw_params.max_data_size) { |
Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 4574 | IL_ERR("uCode init data len %Zd too large to fit in\n", |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4575 | pieces.init_data_size); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4576 | goto try_again; |
| 4577 | } |
| 4578 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4579 | if (pieces.boot_size > il->hw_params.max_bsm_size) { |
Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 4580 | IL_ERR("uCode boot instr len %Zd too large to fit in\n", |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4581 | pieces.boot_size); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4582 | goto try_again; |
| 4583 | } |
| 4584 | |
| 4585 | /* Allocate ucode buffers for card's bus-master loading ... */ |
| 4586 | |
| 4587 | /* Runtime instructions and 2 copies of data: |
| 4588 | * 1) unmodified from disk |
| 4589 | * 2) backup cache for save/restore during power-downs */ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4590 | il->ucode_code.len = pieces.inst_size; |
| 4591 | il_alloc_fw_desc(il->pci_dev, &il->ucode_code); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4592 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4593 | il->ucode_data.len = pieces.data_size; |
| 4594 | il_alloc_fw_desc(il->pci_dev, &il->ucode_data); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4595 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4596 | il->ucode_data_backup.len = pieces.data_size; |
| 4597 | il_alloc_fw_desc(il->pci_dev, &il->ucode_data_backup); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4598 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4599 | if (!il->ucode_code.v_addr || !il->ucode_data.v_addr || |
| 4600 | !il->ucode_data_backup.v_addr) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4601 | goto err_pci_alloc; |
| 4602 | |
| 4603 | /* Initialization instructions and data */ |
| 4604 | if (pieces.init_size && pieces.init_data_size) { |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4605 | il->ucode_init.len = pieces.init_size; |
| 4606 | il_alloc_fw_desc(il->pci_dev, &il->ucode_init); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4607 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4608 | il->ucode_init_data.len = pieces.init_data_size; |
| 4609 | il_alloc_fw_desc(il->pci_dev, &il->ucode_init_data); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4610 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4611 | if (!il->ucode_init.v_addr || !il->ucode_init_data.v_addr) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4612 | goto err_pci_alloc; |
| 4613 | } |
| 4614 | |
| 4615 | /* Bootstrap (instructions only, no data) */ |
| 4616 | if (pieces.boot_size) { |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4617 | il->ucode_boot.len = pieces.boot_size; |
| 4618 | il_alloc_fw_desc(il->pci_dev, &il->ucode_boot); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4619 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4620 | if (!il->ucode_boot.v_addr) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4621 | goto err_pci_alloc; |
| 4622 | } |
| 4623 | |
| 4624 | /* Now that we can no longer fail, copy information */ |
| 4625 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4626 | il->sta_key_max_num = STA_KEY_MAX_NUM; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4627 | |
| 4628 | /* Copy images into buffers for card's bus-master reads ... */ |
| 4629 | |
| 4630 | /* Runtime instructions (first block of data in file) */ |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 4631 | D_INFO("Copying (but not loading) uCode instr len %Zd\n", |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4632 | pieces.inst_size); |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4633 | memcpy(il->ucode_code.v_addr, pieces.inst, pieces.inst_size); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4634 | |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 4635 | D_INFO("uCode instr buf vaddr = 0x%p, paddr = 0x%08x\n", |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4636 | il->ucode_code.v_addr, (u32) il->ucode_code.p_addr); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4637 | |
| 4638 | /* |
| 4639 | * Runtime data |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4640 | * NOTE: Copy into backup buffer will be done in il_up() |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4641 | */ |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 4642 | D_INFO("Copying (but not loading) uCode data len %Zd\n", |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4643 | pieces.data_size); |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4644 | memcpy(il->ucode_data.v_addr, pieces.data, pieces.data_size); |
| 4645 | memcpy(il->ucode_data_backup.v_addr, pieces.data, pieces.data_size); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4646 | |
| 4647 | /* Initialization instructions */ |
| 4648 | if (pieces.init_size) { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4649 | D_INFO("Copying (but not loading) init instr len %Zd\n", |
| 4650 | pieces.init_size); |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4651 | memcpy(il->ucode_init.v_addr, pieces.init, pieces.init_size); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4652 | } |
| 4653 | |
| 4654 | /* Initialization data */ |
| 4655 | if (pieces.init_data_size) { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4656 | D_INFO("Copying (but not loading) init data len %Zd\n", |
| 4657 | pieces.init_data_size); |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4658 | memcpy(il->ucode_init_data.v_addr, pieces.init_data, |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4659 | pieces.init_data_size); |
| 4660 | } |
| 4661 | |
| 4662 | /* Bootstrap instructions */ |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 4663 | D_INFO("Copying (but not loading) boot instr len %Zd\n", |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4664 | pieces.boot_size); |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4665 | memcpy(il->ucode_boot.v_addr, pieces.boot, pieces.boot_size); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4666 | |
| 4667 | /* |
| 4668 | * figure out the offset of chain noise reset and gain commands |
| 4669 | * base on the size of standard phy calibration commands table size |
| 4670 | */ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4671 | il->_4965.phy_calib_chain_noise_reset_cmd = |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4672 | standard_phy_calibration_size; |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4673 | il->_4965.phy_calib_chain_noise_gain_cmd = |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4674 | standard_phy_calibration_size + 1; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4675 | |
| 4676 | /************************************************** |
| 4677 | * This is still part of probe() in a sense... |
| 4678 | * |
| 4679 | * 9. Setup and register with mac80211 and debugfs |
| 4680 | **************************************************/ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4681 | err = il4965_mac_setup_register(il, max_probe_length); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4682 | if (err) |
| 4683 | goto out_unbind; |
| 4684 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4685 | err = il_dbgfs_register(il, DRV_NAME); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4686 | if (err) |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4687 | IL_ERR("failed to create debugfs files. Ignoring error: %d\n", |
| 4688 | err); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4689 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4690 | err = sysfs_create_group(&il->pci_dev->dev.kobj, &il_attribute_group); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4691 | if (err) { |
Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 4692 | IL_ERR("failed to create sysfs device attributes\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4693 | goto out_unbind; |
| 4694 | } |
| 4695 | |
| 4696 | /* We have our copies now, allow OS release its copies */ |
| 4697 | release_firmware(ucode_raw); |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4698 | complete(&il->_4965.firmware_loading_complete); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4699 | return; |
| 4700 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4701 | try_again: |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4702 | /* try next, if any */ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4703 | if (il4965_request_firmware(il, false)) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4704 | goto out_unbind; |
| 4705 | release_firmware(ucode_raw); |
| 4706 | return; |
| 4707 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4708 | err_pci_alloc: |
Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 4709 | IL_ERR("failed to allocate pci memory\n"); |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4710 | il4965_dealloc_ucode_pci(il); |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4711 | out_unbind: |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4712 | complete(&il->_4965.firmware_loading_complete); |
| 4713 | device_release_driver(&il->pci_dev->dev); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4714 | release_firmware(ucode_raw); |
| 4715 | } |
| 4716 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4717 | static const char *const desc_lookup_text[] = { |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4718 | "OK", |
| 4719 | "FAIL", |
| 4720 | "BAD_PARAM", |
| 4721 | "BAD_CHECKSUM", |
| 4722 | "NMI_INTERRUPT_WDG", |
| 4723 | "SYSASSERT", |
| 4724 | "FATAL_ERROR", |
| 4725 | "BAD_COMMAND", |
| 4726 | "HW_ERROR_TUNE_LOCK", |
| 4727 | "HW_ERROR_TEMPERATURE", |
| 4728 | "ILLEGAL_CHAN_FREQ", |
Stanislaw Gruszka | 3b98c7f | 2011-08-26 16:29:35 +0200 | [diff] [blame] | 4729 | "VCC_NOT_STBL", |
Stanislaw Gruszka | 9a95b37 | 2011-08-31 14:20:23 +0200 | [diff] [blame] | 4730 | "FH49_ERROR", |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4731 | "NMI_INTERRUPT_HOST", |
| 4732 | "NMI_INTERRUPT_ACTION_PT", |
| 4733 | "NMI_INTERRUPT_UNKNOWN", |
| 4734 | "UCODE_VERSION_MISMATCH", |
| 4735 | "HW_ERROR_ABS_LOCK", |
| 4736 | "HW_ERROR_CAL_LOCK_FAIL", |
| 4737 | "NMI_INTERRUPT_INST_ACTION_PT", |
| 4738 | "NMI_INTERRUPT_DATA_ACTION_PT", |
| 4739 | "NMI_TRM_HW_ER", |
| 4740 | "NMI_INTERRUPT_TRM", |
Joe Perches | 861d9c3 | 2011-07-08 23:20:24 -0700 | [diff] [blame] | 4741 | "NMI_INTERRUPT_BREAK_POINT", |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4742 | "DEBUG_0", |
| 4743 | "DEBUG_1", |
| 4744 | "DEBUG_2", |
| 4745 | "DEBUG_3", |
| 4746 | }; |
| 4747 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4748 | static struct { |
| 4749 | char *name; |
| 4750 | u8 num; |
| 4751 | } advanced_lookup[] = { |
| 4752 | { |
| 4753 | "NMI_INTERRUPT_WDG", 0x34}, { |
| 4754 | "SYSASSERT", 0x35}, { |
| 4755 | "UCODE_VERSION_MISMATCH", 0x37}, { |
| 4756 | "BAD_COMMAND", 0x38}, { |
| 4757 | "NMI_INTERRUPT_DATA_ACTION_PT", 0x3C}, { |
| 4758 | "FATAL_ERROR", 0x3D}, { |
| 4759 | "NMI_TRM_HW_ERR", 0x46}, { |
| 4760 | "NMI_INTERRUPT_TRM", 0x4C}, { |
| 4761 | "NMI_INTERRUPT_BREAK_POINT", 0x54}, { |
| 4762 | "NMI_INTERRUPT_WDG_RXF_FULL", 0x5C}, { |
| 4763 | "NMI_INTERRUPT_WDG_NO_RBD_RXF_FULL", 0x64}, { |
| 4764 | "NMI_INTERRUPT_HOST", 0x66}, { |
| 4765 | "NMI_INTERRUPT_ACTION_PT", 0x7C}, { |
| 4766 | "NMI_INTERRUPT_UNKNOWN", 0x84}, { |
| 4767 | "NMI_INTERRUPT_INST_ACTION_PT", 0x86}, { |
| 4768 | "ADVANCED_SYSASSERT", 0},}; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4769 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4770 | static const char * |
| 4771 | il4965_desc_lookup(u32 num) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4772 | { |
| 4773 | int i; |
| 4774 | int max = ARRAY_SIZE(desc_lookup_text); |
| 4775 | |
| 4776 | if (num < max) |
| 4777 | return desc_lookup_text[num]; |
| 4778 | |
| 4779 | max = ARRAY_SIZE(advanced_lookup) - 1; |
| 4780 | for (i = 0; i < max; i++) { |
| 4781 | if (advanced_lookup[i].num == num) |
| 4782 | break; |
| 4783 | } |
| 4784 | return advanced_lookup[i].name; |
| 4785 | } |
| 4786 | |
| 4787 | #define ERROR_START_OFFSET (1 * sizeof(u32)) |
| 4788 | #define ERROR_ELEM_SIZE (7 * sizeof(u32)) |
| 4789 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4790 | void |
| 4791 | il4965_dump_nic_error_log(struct il_priv *il) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4792 | { |
| 4793 | u32 data2, line; |
| 4794 | u32 desc, time, count, base, data1; |
| 4795 | u32 blink1, blink2, ilink1, ilink2; |
| 4796 | u32 pc, hcmd; |
| 4797 | |
Stanislaw Gruszka | 1722f8e | 2011-11-15 14:51:01 +0100 | [diff] [blame] | 4798 | if (il->ucode_type == UCODE_INIT) |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4799 | base = le32_to_cpu(il->card_alive_init.error_event_table_ptr); |
Stanislaw Gruszka | 1722f8e | 2011-11-15 14:51:01 +0100 | [diff] [blame] | 4800 | else |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4801 | base = le32_to_cpu(il->card_alive.error_event_table_ptr); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4802 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4803 | if (!il->cfg->ops->lib->is_valid_rtc_data_addr(base)) { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4804 | IL_ERR("Not valid error log pointer 0x%08X for %s uCode\n", |
| 4805 | base, (il->ucode_type == UCODE_INIT) ? "Init" : "RT"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4806 | return; |
| 4807 | } |
| 4808 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4809 | count = il_read_targ_mem(il, base); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4810 | |
| 4811 | if (ERROR_START_OFFSET <= count * ERROR_ELEM_SIZE) { |
Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 4812 | IL_ERR("Start IWL Error Log Dump:\n"); |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4813 | IL_ERR("Status: 0x%08lX, count: %d\n", il->status, count); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4814 | } |
| 4815 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4816 | desc = il_read_targ_mem(il, base + 1 * sizeof(u32)); |
| 4817 | il->isr_stats.err_code = desc; |
| 4818 | pc = il_read_targ_mem(il, base + 2 * sizeof(u32)); |
| 4819 | blink1 = il_read_targ_mem(il, base + 3 * sizeof(u32)); |
| 4820 | blink2 = il_read_targ_mem(il, base + 4 * sizeof(u32)); |
| 4821 | ilink1 = il_read_targ_mem(il, base + 5 * sizeof(u32)); |
| 4822 | ilink2 = il_read_targ_mem(il, base + 6 * sizeof(u32)); |
| 4823 | data1 = il_read_targ_mem(il, base + 7 * sizeof(u32)); |
| 4824 | data2 = il_read_targ_mem(il, base + 8 * sizeof(u32)); |
| 4825 | line = il_read_targ_mem(il, base + 9 * sizeof(u32)); |
| 4826 | time = il_read_targ_mem(il, base + 11 * sizeof(u32)); |
| 4827 | hcmd = il_read_targ_mem(il, base + 22 * sizeof(u32)); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4828 | |
Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 4829 | IL_ERR("Desc Time " |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4830 | "data1 data2 line\n"); |
Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 4831 | IL_ERR("%-28s (0x%04X) %010u 0x%08X 0x%08X %u\n", |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4832 | il4965_desc_lookup(desc), desc, time, data1, data2, line); |
Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 4833 | IL_ERR("pc blink1 blink2 ilink1 ilink2 hcmd\n"); |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4834 | IL_ERR("0x%05X 0x%05X 0x%05X 0x%05X 0x%05X 0x%05X\n", pc, blink1, |
| 4835 | blink2, ilink1, ilink2, hcmd); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4836 | } |
| 4837 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4838 | static void |
| 4839 | il4965_rf_kill_ct_config(struct il_priv *il) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4840 | { |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4841 | struct il_ct_kill_config cmd; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4842 | unsigned long flags; |
| 4843 | int ret = 0; |
| 4844 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4845 | spin_lock_irqsave(&il->lock, flags); |
Stanislaw Gruszka | 841b2cc | 2011-08-24 15:14:03 +0200 | [diff] [blame] | 4846 | _il_wr(il, CSR_UCODE_DRV_GP1_CLR, |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4847 | CSR_UCODE_DRV_GP1_REG_BIT_CT_KILL_EXIT); |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4848 | spin_unlock_irqrestore(&il->lock, flags); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4849 | |
| 4850 | cmd.critical_temperature_R = |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4851 | cpu_to_le32(il->hw_params.ct_kill_threshold); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4852 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4853 | ret = il_send_cmd_pdu(il, C_CT_KILL_CONFIG, sizeof(cmd), &cmd); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4854 | if (ret) |
Stanislaw Gruszka | 4d69c75 | 2011-08-30 15:26:35 +0200 | [diff] [blame] | 4855 | IL_ERR("C_CT_KILL_CONFIG failed\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4856 | else |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4857 | D_INFO("C_CT_KILL_CONFIG " "succeeded, " |
| 4858 | "critical temperature is %d\n", |
| 4859 | il->hw_params.ct_kill_threshold); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4860 | } |
| 4861 | |
| 4862 | static const s8 default_queue_to_tx_fifo[] = { |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4863 | IL_TX_FIFO_VO, |
| 4864 | IL_TX_FIFO_VI, |
| 4865 | IL_TX_FIFO_BE, |
| 4866 | IL_TX_FIFO_BK, |
Stanislaw Gruszka | d317516 | 2011-11-15 11:25:42 +0100 | [diff] [blame] | 4867 | IL49_CMD_FIFO_NUM, |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4868 | IL_TX_FIFO_UNUSED, |
| 4869 | IL_TX_FIFO_UNUSED, |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4870 | }; |
| 4871 | |
Stanislaw Gruszka | e53aac4 | 2011-08-31 11:18:16 +0200 | [diff] [blame] | 4872 | #define IL_MASK(lo, hi) ((1 << (hi)) | ((1 << (hi)) - (1 << (lo)))) |
| 4873 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4874 | static int |
| 4875 | il4965_alive_notify(struct il_priv *il) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4876 | { |
| 4877 | u32 a; |
| 4878 | unsigned long flags; |
| 4879 | int i, chan; |
| 4880 | u32 reg_val; |
| 4881 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4882 | spin_lock_irqsave(&il->lock, flags); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4883 | |
| 4884 | /* Clear 4965's internal Tx Scheduler data base */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4885 | il->scd_base_addr = il_rd_prph(il, IL49_SCD_SRAM_BASE_ADDR); |
Stanislaw Gruszka | d317516 | 2011-11-15 11:25:42 +0100 | [diff] [blame] | 4886 | a = il->scd_base_addr + IL49_SCD_CONTEXT_DATA_OFFSET; |
| 4887 | for (; a < il->scd_base_addr + IL49_SCD_TX_STTS_BITMAP_OFFSET; a += 4) |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4888 | il_write_targ_mem(il, a, 0); |
Stanislaw Gruszka | d317516 | 2011-11-15 11:25:42 +0100 | [diff] [blame] | 4889 | for (; a < il->scd_base_addr + IL49_SCD_TRANSLATE_TBL_OFFSET; a += 4) |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4890 | il_write_targ_mem(il, a, 0); |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4891 | for (; |
| 4892 | a < |
| 4893 | il->scd_base_addr + |
| 4894 | IL49_SCD_TRANSLATE_TBL_OFFSET_QUEUE(il->hw_params.max_txq_num); |
| 4895 | a += 4) |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4896 | il_write_targ_mem(il, a, 0); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4897 | |
| 4898 | /* Tel 4965 where to find Tx byte count tables */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4899 | il_wr_prph(il, IL49_SCD_DRAM_BASE_ADDR, il->scd_bc_tbls.dma >> 10); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4900 | |
| 4901 | /* Enable DMA channel */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4902 | for (chan = 0; chan < FH49_TCSR_CHNL_NUM; chan++) |
| 4903 | il_wr(il, FH49_TCSR_CHNL_TX_CONFIG_REG(chan), |
| 4904 | FH49_TCSR_TX_CONFIG_REG_VAL_DMA_CHNL_ENABLE | |
| 4905 | FH49_TCSR_TX_CONFIG_REG_VAL_DMA_CREDIT_ENABLE); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4906 | |
| 4907 | /* Update FH chicken bits */ |
Stanislaw Gruszka | 9a95b37 | 2011-08-31 14:20:23 +0200 | [diff] [blame] | 4908 | reg_val = il_rd(il, FH49_TX_CHICKEN_BITS_REG); |
| 4909 | il_wr(il, FH49_TX_CHICKEN_BITS_REG, |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4910 | reg_val | FH49_TX_CHICKEN_BITS_SCD_AUTO_RETRY_EN); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4911 | |
| 4912 | /* Disable chain mode for all queues */ |
Stanislaw Gruszka | d317516 | 2011-11-15 11:25:42 +0100 | [diff] [blame] | 4913 | il_wr_prph(il, IL49_SCD_QUEUECHAIN_SEL, 0); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4914 | |
| 4915 | /* Initialize each Tx queue (including the command queue) */ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4916 | for (i = 0; i < il->hw_params.max_txq_num; i++) { |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4917 | |
Stanislaw Gruszka | 0c2c885 | 2011-11-15 12:30:17 +0100 | [diff] [blame] | 4918 | /* TFD circular buffer read/write idxes */ |
Stanislaw Gruszka | d317516 | 2011-11-15 11:25:42 +0100 | [diff] [blame] | 4919 | il_wr_prph(il, IL49_SCD_QUEUE_RDPTR(i), 0); |
Stanislaw Gruszka | 0c1a94e | 2011-08-24 17:37:16 +0200 | [diff] [blame] | 4920 | il_wr(il, HBUS_TARG_WRPTR, 0 | (i << 8)); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4921 | |
| 4922 | /* Max Tx Window size for Scheduler-ACK mode */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4923 | il_write_targ_mem(il, |
| 4924 | il->scd_base_addr + |
| 4925 | IL49_SCD_CONTEXT_QUEUE_OFFSET(i), |
| 4926 | (SCD_WIN_SIZE << |
| 4927 | IL49_SCD_QUEUE_CTX_REG1_WIN_SIZE_POS) & |
| 4928 | IL49_SCD_QUEUE_CTX_REG1_WIN_SIZE_MSK); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4929 | |
| 4930 | /* Frame limit */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4931 | il_write_targ_mem(il, |
| 4932 | il->scd_base_addr + |
| 4933 | IL49_SCD_CONTEXT_QUEUE_OFFSET(i) + |
| 4934 | sizeof(u32), |
| 4935 | (SCD_FRAME_LIMIT << |
| 4936 | IL49_SCD_QUEUE_CTX_REG2_FRAME_LIMIT_POS) & |
| 4937 | IL49_SCD_QUEUE_CTX_REG2_FRAME_LIMIT_MSK); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4938 | |
| 4939 | } |
Stanislaw Gruszka | d317516 | 2011-11-15 11:25:42 +0100 | [diff] [blame] | 4940 | il_wr_prph(il, IL49_SCD_INTERRUPT_MASK, |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4941 | (1 << il->hw_params.max_txq_num) - 1); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4942 | |
| 4943 | /* Activate all Tx DMA/FIFO channels */ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4944 | il4965_txq_set_sched(il, IL_MASK(0, 6)); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4945 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4946 | il4965_set_wr_ptrs(il, IL_DEFAULT_CMD_QUEUE_NUM, 0); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4947 | |
| 4948 | /* make sure all queue are not stopped */ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4949 | memset(&il->queue_stopped[0], 0, sizeof(il->queue_stopped)); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4950 | for (i = 0; i < 4; i++) |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4951 | atomic_set(&il->queue_stop_count[i], 0); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4952 | |
| 4953 | /* reset to 0 to enable all the queue first */ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4954 | il->txq_ctx_active_msk = 0; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4955 | /* Map each Tx/cmd queue to its corresponding fifo */ |
| 4956 | BUILD_BUG_ON(ARRAY_SIZE(default_queue_to_tx_fifo) != 7); |
| 4957 | |
| 4958 | for (i = 0; i < ARRAY_SIZE(default_queue_to_tx_fifo); i++) { |
| 4959 | int ac = default_queue_to_tx_fifo[i]; |
| 4960 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4961 | il_txq_ctx_activate(il, i); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4962 | |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4963 | if (ac == IL_TX_FIFO_UNUSED) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4964 | continue; |
| 4965 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4966 | il4965_tx_queue_set_status(il, &il->txq[i], ac, 0); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4967 | } |
| 4968 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4969 | spin_unlock_irqrestore(&il->lock, flags); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4970 | |
| 4971 | return 0; |
| 4972 | } |
| 4973 | |
| 4974 | /** |
Stanislaw Gruszka | 4d69c75 | 2011-08-30 15:26:35 +0200 | [diff] [blame] | 4975 | * il4965_alive_start - called after N_ALIVE notification received |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4976 | * from protocol/runtime uCode (initialization uCode's |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4977 | * Alive gets handled by il_init_alive_start()). |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4978 | */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4979 | static void |
| 4980 | il4965_alive_start(struct il_priv *il) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4981 | { |
| 4982 | int ret = 0; |
Stanislaw Gruszka | 7c2cde2 | 2011-11-15 11:29:04 +0100 | [diff] [blame] | 4983 | struct il_rxon_context *ctx = &il->ctx; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4984 | |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 4985 | D_INFO("Runtime Alive received.\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4986 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4987 | if (il->card_alive.is_valid != UCODE_VALID_OK) { |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4988 | /* We had an error bringing up the hardware, so take it |
| 4989 | * all the way back down so we can try again */ |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 4990 | D_INFO("Alive failed.\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4991 | goto restart; |
| 4992 | } |
| 4993 | |
| 4994 | /* Initialize uCode has loaded Runtime uCode ... verify inst image. |
| 4995 | * This is a paranoid check, because we would not have gotten the |
| 4996 | * "runtime" alive if code weren't properly loaded. */ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4997 | if (il4965_verify_ucode(il)) { |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4998 | /* Runtime instruction load was bad; |
| 4999 | * take it all the way back down so we can try again */ |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 5000 | D_INFO("Bad runtime uCode load.\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5001 | goto restart; |
| 5002 | } |
| 5003 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5004 | ret = il4965_alive_notify(il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5005 | if (ret) { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5006 | IL_WARN("Could not complete ALIVE transition [ntf]: %d\n", ret); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5007 | goto restart; |
| 5008 | } |
| 5009 | |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5010 | /* After the ALIVE response, we can send host commands to the uCode */ |
Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 5011 | set_bit(S_ALIVE, &il->status); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5012 | |
| 5013 | /* Enable watchdog to monitor the driver tx queues */ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5014 | il_setup_watchdog(il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5015 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5016 | if (il_is_rfkill(il)) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5017 | return; |
| 5018 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5019 | ieee80211_wake_queues(il->hw); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5020 | |
Stanislaw Gruszka | 2eb0581 | 2011-08-26 16:07:43 +0200 | [diff] [blame] | 5021 | il->active_rate = RATES_MASK; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5022 | |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 5023 | if (il_is_associated_ctx(ctx)) { |
| 5024 | struct il_rxon_cmd *active_rxon = |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5025 | (struct il_rxon_cmd *)&ctx->active; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5026 | /* apply any changes in staging */ |
| 5027 | ctx->staging.filter_flags |= RXON_FILTER_ASSOC_MSK; |
| 5028 | active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK; |
| 5029 | } else { |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5030 | /* Initialize our rx_config data */ |
Stanislaw Gruszka | 17d6e55 | 2011-08-29 12:52:20 +0200 | [diff] [blame] | 5031 | il_connection_init_rx_config(il, &il->ctx); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5032 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5033 | if (il->cfg->ops->hcmd->set_rxon_chain) |
| 5034 | il->cfg->ops->hcmd->set_rxon_chain(il, ctx); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5035 | } |
| 5036 | |
| 5037 | /* Configure bluetooth coexistence if enabled */ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5038 | il_send_bt_config(il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5039 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5040 | il4965_reset_run_time_calib(il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5041 | |
Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 5042 | set_bit(S_READY, &il->status); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5043 | |
| 5044 | /* Configure the adapter for unassociated operation */ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5045 | il_commit_rxon(il, ctx); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5046 | |
| 5047 | /* At this point, the NIC is initialized and operational */ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5048 | il4965_rf_kill_ct_config(il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5049 | |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 5050 | D_INFO("ALIVE processing complete.\n"); |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5051 | wake_up(&il->wait_command_queue); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5052 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5053 | il_power_update_mode(il, true); |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 5054 | D_INFO("Updated power mode\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5055 | |
| 5056 | return; |
| 5057 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5058 | restart: |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5059 | queue_work(il->workqueue, &il->restart); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5060 | } |
| 5061 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5062 | static void il4965_cancel_deferred_work(struct il_priv *il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5063 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5064 | static void |
| 5065 | __il4965_down(struct il_priv *il) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5066 | { |
| 5067 | unsigned long flags; |
Stanislaw Gruszka | ab42b40 | 2011-04-28 11:51:24 +0200 | [diff] [blame] | 5068 | int exit_pending; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5069 | |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 5070 | D_INFO(DRV_NAME " is going down\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5071 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5072 | il_scan_cancel_timeout(il, 200); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5073 | |
Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 5074 | exit_pending = test_and_set_bit(S_EXIT_PENDING, &il->status); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5075 | |
Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 5076 | /* Stop TX queues watchdog. We need to have S_EXIT_PENDING bit set |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5077 | * to prevent rearm timer */ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5078 | del_timer_sync(&il->watchdog); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5079 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5080 | il_clear_ucode_stations(il, NULL); |
| 5081 | il_dealloc_bcast_stations(il); |
| 5082 | il_clear_driver_stations(il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5083 | |
| 5084 | /* Unblock any waiting calls */ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5085 | wake_up_all(&il->wait_command_queue); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5086 | |
| 5087 | /* Wipe out the EXIT_PENDING status bit if we are not actually |
| 5088 | * exiting the module */ |
| 5089 | if (!exit_pending) |
Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 5090 | clear_bit(S_EXIT_PENDING, &il->status); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5091 | |
| 5092 | /* stop and reset the on-board processor */ |
Stanislaw Gruszka | 841b2cc | 2011-08-24 15:14:03 +0200 | [diff] [blame] | 5093 | _il_wr(il, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5094 | |
| 5095 | /* tell the device to stop sending interrupts */ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5096 | spin_lock_irqsave(&il->lock, flags); |
| 5097 | il_disable_interrupts(il); |
| 5098 | spin_unlock_irqrestore(&il->lock, flags); |
| 5099 | il4965_synchronize_irq(il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5100 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5101 | if (il->mac80211_registered) |
| 5102 | ieee80211_stop_queues(il->hw); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5103 | |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 5104 | /* If we have not previously called il_init() then |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5105 | * clear all bits but the RF Kill bit and return */ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5106 | if (!il_is_init(il)) { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5107 | il->status = |
| 5108 | test_bit(S_RF_KILL_HW, |
| 5109 | &il-> |
| 5110 | status) << S_RF_KILL_HW | |
| 5111 | test_bit(S_GEO_CONFIGURED, |
| 5112 | &il-> |
| 5113 | status) << S_GEO_CONFIGURED | |
| 5114 | test_bit(S_EXIT_PENDING, &il->status) << S_EXIT_PENDING; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5115 | goto exit; |
| 5116 | } |
| 5117 | |
| 5118 | /* ...otherwise clear out all the status bits but the RF Kill |
| 5119 | * bit and continue taking the NIC down. */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5120 | il->status &= |
| 5121 | test_bit(S_RF_KILL_HW, |
| 5122 | &il->status) << S_RF_KILL_HW | test_bit(S_GEO_CONFIGURED, |
| 5123 | &il-> |
| 5124 | status) << |
| 5125 | S_GEO_CONFIGURED | test_bit(S_FW_ERROR, |
| 5126 | &il-> |
| 5127 | status) << S_FW_ERROR | |
| 5128 | test_bit(S_EXIT_PENDING, &il->status) << S_EXIT_PENDING; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5129 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5130 | il4965_txq_ctx_stop(il); |
| 5131 | il4965_rxq_stop(il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5132 | |
| 5133 | /* Power-down device's busmaster DMA clocks */ |
Stanislaw Gruszka | db54eb5 | 2011-08-24 21:06:33 +0200 | [diff] [blame] | 5134 | il_wr_prph(il, APMG_CLK_DIS_REG, APMG_CLK_VAL_DMA_CLK_RQT); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5135 | udelay(5); |
| 5136 | |
| 5137 | /* Make sure (redundant) we've released our request to stay awake */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5138 | il_clear_bit(il, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5139 | |
| 5140 | /* Stop the device, and put it in low power state */ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5141 | il_apm_stop(il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5142 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5143 | exit: |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5144 | memset(&il->card_alive, 0, sizeof(struct il_alive_resp)); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5145 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5146 | dev_kfree_skb(il->beacon_skb); |
| 5147 | il->beacon_skb = NULL; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5148 | |
| 5149 | /* clear out any free frames */ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5150 | il4965_clear_free_frames(il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5151 | } |
| 5152 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5153 | static void |
| 5154 | il4965_down(struct il_priv *il) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5155 | { |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5156 | mutex_lock(&il->mutex); |
| 5157 | __il4965_down(il); |
| 5158 | mutex_unlock(&il->mutex); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5159 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5160 | il4965_cancel_deferred_work(il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5161 | } |
| 5162 | |
| 5163 | #define HW_READY_TIMEOUT (50) |
| 5164 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5165 | static int |
| 5166 | il4965_set_hw_ready(struct il_priv *il) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5167 | { |
| 5168 | int ret = 0; |
| 5169 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5170 | il_set_bit(il, CSR_HW_IF_CONFIG_REG, |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5171 | CSR_HW_IF_CONFIG_REG_BIT_NIC_READY); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5172 | |
| 5173 | /* See if we got it */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5174 | ret = |
| 5175 | _il_poll_bit(il, CSR_HW_IF_CONFIG_REG, |
| 5176 | CSR_HW_IF_CONFIG_REG_BIT_NIC_READY, |
| 5177 | CSR_HW_IF_CONFIG_REG_BIT_NIC_READY, HW_READY_TIMEOUT); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5178 | if (ret != -ETIMEDOUT) |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5179 | il->hw_ready = true; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5180 | else |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5181 | il->hw_ready = false; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5182 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5183 | D_INFO("hardware %s\n", (il->hw_ready == 1) ? "ready" : "not ready"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5184 | return ret; |
| 5185 | } |
| 5186 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5187 | static int |
| 5188 | il4965_prepare_card_hw(struct il_priv *il) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5189 | { |
| 5190 | int ret = 0; |
| 5191 | |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 5192 | D_INFO("il4965_prepare_card_hw enter\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5193 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5194 | ret = il4965_set_hw_ready(il); |
| 5195 | if (il->hw_ready) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5196 | return ret; |
| 5197 | |
| 5198 | /* If HW is not ready, prepare the conditions to check again */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5199 | il_set_bit(il, CSR_HW_IF_CONFIG_REG, CSR_HW_IF_CONFIG_REG_PREPARE); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5200 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5201 | ret = |
| 5202 | _il_poll_bit(il, CSR_HW_IF_CONFIG_REG, |
| 5203 | ~CSR_HW_IF_CONFIG_REG_BIT_NIC_PREPARE_DONE, |
| 5204 | CSR_HW_IF_CONFIG_REG_BIT_NIC_PREPARE_DONE, 150000); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5205 | |
| 5206 | /* HW should be ready by now, check again. */ |
| 5207 | if (ret != -ETIMEDOUT) |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5208 | il4965_set_hw_ready(il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5209 | |
| 5210 | return ret; |
| 5211 | } |
| 5212 | |
| 5213 | #define MAX_HW_RESTARTS 5 |
| 5214 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5215 | static int |
| 5216 | __il4965_up(struct il_priv *il) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5217 | { |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5218 | int i; |
| 5219 | int ret; |
| 5220 | |
Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 5221 | if (test_bit(S_EXIT_PENDING, &il->status)) { |
Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 5222 | IL_WARN("Exit pending; will not bring the NIC up\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5223 | return -EIO; |
| 5224 | } |
| 5225 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5226 | if (!il->ucode_data_backup.v_addr || !il->ucode_data.v_addr) { |
Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 5227 | IL_ERR("ucode not available for device bringup\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5228 | return -EIO; |
| 5229 | } |
| 5230 | |
Stanislaw Gruszka | 17d6e55 | 2011-08-29 12:52:20 +0200 | [diff] [blame] | 5231 | ret = il4965_alloc_bcast_station(il, &il->ctx); |
| 5232 | if (ret) { |
| 5233 | il_dealloc_bcast_stations(il); |
| 5234 | return ret; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5235 | } |
| 5236 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5237 | il4965_prepare_card_hw(il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5238 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5239 | if (!il->hw_ready) { |
Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 5240 | IL_WARN("Exit HW not ready\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5241 | return -EIO; |
| 5242 | } |
| 5243 | |
| 5244 | /* If platform's RF_KILL switch is NOT set to KILL */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5245 | if (_il_rd(il, CSR_GP_CNTRL) & CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW) |
Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 5246 | clear_bit(S_RF_KILL_HW, &il->status); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5247 | else |
Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 5248 | set_bit(S_RF_KILL_HW, &il->status); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5249 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5250 | if (il_is_rfkill(il)) { |
| 5251 | wiphy_rfkill_set_hw_state(il->hw->wiphy, true); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5252 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5253 | il_enable_interrupts(il); |
Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 5254 | IL_WARN("Radio disabled by HW RF Kill switch\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5255 | return 0; |
| 5256 | } |
| 5257 | |
Stanislaw Gruszka | 841b2cc | 2011-08-24 15:14:03 +0200 | [diff] [blame] | 5258 | _il_wr(il, CSR_INT, 0xFFFFFFFF); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5259 | |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 5260 | /* must be initialised before il_hw_nic_init */ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5261 | il->cmd_queue = IL_DEFAULT_CMD_QUEUE_NUM; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5262 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5263 | ret = il4965_hw_nic_init(il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5264 | if (ret) { |
Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 5265 | IL_ERR("Unable to init nic\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5266 | return ret; |
| 5267 | } |
| 5268 | |
| 5269 | /* make sure rfkill handshake bits are cleared */ |
Stanislaw Gruszka | 841b2cc | 2011-08-24 15:14:03 +0200 | [diff] [blame] | 5270 | _il_wr(il, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL); |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5271 | _il_wr(il, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5272 | |
| 5273 | /* clear (again), then enable host interrupts */ |
Stanislaw Gruszka | 841b2cc | 2011-08-24 15:14:03 +0200 | [diff] [blame] | 5274 | _il_wr(il, CSR_INT, 0xFFFFFFFF); |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5275 | il_enable_interrupts(il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5276 | |
| 5277 | /* really make sure rfkill handshake bits are cleared */ |
Stanislaw Gruszka | 841b2cc | 2011-08-24 15:14:03 +0200 | [diff] [blame] | 5278 | _il_wr(il, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL); |
| 5279 | _il_wr(il, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5280 | |
| 5281 | /* Copy original ucode data image from disk into backup cache. |
| 5282 | * This will be used to initialize the on-board processor's |
| 5283 | * data SRAM for a clean start when the runtime program first loads. */ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5284 | memcpy(il->ucode_data_backup.v_addr, il->ucode_data.v_addr, |
| 5285 | il->ucode_data.len); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5286 | |
| 5287 | for (i = 0; i < MAX_HW_RESTARTS; i++) { |
| 5288 | |
| 5289 | /* load bootstrap state machine, |
| 5290 | * load bootstrap program into processor's memory, |
| 5291 | * prepare to load the "initialize" uCode */ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5292 | ret = il->cfg->ops->lib->load_ucode(il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5293 | |
| 5294 | if (ret) { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5295 | IL_ERR("Unable to set up bootstrap uCode: %d\n", ret); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5296 | continue; |
| 5297 | } |
| 5298 | |
| 5299 | /* start card; "initialize" will load runtime ucode */ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5300 | il4965_nic_start(il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5301 | |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 5302 | D_INFO(DRV_NAME " is coming up\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5303 | |
| 5304 | return 0; |
| 5305 | } |
| 5306 | |
Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 5307 | set_bit(S_EXIT_PENDING, &il->status); |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5308 | __il4965_down(il); |
Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 5309 | clear_bit(S_EXIT_PENDING, &il->status); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5310 | |
| 5311 | /* tried to restart and config the device for as long as our |
| 5312 | * patience could withstand */ |
Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 5313 | IL_ERR("Unable to initialize device after %d attempts.\n", i); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5314 | return -EIO; |
| 5315 | } |
| 5316 | |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5317 | /***************************************************************************** |
| 5318 | * |
| 5319 | * Workqueue callbacks |
| 5320 | * |
| 5321 | *****************************************************************************/ |
| 5322 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5323 | static void |
| 5324 | il4965_bg_init_alive_start(struct work_struct *data) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5325 | { |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5326 | struct il_priv *il = |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 5327 | container_of(data, struct il_priv, init_alive_start.work); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5328 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5329 | mutex_lock(&il->mutex); |
Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 5330 | if (test_bit(S_EXIT_PENDING, &il->status)) |
Stanislaw Gruszka | 28a6e57 | 2011-04-28 11:51:32 +0200 | [diff] [blame] | 5331 | goto out; |
| 5332 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5333 | il->cfg->ops->lib->init_alive_start(il); |
Stanislaw Gruszka | 28a6e57 | 2011-04-28 11:51:32 +0200 | [diff] [blame] | 5334 | out: |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5335 | mutex_unlock(&il->mutex); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5336 | } |
| 5337 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5338 | static void |
| 5339 | il4965_bg_alive_start(struct work_struct *data) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5340 | { |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5341 | struct il_priv *il = |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 5342 | container_of(data, struct il_priv, alive_start.work); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5343 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5344 | mutex_lock(&il->mutex); |
Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 5345 | if (test_bit(S_EXIT_PENDING, &il->status)) |
Stanislaw Gruszka | 28a6e57 | 2011-04-28 11:51:32 +0200 | [diff] [blame] | 5346 | goto out; |
| 5347 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5348 | il4965_alive_start(il); |
Stanislaw Gruszka | 28a6e57 | 2011-04-28 11:51:32 +0200 | [diff] [blame] | 5349 | out: |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5350 | mutex_unlock(&il->mutex); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5351 | } |
| 5352 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5353 | static void |
| 5354 | il4965_bg_run_time_calib_work(struct work_struct *work) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5355 | { |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5356 | struct il_priv *il = container_of(work, struct il_priv, |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5357 | run_time_calib_work); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5358 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5359 | mutex_lock(&il->mutex); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5360 | |
Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 5361 | if (test_bit(S_EXIT_PENDING, &il->status) || |
| 5362 | test_bit(S_SCANNING, &il->status)) { |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5363 | mutex_unlock(&il->mutex); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5364 | return; |
| 5365 | } |
| 5366 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5367 | if (il->start_calib) { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5368 | il4965_chain_noise_calibration(il, (void *)&il->_4965.stats); |
| 5369 | il4965_sensitivity_calibration(il, (void *)&il->_4965.stats); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5370 | } |
| 5371 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5372 | mutex_unlock(&il->mutex); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5373 | } |
| 5374 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5375 | static void |
| 5376 | il4965_bg_restart(struct work_struct *data) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5377 | { |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5378 | struct il_priv *il = container_of(data, struct il_priv, restart); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5379 | |
Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 5380 | if (test_bit(S_EXIT_PENDING, &il->status)) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5381 | return; |
| 5382 | |
Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 5383 | if (test_and_clear_bit(S_FW_ERROR, &il->status)) { |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5384 | mutex_lock(&il->mutex); |
Stanislaw Gruszka | 17d6e55 | 2011-08-29 12:52:20 +0200 | [diff] [blame] | 5385 | il->ctx.vif = NULL; |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5386 | il->is_open = 0; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5387 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5388 | __il4965_down(il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5389 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5390 | mutex_unlock(&il->mutex); |
| 5391 | il4965_cancel_deferred_work(il); |
| 5392 | ieee80211_restart_hw(il->hw); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5393 | } else { |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5394 | il4965_down(il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5395 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5396 | mutex_lock(&il->mutex); |
Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 5397 | if (test_bit(S_EXIT_PENDING, &il->status)) { |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5398 | mutex_unlock(&il->mutex); |
Stanislaw Gruszka | 28a6e57 | 2011-04-28 11:51:32 +0200 | [diff] [blame] | 5399 | return; |
| 5400 | } |
| 5401 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5402 | __il4965_up(il); |
| 5403 | mutex_unlock(&il->mutex); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5404 | } |
| 5405 | } |
| 5406 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5407 | static void |
| 5408 | il4965_bg_rx_replenish(struct work_struct *data) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5409 | { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5410 | struct il_priv *il = container_of(data, struct il_priv, rx_replenish); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5411 | |
Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 5412 | if (test_bit(S_EXIT_PENDING, &il->status)) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5413 | return; |
| 5414 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5415 | mutex_lock(&il->mutex); |
| 5416 | il4965_rx_replenish(il); |
| 5417 | mutex_unlock(&il->mutex); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5418 | } |
| 5419 | |
| 5420 | /***************************************************************************** |
| 5421 | * |
| 5422 | * mac80211 entry point functions |
| 5423 | * |
| 5424 | *****************************************************************************/ |
| 5425 | |
| 5426 | #define UCODE_READY_TIMEOUT (4 * HZ) |
| 5427 | |
| 5428 | /* |
| 5429 | * Not a mac80211 entry point function, but it fits in with all the |
| 5430 | * other mac80211 functions grouped here. |
| 5431 | */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5432 | static int |
| 5433 | il4965_mac_setup_register(struct il_priv *il, u32 max_probe_length) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5434 | { |
| 5435 | int ret; |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5436 | struct ieee80211_hw *hw = il->hw; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5437 | |
| 5438 | hw->rate_control_algorithm = "iwl-4965-rs"; |
| 5439 | |
| 5440 | /* Tell mac80211 our characteristics */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5441 | hw->flags = |
| 5442 | IEEE80211_HW_SIGNAL_DBM | IEEE80211_HW_AMPDU_AGGREGATION | |
| 5443 | IEEE80211_HW_NEED_DTIM_PERIOD | IEEE80211_HW_SPECTRUM_MGMT | |
| 5444 | IEEE80211_HW_REPORTS_TX_ACK_STATUS; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5445 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5446 | if (il->cfg->sku & IL_SKU_N) |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5447 | hw->flags |= |
| 5448 | IEEE80211_HW_SUPPORTS_DYNAMIC_SMPS | |
| 5449 | IEEE80211_HW_SUPPORTS_STATIC_SMPS; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5450 | |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 5451 | hw->sta_data_size = sizeof(struct il_station_priv); |
| 5452 | hw->vif_data_size = sizeof(struct il_vif_priv); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5453 | |
Stanislaw Gruszka | 17d6e55 | 2011-08-29 12:52:20 +0200 | [diff] [blame] | 5454 | hw->wiphy->interface_modes |= il->ctx.interface_modes; |
| 5455 | hw->wiphy->interface_modes |= il->ctx.exclusive_interface_modes; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5456 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5457 | hw->wiphy->flags |= |
| 5458 | WIPHY_FLAG_CUSTOM_REGULATORY | WIPHY_FLAG_DISABLE_BEACON_HINTS; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5459 | |
| 5460 | /* |
| 5461 | * For now, disable PS by default because it affects |
| 5462 | * RX performance significantly. |
| 5463 | */ |
| 5464 | hw->wiphy->flags &= ~WIPHY_FLAG_PS_ON_BY_DEFAULT; |
| 5465 | |
| 5466 | hw->wiphy->max_scan_ssids = PROBE_OPTION_MAX; |
| 5467 | /* we create the 802.11 header and a zero-length SSID element */ |
| 5468 | hw->wiphy->max_scan_ie_len = max_probe_length - 24 - 2; |
| 5469 | |
| 5470 | /* Default value; 4 EDCA QOS priorities */ |
| 5471 | hw->queues = 4; |
| 5472 | |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 5473 | hw->max_listen_interval = IL_CONN_MAX_LISTEN_INTERVAL; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5474 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5475 | if (il->bands[IEEE80211_BAND_2GHZ].n_channels) |
| 5476 | il->hw->wiphy->bands[IEEE80211_BAND_2GHZ] = |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5477 | &il->bands[IEEE80211_BAND_2GHZ]; |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5478 | if (il->bands[IEEE80211_BAND_5GHZ].n_channels) |
| 5479 | il->hw->wiphy->bands[IEEE80211_BAND_5GHZ] = |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5480 | &il->bands[IEEE80211_BAND_5GHZ]; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5481 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5482 | il_leds_init(il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5483 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5484 | ret = ieee80211_register_hw(il->hw); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5485 | if (ret) { |
Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 5486 | IL_ERR("Failed to register hw (error %d)\n", ret); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5487 | return ret; |
| 5488 | } |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5489 | il->mac80211_registered = 1; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5490 | |
| 5491 | return 0; |
| 5492 | } |
| 5493 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5494 | int |
| 5495 | il4965_mac_start(struct ieee80211_hw *hw) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5496 | { |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5497 | struct il_priv *il = hw->priv; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5498 | int ret; |
| 5499 | |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 5500 | D_MAC80211("enter\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5501 | |
| 5502 | /* we should be verifying the device is ready to be opened */ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5503 | mutex_lock(&il->mutex); |
| 5504 | ret = __il4965_up(il); |
| 5505 | mutex_unlock(&il->mutex); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5506 | |
| 5507 | if (ret) |
| 5508 | return ret; |
| 5509 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5510 | if (il_is_rfkill(il)) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5511 | goto out; |
| 5512 | |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 5513 | D_INFO("Start UP work done.\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5514 | |
| 5515 | /* Wait for START_ALIVE from Run Time ucode. Otherwise callbacks from |
| 5516 | * mac80211 will not be run successfully. */ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5517 | ret = wait_event_timeout(il->wait_command_queue, |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5518 | test_bit(S_READY, &il->status), |
| 5519 | UCODE_READY_TIMEOUT); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5520 | if (!ret) { |
Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 5521 | if (!test_bit(S_READY, &il->status)) { |
Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 5522 | IL_ERR("START_ALIVE timeout after %dms.\n", |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5523 | jiffies_to_msecs(UCODE_READY_TIMEOUT)); |
| 5524 | return -ETIMEDOUT; |
| 5525 | } |
| 5526 | } |
| 5527 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5528 | il4965_led_enable(il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5529 | |
| 5530 | out: |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5531 | il->is_open = 1; |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 5532 | D_MAC80211("leave\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5533 | return 0; |
| 5534 | } |
| 5535 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5536 | void |
| 5537 | il4965_mac_stop(struct ieee80211_hw *hw) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5538 | { |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5539 | struct il_priv *il = hw->priv; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5540 | |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 5541 | D_MAC80211("enter\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5542 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5543 | if (!il->is_open) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5544 | return; |
| 5545 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5546 | il->is_open = 0; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5547 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5548 | il4965_down(il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5549 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5550 | flush_workqueue(il->workqueue); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5551 | |
Stanislaw Gruszka | a078a1f | 2011-04-28 11:51:25 +0200 | [diff] [blame] | 5552 | /* User space software may expect getting rfkill changes |
| 5553 | * even if interface is down */ |
Stanislaw Gruszka | 841b2cc | 2011-08-24 15:14:03 +0200 | [diff] [blame] | 5554 | _il_wr(il, CSR_INT, 0xFFFFFFFF); |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5555 | il_enable_rfkill_int(il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5556 | |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 5557 | D_MAC80211("leave\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5558 | } |
| 5559 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5560 | void |
| 5561 | il4965_mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5562 | { |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5563 | struct il_priv *il = hw->priv; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5564 | |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 5565 | D_MACDUMP("enter\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5566 | |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 5567 | D_TX("dev->xmit(%d bytes) at rate 0x%02x\n", skb->len, |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5568 | ieee80211_get_tx_rate(hw, IEEE80211_SKB_CB(skb))->bitrate); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5569 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5570 | if (il4965_tx_skb(il, skb)) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5571 | dev_kfree_skb_any(skb); |
| 5572 | |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 5573 | D_MACDUMP("leave\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5574 | } |
| 5575 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5576 | void |
| 5577 | il4965_mac_update_tkip_key(struct ieee80211_hw *hw, struct ieee80211_vif *vif, |
| 5578 | struct ieee80211_key_conf *keyconf, |
| 5579 | struct ieee80211_sta *sta, u32 iv32, u16 * phase1key) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5580 | { |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5581 | struct il_priv *il = hw->priv; |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 5582 | struct il_vif_priv *vif_priv = (void *)vif->drv_priv; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5583 | |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 5584 | D_MAC80211("enter\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5585 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5586 | il4965_update_tkip_key(il, vif_priv->ctx, keyconf, sta, iv32, |
| 5587 | phase1key); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5588 | |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 5589 | D_MAC80211("leave\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5590 | } |
| 5591 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5592 | int |
| 5593 | il4965_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd, |
| 5594 | struct ieee80211_vif *vif, struct ieee80211_sta *sta, |
| 5595 | struct ieee80211_key_conf *key) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5596 | { |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5597 | struct il_priv *il = hw->priv; |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 5598 | struct il_vif_priv *vif_priv = (void *)vif->drv_priv; |
| 5599 | struct il_rxon_context *ctx = vif_priv->ctx; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5600 | int ret; |
| 5601 | u8 sta_id; |
| 5602 | bool is_default_wep_key = false; |
| 5603 | |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 5604 | D_MAC80211("enter\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5605 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5606 | if (il->cfg->mod_params->sw_crypto) { |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 5607 | D_MAC80211("leave - hwcrypto disabled\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5608 | return -EOPNOTSUPP; |
| 5609 | } |
| 5610 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5611 | sta_id = il_sta_id_or_broadcast(il, vif_priv->ctx, sta); |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 5612 | if (sta_id == IL_INVALID_STATION) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5613 | return -EINVAL; |
| 5614 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5615 | mutex_lock(&il->mutex); |
| 5616 | il_scan_cancel_timeout(il, 100); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5617 | |
| 5618 | /* |
| 5619 | * If we are getting WEP group key and we didn't receive any key mapping |
| 5620 | * so far, we are in legacy wep mode (group key only), otherwise we are |
| 5621 | * in 1X mode. |
| 5622 | * In legacy wep mode, we use another host command to the uCode. |
| 5623 | */ |
| 5624 | if ((key->cipher == WLAN_CIPHER_SUITE_WEP40 || |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5625 | key->cipher == WLAN_CIPHER_SUITE_WEP104) && !sta) { |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5626 | if (cmd == SET_KEY) |
| 5627 | is_default_wep_key = !ctx->key_mapping_keys; |
| 5628 | else |
| 5629 | is_default_wep_key = |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5630 | (key->hw_key_idx == HW_KEY_DEFAULT); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5631 | } |
| 5632 | |
| 5633 | switch (cmd) { |
| 5634 | case SET_KEY: |
| 5635 | if (is_default_wep_key) |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5636 | ret = |
| 5637 | il4965_set_default_wep_key(il, vif_priv->ctx, key); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5638 | else |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5639 | ret = |
| 5640 | il4965_set_dynamic_key(il, vif_priv->ctx, key, |
| 5641 | sta_id); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5642 | |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 5643 | D_MAC80211("enable hwcrypto key\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5644 | break; |
| 5645 | case DISABLE_KEY: |
| 5646 | if (is_default_wep_key) |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5647 | ret = il4965_remove_default_wep_key(il, ctx, key); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5648 | else |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5649 | ret = il4965_remove_dynamic_key(il, ctx, key, sta_id); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5650 | |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 5651 | D_MAC80211("disable hwcrypto key\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5652 | break; |
| 5653 | default: |
| 5654 | ret = -EINVAL; |
| 5655 | } |
| 5656 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5657 | mutex_unlock(&il->mutex); |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 5658 | D_MAC80211("leave\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5659 | |
| 5660 | return ret; |
| 5661 | } |
| 5662 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5663 | int |
| 5664 | il4965_mac_ampdu_action(struct ieee80211_hw *hw, struct ieee80211_vif *vif, |
| 5665 | enum ieee80211_ampdu_mlme_action action, |
| 5666 | struct ieee80211_sta *sta, u16 tid, u16 * ssn, |
| 5667 | u8 buf_size) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5668 | { |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5669 | struct il_priv *il = hw->priv; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5670 | int ret = -EINVAL; |
| 5671 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5672 | D_HT("A-MPDU action on addr %pM tid %d\n", sta->addr, tid); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5673 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5674 | if (!(il->cfg->sku & IL_SKU_N)) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5675 | return -EACCES; |
| 5676 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5677 | mutex_lock(&il->mutex); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5678 | |
| 5679 | switch (action) { |
| 5680 | case IEEE80211_AMPDU_RX_START: |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 5681 | D_HT("start Rx\n"); |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5682 | ret = il4965_sta_rx_agg_start(il, sta, tid, *ssn); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5683 | break; |
| 5684 | case IEEE80211_AMPDU_RX_STOP: |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 5685 | D_HT("stop Rx\n"); |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5686 | ret = il4965_sta_rx_agg_stop(il, sta, tid); |
Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 5687 | if (test_bit(S_EXIT_PENDING, &il->status)) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5688 | ret = 0; |
| 5689 | break; |
| 5690 | case IEEE80211_AMPDU_TX_START: |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 5691 | D_HT("start Tx\n"); |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5692 | ret = il4965_tx_agg_start(il, vif, sta, tid, ssn); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5693 | break; |
| 5694 | case IEEE80211_AMPDU_TX_STOP: |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 5695 | D_HT("stop Tx\n"); |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5696 | ret = il4965_tx_agg_stop(il, vif, sta, tid); |
Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 5697 | if (test_bit(S_EXIT_PENDING, &il->status)) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5698 | ret = 0; |
| 5699 | break; |
| 5700 | case IEEE80211_AMPDU_TX_OPERATIONAL: |
| 5701 | ret = 0; |
| 5702 | break; |
| 5703 | } |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5704 | mutex_unlock(&il->mutex); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5705 | |
| 5706 | return ret; |
| 5707 | } |
| 5708 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5709 | int |
| 5710 | il4965_mac_sta_add(struct ieee80211_hw *hw, struct ieee80211_vif *vif, |
| 5711 | struct ieee80211_sta *sta) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5712 | { |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5713 | struct il_priv *il = hw->priv; |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 5714 | struct il_station_priv *sta_priv = (void *)sta->drv_priv; |
| 5715 | struct il_vif_priv *vif_priv = (void *)vif->drv_priv; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5716 | bool is_ap = vif->type == NL80211_IFTYPE_STATION; |
| 5717 | int ret; |
| 5718 | u8 sta_id; |
| 5719 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5720 | D_INFO("received request to add station %pM\n", sta->addr); |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5721 | mutex_lock(&il->mutex); |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5722 | D_INFO("proceeding to add station %pM\n", sta->addr); |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 5723 | sta_priv->common.sta_id = IL_INVALID_STATION; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5724 | |
| 5725 | atomic_set(&sta_priv->pending_frames, 0); |
| 5726 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5727 | ret = |
| 5728 | il_add_station_common(il, vif_priv->ctx, sta->addr, is_ap, sta, |
| 5729 | &sta_id); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5730 | if (ret) { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5731 | IL_ERR("Unable to add station %pM (%d)\n", sta->addr, ret); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5732 | /* Should we return success if return code is EEXIST ? */ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5733 | mutex_unlock(&il->mutex); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5734 | return ret; |
| 5735 | } |
| 5736 | |
| 5737 | sta_priv->common.sta_id = sta_id; |
| 5738 | |
| 5739 | /* Initialize rate scaling */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5740 | D_INFO("Initializing rate scaling for station %pM\n", sta->addr); |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5741 | il4965_rs_rate_init(il, sta, sta_id); |
| 5742 | mutex_unlock(&il->mutex); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5743 | |
| 5744 | return 0; |
| 5745 | } |
| 5746 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5747 | void |
| 5748 | il4965_mac_channel_switch(struct ieee80211_hw *hw, |
| 5749 | struct ieee80211_channel_switch *ch_switch) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5750 | { |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5751 | struct il_priv *il = hw->priv; |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 5752 | const struct il_channel_info *ch_info; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5753 | struct ieee80211_conf *conf = &hw->conf; |
| 5754 | struct ieee80211_channel *channel = ch_switch->channel; |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5755 | struct il_ht_config *ht_conf = &il->current_ht_config; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5756 | |
Stanislaw Gruszka | 7c2cde2 | 2011-11-15 11:29:04 +0100 | [diff] [blame] | 5757 | struct il_rxon_context *ctx = &il->ctx; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5758 | u16 ch; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5759 | |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 5760 | D_MAC80211("enter\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5761 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5762 | mutex_lock(&il->mutex); |
Stanislaw Gruszka | 28a6e57 | 2011-04-28 11:51:32 +0200 | [diff] [blame] | 5763 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5764 | if (il_is_rfkill(il)) |
Stanislaw Gruszka | 28a6e57 | 2011-04-28 11:51:32 +0200 | [diff] [blame] | 5765 | goto out; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5766 | |
Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 5767 | if (test_bit(S_EXIT_PENDING, &il->status) || |
| 5768 | test_bit(S_SCANNING, &il->status) || |
| 5769 | test_bit(S_CHANNEL_SWITCH_PENDING, &il->status)) |
Stanislaw Gruszka | 28a6e57 | 2011-04-28 11:51:32 +0200 | [diff] [blame] | 5770 | goto out; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5771 | |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 5772 | if (!il_is_associated_ctx(ctx)) |
Stanislaw Gruszka | 28a6e57 | 2011-04-28 11:51:32 +0200 | [diff] [blame] | 5773 | goto out; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5774 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5775 | if (!il->cfg->ops->lib->set_channel_switch) |
Stanislaw Gruszka | 7f1f974 | 2011-06-08 15:28:29 +0200 | [diff] [blame] | 5776 | goto out; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5777 | |
Stanislaw Gruszka | 7f1f974 | 2011-06-08 15:28:29 +0200 | [diff] [blame] | 5778 | ch = channel->hw_value; |
| 5779 | if (le16_to_cpu(ctx->active.channel) == ch) |
| 5780 | goto out; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5781 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5782 | ch_info = il_get_channel_info(il, channel->band, ch); |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 5783 | if (!il_is_channel_valid(ch_info)) { |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 5784 | D_MAC80211("invalid channel\n"); |
Stanislaw Gruszka | 7f1f974 | 2011-06-08 15:28:29 +0200 | [diff] [blame] | 5785 | goto out; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5786 | } |
Stanislaw Gruszka | 7f1f974 | 2011-06-08 15:28:29 +0200 | [diff] [blame] | 5787 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5788 | spin_lock_irq(&il->lock); |
Stanislaw Gruszka | 7f1f974 | 2011-06-08 15:28:29 +0200 | [diff] [blame] | 5789 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5790 | il->current_ht_config.smps = conf->smps_mode; |
Stanislaw Gruszka | 7f1f974 | 2011-06-08 15:28:29 +0200 | [diff] [blame] | 5791 | |
| 5792 | /* Configure HT40 channels */ |
| 5793 | ctx->ht.enabled = conf_is_ht(conf); |
| 5794 | if (ctx->ht.enabled) { |
| 5795 | if (conf_is_ht40_minus(conf)) { |
| 5796 | ctx->ht.extension_chan_offset = |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5797 | IEEE80211_HT_PARAM_CHA_SEC_BELOW; |
Stanislaw Gruszka | 7f1f974 | 2011-06-08 15:28:29 +0200 | [diff] [blame] | 5798 | ctx->ht.is_40mhz = true; |
| 5799 | } else if (conf_is_ht40_plus(conf)) { |
| 5800 | ctx->ht.extension_chan_offset = |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5801 | IEEE80211_HT_PARAM_CHA_SEC_ABOVE; |
Stanislaw Gruszka | 7f1f974 | 2011-06-08 15:28:29 +0200 | [diff] [blame] | 5802 | ctx->ht.is_40mhz = true; |
| 5803 | } else { |
| 5804 | ctx->ht.extension_chan_offset = |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5805 | IEEE80211_HT_PARAM_CHA_SEC_NONE; |
Stanislaw Gruszka | 7f1f974 | 2011-06-08 15:28:29 +0200 | [diff] [blame] | 5806 | ctx->ht.is_40mhz = false; |
| 5807 | } |
| 5808 | } else |
| 5809 | ctx->ht.is_40mhz = false; |
| 5810 | |
| 5811 | if ((le16_to_cpu(ctx->staging.channel) != ch)) |
| 5812 | ctx->staging.flags = 0; |
| 5813 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5814 | il_set_rxon_channel(il, channel, ctx); |
| 5815 | il_set_rxon_ht(il, ht_conf); |
| 5816 | il_set_flags_for_band(il, ctx, channel->band, ctx->vif); |
Stanislaw Gruszka | 7f1f974 | 2011-06-08 15:28:29 +0200 | [diff] [blame] | 5817 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5818 | spin_unlock_irq(&il->lock); |
Stanislaw Gruszka | 7f1f974 | 2011-06-08 15:28:29 +0200 | [diff] [blame] | 5819 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5820 | il_set_rate(il); |
Stanislaw Gruszka | 7f1f974 | 2011-06-08 15:28:29 +0200 | [diff] [blame] | 5821 | /* |
| 5822 | * at this point, staging_rxon has the |
| 5823 | * configuration for channel switch |
| 5824 | */ |
Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 5825 | set_bit(S_CHANNEL_SWITCH_PENDING, &il->status); |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5826 | il->switch_channel = cpu_to_le16(ch); |
| 5827 | if (il->cfg->ops->lib->set_channel_switch(il, ch_switch)) { |
Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 5828 | clear_bit(S_CHANNEL_SWITCH_PENDING, &il->status); |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5829 | il->switch_channel = 0; |
Stanislaw Gruszka | 7f1f974 | 2011-06-08 15:28:29 +0200 | [diff] [blame] | 5830 | ieee80211_chswitch_done(ctx->vif, false); |
| 5831 | } |
| 5832 | |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5833 | out: |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5834 | mutex_unlock(&il->mutex); |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 5835 | D_MAC80211("leave\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5836 | } |
| 5837 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5838 | void |
| 5839 | il4965_configure_filter(struct ieee80211_hw *hw, unsigned int changed_flags, |
| 5840 | unsigned int *total_flags, u64 multicast) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5841 | { |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5842 | struct il_priv *il = hw->priv; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5843 | __le32 filter_or = 0, filter_nand = 0; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5844 | |
| 5845 | #define CHK(test, flag) do { \ |
| 5846 | if (*total_flags & (test)) \ |
| 5847 | filter_or |= (flag); \ |
| 5848 | else \ |
| 5849 | filter_nand |= (flag); \ |
| 5850 | } while (0) |
| 5851 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5852 | D_MAC80211("Enter: changed: 0x%x, total: 0x%x\n", changed_flags, |
| 5853 | *total_flags); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5854 | |
| 5855 | CHK(FIF_OTHER_BSS | FIF_PROMISC_IN_BSS, RXON_FILTER_PROMISC_MSK); |
| 5856 | /* Setting _just_ RXON_FILTER_CTL2HOST_MSK causes FH errors */ |
| 5857 | CHK(FIF_CONTROL, RXON_FILTER_CTL2HOST_MSK | RXON_FILTER_PROMISC_MSK); |
| 5858 | CHK(FIF_BCN_PRBRESP_PROMISC, RXON_FILTER_BCON_AWARE_MSK); |
| 5859 | |
| 5860 | #undef CHK |
| 5861 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5862 | mutex_lock(&il->mutex); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5863 | |
Stanislaw Gruszka | 17d6e55 | 2011-08-29 12:52:20 +0200 | [diff] [blame] | 5864 | il->ctx.staging.filter_flags &= ~filter_nand; |
| 5865 | il->ctx.staging.filter_flags |= filter_or; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5866 | |
Stanislaw Gruszka | 17d6e55 | 2011-08-29 12:52:20 +0200 | [diff] [blame] | 5867 | /* |
| 5868 | * Not committing directly because hardware can perform a scan, |
| 5869 | * but we'll eventually commit the filter flags change anyway. |
| 5870 | */ |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5871 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5872 | mutex_unlock(&il->mutex); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5873 | |
| 5874 | /* |
| 5875 | * Receiving all multicast frames is always enabled by the |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 5876 | * default flags setup in il_connection_init_rx_config() |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5877 | * since we currently do not support programming multicast |
| 5878 | * filters into the device. |
| 5879 | */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5880 | *total_flags &= |
| 5881 | FIF_OTHER_BSS | FIF_ALLMULTI | FIF_PROMISC_IN_BSS | |
| 5882 | FIF_BCN_PRBRESP_PROMISC | FIF_CONTROL; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5883 | } |
| 5884 | |
| 5885 | /***************************************************************************** |
| 5886 | * |
| 5887 | * driver setup and teardown |
| 5888 | * |
| 5889 | *****************************************************************************/ |
| 5890 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5891 | static void |
| 5892 | il4965_bg_txpower_work(struct work_struct *work) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5893 | { |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5894 | struct il_priv *il = container_of(work, struct il_priv, |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5895 | txpower_work); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5896 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5897 | mutex_lock(&il->mutex); |
Stanislaw Gruszka | f325757 | 2011-04-28 11:36:54 +0200 | [diff] [blame] | 5898 | |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5899 | /* If a scan happened to start before we got here |
Stanislaw Gruszka | ebf0d90 | 2011-08-26 15:43:47 +0200 | [diff] [blame] | 5900 | * then just return; the stats notification will |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5901 | * kick off another scheduled work to compensate for |
| 5902 | * any temperature delta we missed here. */ |
Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 5903 | if (test_bit(S_EXIT_PENDING, &il->status) || |
| 5904 | test_bit(S_SCANNING, &il->status)) |
Stanislaw Gruszka | f325757 | 2011-04-28 11:36:54 +0200 | [diff] [blame] | 5905 | goto out; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5906 | |
| 5907 | /* Regardless of if we are associated, we must reconfigure the |
| 5908 | * TX power since frames can be sent on non-radar channels while |
| 5909 | * not associated */ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5910 | il->cfg->ops->lib->send_tx_power(il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5911 | |
| 5912 | /* Update last_temperature to keep is_calib_needed from running |
| 5913 | * when it isn't needed... */ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5914 | il->last_temperature = il->temperature; |
Stanislaw Gruszka | f325757 | 2011-04-28 11:36:54 +0200 | [diff] [blame] | 5915 | out: |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5916 | mutex_unlock(&il->mutex); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5917 | } |
| 5918 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5919 | static void |
| 5920 | il4965_setup_deferred_work(struct il_priv *il) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5921 | { |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5922 | il->workqueue = create_singlethread_workqueue(DRV_NAME); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5923 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5924 | init_waitqueue_head(&il->wait_command_queue); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5925 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5926 | INIT_WORK(&il->restart, il4965_bg_restart); |
| 5927 | INIT_WORK(&il->rx_replenish, il4965_bg_rx_replenish); |
| 5928 | INIT_WORK(&il->run_time_calib_work, il4965_bg_run_time_calib_work); |
| 5929 | INIT_DELAYED_WORK(&il->init_alive_start, il4965_bg_init_alive_start); |
| 5930 | INIT_DELAYED_WORK(&il->alive_start, il4965_bg_alive_start); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5931 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5932 | il_setup_scan_deferred_work(il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5933 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5934 | INIT_WORK(&il->txpower_work, il4965_bg_txpower_work); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5935 | |
Stanislaw Gruszka | ebf0d90 | 2011-08-26 15:43:47 +0200 | [diff] [blame] | 5936 | init_timer(&il->stats_periodic); |
| 5937 | il->stats_periodic.data = (unsigned long)il; |
| 5938 | il->stats_periodic.function = il4965_bg_stats_periodic; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5939 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5940 | init_timer(&il->watchdog); |
| 5941 | il->watchdog.data = (unsigned long)il; |
| 5942 | il->watchdog.function = il_bg_watchdog; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5943 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5944 | tasklet_init(&il->irq_tasklet, |
| 5945 | (void (*)(unsigned long))il4965_irq_tasklet, |
| 5946 | (unsigned long)il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5947 | } |
| 5948 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5949 | static void |
| 5950 | il4965_cancel_deferred_work(struct il_priv *il) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5951 | { |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5952 | cancel_work_sync(&il->txpower_work); |
| 5953 | cancel_delayed_work_sync(&il->init_alive_start); |
| 5954 | cancel_delayed_work(&il->alive_start); |
| 5955 | cancel_work_sync(&il->run_time_calib_work); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5956 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5957 | il_cancel_scan_deferred_work(il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5958 | |
Stanislaw Gruszka | ebf0d90 | 2011-08-26 15:43:47 +0200 | [diff] [blame] | 5959 | del_timer_sync(&il->stats_periodic); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5960 | } |
| 5961 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5962 | static void |
| 5963 | il4965_init_hw_rates(struct il_priv *il, struct ieee80211_rate *rates) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5964 | { |
| 5965 | int i; |
| 5966 | |
Stanislaw Gruszka | 2eb0581 | 2011-08-26 16:07:43 +0200 | [diff] [blame] | 5967 | for (i = 0; i < RATE_COUNT_LEGACY; i++) { |
Stanislaw Gruszka | d2ddf621 | 2011-08-16 14:17:04 +0200 | [diff] [blame] | 5968 | rates[i].bitrate = il_rates[i].ieee * 5; |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5969 | rates[i].hw_value = i; /* Rate scaling will work on idxes */ |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5970 | rates[i].hw_value_short = i; |
| 5971 | rates[i].flags = 0; |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 5972 | if ((i >= IL_FIRST_CCK_RATE) && (i <= IL_LAST_CCK_RATE)) { |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5973 | /* |
| 5974 | * If CCK != 1M then set short preamble rate flag. |
| 5975 | */ |
| 5976 | rates[i].flags |= |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5977 | (il_rates[i].plcp == |
| 5978 | RATE_1M_PLCP) ? 0 : IEEE80211_RATE_SHORT_PREAMBLE; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5979 | } |
| 5980 | } |
| 5981 | } |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5982 | |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5983 | /* |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5984 | * Acquire il->lock before calling this function ! |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5985 | */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5986 | void |
| 5987 | il4965_set_wr_ptrs(struct il_priv *il, int txq_id, u32 idx) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5988 | { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5989 | il_wr(il, HBUS_TARG_WRPTR, (idx & 0xff) | (txq_id << 8)); |
Stanislaw Gruszka | 0c2c885 | 2011-11-15 12:30:17 +0100 | [diff] [blame] | 5990 | il_wr_prph(il, IL49_SCD_QUEUE_RDPTR(txq_id), idx); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5991 | } |
| 5992 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5993 | void |
| 5994 | il4965_tx_queue_set_status(struct il_priv *il, struct il_tx_queue *txq, |
| 5995 | int tx_fifo_id, int scd_retry) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5996 | { |
| 5997 | int txq_id = txq->q.id; |
| 5998 | |
| 5999 | /* Find out whether to activate Tx queue */ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 6000 | int active = test_bit(txq_id, &il->txq_ctx_active_msk) ? 1 : 0; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6001 | |
| 6002 | /* Set up and activate */ |
Stanislaw Gruszka | d317516 | 2011-11-15 11:25:42 +0100 | [diff] [blame] | 6003 | il_wr_prph(il, IL49_SCD_QUEUE_STATUS_BITS(txq_id), |
Stanislaw Gruszka | 1722f8e | 2011-11-15 14:51:01 +0100 | [diff] [blame] | 6004 | (active << IL49_SCD_QUEUE_STTS_REG_POS_ACTIVE) | |
| 6005 | (tx_fifo_id << IL49_SCD_QUEUE_STTS_REG_POS_TXF) | |
| 6006 | (scd_retry << IL49_SCD_QUEUE_STTS_REG_POS_WSL) | |
| 6007 | (scd_retry << IL49_SCD_QUEUE_STTS_REG_POS_SCD_ACK) | |
| 6008 | IL49_SCD_QUEUE_STTS_REG_MSK); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6009 | |
| 6010 | txq->sched_retry = scd_retry; |
| 6011 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 6012 | D_INFO("%s %s Queue %d on AC %d\n", active ? "Activate" : "Deactivate", |
| 6013 | scd_retry ? "BA" : "AC", txq_id, tx_fifo_id); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6014 | } |
| 6015 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 6016 | static int |
| 6017 | il4965_init_drv(struct il_priv *il) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6018 | { |
| 6019 | int ret; |
| 6020 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 6021 | spin_lock_init(&il->sta_lock); |
| 6022 | spin_lock_init(&il->hcmd_lock); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6023 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 6024 | INIT_LIST_HEAD(&il->free_frames); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6025 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 6026 | mutex_init(&il->mutex); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6027 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 6028 | il->ieee_channels = NULL; |
| 6029 | il->ieee_rates = NULL; |
| 6030 | il->band = IEEE80211_BAND_2GHZ; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6031 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 6032 | il->iw_mode = NL80211_IFTYPE_STATION; |
| 6033 | il->current_ht_config.smps = IEEE80211_SMPS_STATIC; |
| 6034 | il->missed_beacon_threshold = IL_MISSED_BEACON_THRESHOLD_DEF; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6035 | |
| 6036 | /* initialize force reset */ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 6037 | il->force_reset.reset_duration = IL_DELAY_NEXT_FORCE_FW_RELOAD; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6038 | |
| 6039 | /* Choose which receivers/antennas to use */ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 6040 | if (il->cfg->ops->hcmd->set_rxon_chain) |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 6041 | il->cfg->ops->hcmd->set_rxon_chain(il, &il->ctx); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6042 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 6043 | il_init_scan_params(il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6044 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 6045 | ret = il_init_channel_map(il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6046 | if (ret) { |
Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 6047 | IL_ERR("initializing regulatory failed: %d\n", ret); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6048 | goto err; |
| 6049 | } |
| 6050 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 6051 | ret = il_init_geos(il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6052 | if (ret) { |
Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 6053 | IL_ERR("initializing geos failed: %d\n", ret); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6054 | goto err_free_channel_map; |
| 6055 | } |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 6056 | il4965_init_hw_rates(il, il->ieee_rates); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6057 | |
| 6058 | return 0; |
| 6059 | |
| 6060 | err_free_channel_map: |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 6061 | il_free_channel_map(il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6062 | err: |
| 6063 | return ret; |
| 6064 | } |
| 6065 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 6066 | static void |
| 6067 | il4965_uninit_drv(struct il_priv *il) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6068 | { |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 6069 | il4965_calib_free_results(il); |
| 6070 | il_free_geos(il); |
| 6071 | il_free_channel_map(il); |
| 6072 | kfree(il->scan_cmd); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6073 | } |
| 6074 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 6075 | static void |
| 6076 | il4965_hw_detect(struct il_priv *il) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6077 | { |
Stanislaw Gruszka | 841b2cc | 2011-08-24 15:14:03 +0200 | [diff] [blame] | 6078 | il->hw_rev = _il_rd(il, CSR_HW_REV); |
| 6079 | il->hw_wa_rev = _il_rd(il, CSR_HW_REV_WA_REG); |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 6080 | il->rev_id = il->pci_dev->revision; |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 6081 | D_INFO("HW Revision ID = 0x%X\n", il->rev_id); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6082 | } |
| 6083 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 6084 | static int |
| 6085 | il4965_set_hw_params(struct il_priv *il) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6086 | { |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 6087 | il->hw_params.max_rxq_size = RX_QUEUE_SIZE; |
| 6088 | il->hw_params.max_rxq_log = RX_QUEUE_SIZE_LOG; |
| 6089 | if (il->cfg->mod_params->amsdu_size_8K) |
| 6090 | il->hw_params.rx_page_order = get_order(IL_RX_BUF_SIZE_8K); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6091 | else |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 6092 | il->hw_params.rx_page_order = get_order(IL_RX_BUF_SIZE_4K); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6093 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 6094 | il->hw_params.max_beacon_itrvl = IL_MAX_UCODE_BEACON_INTERVAL; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6095 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 6096 | if (il->cfg->mod_params->disable_11n) |
| 6097 | il->cfg->sku &= ~IL_SKU_N; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6098 | |
| 6099 | /* Device-specific setup */ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 6100 | return il->cfg->ops->lib->set_hw_params(il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6101 | } |
| 6102 | |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 6103 | static const u8 il4965_bss_ac_to_fifo[] = { |
| 6104 | IL_TX_FIFO_VO, |
| 6105 | IL_TX_FIFO_VI, |
| 6106 | IL_TX_FIFO_BE, |
| 6107 | IL_TX_FIFO_BK, |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6108 | }; |
| 6109 | |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 6110 | static const u8 il4965_bss_ac_to_queue[] = { |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6111 | 0, 1, 2, 3, |
| 6112 | }; |
| 6113 | |
| 6114 | static int |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 6115 | il4965_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6116 | { |
Stanislaw Gruszka | 7c2cde2 | 2011-11-15 11:29:04 +0100 | [diff] [blame] | 6117 | int err = 0; |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 6118 | struct il_priv *il; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6119 | struct ieee80211_hw *hw; |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 6120 | struct il_cfg *cfg = (struct il_cfg *)(ent->driver_data); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6121 | unsigned long flags; |
| 6122 | u16 pci_cmd; |
| 6123 | |
| 6124 | /************************ |
| 6125 | * 1. Allocating HW data |
| 6126 | ************************/ |
| 6127 | |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 6128 | hw = il_alloc_all(cfg); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6129 | if (!hw) { |
| 6130 | err = -ENOMEM; |
| 6131 | goto out; |
| 6132 | } |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 6133 | il = hw->priv; |
| 6134 | /* At this point both hw and il are allocated. */ |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6135 | |
Stanislaw Gruszka | 7c2cde2 | 2011-11-15 11:29:04 +0100 | [diff] [blame] | 6136 | il->ctx.ctxid = 0; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6137 | |
Stanislaw Gruszka | 7c2cde2 | 2011-11-15 11:29:04 +0100 | [diff] [blame] | 6138 | il->ctx.always_active = true; |
| 6139 | il->ctx.is_active = true; |
Stanislaw Gruszka | 4d69c75 | 2011-08-30 15:26:35 +0200 | [diff] [blame] | 6140 | il->ctx.rxon_cmd = C_RXON; |
| 6141 | il->ctx.rxon_timing_cmd = C_RXON_TIMING; |
| 6142 | il->ctx.rxon_assoc_cmd = C_RXON_ASSOC; |
| 6143 | il->ctx.qos_cmd = C_QOS_PARAM; |
Stanislaw Gruszka | 7c2cde2 | 2011-11-15 11:29:04 +0100 | [diff] [blame] | 6144 | il->ctx.ap_sta_id = IL_AP_ID; |
Stanislaw Gruszka | 4d69c75 | 2011-08-30 15:26:35 +0200 | [diff] [blame] | 6145 | il->ctx.wep_key_cmd = C_WEPKEY; |
Stanislaw Gruszka | 7c2cde2 | 2011-11-15 11:29:04 +0100 | [diff] [blame] | 6146 | il->ctx.ac_to_fifo = il4965_bss_ac_to_fifo; |
| 6147 | il->ctx.ac_to_queue = il4965_bss_ac_to_queue; |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 6148 | il->ctx.exclusive_interface_modes = BIT(NL80211_IFTYPE_ADHOC); |
| 6149 | il->ctx.interface_modes = BIT(NL80211_IFTYPE_STATION); |
Stanislaw Gruszka | 7c2cde2 | 2011-11-15 11:29:04 +0100 | [diff] [blame] | 6150 | il->ctx.ap_devtype = RXON_DEV_TYPE_AP; |
| 6151 | il->ctx.ibss_devtype = RXON_DEV_TYPE_IBSS; |
| 6152 | il->ctx.station_devtype = RXON_DEV_TYPE_ESS; |
| 6153 | il->ctx.unused_devtype = RXON_DEV_TYPE_ESS; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6154 | |
| 6155 | SET_IEEE80211_DEV(hw, &pdev->dev); |
| 6156 | |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 6157 | D_INFO("*** LOAD DRIVER ***\n"); |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 6158 | il->cfg = cfg; |
| 6159 | il->pci_dev = pdev; |
| 6160 | il->inta_mask = CSR_INI_SET_MASK; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6161 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 6162 | if (il_alloc_traffic_mem(il)) |
Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 6163 | IL_ERR("Not enough memory to generate traffic log\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6164 | |
| 6165 | /************************** |
| 6166 | * 2. Initializing PCI bus |
| 6167 | **************************/ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 6168 | pci_disable_link_state(pdev, |
| 6169 | PCIE_LINK_STATE_L0S | PCIE_LINK_STATE_L1 | |
| 6170 | PCIE_LINK_STATE_CLKPM); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6171 | |
| 6172 | if (pci_enable_device(pdev)) { |
| 6173 | err = -ENODEV; |
| 6174 | goto out_ieee80211_free_hw; |
| 6175 | } |
| 6176 | |
| 6177 | pci_set_master(pdev); |
| 6178 | |
| 6179 | err = pci_set_dma_mask(pdev, DMA_BIT_MASK(36)); |
| 6180 | if (!err) |
| 6181 | err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(36)); |
| 6182 | if (err) { |
| 6183 | err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32)); |
| 6184 | if (!err) |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 6185 | err = |
| 6186 | pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32)); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6187 | /* both attempts failed: */ |
| 6188 | if (err) { |
Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 6189 | IL_WARN("No suitable DMA available.\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6190 | goto out_pci_disable_device; |
| 6191 | } |
| 6192 | } |
| 6193 | |
| 6194 | err = pci_request_regions(pdev, DRV_NAME); |
| 6195 | if (err) |
| 6196 | goto out_pci_disable_device; |
| 6197 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 6198 | pci_set_drvdata(pdev, il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6199 | |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6200 | /*********************** |
| 6201 | * 3. Read REV register |
| 6202 | ***********************/ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 6203 | il->hw_base = pci_iomap(pdev, 0, 0); |
| 6204 | if (!il->hw_base) { |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6205 | err = -ENODEV; |
| 6206 | goto out_pci_release_regions; |
| 6207 | } |
| 6208 | |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 6209 | D_INFO("pci_resource_len = 0x%08llx\n", |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 6210 | (unsigned long long)pci_resource_len(pdev, 0)); |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 6211 | D_INFO("pci_resource_base = %p\n", il->hw_base); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6212 | |
| 6213 | /* these spin locks will be used in apm_ops.init and EEPROM access |
| 6214 | * we should init now |
| 6215 | */ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 6216 | spin_lock_init(&il->reg_lock); |
| 6217 | spin_lock_init(&il->lock); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6218 | |
| 6219 | /* |
| 6220 | * stop and reset the on-board processor just in case it is in a |
| 6221 | * strange state ... like being left stranded by a primary kernel |
| 6222 | * and this is now the kdump kernel trying to start up |
| 6223 | */ |
Stanislaw Gruszka | 841b2cc | 2011-08-24 15:14:03 +0200 | [diff] [blame] | 6224 | _il_wr(il, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6225 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 6226 | il4965_hw_detect(il); |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 6227 | IL_INFO("Detected %s, REV=0x%X\n", il->cfg->name, il->hw_rev); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6228 | |
| 6229 | /* We disable the RETRY_TIMEOUT register (0x41) to keep |
| 6230 | * PCI Tx retries from interfering with C3 CPU state */ |
| 6231 | pci_write_config_byte(pdev, PCI_CFG_RETRY_TIMEOUT, 0x00); |
| 6232 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 6233 | il4965_prepare_card_hw(il); |
| 6234 | if (!il->hw_ready) { |
Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 6235 | IL_WARN("Failed, HW not ready\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6236 | goto out_iounmap; |
| 6237 | } |
| 6238 | |
| 6239 | /***************** |
| 6240 | * 4. Read EEPROM |
| 6241 | *****************/ |
| 6242 | /* Read the EEPROM */ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 6243 | err = il_eeprom_init(il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6244 | if (err) { |
Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 6245 | IL_ERR("Unable to init EEPROM\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6246 | goto out_iounmap; |
| 6247 | } |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 6248 | err = il4965_eeprom_check_version(il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6249 | if (err) |
| 6250 | goto out_free_eeprom; |
| 6251 | |
| 6252 | if (err) |
| 6253 | goto out_free_eeprom; |
| 6254 | |
| 6255 | /* extract MAC Address */ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 6256 | il4965_eeprom_get_mac(il, il->addresses[0].addr); |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 6257 | D_INFO("MAC address: %pM\n", il->addresses[0].addr); |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 6258 | il->hw->wiphy->addresses = il->addresses; |
| 6259 | il->hw->wiphy->n_addresses = 1; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6260 | |
| 6261 | /************************ |
| 6262 | * 5. Setup HW constants |
| 6263 | ************************/ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 6264 | if (il4965_set_hw_params(il)) { |
Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 6265 | IL_ERR("failed to set hw parameters\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6266 | goto out_free_eeprom; |
| 6267 | } |
| 6268 | |
| 6269 | /******************* |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 6270 | * 6. Setup il |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6271 | *******************/ |
| 6272 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 6273 | err = il4965_init_drv(il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6274 | if (err) |
| 6275 | goto out_free_eeprom; |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 6276 | /* At this point both hw and il are initialized. */ |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6277 | |
| 6278 | /******************** |
| 6279 | * 7. Setup services |
| 6280 | ********************/ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 6281 | spin_lock_irqsave(&il->lock, flags); |
| 6282 | il_disable_interrupts(il); |
| 6283 | spin_unlock_irqrestore(&il->lock, flags); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6284 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 6285 | pci_enable_msi(il->pci_dev); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6286 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 6287 | err = request_irq(il->pci_dev->irq, il_isr, IRQF_SHARED, DRV_NAME, il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6288 | if (err) { |
Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 6289 | IL_ERR("Error allocating IRQ %d\n", il->pci_dev->irq); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6290 | goto out_disable_msi; |
| 6291 | } |
| 6292 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 6293 | il4965_setup_deferred_work(il); |
Stanislaw Gruszka | d0c7234 | 2011-08-30 15:39:42 +0200 | [diff] [blame] | 6294 | il4965_setup_handlers(il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6295 | |
| 6296 | /********************************************* |
| 6297 | * 8. Enable interrupts and read RFKILL state |
| 6298 | *********************************************/ |
| 6299 | |
Stanislaw Gruszka | a078a1f | 2011-04-28 11:51:25 +0200 | [diff] [blame] | 6300 | /* enable rfkill interrupt: hw bug w/a */ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 6301 | pci_read_config_word(il->pci_dev, PCI_COMMAND, &pci_cmd); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6302 | if (pci_cmd & PCI_COMMAND_INTX_DISABLE) { |
| 6303 | pci_cmd &= ~PCI_COMMAND_INTX_DISABLE; |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 6304 | pci_write_config_word(il->pci_dev, PCI_COMMAND, pci_cmd); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6305 | } |
| 6306 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 6307 | il_enable_rfkill_int(il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6308 | |
| 6309 | /* If platform's RF_KILL switch is NOT set to KILL */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 6310 | if (_il_rd(il, CSR_GP_CNTRL) & CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW) |
Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 6311 | clear_bit(S_RF_KILL_HW, &il->status); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6312 | else |
Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 6313 | set_bit(S_RF_KILL_HW, &il->status); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6314 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 6315 | wiphy_rfkill_set_hw_state(il->hw->wiphy, |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 6316 | test_bit(S_RF_KILL_HW, &il->status)); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6317 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 6318 | il_power_initialize(il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6319 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 6320 | init_completion(&il->_4965.firmware_loading_complete); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6321 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 6322 | err = il4965_request_firmware(il, true); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6323 | if (err) |
| 6324 | goto out_destroy_workqueue; |
| 6325 | |
| 6326 | return 0; |
| 6327 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 6328 | out_destroy_workqueue: |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 6329 | destroy_workqueue(il->workqueue); |
| 6330 | il->workqueue = NULL; |
| 6331 | free_irq(il->pci_dev->irq, il); |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 6332 | out_disable_msi: |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 6333 | pci_disable_msi(il->pci_dev); |
| 6334 | il4965_uninit_drv(il); |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 6335 | out_free_eeprom: |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 6336 | il_eeprom_free(il); |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 6337 | out_iounmap: |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 6338 | pci_iounmap(pdev, il->hw_base); |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 6339 | out_pci_release_regions: |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6340 | pci_set_drvdata(pdev, NULL); |
| 6341 | pci_release_regions(pdev); |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 6342 | out_pci_disable_device: |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6343 | pci_disable_device(pdev); |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 6344 | out_ieee80211_free_hw: |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 6345 | il_free_traffic_mem(il); |
| 6346 | ieee80211_free_hw(il->hw); |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 6347 | out: |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6348 | return err; |
| 6349 | } |
| 6350 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 6351 | static void __devexit |
| 6352 | il4965_pci_remove(struct pci_dev *pdev) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6353 | { |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 6354 | struct il_priv *il = pci_get_drvdata(pdev); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6355 | unsigned long flags; |
| 6356 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 6357 | if (!il) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6358 | return; |
| 6359 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 6360 | wait_for_completion(&il->_4965.firmware_loading_complete); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6361 | |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 6362 | D_INFO("*** UNLOAD DRIVER ***\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6363 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 6364 | il_dbgfs_unregister(il); |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 6365 | sysfs_remove_group(&pdev->dev.kobj, &il_attribute_group); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6366 | |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 6367 | /* ieee80211_unregister_hw call wil cause il_mac_stop to |
| 6368 | * to be called and il4965_down since we are removing the device |
Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 6369 | * we need to set S_EXIT_PENDING bit. |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6370 | */ |
Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 6371 | set_bit(S_EXIT_PENDING, &il->status); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6372 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 6373 | il_leds_exit(il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6374 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 6375 | if (il->mac80211_registered) { |
| 6376 | ieee80211_unregister_hw(il->hw); |
| 6377 | il->mac80211_registered = 0; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6378 | } else { |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 6379 | il4965_down(il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6380 | } |
| 6381 | |
| 6382 | /* |
| 6383 | * Make sure device is reset to low power before unloading driver. |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 6384 | * This may be redundant with il4965_down(), but there are paths to |
| 6385 | * run il4965_down() without calling apm_ops.stop(), and there are |
| 6386 | * paths to avoid running il4965_down() at all before leaving driver. |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6387 | * This (inexpensive) call *makes sure* device is reset. |
| 6388 | */ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 6389 | il_apm_stop(il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6390 | |
| 6391 | /* make sure we flush any pending irq or |
| 6392 | * tasklet for the driver |
| 6393 | */ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 6394 | spin_lock_irqsave(&il->lock, flags); |
| 6395 | il_disable_interrupts(il); |
| 6396 | spin_unlock_irqrestore(&il->lock, flags); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6397 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 6398 | il4965_synchronize_irq(il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6399 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 6400 | il4965_dealloc_ucode_pci(il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6401 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 6402 | if (il->rxq.bd) |
| 6403 | il4965_rx_queue_free(il, &il->rxq); |
| 6404 | il4965_hw_txq_ctx_free(il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6405 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 6406 | il_eeprom_free(il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6407 | |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6408 | /*netif_stop_queue(dev); */ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 6409 | flush_workqueue(il->workqueue); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6410 | |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 6411 | /* ieee80211_unregister_hw calls il_mac_stop, which flushes |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 6412 | * il->workqueue... so we can't take down the workqueue |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6413 | * until now... */ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 6414 | destroy_workqueue(il->workqueue); |
| 6415 | il->workqueue = NULL; |
| 6416 | il_free_traffic_mem(il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6417 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 6418 | free_irq(il->pci_dev->irq, il); |
| 6419 | pci_disable_msi(il->pci_dev); |
| 6420 | pci_iounmap(pdev, il->hw_base); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6421 | pci_release_regions(pdev); |
| 6422 | pci_disable_device(pdev); |
| 6423 | pci_set_drvdata(pdev, NULL); |
| 6424 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 6425 | il4965_uninit_drv(il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6426 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 6427 | dev_kfree_skb(il->beacon_skb); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6428 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 6429 | ieee80211_free_hw(il->hw); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6430 | } |
| 6431 | |
| 6432 | /* |
| 6433 | * Activate/Deactivate Tx DMA/FIFO channels according tx fifos mask |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 6434 | * must be called under il->lock and mac access |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6435 | */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 6436 | void |
| 6437 | il4965_txq_set_sched(struct il_priv *il, u32 mask) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6438 | { |
Stanislaw Gruszka | d317516 | 2011-11-15 11:25:42 +0100 | [diff] [blame] | 6439 | il_wr_prph(il, IL49_SCD_TXFACT, mask); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6440 | } |
| 6441 | |
| 6442 | /***************************************************************************** |
| 6443 | * |
| 6444 | * driver and module entry point |
| 6445 | * |
| 6446 | *****************************************************************************/ |
| 6447 | |
| 6448 | /* Hardware specific file defines the PCI IDs table for that hardware module */ |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 6449 | static DEFINE_PCI_DEVICE_TABLE(il4965_hw_card_ids) = { |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 6450 | {IL_PCI_DEVICE(0x4229, PCI_ANY_ID, il4965_cfg)}, |
| 6451 | {IL_PCI_DEVICE(0x4230, PCI_ANY_ID, il4965_cfg)}, |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6452 | {0} |
| 6453 | }; |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 6454 | MODULE_DEVICE_TABLE(pci, il4965_hw_card_ids); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6455 | |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 6456 | static struct pci_driver il4965_driver = { |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6457 | .name = DRV_NAME, |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 6458 | .id_table = il4965_hw_card_ids, |
| 6459 | .probe = il4965_pci_probe, |
| 6460 | .remove = __devexit_p(il4965_pci_remove), |
| 6461 | .driver.pm = IL_LEGACY_PM_OPS, |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6462 | }; |
| 6463 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 6464 | static int __init |
| 6465 | il4965_init(void) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6466 | { |
| 6467 | |
| 6468 | int ret; |
| 6469 | pr_info(DRV_DESCRIPTION ", " DRV_VERSION "\n"); |
| 6470 | pr_info(DRV_COPYRIGHT "\n"); |
| 6471 | |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 6472 | ret = il4965_rate_control_register(); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6473 | if (ret) { |
| 6474 | pr_err("Unable to register rate control algorithm: %d\n", ret); |
| 6475 | return ret; |
| 6476 | } |
| 6477 | |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 6478 | ret = pci_register_driver(&il4965_driver); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6479 | if (ret) { |
| 6480 | pr_err("Unable to initialize PCI module\n"); |
| 6481 | goto error_register; |
| 6482 | } |
| 6483 | |
| 6484 | return ret; |
| 6485 | |
| 6486 | error_register: |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 6487 | il4965_rate_control_unregister(); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6488 | return ret; |
| 6489 | } |
| 6490 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 6491 | static void __exit |
| 6492 | il4965_exit(void) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6493 | { |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 6494 | pci_unregister_driver(&il4965_driver); |
| 6495 | il4965_rate_control_unregister(); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6496 | } |
| 6497 | |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 6498 | module_exit(il4965_exit); |
| 6499 | module_init(il4965_init); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6500 | |
Stanislaw Gruszka | d317516 | 2011-11-15 11:25:42 +0100 | [diff] [blame] | 6501 | #ifdef CONFIG_IWLEGACY_DEBUG |
Stanislaw Gruszka | d2ddf621 | 2011-08-16 14:17:04 +0200 | [diff] [blame] | 6502 | module_param_named(debug, il_debug_level, uint, S_IRUGO | S_IWUSR); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6503 | MODULE_PARM_DESC(debug, "debug output mask"); |
| 6504 | #endif |
| 6505 | |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 6506 | module_param_named(swcrypto, il4965_mod_params.sw_crypto, int, S_IRUGO); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6507 | MODULE_PARM_DESC(swcrypto, "using crypto in software (default 0 [hardware])"); |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 6508 | module_param_named(queues_num, il4965_mod_params.num_of_queues, int, S_IRUGO); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6509 | MODULE_PARM_DESC(queues_num, "number of hw queues."); |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 6510 | module_param_named(11n_disable, il4965_mod_params.disable_11n, int, S_IRUGO); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6511 | MODULE_PARM_DESC(11n_disable, "disable 11n functionality"); |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 6512 | module_param_named(amsdu_size_8K, il4965_mod_params.amsdu_size_8K, int, |
| 6513 | S_IRUGO); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6514 | MODULE_PARM_DESC(amsdu_size_8K, "enable 8K amsdu size"); |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 6515 | module_param_named(fw_restart, il4965_mod_params.restart_fw, int, S_IRUGO); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 6516 | MODULE_PARM_DESC(fw_restart, "restart firmware in case of error"); |