blob: 166f0001e01d00ca5d3cfdd1df7a8d3119572371 [file] [log] [blame]
Ron Rindjunsky1053d352008-05-05 10:22:43 +08001/******************************************************************************
2 *
3 * Copyright(c) 2003 - 2008 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 * James P. Ketrenos <ipw2100-admin@linux.intel.com>
26 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
27 *
28 *****************************************************************************/
29
Tomas Winklerfd4abac2008-05-15 13:54:07 +080030#include <linux/etherdevice.h>
Ron Rindjunsky1053d352008-05-05 10:22:43 +080031#include <net/mac80211.h>
32#include "iwl-eeprom.h"
33#include "iwl-dev.h"
34#include "iwl-core.h"
35#include "iwl-sta.h"
36#include "iwl-io.h"
37#include "iwl-helpers.h"
38
Tomas Winkler30e553e2008-05-29 16:35:16 +080039static const u16 default_tid_to_tx_fifo[] = {
40 IWL_TX_FIFO_AC1,
41 IWL_TX_FIFO_AC0,
42 IWL_TX_FIFO_AC0,
43 IWL_TX_FIFO_AC1,
44 IWL_TX_FIFO_AC2,
45 IWL_TX_FIFO_AC2,
46 IWL_TX_FIFO_AC3,
47 IWL_TX_FIFO_AC3,
48 IWL_TX_FIFO_NONE,
49 IWL_TX_FIFO_NONE,
50 IWL_TX_FIFO_NONE,
51 IWL_TX_FIFO_NONE,
52 IWL_TX_FIFO_NONE,
53 IWL_TX_FIFO_NONE,
54 IWL_TX_FIFO_NONE,
55 IWL_TX_FIFO_NONE,
56 IWL_TX_FIFO_AC3
57};
58
Tomas Winkler4ddbb7d2008-11-07 09:58:40 -080059static inline int iwl_alloc_dma_ptr(struct iwl_priv *priv,
60 struct iwl_dma_ptr *ptr, size_t size)
61{
62 ptr->addr = pci_alloc_consistent(priv->pci_dev, size, &ptr->dma);
63 if (!ptr->addr)
64 return -ENOMEM;
65 ptr->size = size;
66 return 0;
67}
68
69static inline void iwl_free_dma_ptr(struct iwl_priv *priv,
70 struct iwl_dma_ptr *ptr)
71{
72 if (unlikely(!ptr->addr))
73 return;
74
75 pci_free_consistent(priv->pci_dev, ptr->size, ptr->addr, ptr->dma);
76 memset(ptr, 0, sizeof(*ptr));
77}
78
Tomas Winkler499b1882008-10-14 12:32:48 -070079static inline dma_addr_t iwl_tfd_tb_get_addr(struct iwl_tfd *tfd, u8 idx)
80{
81 struct iwl_tfd_tb *tb = &tfd->tbs[idx];
82
83 dma_addr_t addr = get_unaligned_le32(&tb->lo);
84 if (sizeof(dma_addr_t) > sizeof(u32))
85 addr |=
86 ((dma_addr_t)(le16_to_cpu(tb->hi_n_len) & 0xF) << 16) << 16;
87
88 return addr;
89}
90
91static inline u16 iwl_tfd_tb_get_len(struct iwl_tfd *tfd, u8 idx)
92{
93 struct iwl_tfd_tb *tb = &tfd->tbs[idx];
94
95 return le16_to_cpu(tb->hi_n_len) >> 4;
96}
97
98static inline void iwl_tfd_set_tb(struct iwl_tfd *tfd, u8 idx,
99 dma_addr_t addr, u16 len)
100{
101 struct iwl_tfd_tb *tb = &tfd->tbs[idx];
102 u16 hi_n_len = len << 4;
103
104 put_unaligned_le32(addr, &tb->lo);
105 if (sizeof(dma_addr_t) > sizeof(u32))
106 hi_n_len |= ((addr >> 16) >> 16) & 0xF;
107
108 tb->hi_n_len = cpu_to_le16(hi_n_len);
109
110 tfd->num_tbs = idx + 1;
111}
112
113static inline u8 iwl_tfd_get_num_tbs(struct iwl_tfd *tfd)
114{
115 return tfd->num_tbs & 0x1f;
116}
Tomas Winkler30e553e2008-05-29 16:35:16 +0800117
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800118/**
119 * iwl_hw_txq_free_tfd - Free all chunks referenced by TFD [txq->q.read_ptr]
Tomas Winkler499b1882008-10-14 12:32:48 -0700120 * @priv - driver private data
121 * @txq - tx queue
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800122 *
123 * Does NOT advance any TFD circular buffer read/write indexes
124 * Does NOT free the TFD itself (which is within circular buffer)
125 */
Tomas Winkler499b1882008-10-14 12:32:48 -0700126static void iwl_hw_txq_free_tfd(struct iwl_priv *priv, struct iwl_tx_queue *txq)
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800127{
Tomas Winkler499b1882008-10-14 12:32:48 -0700128 struct iwl_tfd *tfd_tmp = (struct iwl_tfd *)&txq->tfds[0];
129 struct iwl_tfd *tfd;
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800130 struct pci_dev *dev = priv->pci_dev;
Tomas Winkler499b1882008-10-14 12:32:48 -0700131 int index = txq->q.read_ptr;
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800132 int i;
Tomas Winkler499b1882008-10-14 12:32:48 -0700133 int num_tbs;
134
135 tfd = &tfd_tmp[index];
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800136
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800137 /* Sanity check on number of chunks */
Tomas Winkler499b1882008-10-14 12:32:48 -0700138 num_tbs = iwl_tfd_get_num_tbs(tfd);
139
140 if (num_tbs >= IWL_NUM_OF_TBS) {
141 IWL_ERROR("Too many chunks: %i\n", num_tbs);
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800142 /* @todo issue fatal error, it is quite serious situation */
Tomas Winkler499b1882008-10-14 12:32:48 -0700143 return;
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800144 }
145
Tomas Winkler499b1882008-10-14 12:32:48 -0700146 /* Unmap tx_cmd */
147 if (num_tbs)
148 pci_unmap_single(dev,
149 pci_unmap_addr(&txq->cmd[index]->meta, mapping),
150 pci_unmap_len(&txq->cmd[index]->meta, len),
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800151 PCI_DMA_TODEVICE);
152
Tomas Winkler499b1882008-10-14 12:32:48 -0700153 /* Unmap chunks, if any. */
154 for (i = 1; i < num_tbs; i++) {
155 pci_unmap_single(dev, iwl_tfd_tb_get_addr(tfd, i),
156 iwl_tfd_tb_get_len(tfd, i), PCI_DMA_TODEVICE);
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800157
Tomas Winkler499b1882008-10-14 12:32:48 -0700158 if (txq->txb) {
159 dev_kfree_skb(txq->txb[txq->q.read_ptr].skb[i - 1]);
160 txq->txb[txq->q.read_ptr].skb[i - 1] = NULL;
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800161 }
162 }
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800163}
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800164
Tomas Winkler499b1882008-10-14 12:32:48 -0700165static int iwl_hw_txq_attach_buf_to_tfd(struct iwl_priv *priv,
166 struct iwl_tfd *tfd,
167 dma_addr_t addr, u16 len)
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800168{
Tomas Winkler499b1882008-10-14 12:32:48 -0700169
170 u32 num_tbs = iwl_tfd_get_num_tbs(tfd);
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800171
172 /* Each TFD can point to a maximum 20 Tx buffers */
Tomas Winkler499b1882008-10-14 12:32:48 -0700173 if (num_tbs >= IWL_NUM_OF_TBS) {
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800174 IWL_ERROR("Error can not send more than %d chunks\n",
Tomas Winkler499b1882008-10-14 12:32:48 -0700175 IWL_NUM_OF_TBS);
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800176 return -EINVAL;
177 }
178
Tomas Winkler499b1882008-10-14 12:32:48 -0700179 BUG_ON(addr & ~DMA_BIT_MASK(36));
180 if (unlikely(addr & ~IWL_TX_DMA_MASK))
181 IWL_ERROR("Unaligned address = %llx\n",
182 (unsigned long long)addr);
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800183
Tomas Winkler499b1882008-10-14 12:32:48 -0700184 iwl_tfd_set_tb(tfd, num_tbs, addr, len);
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800185
186 return 0;
187}
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800188
189/**
190 * iwl_txq_update_write_ptr - Send new write index to hardware
191 */
192int iwl_txq_update_write_ptr(struct iwl_priv *priv, struct iwl_tx_queue *txq)
193{
194 u32 reg = 0;
195 int ret = 0;
196 int txq_id = txq->q.id;
197
198 if (txq->need_update == 0)
199 return ret;
200
201 /* if we're trying to save power */
202 if (test_bit(STATUS_POWER_PMI, &priv->status)) {
203 /* wake up nic if it's powered down ...
204 * uCode will wake up, and interrupt us again, so next
205 * time we'll skip this part. */
206 reg = iwl_read32(priv, CSR_UCODE_DRV_GP1);
207
208 if (reg & CSR_UCODE_DRV_GP1_BIT_MAC_SLEEP) {
209 IWL_DEBUG_INFO("Requesting wakeup, GP1 = 0x%x\n", reg);
210 iwl_set_bit(priv, CSR_GP_CNTRL,
211 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
212 return ret;
213 }
214
215 /* restore this queue's parameters in nic hardware. */
216 ret = iwl_grab_nic_access(priv);
217 if (ret)
218 return ret;
219 iwl_write_direct32(priv, HBUS_TARG_WRPTR,
220 txq->q.write_ptr | (txq_id << 8));
221 iwl_release_nic_access(priv);
222
223 /* else not in power-save mode, uCode will never sleep when we're
224 * trying to tx (during RFKILL, we're not trying to tx). */
225 } else
226 iwl_write32(priv, HBUS_TARG_WRPTR,
227 txq->q.write_ptr | (txq_id << 8));
228
229 txq->need_update = 0;
230
231 return ret;
232}
233EXPORT_SYMBOL(iwl_txq_update_write_ptr);
234
235
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800236/**
237 * iwl_tx_queue_free - Deallocate DMA queue.
238 * @txq: Transmit queue to deallocate.
239 *
240 * Empty queue by removing and destroying all BD's.
241 * Free all buffers.
242 * 0-fill, but do not free "txq" descriptor structure.
243 */
Gregory Greenmanda99c4b2008-08-04 16:00:40 +0800244static void iwl_tx_queue_free(struct iwl_priv *priv, int txq_id)
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800245{
Gregory Greenmanda99c4b2008-08-04 16:00:40 +0800246 struct iwl_tx_queue *txq = &priv->txq[txq_id];
Tomas Winkler443cfd42008-05-15 13:53:57 +0800247 struct iwl_queue *q = &txq->q;
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800248 struct pci_dev *dev = priv->pci_dev;
Tomas Winkler961ba602008-10-14 12:32:44 -0700249 int i, len;
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800250
251 if (q->n_bd == 0)
252 return;
253
254 /* first, empty all BD's */
255 for (; q->write_ptr != q->read_ptr;
256 q->read_ptr = iwl_queue_inc_wrap(q->read_ptr, q->n_bd))
257 iwl_hw_txq_free_tfd(priv, txq);
258
259 len = sizeof(struct iwl_cmd) * q->n_window;
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800260
261 /* De-alloc array of command/tx buffers */
Tomas Winkler961ba602008-10-14 12:32:44 -0700262 for (i = 0; i < TFD_TX_CMD_SLOTS; i++)
Gregory Greenmanda99c4b2008-08-04 16:00:40 +0800263 kfree(txq->cmd[i]);
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800264
265 /* De-alloc circular buffer of TFDs */
266 if (txq->q.n_bd)
Tomas Winkler499b1882008-10-14 12:32:48 -0700267 pci_free_consistent(dev, sizeof(struct iwl_tfd) *
268 txq->q.n_bd, txq->tfds, txq->q.dma_addr);
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800269
270 /* De-alloc array of per-TFD driver data */
271 kfree(txq->txb);
272 txq->txb = NULL;
273
274 /* 0-fill queue descriptor structure */
275 memset(txq, 0, sizeof(*txq));
276}
277
Tomas Winkler961ba602008-10-14 12:32:44 -0700278
279/**
280 * iwl_cmd_queue_free - Deallocate DMA queue.
281 * @txq: Transmit queue to deallocate.
282 *
283 * Empty queue by removing and destroying all BD's.
284 * Free all buffers.
285 * 0-fill, but do not free "txq" descriptor structure.
286 */
287static void iwl_cmd_queue_free(struct iwl_priv *priv)
288{
289 struct iwl_tx_queue *txq = &priv->txq[IWL_CMD_QUEUE_NUM];
290 struct iwl_queue *q = &txq->q;
291 struct pci_dev *dev = priv->pci_dev;
292 int i, len;
293
294 if (q->n_bd == 0)
295 return;
296
297 len = sizeof(struct iwl_cmd) * q->n_window;
298 len += IWL_MAX_SCAN_SIZE;
299
300 /* De-alloc array of command/tx buffers */
301 for (i = 0; i <= TFD_CMD_SLOTS; i++)
302 kfree(txq->cmd[i]);
303
304 /* De-alloc circular buffer of TFDs */
305 if (txq->q.n_bd)
Tomas Winkler499b1882008-10-14 12:32:48 -0700306 pci_free_consistent(dev, sizeof(struct iwl_tfd) *
307 txq->q.n_bd, txq->tfds, txq->q.dma_addr);
Tomas Winkler961ba602008-10-14 12:32:44 -0700308
309 /* 0-fill queue descriptor structure */
310 memset(txq, 0, sizeof(*txq));
311}
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800312/*************** DMA-QUEUE-GENERAL-FUNCTIONS *****
313 * DMA services
314 *
315 * Theory of operation
316 *
317 * A Tx or Rx queue resides in host DRAM, and is comprised of a circular buffer
318 * of buffer descriptors, each of which points to one or more data buffers for
319 * the device to read from or fill. Driver and device exchange status of each
320 * queue via "read" and "write" pointers. Driver keeps minimum of 2 empty
321 * entries in each circular buffer, to protect against confusing empty and full
322 * queue states.
323 *
324 * The device reads or writes the data in the queues via the device's several
325 * DMA/FIFO channels. Each queue is mapped to a single DMA channel.
326 *
327 * For Tx queue, there are low mark and high mark limits. If, after queuing
328 * the packet for Tx, free space become < low mark, Tx queue stopped. When
329 * reclaiming packets (on 'tx done IRQ), if free space become > high mark,
330 * Tx queue resumed.
331 *
332 * See more detailed info in iwl-4965-hw.h.
333 ***************************************************/
334
335int iwl_queue_space(const struct iwl_queue *q)
336{
337 int s = q->read_ptr - q->write_ptr;
338
339 if (q->read_ptr > q->write_ptr)
340 s -= q->n_bd;
341
342 if (s <= 0)
343 s += q->n_window;
344 /* keep some reserve to not confuse empty and full situations */
345 s -= 2;
346 if (s < 0)
347 s = 0;
348 return s;
349}
350EXPORT_SYMBOL(iwl_queue_space);
351
352
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800353/**
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800354 * iwl_queue_init - Initialize queue's high/low-water and read/write indexes
355 */
Tomas Winkler443cfd42008-05-15 13:53:57 +0800356static int iwl_queue_init(struct iwl_priv *priv, struct iwl_queue *q,
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800357 int count, int slots_num, u32 id)
358{
359 q->n_bd = count;
360 q->n_window = slots_num;
361 q->id = id;
362
363 /* count must be power-of-two size, otherwise iwl_queue_inc_wrap
364 * and iwl_queue_dec_wrap are broken. */
365 BUG_ON(!is_power_of_2(count));
366
367 /* slots_num must be power-of-two size, otherwise
368 * get_cmd_index is broken. */
369 BUG_ON(!is_power_of_2(slots_num));
370
371 q->low_mark = q->n_window / 4;
372 if (q->low_mark < 4)
373 q->low_mark = 4;
374
375 q->high_mark = q->n_window / 8;
376 if (q->high_mark < 2)
377 q->high_mark = 2;
378
379 q->write_ptr = q->read_ptr = 0;
380
381 return 0;
382}
383
384/**
385 * iwl_tx_queue_alloc - Alloc driver data and TFD CB for one Tx/cmd queue
386 */
387static int iwl_tx_queue_alloc(struct iwl_priv *priv,
Ron Rindjunsky16466902008-05-05 10:22:50 +0800388 struct iwl_tx_queue *txq, u32 id)
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800389{
390 struct pci_dev *dev = priv->pci_dev;
391
392 /* Driver private data, only for Tx (not command) queues,
393 * not shared with device. */
394 if (id != IWL_CMD_QUEUE_NUM) {
395 txq->txb = kmalloc(sizeof(txq->txb[0]) *
396 TFD_QUEUE_SIZE_MAX, GFP_KERNEL);
397 if (!txq->txb) {
398 IWL_ERROR("kmalloc for auxiliary BD "
399 "structures failed\n");
400 goto error;
401 }
402 } else
403 txq->txb = NULL;
404
405 /* Circular buffer of transmit frame descriptors (TFDs),
406 * shared with device */
Tomas Winkler499b1882008-10-14 12:32:48 -0700407 txq->tfds = pci_alloc_consistent(dev,
408 sizeof(txq->tfds[0]) * TFD_QUEUE_SIZE_MAX,
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800409 &txq->q.dma_addr);
410
Tomas Winkler499b1882008-10-14 12:32:48 -0700411 if (!txq->tfds) {
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800412 IWL_ERROR("pci_alloc_consistent(%zd) failed\n",
Tomas Winkler499b1882008-10-14 12:32:48 -0700413 sizeof(txq->tfds[0]) * TFD_QUEUE_SIZE_MAX);
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800414 goto error;
415 }
416 txq->q.id = id;
417
418 return 0;
419
420 error:
421 kfree(txq->txb);
422 txq->txb = NULL;
423
424 return -ENOMEM;
425}
426
427/*
428 * Tell nic where to find circular buffer of Tx Frame Descriptors for
429 * given Tx queue, and enable the DMA channel used for that queue.
430 *
431 * 4965 supports up to 16 Tx queues in DRAM, mapped to up to 8 Tx DMA
432 * channels supported in hardware.
433 */
434static int iwl_hw_tx_queue_init(struct iwl_priv *priv,
Ron Rindjunsky16466902008-05-05 10:22:50 +0800435 struct iwl_tx_queue *txq)
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800436{
Tomas Winkler499b1882008-10-14 12:32:48 -0700437 int ret;
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800438 unsigned long flags;
439 int txq_id = txq->q.id;
440
441 spin_lock_irqsave(&priv->lock, flags);
Tomas Winkler499b1882008-10-14 12:32:48 -0700442 ret = iwl_grab_nic_access(priv);
443 if (ret) {
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800444 spin_unlock_irqrestore(&priv->lock, flags);
Tomas Winkler499b1882008-10-14 12:32:48 -0700445 return ret;
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800446 }
447
448 /* Circular buffer (TFD queue in DRAM) physical base address */
449 iwl_write_direct32(priv, FH_MEM_CBBC_QUEUE(txq_id),
450 txq->q.dma_addr >> 8);
451
452 /* Enable DMA channel, using same id as for TFD queue */
Tomas Winkler499b1882008-10-14 12:32:48 -0700453 iwl_write_direct32(priv, FH_TCSR_CHNL_TX_CONFIG_REG(txq_id),
Winkler, Tomas9c80c502008-10-29 14:05:43 -0700454 FH_TCSR_TX_CONFIG_REG_VAL_DMA_CHNL_ENABLE |
455 FH_TCSR_TX_CONFIG_REG_VAL_DMA_CREDIT_ENABLE);
Tomas Winkler499b1882008-10-14 12:32:48 -0700456
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800457 iwl_release_nic_access(priv);
458 spin_unlock_irqrestore(&priv->lock, flags);
459
460 return 0;
461}
462
463/**
464 * iwl_tx_queue_init - Allocate and initialize one tx/cmd queue
465 */
Tomas Winkler73b7d742008-09-03 11:18:48 +0800466static int iwl_tx_queue_init(struct iwl_priv *priv, struct iwl_tx_queue *txq,
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800467 int slots_num, u32 txq_id)
468{
Gregory Greenmanda99c4b2008-08-04 16:00:40 +0800469 int i, len;
Tomas Winkler73b7d742008-09-03 11:18:48 +0800470 int ret;
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800471
472 /*
473 * Alloc buffer array for commands (Tx or other types of commands).
474 * For the command queue (#4), allocate command space + one big
475 * command for scan, since scan command is very huge; the system will
476 * not have two scans at the same time, so only one is needed.
477 * For normal Tx queues (all other queues), no super-size command
478 * space is needed.
479 */
Gregory Greenmanda99c4b2008-08-04 16:00:40 +0800480 len = sizeof(struct iwl_cmd);
481 for (i = 0; i <= slots_num; i++) {
482 if (i == slots_num) {
483 if (txq_id == IWL_CMD_QUEUE_NUM)
484 len += IWL_MAX_SCAN_SIZE;
485 else
486 continue;
487 }
488
John W. Linville49898852008-09-02 15:07:18 -0400489 txq->cmd[i] = kmalloc(len, GFP_KERNEL);
Gregory Greenmanda99c4b2008-08-04 16:00:40 +0800490 if (!txq->cmd[i])
Tomas Winkler73b7d742008-09-03 11:18:48 +0800491 goto err;
Gregory Greenmanda99c4b2008-08-04 16:00:40 +0800492 }
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800493
494 /* Alloc driver data array and TFD circular buffer */
Tomas Winkler73b7d742008-09-03 11:18:48 +0800495 ret = iwl_tx_queue_alloc(priv, txq, txq_id);
496 if (ret)
497 goto err;
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800498
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800499 txq->need_update = 0;
500
501 /* TFD_QUEUE_SIZE_MAX must be power-of-two size, otherwise
502 * iwl_queue_inc_wrap and iwl_queue_dec_wrap are broken. */
503 BUILD_BUG_ON(TFD_QUEUE_SIZE_MAX & (TFD_QUEUE_SIZE_MAX - 1));
504
505 /* Initialize queue's high/low-water marks, and head/tail indexes */
506 iwl_queue_init(priv, &txq->q, TFD_QUEUE_SIZE_MAX, slots_num, txq_id);
507
508 /* Tell device where to find queue */
509 iwl_hw_tx_queue_init(priv, txq);
510
511 return 0;
Tomas Winkler73b7d742008-09-03 11:18:48 +0800512err:
513 for (i = 0; i < slots_num; i++) {
514 kfree(txq->cmd[i]);
515 txq->cmd[i] = NULL;
516 }
517
518 if (txq_id == IWL_CMD_QUEUE_NUM) {
519 kfree(txq->cmd[slots_num]);
520 txq->cmd[slots_num] = NULL;
521 }
522 return -ENOMEM;
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800523}
Tomas Winklerda1bc452008-05-29 16:35:00 +0800524/**
525 * iwl_hw_txq_ctx_free - Free TXQ Context
526 *
527 * Destroy all TX DMA queues and structures
528 */
529void iwl_hw_txq_ctx_free(struct iwl_priv *priv)
530{
531 int txq_id;
532
533 /* Tx queues */
534 for (txq_id = 0; txq_id < priv->hw_params.max_txq_num; txq_id++)
Tomas Winkler961ba602008-10-14 12:32:44 -0700535 if (txq_id == IWL_CMD_QUEUE_NUM)
536 iwl_cmd_queue_free(priv);
537 else
538 iwl_tx_queue_free(priv, txq_id);
Tomas Winklerda1bc452008-05-29 16:35:00 +0800539
Tomas Winkler4ddbb7d2008-11-07 09:58:40 -0800540 iwl_free_dma_ptr(priv, &priv->kw);
541
542 iwl_free_dma_ptr(priv, &priv->scd_bc_tbls);
Tomas Winklerda1bc452008-05-29 16:35:00 +0800543}
544EXPORT_SYMBOL(iwl_hw_txq_ctx_free);
545
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800546/**
547 * iwl_txq_ctx_reset - Reset TX queue context
Tomas Winklera96a27f2008-10-23 23:48:56 -0700548 * Destroys all DMA structures and initialize them again
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800549 *
550 * @param priv
551 * @return error code
552 */
553int iwl_txq_ctx_reset(struct iwl_priv *priv)
554{
555 int ret = 0;
556 int txq_id, slots_num;
Tomas Winklerda1bc452008-05-29 16:35:00 +0800557 unsigned long flags;
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800558
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800559 /* Free all tx/cmd queues and keep-warm buffer */
560 iwl_hw_txq_ctx_free(priv);
561
Tomas Winkler4ddbb7d2008-11-07 09:58:40 -0800562 ret = iwl_alloc_dma_ptr(priv, &priv->scd_bc_tbls,
563 priv->hw_params.scd_bc_tbls_size);
564 if (ret) {
565 IWL_ERROR("Scheduler BC Table allocation failed\n");
566 goto error_bc_tbls;
567 }
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800568 /* Alloc keep-warm buffer */
Tomas Winkler4ddbb7d2008-11-07 09:58:40 -0800569 ret = iwl_alloc_dma_ptr(priv, &priv->kw, IWL_KW_SIZE);
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800570 if (ret) {
Jiri Slaby6f147922008-08-11 23:49:41 +0200571 IWL_ERROR("Keep Warm allocation failed\n");
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800572 goto error_kw;
573 }
Tomas Winklerda1bc452008-05-29 16:35:00 +0800574 spin_lock_irqsave(&priv->lock, flags);
575 ret = iwl_grab_nic_access(priv);
576 if (unlikely(ret)) {
577 spin_unlock_irqrestore(&priv->lock, flags);
578 goto error_reset;
579 }
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800580
581 /* Turn off all Tx DMA fifos */
Tomas Winklerda1bc452008-05-29 16:35:00 +0800582 priv->cfg->ops->lib->txq_set_sched(priv, 0);
583
Tomas Winkler4ddbb7d2008-11-07 09:58:40 -0800584 /* Tell NIC where to find the "keep warm" buffer */
585 iwl_write_direct32(priv, FH_KW_MEM_ADDR_REG, priv->kw.dma >> 4);
586
Tomas Winklerda1bc452008-05-29 16:35:00 +0800587 iwl_release_nic_access(priv);
588 spin_unlock_irqrestore(&priv->lock, flags);
589
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800590
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800591
Tomas Winklerda1bc452008-05-29 16:35:00 +0800592 /* Alloc and init all Tx queues, including the command queue (#4) */
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800593 for (txq_id = 0; txq_id < priv->hw_params.max_txq_num; txq_id++) {
594 slots_num = (txq_id == IWL_CMD_QUEUE_NUM) ?
595 TFD_CMD_SLOTS : TFD_TX_CMD_SLOTS;
596 ret = iwl_tx_queue_init(priv, &priv->txq[txq_id], slots_num,
597 txq_id);
598 if (ret) {
599 IWL_ERROR("Tx %d queue init failed\n", txq_id);
600 goto error;
601 }
602 }
603
604 return ret;
605
606 error:
607 iwl_hw_txq_ctx_free(priv);
608 error_reset:
Tomas Winkler4ddbb7d2008-11-07 09:58:40 -0800609 iwl_free_dma_ptr(priv, &priv->kw);
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800610 error_kw:
Tomas Winkler4ddbb7d2008-11-07 09:58:40 -0800611 iwl_free_dma_ptr(priv, &priv->scd_bc_tbls);
612 error_bc_tbls:
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800613 return ret;
614}
Emmanuel Grumbacha33c2f42008-09-03 11:26:56 +0800615
Tomas Winklerda1bc452008-05-29 16:35:00 +0800616/**
617 * iwl_txq_ctx_stop - Stop all Tx DMA channels, free Tx queue memory
618 */
619void iwl_txq_ctx_stop(struct iwl_priv *priv)
620{
621
622 int txq_id;
623 unsigned long flags;
624
625
626 /* Turn off all Tx DMA fifos */
627 spin_lock_irqsave(&priv->lock, flags);
628 if (iwl_grab_nic_access(priv)) {
629 spin_unlock_irqrestore(&priv->lock, flags);
630 return;
631 }
632
633 priv->cfg->ops->lib->txq_set_sched(priv, 0);
634
635 /* Stop each Tx DMA channel, and wait for it to be idle */
636 for (txq_id = 0; txq_id < priv->hw_params.max_txq_num; txq_id++) {
637 iwl_write_direct32(priv,
638 FH_TCSR_CHNL_TX_CONFIG_REG(txq_id), 0x0);
639 iwl_poll_direct_bit(priv, FH_TSSR_TX_STATUS_REG,
640 FH_TSSR_TX_STATUS_REG_MSK_CHNL_IDLE
641 (txq_id), 200);
642 }
643 iwl_release_nic_access(priv);
644 spin_unlock_irqrestore(&priv->lock, flags);
645
646 /* Deallocate memory for all Tx queues */
647 iwl_hw_txq_ctx_free(priv);
648}
649EXPORT_SYMBOL(iwl_txq_ctx_stop);
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800650
651/*
652 * handle build REPLY_TX command notification.
653 */
654static void iwl_tx_cmd_build_basic(struct iwl_priv *priv,
655 struct iwl_tx_cmd *tx_cmd,
Johannes Berge039fa42008-05-15 12:55:29 +0200656 struct ieee80211_tx_info *info,
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800657 struct ieee80211_hdr *hdr,
658 int is_unicast, u8 std_id)
659{
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700660 __le16 fc = hdr->frame_control;
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800661 __le32 tx_flags = tx_cmd->tx_flags;
662
663 tx_cmd->stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
Johannes Berge039fa42008-05-15 12:55:29 +0200664 if (!(info->flags & IEEE80211_TX_CTL_NO_ACK)) {
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800665 tx_flags |= TX_CMD_FLG_ACK_MSK;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700666 if (ieee80211_is_mgmt(fc))
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800667 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700668 if (ieee80211_is_probe_resp(fc) &&
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800669 !(le16_to_cpu(hdr->seq_ctrl) & 0xf))
670 tx_flags |= TX_CMD_FLG_TSF_MSK;
671 } else {
672 tx_flags &= (~TX_CMD_FLG_ACK_MSK);
673 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
674 }
675
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700676 if (ieee80211_is_back_req(fc))
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800677 tx_flags |= TX_CMD_FLG_ACK_MSK | TX_CMD_FLG_IMM_BA_RSP_MASK;
678
679
680 tx_cmd->sta_id = std_id;
Harvey Harrison8b7b1e02008-06-11 14:21:56 -0700681 if (ieee80211_has_morefrags(fc))
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800682 tx_flags |= TX_CMD_FLG_MORE_FRAG_MSK;
683
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700684 if (ieee80211_is_data_qos(fc)) {
685 u8 *qc = ieee80211_get_qos_ctl(hdr);
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800686 tx_cmd->tid_tspec = qc[0] & 0xf;
687 tx_flags &= ~TX_CMD_FLG_SEQ_CTL_MSK;
688 } else {
689 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
690 }
691
Emmanuel Grumbacha326a5d2008-07-11 11:53:31 +0800692 priv->cfg->ops->utils->rts_tx_cmd_flag(info, &tx_flags);
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800693
694 if ((tx_flags & TX_CMD_FLG_RTS_MSK) || (tx_flags & TX_CMD_FLG_CTS_MSK))
695 tx_flags |= TX_CMD_FLG_FULL_TXOP_PROT_MSK;
696
697 tx_flags &= ~(TX_CMD_FLG_ANT_SEL_MSK);
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700698 if (ieee80211_is_mgmt(fc)) {
699 if (ieee80211_is_assoc_req(fc) || ieee80211_is_reassoc_req(fc))
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800700 tx_cmd->timeout.pm_frame_timeout = cpu_to_le16(3);
701 else
702 tx_cmd->timeout.pm_frame_timeout = cpu_to_le16(2);
703 } else {
704 tx_cmd->timeout.pm_frame_timeout = 0;
705 }
706
707 tx_cmd->driver_txop = 0;
708 tx_cmd->tx_flags = tx_flags;
709 tx_cmd->next_frame_len = 0;
710}
711
712#define RTS_HCCA_RETRY_LIMIT 3
713#define RTS_DFAULT_RETRY_LIMIT 60
714
715static void iwl_tx_cmd_build_rate(struct iwl_priv *priv,
716 struct iwl_tx_cmd *tx_cmd,
Johannes Berge039fa42008-05-15 12:55:29 +0200717 struct ieee80211_tx_info *info,
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700718 __le16 fc, int sta_id,
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800719 int is_hcca)
720{
Tomas Winkler76eff182008-10-14 12:32:45 -0700721 u32 rate_flags = 0;
722 int rate_idx;
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800723 u8 rts_retry_limit = 0;
724 u8 data_retry_limit = 0;
725 u8 rate_plcp;
Johannes Berg2e92e6f2008-05-15 12:55:27 +0200726
Johannes Berge039fa42008-05-15 12:55:29 +0200727 rate_idx = min(ieee80211_get_tx_rate(priv->hw, info)->hw_value & 0xffff,
Johannes Berg2e92e6f2008-05-15 12:55:27 +0200728 IWL_RATE_COUNT - 1);
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800729
730 rate_plcp = iwl_rates[rate_idx].plcp;
731
732 rts_retry_limit = (is_hcca) ?
733 RTS_HCCA_RETRY_LIMIT : RTS_DFAULT_RETRY_LIMIT;
734
735 if ((rate_idx >= IWL_FIRST_CCK_RATE) && (rate_idx <= IWL_LAST_CCK_RATE))
736 rate_flags |= RATE_MCS_CCK_MSK;
737
738
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700739 if (ieee80211_is_probe_resp(fc)) {
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800740 data_retry_limit = 3;
741 if (data_retry_limit < rts_retry_limit)
742 rts_retry_limit = data_retry_limit;
743 } else
744 data_retry_limit = IWL_DEFAULT_TX_RETRY;
745
746 if (priv->data_retry_limit != -1)
747 data_retry_limit = priv->data_retry_limit;
748
749
750 if (ieee80211_is_data(fc)) {
751 tx_cmd->initial_rate_index = 0;
752 tx_cmd->tx_flags |= TX_CMD_FLG_STA_RATE_MSK;
753 } else {
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700754 switch (fc & cpu_to_le16(IEEE80211_FCTL_STYPE)) {
755 case cpu_to_le16(IEEE80211_STYPE_AUTH):
756 case cpu_to_le16(IEEE80211_STYPE_DEAUTH):
757 case cpu_to_le16(IEEE80211_STYPE_ASSOC_REQ):
758 case cpu_to_le16(IEEE80211_STYPE_REASSOC_REQ):
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800759 if (tx_cmd->tx_flags & TX_CMD_FLG_RTS_MSK) {
760 tx_cmd->tx_flags &= ~TX_CMD_FLG_RTS_MSK;
761 tx_cmd->tx_flags |= TX_CMD_FLG_CTS_MSK;
762 }
763 break;
764 default:
765 break;
766 }
767
Tomas Winkler76eff182008-10-14 12:32:45 -0700768 priv->mgmt_tx_ant = iwl_toggle_tx_ant(priv, priv->mgmt_tx_ant);
769 rate_flags |= iwl_ant_idx_to_flags(priv->mgmt_tx_ant);
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800770 }
771
772 tx_cmd->rts_retry_limit = rts_retry_limit;
773 tx_cmd->data_retry_limit = data_retry_limit;
Tomas Winklere7d326ac2008-06-12 09:47:11 +0800774 tx_cmd->rate_n_flags = iwl_hw_set_rate_n_flags(rate_plcp, rate_flags);
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800775}
776
777static void iwl_tx_cmd_build_hwcrypto(struct iwl_priv *priv,
Johannes Berge039fa42008-05-15 12:55:29 +0200778 struct ieee80211_tx_info *info,
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800779 struct iwl_tx_cmd *tx_cmd,
780 struct sk_buff *skb_frag,
781 int sta_id)
782{
Johannes Berge039fa42008-05-15 12:55:29 +0200783 struct ieee80211_key_conf *keyconf = info->control.hw_key;
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800784
Emmanuel Grumbachccc038a2008-05-15 13:54:09 +0800785 switch (keyconf->alg) {
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800786 case ALG_CCMP:
787 tx_cmd->sec_ctl = TX_CMD_SEC_CCM;
Emmanuel Grumbachccc038a2008-05-15 13:54:09 +0800788 memcpy(tx_cmd->key, keyconf->key, keyconf->keylen);
Johannes Berge039fa42008-05-15 12:55:29 +0200789 if (info->flags & IEEE80211_TX_CTL_AMPDU)
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800790 tx_cmd->tx_flags |= TX_CMD_FLG_AGG_CCMP_MSK;
Tomas Winklera96a27f2008-10-23 23:48:56 -0700791 IWL_DEBUG_TX("tx_cmd with AES hwcrypto\n");
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800792 break;
793
794 case ALG_TKIP:
795 tx_cmd->sec_ctl = TX_CMD_SEC_TKIP;
Emmanuel Grumbachccc038a2008-05-15 13:54:09 +0800796 ieee80211_get_tkip_key(keyconf, skb_frag,
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800797 IEEE80211_TKIP_P2_KEY, tx_cmd->key);
798 IWL_DEBUG_TX("tx_cmd with tkip hwcrypto\n");
799 break;
800
801 case ALG_WEP:
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800802 tx_cmd->sec_ctl |= (TX_CMD_SEC_WEP |
Emmanuel Grumbachccc038a2008-05-15 13:54:09 +0800803 (keyconf->keyidx & TX_CMD_SEC_MSK) << TX_CMD_SEC_SHIFT);
804
805 if (keyconf->keylen == WEP_KEY_LEN_128)
806 tx_cmd->sec_ctl |= TX_CMD_SEC_KEY128;
807
808 memcpy(&tx_cmd->key[3], keyconf->key, keyconf->keylen);
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800809
810 IWL_DEBUG_TX("Configuring packet for WEP encryption "
Emmanuel Grumbachccc038a2008-05-15 13:54:09 +0800811 "with key %d\n", keyconf->keyidx);
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800812 break;
813
814 default:
Emmanuel Grumbachccc038a2008-05-15 13:54:09 +0800815 printk(KERN_ERR "Unknown encode alg %d\n", keyconf->alg);
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800816 break;
817 }
818}
819
820static void iwl_update_tx_stats(struct iwl_priv *priv, u16 fc, u16 len)
821{
822 /* 0 - mgmt, 1 - cnt, 2 - data */
823 int idx = (fc & IEEE80211_FCTL_FTYPE) >> 2;
824 priv->tx_stats[idx].cnt++;
825 priv->tx_stats[idx].bytes += len;
826}
827
828/*
829 * start REPLY_TX command process
830 */
Johannes Berge039fa42008-05-15 12:55:29 +0200831int iwl_tx_skb(struct iwl_priv *priv, struct sk_buff *skb)
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800832{
833 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Johannes Berge039fa42008-05-15 12:55:29 +0200834 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Tomas Winkler499b1882008-10-14 12:32:48 -0700835 struct iwl_tfd *tfd;
Tomas Winklerf3674222008-08-04 16:00:44 +0800836 struct iwl_tx_queue *txq;
837 struct iwl_queue *q;
838 struct iwl_cmd *out_cmd;
839 struct iwl_tx_cmd *tx_cmd;
840 int swq_id, txq_id;
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800841 dma_addr_t phys_addr;
842 dma_addr_t txcmd_phys;
843 dma_addr_t scratch_phys;
Tomas Winklerb88b15d2008-10-14 12:32:49 -0700844 u16 len, len_org;
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800845 u16 seq_number = 0;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700846 __le16 fc;
Tomas Winklerf3674222008-08-04 16:00:44 +0800847 u8 hdr_len, unicast;
848 u8 sta_id;
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800849 u8 wait_write_ptr = 0;
850 u8 tid = 0;
851 u8 *qc = NULL;
852 unsigned long flags;
853 int ret;
854
855 spin_lock_irqsave(&priv->lock, flags);
856 if (iwl_is_rfkill(priv)) {
857 IWL_DEBUG_DROP("Dropping - RF KILL\n");
858 goto drop_unlock;
859 }
860
Johannes Berge039fa42008-05-15 12:55:29 +0200861 if ((ieee80211_get_tx_rate(priv->hw, info)->hw_value & 0xFF) ==
Johannes Berg2e92e6f2008-05-15 12:55:27 +0200862 IWL_INVALID_RATE) {
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800863 IWL_ERROR("ERROR: No TX rate available.\n");
864 goto drop_unlock;
865 }
866
867 unicast = !is_multicast_ether_addr(hdr->addr1);
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800868
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700869 fc = hdr->frame_control;
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800870
871#ifdef CONFIG_IWLWIFI_DEBUG
872 if (ieee80211_is_auth(fc))
873 IWL_DEBUG_TX("Sending AUTH frame\n");
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700874 else if (ieee80211_is_assoc_req(fc))
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800875 IWL_DEBUG_TX("Sending ASSOC frame\n");
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700876 else if (ieee80211_is_reassoc_req(fc))
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800877 IWL_DEBUG_TX("Sending REASSOC frame\n");
878#endif
879
880 /* drop all data frame if we are not associated */
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700881 if (ieee80211_is_data(fc) &&
Johannes Berg05c914f2008-09-11 00:01:58 +0200882 (priv->iw_mode != NL80211_IFTYPE_MONITOR ||
Stefanik Gábord10c4ec2008-09-03 11:26:59 +0800883 !(info->flags & IEEE80211_TX_CTL_INJECTED)) && /* packet injection */
884 (!iwl_is_associated(priv) ||
Johannes Berg05c914f2008-09-11 00:01:58 +0200885 ((priv->iw_mode == NL80211_IFTYPE_STATION) && !priv->assoc_id) ||
Stefanik Gábord10c4ec2008-09-03 11:26:59 +0800886 !priv->assoc_station_added)) {
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800887 IWL_DEBUG_DROP("Dropping - !iwl_is_associated\n");
888 goto drop_unlock;
889 }
890
891 spin_unlock_irqrestore(&priv->lock, flags);
892
Harvey Harrison7294ec92008-07-15 18:43:59 -0700893 hdr_len = ieee80211_hdrlen(fc);
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800894
895 /* Find (or create) index into station table for destination station */
896 sta_id = iwl_get_sta_id(priv, hdr);
897 if (sta_id == IWL_INVALID_STATION) {
Johannes Berge1749612008-10-27 15:59:26 -0700898 IWL_DEBUG_DROP("Dropping - INVALID STATION: %pM\n",
899 hdr->addr1);
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800900 goto drop;
901 }
902
903 IWL_DEBUG_TX("station Id %d\n", sta_id);
904
Tomas Winklerf3674222008-08-04 16:00:44 +0800905 swq_id = skb_get_queue_mapping(skb);
906 txq_id = swq_id;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700907 if (ieee80211_is_data_qos(fc)) {
908 qc = ieee80211_get_qos_ctl(hdr);
Harvey Harrison7294ec92008-07-15 18:43:59 -0700909 tid = qc[0] & IEEE80211_QOS_CTL_TID_MASK;
Tomas Winklerf3674222008-08-04 16:00:44 +0800910 seq_number = priv->stations[sta_id].tid[tid].seq_number;
911 seq_number &= IEEE80211_SCTL_SEQ;
912 hdr->seq_ctrl = hdr->seq_ctrl &
913 __constant_cpu_to_le16(IEEE80211_SCTL_FRAG);
914 hdr->seq_ctrl |= cpu_to_le16(seq_number);
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800915 seq_number += 0x10;
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800916 /* aggregation is on for this <sta,tid> */
Johannes Berge039fa42008-05-15 12:55:29 +0200917 if (info->flags & IEEE80211_TX_CTL_AMPDU)
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800918 txq_id = priv->stations[sta_id].tid[tid].agg.txq_id;
919 priv->stations[sta_id].tid[tid].tfds_in_queue++;
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800920 }
921
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800922 txq = &priv->txq[txq_id];
923 q = &txq->q;
Tomas Winkler3fd07a12008-10-23 23:48:49 -0700924 txq->swq_id = swq_id;
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800925
926 spin_lock_irqsave(&priv->lock, flags);
927
928 /* Set up first empty TFD within this queue's circular TFD buffer */
Tomas Winkler499b1882008-10-14 12:32:48 -0700929 tfd = &txq->tfds[q->write_ptr];
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800930 memset(tfd, 0, sizeof(*tfd));
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800931
932 /* Set up driver data for this TFD */
933 memset(&(txq->txb[q->write_ptr]), 0, sizeof(struct iwl_tx_info));
934 txq->txb[q->write_ptr].skb[0] = skb;
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800935
936 /* Set up first empty entry in queue's array of Tx/cmd buffers */
Tomas Winklerb88b15d2008-10-14 12:32:49 -0700937 out_cmd = txq->cmd[q->write_ptr];
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800938 tx_cmd = &out_cmd->cmd.tx;
939 memset(&out_cmd->hdr, 0, sizeof(out_cmd->hdr));
940 memset(tx_cmd, 0, sizeof(struct iwl_tx_cmd));
941
942 /*
943 * Set up the Tx-command (not MAC!) header.
944 * Store the chosen Tx queue and TFD index within the sequence field;
945 * after Tx, uCode's Tx response will return this value so driver can
946 * locate the frame within the tx queue and do post-tx processing.
947 */
948 out_cmd->hdr.cmd = REPLY_TX;
949 out_cmd->hdr.sequence = cpu_to_le16((u16)(QUEUE_TO_SEQ(txq_id) |
950 INDEX_TO_SEQ(q->write_ptr)));
951
952 /* Copy MAC header from skb into command buffer */
953 memcpy(tx_cmd->hdr, hdr, hdr_len);
954
955 /*
956 * Use the first empty entry in this queue's command buffer array
957 * to contain the Tx command and MAC header concatenated together
958 * (payload data will be in another buffer).
959 * Size of this varies, due to varying MAC header length.
960 * If end is not dword aligned, we'll have 2 extra bytes at the end
961 * of the MAC header (device reads on dword boundaries).
962 * We'll tell device about this padding later.
963 */
964 len = sizeof(struct iwl_tx_cmd) +
965 sizeof(struct iwl_cmd_header) + hdr_len;
966
967 len_org = len;
968 len = (len + 3) & ~3;
969
970 if (len_org != len)
971 len_org = 1;
972 else
973 len_org = 0;
974
975 /* Physical address of this Tx command's header (not MAC header!),
976 * within command buffer array. */
Tomas Winkler499b1882008-10-14 12:32:48 -0700977 txcmd_phys = pci_map_single(priv->pci_dev,
978 out_cmd, sizeof(struct iwl_cmd),
979 PCI_DMA_TODEVICE);
980 pci_unmap_addr_set(&out_cmd->meta, mapping, txcmd_phys);
981 pci_unmap_len_set(&out_cmd->meta, len, sizeof(struct iwl_cmd));
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800982 /* Add buffer containing Tx command and MAC(!) header to TFD's
983 * first entry */
Tomas Winkler499b1882008-10-14 12:32:48 -0700984 txcmd_phys += offsetof(struct iwl_cmd, hdr);
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800985 iwl_hw_txq_attach_buf_to_tfd(priv, tfd, txcmd_phys, len);
986
Johannes Bergd0f09802008-07-29 11:32:07 +0200987 if (info->control.hw_key)
Johannes Berge039fa42008-05-15 12:55:29 +0200988 iwl_tx_cmd_build_hwcrypto(priv, info, tx_cmd, skb, sta_id);
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800989
990 /* Set up TFD's 2nd entry to point directly to remainder of skb,
991 * if any (802.11 null frames have no payload). */
992 len = skb->len - hdr_len;
993 if (len) {
994 phys_addr = pci_map_single(priv->pci_dev, skb->data + hdr_len,
995 len, PCI_DMA_TODEVICE);
996 iwl_hw_txq_attach_buf_to_tfd(priv, tfd, phys_addr, len);
997 }
998
999 /* Tell NIC about any 2-byte padding after MAC header */
1000 if (len_org)
1001 tx_cmd->tx_flags |= TX_CMD_FLG_MH_PAD_MSK;
1002
1003 /* Total # bytes to be transmitted */
1004 len = (u16)skb->len;
1005 tx_cmd->len = cpu_to_le16(len);
1006 /* TODO need this for burst mode later on */
Johannes Berge039fa42008-05-15 12:55:29 +02001007 iwl_tx_cmd_build_basic(priv, tx_cmd, info, hdr, unicast, sta_id);
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001008
1009 /* set is_hcca to 0; it probably will never be implemented */
Johannes Berge039fa42008-05-15 12:55:29 +02001010 iwl_tx_cmd_build_rate(priv, tx_cmd, info, fc, sta_id, 0);
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001011
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07001012 iwl_update_tx_stats(priv, le16_to_cpu(fc), len);
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001013
1014 scratch_phys = txcmd_phys + sizeof(struct iwl_cmd_header) +
1015 offsetof(struct iwl_tx_cmd, scratch);
1016 tx_cmd->dram_lsb_ptr = cpu_to_le32(scratch_phys);
Tomas Winkler499b1882008-10-14 12:32:48 -07001017 tx_cmd->dram_msb_ptr = iwl_get_dma_hi_addr(scratch_phys);
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001018
Harvey Harrison8b7b1e02008-06-11 14:21:56 -07001019 if (!ieee80211_has_morefrags(hdr->frame_control)) {
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001020 txq->need_update = 1;
1021 if (qc)
1022 priv->stations[sta_id].tid[tid].seq_number = seq_number;
1023 } else {
1024 wait_write_ptr = 1;
1025 txq->need_update = 0;
1026 }
1027
1028 iwl_print_hex_dump(priv, IWL_DL_TX, (u8 *)tx_cmd, sizeof(*tx_cmd));
1029
1030 iwl_print_hex_dump(priv, IWL_DL_TX, (u8 *)tx_cmd->hdr, hdr_len);
1031
1032 /* Set up entry for this TFD in Tx byte-count array */
1033 priv->cfg->ops->lib->txq_update_byte_cnt_tbl(priv, txq, len);
1034
1035 /* Tell device the write index *just past* this latest filled TFD */
1036 q->write_ptr = iwl_queue_inc_wrap(q->write_ptr, q->n_bd);
1037 ret = iwl_txq_update_write_ptr(priv, txq);
1038 spin_unlock_irqrestore(&priv->lock, flags);
1039
1040 if (ret)
1041 return ret;
1042
Tomas Winkler143b09e2008-07-24 21:33:42 +03001043 if ((iwl_queue_space(q) < q->high_mark) && priv->mac80211_registered) {
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001044 if (wait_write_ptr) {
1045 spin_lock_irqsave(&priv->lock, flags);
1046 txq->need_update = 1;
1047 iwl_txq_update_write_ptr(priv, txq);
1048 spin_unlock_irqrestore(&priv->lock, flags);
Tomas Winkler143b09e2008-07-24 21:33:42 +03001049 } else {
Tomas Winkler3fd07a12008-10-23 23:48:49 -07001050 ieee80211_stop_queue(priv->hw, txq->swq_id);
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001051 }
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001052 }
1053
1054 return 0;
1055
1056drop_unlock:
1057 spin_unlock_irqrestore(&priv->lock, flags);
1058drop:
1059 return -1;
1060}
1061EXPORT_SYMBOL(iwl_tx_skb);
1062
1063/*************** HOST COMMAND QUEUE FUNCTIONS *****/
1064
1065/**
1066 * iwl_enqueue_hcmd - enqueue a uCode command
1067 * @priv: device private data point
1068 * @cmd: a point to the ucode command structure
1069 *
1070 * The function returns < 0 values to indicate the operation is
1071 * failed. On success, it turns the index (> 0) of command in the
1072 * command queue.
1073 */
1074int iwl_enqueue_hcmd(struct iwl_priv *priv, struct iwl_host_cmd *cmd)
1075{
1076 struct iwl_tx_queue *txq = &priv->txq[IWL_CMD_QUEUE_NUM];
1077 struct iwl_queue *q = &txq->q;
Tomas Winkler499b1882008-10-14 12:32:48 -07001078 struct iwl_tfd *tfd;
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001079 struct iwl_cmd *out_cmd;
Tomas Winklerf3674222008-08-04 16:00:44 +08001080 dma_addr_t phys_addr;
1081 unsigned long flags;
1082 int len, ret;
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001083 u32 idx;
1084 u16 fix_size;
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001085
1086 cmd->len = priv->cfg->ops->utils->get_hcmd_size(cmd->id, cmd->len);
1087 fix_size = (u16)(cmd->len + sizeof(out_cmd->hdr));
1088
1089 /* If any of the command structures end up being larger than
1090 * the TFD_MAX_PAYLOAD_SIZE, and it sent as a 'small' command then
1091 * we will need to increase the size of the TFD entries */
1092 BUG_ON((fix_size > TFD_MAX_PAYLOAD_SIZE) &&
1093 !(cmd->meta.flags & CMD_SIZE_HUGE));
1094
1095 if (iwl_is_rfkill(priv)) {
1096 IWL_DEBUG_INFO("Not sending command - RF KILL");
1097 return -EIO;
1098 }
1099
1100 if (iwl_queue_space(q) < ((cmd->meta.flags & CMD_ASYNC) ? 2 : 1)) {
1101 IWL_ERROR("No space for Tx\n");
1102 return -ENOSPC;
1103 }
1104
1105 spin_lock_irqsave(&priv->hcmd_lock, flags);
1106
Tomas Winkler499b1882008-10-14 12:32:48 -07001107 tfd = &txq->tfds[q->write_ptr];
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001108 memset(tfd, 0, sizeof(*tfd));
1109
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001110
1111 idx = get_cmd_index(q, q->write_ptr, cmd->meta.flags & CMD_SIZE_HUGE);
Gregory Greenmanda99c4b2008-08-04 16:00:40 +08001112 out_cmd = txq->cmd[idx];
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001113
1114 out_cmd->hdr.cmd = cmd->id;
1115 memcpy(&out_cmd->meta, &cmd->meta, sizeof(cmd->meta));
1116 memcpy(&out_cmd->cmd.payload, cmd->data, cmd->len);
1117
1118 /* At this point, the out_cmd now has all of the incoming cmd
1119 * information */
1120
1121 out_cmd->hdr.flags = 0;
1122 out_cmd->hdr.sequence = cpu_to_le16(QUEUE_TO_SEQ(IWL_CMD_QUEUE_NUM) |
1123 INDEX_TO_SEQ(q->write_ptr));
1124 if (out_cmd->meta.flags & CMD_SIZE_HUGE)
Tomas Winkler9734cb22008-09-03 11:26:52 +08001125 out_cmd->hdr.sequence |= SEQ_HUGE_FRAME;
Gregory Greenmanda99c4b2008-08-04 16:00:40 +08001126 len = (idx == TFD_CMD_SLOTS) ?
1127 IWL_MAX_SCAN_SIZE : sizeof(struct iwl_cmd);
Tomas Winkler499b1882008-10-14 12:32:48 -07001128
1129 phys_addr = pci_map_single(priv->pci_dev, out_cmd,
1130 len, PCI_DMA_TODEVICE);
1131 pci_unmap_addr_set(&out_cmd->meta, mapping, phys_addr);
1132 pci_unmap_len_set(&out_cmd->meta, len, len);
Gregory Greenmanda99c4b2008-08-04 16:00:40 +08001133 phys_addr += offsetof(struct iwl_cmd, hdr);
Tomas Winkler499b1882008-10-14 12:32:48 -07001134
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001135 iwl_hw_txq_attach_buf_to_tfd(priv, tfd, phys_addr, fix_size);
1136
Esti Kummerded2ae72008-08-04 16:00:45 +08001137#ifdef CONFIG_IWLWIFI_DEBUG
1138 switch (out_cmd->hdr.cmd) {
1139 case REPLY_TX_LINK_QUALITY_CMD:
1140 case SENSITIVITY_CMD:
1141 IWL_DEBUG_HC_DUMP("Sending command %s (#%x), seq: 0x%04X, "
1142 "%d bytes at %d[%d]:%d\n",
1143 get_cmd_string(out_cmd->hdr.cmd),
1144 out_cmd->hdr.cmd,
1145 le16_to_cpu(out_cmd->hdr.sequence), fix_size,
1146 q->write_ptr, idx, IWL_CMD_QUEUE_NUM);
1147 break;
1148 default:
1149 IWL_DEBUG_HC("Sending command %s (#%x), seq: 0x%04X, "
1150 "%d bytes at %d[%d]:%d\n",
1151 get_cmd_string(out_cmd->hdr.cmd),
1152 out_cmd->hdr.cmd,
1153 le16_to_cpu(out_cmd->hdr.sequence), fix_size,
1154 q->write_ptr, idx, IWL_CMD_QUEUE_NUM);
1155 }
1156#endif
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001157 txq->need_update = 1;
1158
1159 /* Set up entry in queue's byte count circular buffer */
1160 priv->cfg->ops->lib->txq_update_byte_cnt_tbl(priv, txq, 0);
1161
1162 /* Increment and update queue's write index */
1163 q->write_ptr = iwl_queue_inc_wrap(q->write_ptr, q->n_bd);
1164 ret = iwl_txq_update_write_ptr(priv, txq);
1165
1166 spin_unlock_irqrestore(&priv->hcmd_lock, flags);
1167 return ret ? ret : idx;
1168}
1169
Tomas Winkler17b88922008-05-29 16:35:12 +08001170int iwl_tx_queue_reclaim(struct iwl_priv *priv, int txq_id, int index)
1171{
1172 struct iwl_tx_queue *txq = &priv->txq[txq_id];
1173 struct iwl_queue *q = &txq->q;
1174 struct iwl_tx_info *tx_info;
1175 int nfreed = 0;
1176
1177 if ((index >= q->n_bd) || (iwl_queue_used(q, index) == 0)) {
1178 IWL_ERROR("Read index for DMA queue txq id (%d), index %d, "
1179 "is out of range [0-%d] %d %d.\n", txq_id,
1180 index, q->n_bd, q->write_ptr, q->read_ptr);
1181 return 0;
1182 }
1183
Tomas Winkler499b1882008-10-14 12:32:48 -07001184 for (index = iwl_queue_inc_wrap(index, q->n_bd);
1185 q->read_ptr != index;
1186 q->read_ptr = iwl_queue_inc_wrap(q->read_ptr, q->n_bd)) {
Tomas Winkler17b88922008-05-29 16:35:12 +08001187
1188 tx_info = &txq->txb[txq->q.read_ptr];
1189 ieee80211_tx_status_irqsafe(priv->hw, tx_info->skb[0]);
1190 tx_info->skb[0] = NULL;
Tomas Winkler17b88922008-05-29 16:35:12 +08001191
Tomas Winkler972cf442008-05-29 16:35:13 +08001192 if (priv->cfg->ops->lib->txq_inval_byte_cnt_tbl)
1193 priv->cfg->ops->lib->txq_inval_byte_cnt_tbl(priv, txq);
1194
1195 iwl_hw_txq_free_tfd(priv, txq);
Tomas Winkler17b88922008-05-29 16:35:12 +08001196 nfreed++;
1197 }
1198 return nfreed;
1199}
1200EXPORT_SYMBOL(iwl_tx_queue_reclaim);
1201
1202
1203/**
1204 * iwl_hcmd_queue_reclaim - Reclaim TX command queue entries already Tx'd
1205 *
1206 * When FW advances 'R' index, all entries between old and new 'R' index
1207 * need to be reclaimed. As result, some free space forms. If there is
1208 * enough free space (> low mark), wake the stack that feeds us.
1209 */
Tomas Winkler499b1882008-10-14 12:32:48 -07001210static void iwl_hcmd_queue_reclaim(struct iwl_priv *priv, int txq_id,
1211 int idx, int cmd_idx)
Tomas Winkler17b88922008-05-29 16:35:12 +08001212{
1213 struct iwl_tx_queue *txq = &priv->txq[txq_id];
1214 struct iwl_queue *q = &txq->q;
1215 int nfreed = 0;
1216
Tomas Winkler499b1882008-10-14 12:32:48 -07001217 if ((idx >= q->n_bd) || (iwl_queue_used(q, idx) == 0)) {
Tomas Winkler17b88922008-05-29 16:35:12 +08001218 IWL_ERROR("Read index for DMA queue txq id (%d), index %d, "
1219 "is out of range [0-%d] %d %d.\n", txq_id,
Tomas Winkler499b1882008-10-14 12:32:48 -07001220 idx, q->n_bd, q->write_ptr, q->read_ptr);
Tomas Winkler17b88922008-05-29 16:35:12 +08001221 return;
1222 }
1223
Tomas Winkler499b1882008-10-14 12:32:48 -07001224 pci_unmap_single(priv->pci_dev,
1225 pci_unmap_addr(&txq->cmd[cmd_idx]->meta, mapping),
1226 pci_unmap_len(&txq->cmd[cmd_idx]->meta, len),
1227 PCI_DMA_TODEVICE);
Tomas Winkler17b88922008-05-29 16:35:12 +08001228
Tomas Winkler499b1882008-10-14 12:32:48 -07001229 for (idx = iwl_queue_inc_wrap(idx, q->n_bd); q->read_ptr != idx;
1230 q->read_ptr = iwl_queue_inc_wrap(q->read_ptr, q->n_bd)) {
1231
1232 if (nfreed++ > 0) {
1233 IWL_ERROR("HCMD skipped: index (%d) %d %d\n", idx,
Tomas Winkler17b88922008-05-29 16:35:12 +08001234 q->write_ptr, q->read_ptr);
1235 queue_work(priv->workqueue, &priv->restart);
1236 }
Gregory Greenmanda99c4b2008-08-04 16:00:40 +08001237
Tomas Winkler17b88922008-05-29 16:35:12 +08001238 }
1239}
1240
1241/**
1242 * iwl_tx_cmd_complete - Pull unused buffers off the queue and reclaim them
1243 * @rxb: Rx buffer to reclaim
1244 *
1245 * If an Rx buffer has an async callback associated with it the callback
1246 * will be executed. The attached skb (if present) will only be freed
1247 * if the callback returns 1
1248 */
1249void iwl_tx_cmd_complete(struct iwl_priv *priv, struct iwl_rx_mem_buffer *rxb)
1250{
1251 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
1252 u16 sequence = le16_to_cpu(pkt->hdr.sequence);
1253 int txq_id = SEQ_TO_QUEUE(sequence);
1254 int index = SEQ_TO_INDEX(sequence);
Tomas Winkler17b88922008-05-29 16:35:12 +08001255 int cmd_index;
Tomas Winkler9734cb22008-09-03 11:26:52 +08001256 bool huge = !!(pkt->hdr.sequence & SEQ_HUGE_FRAME);
Tomas Winkler17b88922008-05-29 16:35:12 +08001257 struct iwl_cmd *cmd;
1258
1259 /* If a Tx command is being handled and it isn't in the actual
1260 * command queue then there a command routing bug has been introduced
1261 * in the queue management code. */
Johannes Berg55d6a3c2008-09-23 19:18:43 +02001262 if (WARN(txq_id != IWL_CMD_QUEUE_NUM,
Winkler, Tomas01ef93232008-11-07 09:58:45 -08001263 "wrong command queue %d, sequence 0x%X readp=%d writep=%d\n",
1264 txq_id, sequence,
1265 priv->txq[IWL_CMD_QUEUE_NUM].q.read_ptr,
1266 priv->txq[IWL_CMD_QUEUE_NUM].q.write_ptr)) {
1267 iwl_print_hex_dump(priv, IWL_DL_INFO , rxb, 32);
Johannes Berg55d6a3c2008-09-23 19:18:43 +02001268 return;
Winkler, Tomas01ef93232008-11-07 09:58:45 -08001269 }
Tomas Winkler17b88922008-05-29 16:35:12 +08001270
1271 cmd_index = get_cmd_index(&priv->txq[IWL_CMD_QUEUE_NUM].q, index, huge);
Gregory Greenmanda99c4b2008-08-04 16:00:40 +08001272 cmd = priv->txq[IWL_CMD_QUEUE_NUM].cmd[cmd_index];
Tomas Winkler17b88922008-05-29 16:35:12 +08001273
1274 /* Input error checking is done when commands are added to queue. */
1275 if (cmd->meta.flags & CMD_WANT_SKB) {
1276 cmd->meta.source->u.skb = rxb->skb;
1277 rxb->skb = NULL;
1278 } else if (cmd->meta.u.callback &&
1279 !cmd->meta.u.callback(priv, cmd, rxb->skb))
1280 rxb->skb = NULL;
1281
Tomas Winkler499b1882008-10-14 12:32:48 -07001282 iwl_hcmd_queue_reclaim(priv, txq_id, index, cmd_index);
Tomas Winkler17b88922008-05-29 16:35:12 +08001283
1284 if (!(cmd->meta.flags & CMD_ASYNC)) {
1285 clear_bit(STATUS_HCMD_ACTIVE, &priv->status);
1286 wake_up_interruptible(&priv->wait_command_queue);
1287 }
1288}
1289EXPORT_SYMBOL(iwl_tx_cmd_complete);
1290
Tomas Winkler30e553e2008-05-29 16:35:16 +08001291/*
1292 * Find first available (lowest unused) Tx Queue, mark it "active".
1293 * Called only when finding queue for aggregation.
1294 * Should never return anything < 7, because they should already
1295 * be in use as EDCA AC (0-3), Command (4), HCCA (5, 6).
1296 */
1297static int iwl_txq_ctx_activate_free(struct iwl_priv *priv)
1298{
1299 int txq_id;
1300
1301 for (txq_id = 0; txq_id < priv->hw_params.max_txq_num; txq_id++)
1302 if (!test_and_set_bit(txq_id, &priv->txq_ctx_active_msk))
1303 return txq_id;
1304 return -1;
1305}
1306
1307int iwl_tx_agg_start(struct iwl_priv *priv, const u8 *ra, u16 tid, u16 *ssn)
1308{
1309 int sta_id;
1310 int tx_fifo;
1311 int txq_id;
1312 int ret;
1313 unsigned long flags;
1314 struct iwl_tid_data *tid_data;
Tomas Winkler30e553e2008-05-29 16:35:16 +08001315
1316 if (likely(tid < ARRAY_SIZE(default_tid_to_tx_fifo)))
1317 tx_fifo = default_tid_to_tx_fifo[tid];
1318 else
1319 return -EINVAL;
1320
Johannes Berge1749612008-10-27 15:59:26 -07001321 IWL_WARNING("%s on ra = %pM tid = %d\n",
1322 __func__, ra, tid);
Tomas Winkler30e553e2008-05-29 16:35:16 +08001323
1324 sta_id = iwl_find_station(priv, ra);
1325 if (sta_id == IWL_INVALID_STATION)
1326 return -ENXIO;
1327
1328 if (priv->stations[sta_id].tid[tid].agg.state != IWL_AGG_OFF) {
1329 IWL_ERROR("Start AGG when state is not IWL_AGG_OFF !\n");
1330 return -ENXIO;
1331 }
1332
1333 txq_id = iwl_txq_ctx_activate_free(priv);
1334 if (txq_id == -1)
1335 return -ENXIO;
1336
1337 spin_lock_irqsave(&priv->sta_lock, flags);
1338 tid_data = &priv->stations[sta_id].tid[tid];
1339 *ssn = SEQ_TO_SN(tid_data->seq_number);
1340 tid_data->agg.txq_id = txq_id;
1341 spin_unlock_irqrestore(&priv->sta_lock, flags);
1342
1343 ret = priv->cfg->ops->lib->txq_agg_enable(priv, txq_id, tx_fifo,
1344 sta_id, tid, *ssn);
1345 if (ret)
1346 return ret;
1347
1348 if (tid_data->tfds_in_queue == 0) {
1349 printk(KERN_ERR "HW queue is empty\n");
1350 tid_data->agg.state = IWL_AGG_ON;
1351 ieee80211_start_tx_ba_cb_irqsafe(priv->hw, ra, tid);
1352 } else {
1353 IWL_DEBUG_HT("HW queue is NOT empty: %d packets in HW queue\n",
1354 tid_data->tfds_in_queue);
1355 tid_data->agg.state = IWL_EMPTYING_HW_QUEUE_ADDBA;
1356 }
1357 return ret;
1358}
1359EXPORT_SYMBOL(iwl_tx_agg_start);
1360
1361int iwl_tx_agg_stop(struct iwl_priv *priv , const u8 *ra, u16 tid)
1362{
1363 int tx_fifo_id, txq_id, sta_id, ssn = -1;
1364 struct iwl_tid_data *tid_data;
1365 int ret, write_ptr, read_ptr;
1366 unsigned long flags;
Tomas Winkler30e553e2008-05-29 16:35:16 +08001367
1368 if (!ra) {
1369 IWL_ERROR("ra = NULL\n");
1370 return -EINVAL;
1371 }
1372
1373 if (likely(tid < ARRAY_SIZE(default_tid_to_tx_fifo)))
1374 tx_fifo_id = default_tid_to_tx_fifo[tid];
1375 else
1376 return -EINVAL;
1377
1378 sta_id = iwl_find_station(priv, ra);
1379
1380 if (sta_id == IWL_INVALID_STATION)
1381 return -ENXIO;
1382
1383 if (priv->stations[sta_id].tid[tid].agg.state != IWL_AGG_ON)
1384 IWL_WARNING("Stopping AGG while state not IWL_AGG_ON\n");
1385
1386 tid_data = &priv->stations[sta_id].tid[tid];
1387 ssn = (tid_data->seq_number & IEEE80211_SCTL_SEQ) >> 4;
1388 txq_id = tid_data->agg.txq_id;
1389 write_ptr = priv->txq[txq_id].q.write_ptr;
1390 read_ptr = priv->txq[txq_id].q.read_ptr;
1391
1392 /* The queue is not empty */
1393 if (write_ptr != read_ptr) {
1394 IWL_DEBUG_HT("Stopping a non empty AGG HW QUEUE\n");
1395 priv->stations[sta_id].tid[tid].agg.state =
1396 IWL_EMPTYING_HW_QUEUE_DELBA;
1397 return 0;
1398 }
1399
1400 IWL_DEBUG_HT("HW queue is empty\n");
1401 priv->stations[sta_id].tid[tid].agg.state = IWL_AGG_OFF;
1402
1403 spin_lock_irqsave(&priv->lock, flags);
1404 ret = priv->cfg->ops->lib->txq_agg_disable(priv, txq_id, ssn,
1405 tx_fifo_id);
1406 spin_unlock_irqrestore(&priv->lock, flags);
1407
1408 if (ret)
1409 return ret;
1410
1411 ieee80211_stop_tx_ba_cb_irqsafe(priv->hw, ra, tid);
1412
1413 return 0;
1414}
1415EXPORT_SYMBOL(iwl_tx_agg_stop);
1416
1417int iwl_txq_check_empty(struct iwl_priv *priv, int sta_id, u8 tid, int txq_id)
1418{
1419 struct iwl_queue *q = &priv->txq[txq_id].q;
1420 u8 *addr = priv->stations[sta_id].sta.sta.addr;
1421 struct iwl_tid_data *tid_data = &priv->stations[sta_id].tid[tid];
1422
1423 switch (priv->stations[sta_id].tid[tid].agg.state) {
1424 case IWL_EMPTYING_HW_QUEUE_DELBA:
1425 /* We are reclaiming the last packet of the */
1426 /* aggregated HW queue */
Tomas Winkler3fd07a12008-10-23 23:48:49 -07001427 if ((txq_id == tid_data->agg.txq_id) &&
1428 (q->read_ptr == q->write_ptr)) {
Tomas Winkler30e553e2008-05-29 16:35:16 +08001429 u16 ssn = SEQ_TO_SN(tid_data->seq_number);
1430 int tx_fifo = default_tid_to_tx_fifo[tid];
1431 IWL_DEBUG_HT("HW queue empty: continue DELBA flow\n");
1432 priv->cfg->ops->lib->txq_agg_disable(priv, txq_id,
1433 ssn, tx_fifo);
1434 tid_data->agg.state = IWL_AGG_OFF;
1435 ieee80211_stop_tx_ba_cb_irqsafe(priv->hw, addr, tid);
1436 }
1437 break;
1438 case IWL_EMPTYING_HW_QUEUE_ADDBA:
1439 /* We are reclaiming the last packet of the queue */
1440 if (tid_data->tfds_in_queue == 0) {
1441 IWL_DEBUG_HT("HW queue empty: continue ADDBA flow\n");
1442 tid_data->agg.state = IWL_AGG_ON;
1443 ieee80211_start_tx_ba_cb_irqsafe(priv->hw, addr, tid);
1444 }
1445 break;
1446 }
1447 return 0;
1448}
1449EXPORT_SYMBOL(iwl_txq_check_empty);
Tomas Winkler30e553e2008-05-29 16:35:16 +08001450
Emmanuel Grumbach653fa4a2008-06-30 17:23:11 +08001451/**
1452 * iwl_tx_status_reply_compressed_ba - Update tx status from block-ack
1453 *
1454 * Go through block-ack's bitmap of ACK'd frames, update driver's record of
1455 * ACK vs. not. This gets sent to mac80211, then to rate scaling algo.
1456 */
1457static int iwl_tx_status_reply_compressed_ba(struct iwl_priv *priv,
1458 struct iwl_ht_agg *agg,
1459 struct iwl_compressed_ba_resp *ba_resp)
1460
1461{
1462 int i, sh, ack;
1463 u16 seq_ctl = le16_to_cpu(ba_resp->seq_ctl);
1464 u16 scd_flow = le16_to_cpu(ba_resp->scd_flow);
1465 u64 bitmap;
1466 int successes = 0;
1467 struct ieee80211_tx_info *info;
1468
1469 if (unlikely(!agg->wait_for_ba)) {
1470 IWL_ERROR("Received BA when not expected\n");
1471 return -EINVAL;
1472 }
1473
1474 /* Mark that the expected block-ack response arrived */
1475 agg->wait_for_ba = 0;
1476 IWL_DEBUG_TX_REPLY("BA %d %d\n", agg->start_idx, ba_resp->seq_ctl);
1477
1478 /* Calculate shift to align block-ack bits with our Tx window bits */
Tomas Winkler3fd07a12008-10-23 23:48:49 -07001479 sh = agg->start_idx - SEQ_TO_INDEX(seq_ctl >> 4);
Emmanuel Grumbach653fa4a2008-06-30 17:23:11 +08001480 if (sh < 0) /* tbw something is wrong with indices */
1481 sh += 0x100;
1482
1483 /* don't use 64-bit values for now */
1484 bitmap = le64_to_cpu(ba_resp->bitmap) >> sh;
1485
1486 if (agg->frame_count > (64 - sh)) {
1487 IWL_DEBUG_TX_REPLY("more frames than bitmap size");
1488 return -1;
1489 }
1490
1491 /* check for success or failure according to the
1492 * transmitted bitmap and block-ack bitmap */
1493 bitmap &= agg->bitmap;
1494
1495 /* For each frame attempted in aggregation,
1496 * update driver's record of tx frame's status. */
1497 for (i = 0; i < agg->frame_count ; i++) {
Emmanuel Grumbach4aa41f12008-07-18 13:53:09 +08001498 ack = bitmap & (1ULL << i);
Emmanuel Grumbach653fa4a2008-06-30 17:23:11 +08001499 successes += !!ack;
1500 IWL_DEBUG_TX_REPLY("%s ON i=%d idx=%d raw=%d\n",
1501 ack? "ACK":"NACK", i, (agg->start_idx + i) & 0xff,
1502 agg->start_idx + i);
1503 }
1504
1505 info = IEEE80211_SKB_CB(priv->txq[scd_flow].txb[agg->start_idx].skb[0]);
1506 memset(&info->status, 0, sizeof(info->status));
1507 info->flags = IEEE80211_TX_STAT_ACK;
1508 info->flags |= IEEE80211_TX_STAT_AMPDU;
1509 info->status.ampdu_ack_map = successes;
1510 info->status.ampdu_ack_len = agg->frame_count;
1511 iwl_hwrate_to_tx_control(priv, agg->rate_n_flags, info);
1512
1513 IWL_DEBUG_TX_REPLY("Bitmap %llx\n", (unsigned long long)bitmap);
1514
1515 return 0;
1516}
1517
1518/**
1519 * iwl_rx_reply_compressed_ba - Handler for REPLY_COMPRESSED_BA
1520 *
1521 * Handles block-acknowledge notification from device, which reports success
1522 * of frames sent via aggregation.
1523 */
1524void iwl_rx_reply_compressed_ba(struct iwl_priv *priv,
1525 struct iwl_rx_mem_buffer *rxb)
1526{
1527 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
1528 struct iwl_compressed_ba_resp *ba_resp = &pkt->u.compressed_ba;
Emmanuel Grumbach653fa4a2008-06-30 17:23:11 +08001529 struct iwl_tx_queue *txq = NULL;
1530 struct iwl_ht_agg *agg;
Tomas Winkler3fd07a12008-10-23 23:48:49 -07001531 int index;
1532 int sta_id;
1533 int tid;
Emmanuel Grumbach653fa4a2008-06-30 17:23:11 +08001534
1535 /* "flow" corresponds to Tx queue */
1536 u16 scd_flow = le16_to_cpu(ba_resp->scd_flow);
1537
1538 /* "ssn" is start of block-ack Tx window, corresponds to index
1539 * (in Tx queue's circular buffer) of first TFD/frame in window */
1540 u16 ba_resp_scd_ssn = le16_to_cpu(ba_resp->scd_ssn);
1541
1542 if (scd_flow >= priv->hw_params.max_txq_num) {
Jiri Slaby6f147922008-08-11 23:49:41 +02001543 IWL_ERROR("BUG_ON scd_flow is bigger than number of queues\n");
Emmanuel Grumbach653fa4a2008-06-30 17:23:11 +08001544 return;
1545 }
1546
1547 txq = &priv->txq[scd_flow];
Tomas Winkler3fd07a12008-10-23 23:48:49 -07001548 sta_id = ba_resp->sta_id;
1549 tid = ba_resp->tid;
1550 agg = &priv->stations[sta_id].tid[tid].agg;
Emmanuel Grumbach653fa4a2008-06-30 17:23:11 +08001551
1552 /* Find index just before block-ack window */
1553 index = iwl_queue_dec_wrap(ba_resp_scd_ssn & 0xff, txq->q.n_bd);
1554
1555 /* TODO: Need to get this copy more safely - now good for debug */
1556
Tomas Winkler3fd07a12008-10-23 23:48:49 -07001557 IWL_DEBUG_TX_REPLY("REPLY_COMPRESSED_BA [%d] Received from %pM, "
Emmanuel Grumbach653fa4a2008-06-30 17:23:11 +08001558 "sta_id = %d\n",
1559 agg->wait_for_ba,
Johannes Berge1749612008-10-27 15:59:26 -07001560 (u8 *) &ba_resp->sta_addr_lo32,
Emmanuel Grumbach653fa4a2008-06-30 17:23:11 +08001561 ba_resp->sta_id);
1562 IWL_DEBUG_TX_REPLY("TID = %d, SeqCtl = %d, bitmap = 0x%llx, scd_flow = "
1563 "%d, scd_ssn = %d\n",
1564 ba_resp->tid,
1565 ba_resp->seq_ctl,
1566 (unsigned long long)le64_to_cpu(ba_resp->bitmap),
1567 ba_resp->scd_flow,
1568 ba_resp->scd_ssn);
1569 IWL_DEBUG_TX_REPLY("DAT start_idx = %d, bitmap = 0x%llx \n",
1570 agg->start_idx,
1571 (unsigned long long)agg->bitmap);
1572
1573 /* Update driver's record of ACK vs. not for each frame in window */
1574 iwl_tx_status_reply_compressed_ba(priv, agg, ba_resp);
1575
1576 /* Release all TFDs before the SSN, i.e. all TFDs in front of
1577 * block-ack window (we assume that they've been successfully
1578 * transmitted ... if not, it's too late anyway). */
1579 if (txq->q.read_ptr != (ba_resp_scd_ssn & 0xff)) {
1580 /* calculate mac80211 ampdu sw queue to wake */
Emmanuel Grumbach653fa4a2008-06-30 17:23:11 +08001581 int freed = iwl_tx_queue_reclaim(priv, scd_flow, index);
Tomas Winkler3fd07a12008-10-23 23:48:49 -07001582 priv->stations[sta_id].tid[tid].tfds_in_queue -= freed;
Emmanuel Grumbach653fa4a2008-06-30 17:23:11 +08001583
Tomas Winkler3fd07a12008-10-23 23:48:49 -07001584 if ((iwl_queue_space(&txq->q) > txq->q.low_mark) &&
1585 priv->mac80211_registered &&
1586 (agg->state != IWL_EMPTYING_HW_QUEUE_DELBA))
1587 ieee80211_wake_queue(priv->hw, txq->swq_id);
1588
1589 iwl_txq_check_empty(priv, sta_id, tid, scd_flow);
Emmanuel Grumbach653fa4a2008-06-30 17:23:11 +08001590 }
1591}
1592EXPORT_SYMBOL(iwl_rx_reply_compressed_ba);
1593
Helmut Schaa994d31f2008-07-02 12:17:06 +02001594#ifdef CONFIG_IWLWIFI_DEBUG
Tomas Winklera332f8d62008-05-29 16:35:08 +08001595#define TX_STATUS_ENTRY(x) case TX_STATUS_FAIL_ ## x: return #x
1596
1597const char *iwl_get_tx_fail_reason(u32 status)
1598{
1599 switch (status & TX_STATUS_MSK) {
1600 case TX_STATUS_SUCCESS:
1601 return "SUCCESS";
1602 TX_STATUS_ENTRY(SHORT_LIMIT);
1603 TX_STATUS_ENTRY(LONG_LIMIT);
1604 TX_STATUS_ENTRY(FIFO_UNDERRUN);
1605 TX_STATUS_ENTRY(MGMNT_ABORT);
1606 TX_STATUS_ENTRY(NEXT_FRAG);
1607 TX_STATUS_ENTRY(LIFE_EXPIRE);
1608 TX_STATUS_ENTRY(DEST_PS);
1609 TX_STATUS_ENTRY(ABORTED);
1610 TX_STATUS_ENTRY(BT_RETRY);
1611 TX_STATUS_ENTRY(STA_INVALID);
1612 TX_STATUS_ENTRY(FRAG_DROPPED);
1613 TX_STATUS_ENTRY(TID_DISABLE);
1614 TX_STATUS_ENTRY(FRAME_FLUSHED);
1615 TX_STATUS_ENTRY(INSUFFICIENT_CF_POLL);
1616 TX_STATUS_ENTRY(TX_LOCKED);
1617 TX_STATUS_ENTRY(NO_BEACON_ON_RADAR);
1618 }
1619
1620 return "UNKNOWN";
1621}
1622EXPORT_SYMBOL(iwl_get_tx_fail_reason);
1623#endif /* CONFIG_IWLWIFI_DEBUG */