blob: 7f908a17e3681a4e65963f5b7d2a637e57fb103a [file] [log] [blame]
Ivo van Doorn181d6902008-02-05 16:42:23 -05001/*
2 Copyright (C) 2004 - 2008 rt2x00 SourceForge Project
3 <http://rt2x00.serialmonkey.com>
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the
17 Free Software Foundation, Inc.,
18 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 */
20
21/*
22 Module: rt2x00lib
23 Abstract: rt2x00 queue specific routines.
24 */
25
26#include <linux/kernel.h>
27#include <linux/module.h>
Gertjan van Wingerdec4da0042008-06-16 19:56:31 +020028#include <linux/dma-mapping.h>
Ivo van Doorn181d6902008-02-05 16:42:23 -050029
30#include "rt2x00.h"
31#include "rt2x00lib.h"
32
Gertjan van Wingerdec4da0042008-06-16 19:56:31 +020033struct sk_buff *rt2x00queue_alloc_rxskb(struct rt2x00_dev *rt2x00dev,
34 struct queue_entry *entry)
Gertjan van Wingerde239c2492008-06-06 22:54:12 +020035{
Gertjan van Wingerdec4da0042008-06-16 19:56:31 +020036 struct sk_buff *skb;
37 struct skb_frame_desc *skbdesc;
Ivo van Doorn2bb057d2008-08-04 16:37:44 +020038 unsigned int frame_size;
39 unsigned int head_size = 0;
40 unsigned int tail_size = 0;
Gertjan van Wingerde239c2492008-06-06 22:54:12 +020041
42 /*
43 * The frame size includes descriptor size, because the
44 * hardware directly receive the frame into the skbuffer.
45 */
Gertjan van Wingerdec4da0042008-06-16 19:56:31 +020046 frame_size = entry->queue->data_size + entry->queue->desc_size;
Gertjan van Wingerde239c2492008-06-06 22:54:12 +020047
48 /*
Ivo van Doornff352392008-07-04 14:56:07 +020049 * The payload should be aligned to a 4-byte boundary,
50 * this means we need at least 3 bytes for moving the frame
51 * into the correct offset.
Gertjan van Wingerde239c2492008-06-06 22:54:12 +020052 */
Ivo van Doorn2bb057d2008-08-04 16:37:44 +020053 head_size = 4;
54
55 /*
56 * For IV/EIV/ICV assembly we must make sure there is
57 * at least 8 bytes bytes available in headroom for IV/EIV
58 * and 4 bytes for ICV data as tailroon.
59 */
60#ifdef CONFIG_RT2X00_LIB_CRYPTO
61 if (test_bit(CONFIG_SUPPORT_HW_CRYPTO, &rt2x00dev->flags)) {
62 head_size += 8;
63 tail_size += 4;
64 }
65#endif /* CONFIG_RT2X00_LIB_CRYPTO */
Gertjan van Wingerde239c2492008-06-06 22:54:12 +020066
67 /*
68 * Allocate skbuffer.
69 */
Ivo van Doorn2bb057d2008-08-04 16:37:44 +020070 skb = dev_alloc_skb(frame_size + head_size + tail_size);
Gertjan van Wingerde239c2492008-06-06 22:54:12 +020071 if (!skb)
72 return NULL;
73
Ivo van Doorn2bb057d2008-08-04 16:37:44 +020074 /*
75 * Make sure we not have a frame with the requested bytes
76 * available in the head and tail.
77 */
78 skb_reserve(skb, head_size);
Gertjan van Wingerde239c2492008-06-06 22:54:12 +020079 skb_put(skb, frame_size);
80
Gertjan van Wingerdec4da0042008-06-16 19:56:31 +020081 /*
82 * Populate skbdesc.
83 */
84 skbdesc = get_skb_frame_desc(skb);
85 memset(skbdesc, 0, sizeof(*skbdesc));
86 skbdesc->entry = entry;
87
88 if (test_bit(DRIVER_REQUIRE_DMA, &rt2x00dev->flags)) {
89 skbdesc->skb_dma = dma_map_single(rt2x00dev->dev,
90 skb->data,
91 skb->len,
92 DMA_FROM_DEVICE);
93 skbdesc->flags |= SKBDESC_DMA_MAPPED_RX;
94 }
95
Gertjan van Wingerde239c2492008-06-06 22:54:12 +020096 return skb;
97}
Gertjan van Wingerde30caa6e2008-06-16 19:56:08 +020098
Gertjan van Wingerdec4da0042008-06-16 19:56:31 +020099void rt2x00queue_map_txskb(struct rt2x00_dev *rt2x00dev, struct sk_buff *skb)
Gertjan van Wingerde30caa6e2008-06-16 19:56:08 +0200100{
Gertjan van Wingerdec4da0042008-06-16 19:56:31 +0200101 struct skb_frame_desc *skbdesc = get_skb_frame_desc(skb);
102
Ivo van Doorn3ee54a02008-08-29 21:04:50 +0200103 /*
104 * If device has requested headroom, we should make sure that
105 * is also mapped to the DMA so it can be used for transfering
106 * additional descriptor information to the hardware.
107 */
108 skb_push(skb, rt2x00dev->hw->extra_tx_headroom);
109
110 skbdesc->skb_dma =
111 dma_map_single(rt2x00dev->dev, skb->data, skb->len, DMA_TO_DEVICE);
112
113 /*
114 * Restore data pointer to original location again.
115 */
116 skb_pull(skb, rt2x00dev->hw->extra_tx_headroom);
117
Gertjan van Wingerdec4da0042008-06-16 19:56:31 +0200118 skbdesc->flags |= SKBDESC_DMA_MAPPED_TX;
119}
120EXPORT_SYMBOL_GPL(rt2x00queue_map_txskb);
121
122void rt2x00queue_unmap_skb(struct rt2x00_dev *rt2x00dev, struct sk_buff *skb)
123{
124 struct skb_frame_desc *skbdesc = get_skb_frame_desc(skb);
125
126 if (skbdesc->flags & SKBDESC_DMA_MAPPED_RX) {
127 dma_unmap_single(rt2x00dev->dev, skbdesc->skb_dma, skb->len,
128 DMA_FROM_DEVICE);
129 skbdesc->flags &= ~SKBDESC_DMA_MAPPED_RX;
130 }
131
132 if (skbdesc->flags & SKBDESC_DMA_MAPPED_TX) {
Ivo van Doorn3ee54a02008-08-29 21:04:50 +0200133 /*
134 * Add headroom to the skb length, it has been removed
135 * by the driver, but it was actually mapped to DMA.
136 */
137 dma_unmap_single(rt2x00dev->dev, skbdesc->skb_dma,
138 skb->len + rt2x00dev->hw->extra_tx_headroom,
Gertjan van Wingerdec4da0042008-06-16 19:56:31 +0200139 DMA_TO_DEVICE);
140 skbdesc->flags &= ~SKBDESC_DMA_MAPPED_TX;
141 }
142}
Gertjan van Wingerdec4da0042008-06-16 19:56:31 +0200143
144void rt2x00queue_free_skb(struct rt2x00_dev *rt2x00dev, struct sk_buff *skb)
145{
Ivo van Doorn9a613192008-07-05 15:11:57 +0200146 if (!skb)
147 return;
148
Ivo van Doorn61243d82008-06-20 22:10:53 +0200149 rt2x00queue_unmap_skb(rt2x00dev, skb);
Gertjan van Wingerde30caa6e2008-06-16 19:56:08 +0200150 dev_kfree_skb_any(skb);
151}
Gertjan van Wingerde239c2492008-06-06 22:54:12 +0200152
Ivo van Doornbd88a782008-07-09 15:12:44 +0200153static void rt2x00queue_create_tx_descriptor(struct queue_entry *entry,
154 struct txentry_desc *txdesc)
Ivo van Doorn7050ec82008-05-10 13:46:13 +0200155{
Johannes Berg2e92e6f2008-05-15 12:55:27 +0200156 struct rt2x00_dev *rt2x00dev = entry->queue->rt2x00dev;
Johannes Berge039fa42008-05-15 12:55:29 +0200157 struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(entry->skb);
Ivo van Doorn7050ec82008-05-10 13:46:13 +0200158 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)entry->skb->data;
Johannes Berg2e92e6f2008-05-15 12:55:27 +0200159 struct ieee80211_rate *rate =
Johannes Berge039fa42008-05-15 12:55:29 +0200160 ieee80211_get_tx_rate(rt2x00dev->hw, tx_info);
Ivo van Doorn7050ec82008-05-10 13:46:13 +0200161 const struct rt2x00_rate *hwrate;
162 unsigned int data_length;
163 unsigned int duration;
164 unsigned int residual;
Ivo van Doornd4764b22008-07-28 10:21:16 +0200165 unsigned long irqflags;
Ivo van Doorn7050ec82008-05-10 13:46:13 +0200166
167 memset(txdesc, 0, sizeof(*txdesc));
168
169 /*
170 * Initialize information from queue
171 */
172 txdesc->queue = entry->queue->qid;
173 txdesc->cw_min = entry->queue->cw_min;
174 txdesc->cw_max = entry->queue->cw_max;
175 txdesc->aifs = entry->queue->aifs;
176
Ivo van Doorn2bb057d2008-08-04 16:37:44 +0200177 /* Data length + CRC + IV/EIV/ICV/MMIC (when using encryption) */
Ivo van Doorn7050ec82008-05-10 13:46:13 +0200178 data_length = entry->skb->len + 4;
179
180 /*
Ivo van Doorn7050ec82008-05-10 13:46:13 +0200181 * Check whether this frame is to be acked.
182 */
Johannes Berge039fa42008-05-15 12:55:29 +0200183 if (!(tx_info->flags & IEEE80211_TX_CTL_NO_ACK))
Ivo van Doorn7050ec82008-05-10 13:46:13 +0200184 __set_bit(ENTRY_TXD_ACK, &txdesc->flags);
185
Ivo van Doorn2bb057d2008-08-04 16:37:44 +0200186#ifdef CONFIG_RT2X00_LIB_CRYPTO
187 if (test_bit(CONFIG_SUPPORT_HW_CRYPTO, &rt2x00dev->flags) &&
188 !entry->skb->do_not_encrypt) {
189 struct ieee80211_key_conf *hw_key = tx_info->control.hw_key;
190
191 __set_bit(ENTRY_TXD_ENCRYPT, &txdesc->flags);
192
193 txdesc->cipher = rt2x00crypto_key_to_cipher(hw_key);
194
195 if (hw_key->flags & IEEE80211_KEY_FLAG_PAIRWISE)
196 __set_bit(ENTRY_TXD_ENCRYPT_PAIRWISE, &txdesc->flags);
197
198 txdesc->key_idx = hw_key->hw_key_idx;
199 txdesc->iv_offset = ieee80211_get_hdrlen_from_skb(entry->skb);
200
201 /*
202 * Extend frame length to include all encryption overhead
203 * that will be added by the hardware.
204 */
205 data_length += rt2x00crypto_tx_overhead(tx_info);
206
207 if (!(hw_key->flags & IEEE80211_KEY_FLAG_GENERATE_IV))
208 __set_bit(ENTRY_TXD_ENCRYPT_IV, &txdesc->flags);
209
210 if (!(hw_key->flags & IEEE80211_KEY_FLAG_GENERATE_MMIC))
211 __set_bit(ENTRY_TXD_ENCRYPT_MMIC, &txdesc->flags);
212 }
213#endif /* CONFIG_RT2X00_LIB_CRYPTO */
214
Ivo van Doorn7050ec82008-05-10 13:46:13 +0200215 /*
216 * Check if this is a RTS/CTS frame
217 */
Ivo van Doornac104462008-06-16 19:54:57 +0200218 if (ieee80211_is_rts(hdr->frame_control) ||
219 ieee80211_is_cts(hdr->frame_control)) {
Ivo van Doorn7050ec82008-05-10 13:46:13 +0200220 __set_bit(ENTRY_TXD_BURST, &txdesc->flags);
Ivo van Doornac104462008-06-16 19:54:57 +0200221 if (ieee80211_is_rts(hdr->frame_control))
Ivo van Doorn7050ec82008-05-10 13:46:13 +0200222 __set_bit(ENTRY_TXD_RTS_FRAME, &txdesc->flags);
Johannes Berge039fa42008-05-15 12:55:29 +0200223 else
Ivo van Doorn7050ec82008-05-10 13:46:13 +0200224 __set_bit(ENTRY_TXD_CTS_FRAME, &txdesc->flags);
Johannes Berge039fa42008-05-15 12:55:29 +0200225 if (tx_info->control.rts_cts_rate_idx >= 0)
Johannes Berg2e92e6f2008-05-15 12:55:27 +0200226 rate =
Johannes Berge039fa42008-05-15 12:55:29 +0200227 ieee80211_get_rts_cts_rate(rt2x00dev->hw, tx_info);
Ivo van Doorn7050ec82008-05-10 13:46:13 +0200228 }
229
230 /*
231 * Determine retry information.
232 */
Johannes Berge6a98542008-10-21 12:40:02 +0200233 txdesc->retry_limit = tx_info->control.rates[0].count - 1;
Ivo van Doorn42c82852008-12-02 18:20:04 +0100234 if (txdesc->retry_limit >= rt2x00dev->long_retry)
Ivo van Doorn7050ec82008-05-10 13:46:13 +0200235 __set_bit(ENTRY_TXD_RETRY_MODE, &txdesc->flags);
236
237 /*
238 * Check if more fragments are pending
239 */
Harvey Harrison8b7b1e02008-06-11 14:21:56 -0700240 if (ieee80211_has_morefrags(hdr->frame_control)) {
Ivo van Doorn7050ec82008-05-10 13:46:13 +0200241 __set_bit(ENTRY_TXD_BURST, &txdesc->flags);
242 __set_bit(ENTRY_TXD_MORE_FRAG, &txdesc->flags);
243 }
244
245 /*
246 * Beacons and probe responses require the tsf timestamp
247 * to be inserted into the frame.
248 */
Ivo van Doornac104462008-06-16 19:54:57 +0200249 if (ieee80211_is_beacon(hdr->frame_control) ||
250 ieee80211_is_probe_resp(hdr->frame_control))
Ivo van Doorn7050ec82008-05-10 13:46:13 +0200251 __set_bit(ENTRY_TXD_REQ_TIMESTAMP, &txdesc->flags);
252
253 /*
254 * Determine with what IFS priority this frame should be send.
255 * Set ifs to IFS_SIFS when the this is not the first fragment,
256 * or this fragment came after RTS/CTS.
257 */
258 if (test_bit(ENTRY_TXD_RTS_FRAME, &txdesc->flags)) {
259 txdesc->ifs = IFS_SIFS;
Johannes Berge039fa42008-05-15 12:55:29 +0200260 } else if (tx_info->flags & IEEE80211_TX_CTL_FIRST_FRAGMENT) {
Ivo van Doorn7050ec82008-05-10 13:46:13 +0200261 __set_bit(ENTRY_TXD_FIRST_FRAGMENT, &txdesc->flags);
262 txdesc->ifs = IFS_BACKOFF;
263 } else {
264 txdesc->ifs = IFS_SIFS;
265 }
266
267 /*
Ivo van Doorn5adf6d62008-07-20 18:03:38 +0200268 * Hardware should insert sequence counter.
269 * FIXME: We insert a software sequence counter first for
270 * hardware that doesn't support hardware sequence counting.
271 *
272 * This is wrong because beacons are not getting sequence
273 * numbers assigned properly.
274 *
275 * A secondary problem exists for drivers that cannot toggle
276 * sequence counting per-frame, since those will override the
277 * sequence counter given by mac80211.
278 */
279 if (tx_info->flags & IEEE80211_TX_CTL_ASSIGN_SEQ) {
Johannes Berg25d834e2008-09-12 22:52:47 +0200280 if (likely(tx_info->control.vif)) {
281 struct rt2x00_intf *intf;
Ivo van Doorn5adf6d62008-07-20 18:03:38 +0200282
Johannes Berg25d834e2008-09-12 22:52:47 +0200283 intf = vif_to_intf(tx_info->control.vif);
Ivo van Doorn5adf6d62008-07-20 18:03:38 +0200284
Johannes Berg25d834e2008-09-12 22:52:47 +0200285 spin_lock_irqsave(&intf->seqlock, irqflags);
Ivo van Doorn5adf6d62008-07-20 18:03:38 +0200286
Johannes Berg25d834e2008-09-12 22:52:47 +0200287 if (test_bit(ENTRY_TXD_FIRST_FRAGMENT, &txdesc->flags))
288 intf->seqno += 0x10;
289 hdr->seq_ctrl &= cpu_to_le16(IEEE80211_SCTL_FRAG);
290 hdr->seq_ctrl |= cpu_to_le16(intf->seqno);
291
292 spin_unlock_irqrestore(&intf->seqlock, irqflags);
293
294 __set_bit(ENTRY_TXD_GENERATE_SEQ, &txdesc->flags);
295 }
Ivo van Doorn5adf6d62008-07-20 18:03:38 +0200296 }
297
298 /*
Ivo van Doorn7050ec82008-05-10 13:46:13 +0200299 * PLCP setup
300 * Length calculation depends on OFDM/CCK rate.
301 */
302 hwrate = rt2x00_get_rate(rate->hw_value);
303 txdesc->signal = hwrate->plcp;
304 txdesc->service = 0x04;
305
306 if (hwrate->flags & DEV_RATE_OFDM) {
307 __set_bit(ENTRY_TXD_OFDM_RATE, &txdesc->flags);
308
309 txdesc->length_high = (data_length >> 6) & 0x3f;
310 txdesc->length_low = data_length & 0x3f;
311 } else {
312 /*
313 * Convert length to microseconds.
314 */
Ivo van Doornbad13632008-11-09 20:47:00 +0100315 residual = GET_DURATION_RES(data_length, hwrate->bitrate);
316 duration = GET_DURATION(data_length, hwrate->bitrate);
Ivo van Doorn7050ec82008-05-10 13:46:13 +0200317
318 if (residual != 0) {
319 duration++;
320
321 /*
322 * Check if we need to set the Length Extension
323 */
324 if (hwrate->bitrate == 110 && residual <= 30)
325 txdesc->service |= 0x80;
326 }
327
328 txdesc->length_high = (duration >> 8) & 0xff;
329 txdesc->length_low = duration & 0xff;
330
331 /*
332 * When preamble is enabled we should set the
333 * preamble bit for the signal.
334 */
335 if (rt2x00_get_rate_preamble(rate->hw_value))
336 txdesc->signal |= 0x08;
337 }
338}
Ivo van Doorn7050ec82008-05-10 13:46:13 +0200339
Ivo van Doornbd88a782008-07-09 15:12:44 +0200340static void rt2x00queue_write_tx_descriptor(struct queue_entry *entry,
341 struct txentry_desc *txdesc)
Ivo van Doorn7050ec82008-05-10 13:46:13 +0200342{
Ivo van Doornb8697672008-06-06 22:53:14 +0200343 struct data_queue *queue = entry->queue;
344 struct rt2x00_dev *rt2x00dev = queue->rt2x00dev;
Ivo van Doorn7050ec82008-05-10 13:46:13 +0200345
346 rt2x00dev->ops->lib->write_tx_desc(rt2x00dev, entry->skb, txdesc);
347
348 /*
349 * All processing on the frame has been completed, this means
350 * it is now ready to be dumped to userspace through debugfs.
351 */
352 rt2x00debug_dump_frame(rt2x00dev, DUMP_FRAME_TX, entry->skb);
353
354 /*
Ivo van Doornb8697672008-06-06 22:53:14 +0200355 * Check if we need to kick the queue, there are however a few rules
356 * 1) Don't kick beacon queue
357 * 2) Don't kick unless this is the last in frame in a burst.
358 * When the burst flag is set, this frame is always followed
359 * by another frame which in some way are related to eachother.
360 * This is true for fragments, RTS or CTS-to-self frames.
361 * 3) Rule 2 can be broken when the available entries
362 * in the queue are less then a certain threshold.
Ivo van Doorn7050ec82008-05-10 13:46:13 +0200363 */
Ivo van Doornb8697672008-06-06 22:53:14 +0200364 if (entry->queue->qid == QID_BEACON)
365 return;
366
367 if (rt2x00queue_threshold(queue) ||
368 !test_bit(ENTRY_TXD_BURST, &txdesc->flags))
369 rt2x00dev->ops->lib->kick_tx_queue(rt2x00dev, queue->qid);
Ivo van Doorn7050ec82008-05-10 13:46:13 +0200370}
Ivo van Doorn7050ec82008-05-10 13:46:13 +0200371
Ivo van Doorn6db37862008-06-06 22:50:28 +0200372int rt2x00queue_write_tx_frame(struct data_queue *queue, struct sk_buff *skb)
373{
Johannes Berge6a98542008-10-21 12:40:02 +0200374 struct ieee80211_tx_info *tx_info;
Ivo van Doorn6db37862008-06-06 22:50:28 +0200375 struct queue_entry *entry = rt2x00queue_get_entry(queue, Q_INDEX);
376 struct txentry_desc txdesc;
Ivo van Doornd74f5ba2008-06-16 19:56:54 +0200377 struct skb_frame_desc *skbdesc;
Felix Fietkau8713a7c2008-10-14 23:57:43 +0200378 unsigned int iv_len = 0;
Johannes Berge6a98542008-10-21 12:40:02 +0200379 u8 rate_idx, rate_flags;
Ivo van Doorn6db37862008-06-06 22:50:28 +0200380
381 if (unlikely(rt2x00queue_full(queue)))
Ivo van Doorn0e3de992008-11-12 00:01:37 +0100382 return -ENOBUFS;
Ivo van Doorn6db37862008-06-06 22:50:28 +0200383
Ivo van Doorn0262ab02008-08-29 21:04:26 +0200384 if (test_and_set_bit(ENTRY_OWNER_DEVICE_DATA, &entry->flags)) {
Ivo van Doorn6db37862008-06-06 22:50:28 +0200385 ERROR(queue->rt2x00dev,
386 "Arrived at non-free entry in the non-full queue %d.\n"
387 "Please file bug report to %s.\n",
388 queue->qid, DRV_PROJECT);
389 return -EINVAL;
390 }
391
392 /*
393 * Copy all TX descriptor information into txdesc,
394 * after that we are free to use the skb->cb array
395 * for our information.
396 */
397 entry->skb = skb;
398 rt2x00queue_create_tx_descriptor(entry, &txdesc);
399
Felix Fietkau8713a7c2008-10-14 23:57:43 +0200400 if (IEEE80211_SKB_CB(skb)->control.hw_key != NULL)
401 iv_len = IEEE80211_SKB_CB(skb)->control.hw_key->iv_len;
402
Ivo van Doornd74f5ba2008-06-16 19:56:54 +0200403 /*
Johannes Berge6a98542008-10-21 12:40:02 +0200404 * All information is retrieved from the skb->cb array,
Ivo van Doorn2bb057d2008-08-04 16:37:44 +0200405 * now we should claim ownership of the driver part of that
Johannes Berge6a98542008-10-21 12:40:02 +0200406 * array, preserving the bitrate index and flags.
Ivo van Doornd74f5ba2008-06-16 19:56:54 +0200407 */
Johannes Berge6a98542008-10-21 12:40:02 +0200408 tx_info = IEEE80211_SKB_CB(skb);
409 rate_idx = tx_info->control.rates[0].idx;
410 rate_flags = tx_info->control.rates[0].flags;
Ivo van Doorn0e3de992008-11-12 00:01:37 +0100411 skbdesc = get_skb_frame_desc(skb);
Ivo van Doornd74f5ba2008-06-16 19:56:54 +0200412 memset(skbdesc, 0, sizeof(*skbdesc));
413 skbdesc->entry = entry;
Johannes Berge6a98542008-10-21 12:40:02 +0200414 skbdesc->tx_rate_idx = rate_idx;
415 skbdesc->tx_rate_flags = rate_flags;
Ivo van Doornd74f5ba2008-06-16 19:56:54 +0200416
Ivo van Doorn2bb057d2008-08-04 16:37:44 +0200417 /*
418 * When hardware encryption is supported, and this frame
419 * is to be encrypted, we should strip the IV/EIV data from
420 * the frame so we can provide it to the driver seperately.
421 */
422 if (test_bit(ENTRY_TXD_ENCRYPT, &txdesc.flags) &&
Ivo van Doorn0e3de992008-11-12 00:01:37 +0100423 !test_bit(ENTRY_TXD_ENCRYPT_IV, &txdesc.flags))
Ivo van Doorn2bb057d2008-08-04 16:37:44 +0200424 rt2x00crypto_tx_remove_iv(skb, iv_len);
425
426 /*
427 * It could be possible that the queue was corrupted and this
Ivo van Doorn0e3de992008-11-12 00:01:37 +0100428 * call failed. Since we always return NETDEV_TX_OK to mac80211,
429 * this frame will simply be dropped.
Ivo van Doorn2bb057d2008-08-04 16:37:44 +0200430 */
Ivo van Doorn6db37862008-06-06 22:50:28 +0200431 if (unlikely(queue->rt2x00dev->ops->lib->write_tx_data(entry))) {
Ivo van Doorn0262ab02008-08-29 21:04:26 +0200432 clear_bit(ENTRY_OWNER_DEVICE_DATA, &entry->flags);
Ivo van Doorn2bb057d2008-08-04 16:37:44 +0200433 entry->skb = NULL;
Ivo van Doorn0e3de992008-11-12 00:01:37 +0100434 return -EIO;
Ivo van Doorn6db37862008-06-06 22:50:28 +0200435 }
436
Ivo van Doornd74f5ba2008-06-16 19:56:54 +0200437 if (test_bit(DRIVER_REQUIRE_DMA, &queue->rt2x00dev->flags))
438 rt2x00queue_map_txskb(queue->rt2x00dev, skb);
439
Ivo van Doorn0262ab02008-08-29 21:04:26 +0200440 set_bit(ENTRY_DATA_PENDING, &entry->flags);
Ivo van Doorn6db37862008-06-06 22:50:28 +0200441
442 rt2x00queue_index_inc(queue, Q_INDEX);
443 rt2x00queue_write_tx_descriptor(entry, &txdesc);
444
445 return 0;
446}
447
Ivo van Doornbd88a782008-07-09 15:12:44 +0200448int rt2x00queue_update_beacon(struct rt2x00_dev *rt2x00dev,
449 struct ieee80211_vif *vif)
450{
451 struct rt2x00_intf *intf = vif_to_intf(vif);
452 struct skb_frame_desc *skbdesc;
453 struct txentry_desc txdesc;
454 __le32 desc[16];
455
456 if (unlikely(!intf->beacon))
457 return -ENOBUFS;
458
459 intf->beacon->skb = ieee80211_beacon_get(rt2x00dev->hw, vif);
460 if (!intf->beacon->skb)
461 return -ENOMEM;
462
463 /*
464 * Copy all TX descriptor information into txdesc,
465 * after that we are free to use the skb->cb array
466 * for our information.
467 */
468 rt2x00queue_create_tx_descriptor(intf->beacon, &txdesc);
469
470 /*
471 * For the descriptor we use a local array from where the
472 * driver can move it to the correct location required for
473 * the hardware.
474 */
475 memset(desc, 0, sizeof(desc));
476
477 /*
478 * Fill in skb descriptor
479 */
480 skbdesc = get_skb_frame_desc(intf->beacon->skb);
481 memset(skbdesc, 0, sizeof(*skbdesc));
482 skbdesc->desc = desc;
483 skbdesc->desc_len = intf->beacon->queue->desc_size;
484 skbdesc->entry = intf->beacon;
485
486 /*
487 * Write TX descriptor into reserved room in front of the beacon.
488 */
489 rt2x00queue_write_tx_descriptor(intf->beacon, &txdesc);
490
491 /*
492 * Send beacon to hardware.
493 * Also enable beacon generation, which might have been disabled
494 * by the driver during the config_beacon() callback function.
495 */
496 rt2x00dev->ops->lib->write_beacon(intf->beacon);
497 rt2x00dev->ops->lib->kick_tx_queue(rt2x00dev, QID_BEACON);
498
499 return 0;
500}
501
Ivo van Doorn181d6902008-02-05 16:42:23 -0500502struct data_queue *rt2x00queue_get_queue(struct rt2x00_dev *rt2x00dev,
Ivo van Doorne58c6ac2008-04-21 19:00:47 +0200503 const enum data_queue_qid queue)
Ivo van Doorn181d6902008-02-05 16:42:23 -0500504{
505 int atim = test_bit(DRIVER_REQUIRE_ATIM_QUEUE, &rt2x00dev->flags);
506
Gertjan van Wingerde61448f82008-05-10 13:43:33 +0200507 if (queue < rt2x00dev->ops->tx_queues && rt2x00dev->tx)
Ivo van Doorn181d6902008-02-05 16:42:23 -0500508 return &rt2x00dev->tx[queue];
509
510 if (!rt2x00dev->bcn)
511 return NULL;
512
Ivo van Doorne58c6ac2008-04-21 19:00:47 +0200513 if (queue == QID_BEACON)
Ivo van Doorn181d6902008-02-05 16:42:23 -0500514 return &rt2x00dev->bcn[0];
Ivo van Doorne58c6ac2008-04-21 19:00:47 +0200515 else if (queue == QID_ATIM && atim)
Ivo van Doorn181d6902008-02-05 16:42:23 -0500516 return &rt2x00dev->bcn[1];
517
518 return NULL;
519}
520EXPORT_SYMBOL_GPL(rt2x00queue_get_queue);
521
522struct queue_entry *rt2x00queue_get_entry(struct data_queue *queue,
523 enum queue_index index)
524{
525 struct queue_entry *entry;
Ivo van Doorn5f46c4d2008-03-09 22:44:30 +0100526 unsigned long irqflags;
Ivo van Doorn181d6902008-02-05 16:42:23 -0500527
528 if (unlikely(index >= Q_INDEX_MAX)) {
529 ERROR(queue->rt2x00dev,
530 "Entry requested from invalid index type (%d)\n", index);
531 return NULL;
532 }
533
Ivo van Doorn5f46c4d2008-03-09 22:44:30 +0100534 spin_lock_irqsave(&queue->lock, irqflags);
Ivo van Doorn181d6902008-02-05 16:42:23 -0500535
536 entry = &queue->entries[queue->index[index]];
537
Ivo van Doorn5f46c4d2008-03-09 22:44:30 +0100538 spin_unlock_irqrestore(&queue->lock, irqflags);
Ivo van Doorn181d6902008-02-05 16:42:23 -0500539
540 return entry;
541}
542EXPORT_SYMBOL_GPL(rt2x00queue_get_entry);
543
544void rt2x00queue_index_inc(struct data_queue *queue, enum queue_index index)
545{
Ivo van Doorn5f46c4d2008-03-09 22:44:30 +0100546 unsigned long irqflags;
547
Ivo van Doorn181d6902008-02-05 16:42:23 -0500548 if (unlikely(index >= Q_INDEX_MAX)) {
549 ERROR(queue->rt2x00dev,
550 "Index change on invalid index type (%d)\n", index);
551 return;
552 }
553
Ivo van Doorn5f46c4d2008-03-09 22:44:30 +0100554 spin_lock_irqsave(&queue->lock, irqflags);
Ivo van Doorn181d6902008-02-05 16:42:23 -0500555
556 queue->index[index]++;
557 if (queue->index[index] >= queue->limit)
558 queue->index[index] = 0;
559
Ivo van Doorn10b6b802008-02-03 15:55:21 +0100560 if (index == Q_INDEX) {
561 queue->length++;
562 } else if (index == Q_INDEX_DONE) {
563 queue->length--;
John Daiker55887512008-10-17 12:16:17 -0700564 queue->count++;
Ivo van Doorn10b6b802008-02-03 15:55:21 +0100565 }
Ivo van Doorn181d6902008-02-05 16:42:23 -0500566
Ivo van Doorn5f46c4d2008-03-09 22:44:30 +0100567 spin_unlock_irqrestore(&queue->lock, irqflags);
Ivo van Doorn181d6902008-02-05 16:42:23 -0500568}
Ivo van Doorn181d6902008-02-05 16:42:23 -0500569
570static void rt2x00queue_reset(struct data_queue *queue)
571{
Ivo van Doorn5f46c4d2008-03-09 22:44:30 +0100572 unsigned long irqflags;
573
574 spin_lock_irqsave(&queue->lock, irqflags);
Ivo van Doorn181d6902008-02-05 16:42:23 -0500575
576 queue->count = 0;
577 queue->length = 0;
578 memset(queue->index, 0, sizeof(queue->index));
579
Ivo van Doorn5f46c4d2008-03-09 22:44:30 +0100580 spin_unlock_irqrestore(&queue->lock, irqflags);
Ivo van Doorn181d6902008-02-05 16:42:23 -0500581}
582
Ivo van Doorn798b7ad2008-11-08 15:25:33 +0100583void rt2x00queue_init_queues(struct rt2x00_dev *rt2x00dev)
Ivo van Doorn181d6902008-02-05 16:42:23 -0500584{
585 struct data_queue *queue;
586 unsigned int i;
587
Ivo van Doorn798b7ad2008-11-08 15:25:33 +0100588 queue_for_each(rt2x00dev, queue) {
Ivo van Doorn181d6902008-02-05 16:42:23 -0500589 rt2x00queue_reset(queue);
590
Ivo van Doorn9c0ab712008-07-21 19:06:02 +0200591 for (i = 0; i < queue->limit; i++) {
592 queue->entries[i].flags = 0;
593
Ivo van Doorn798b7ad2008-11-08 15:25:33 +0100594 rt2x00dev->ops->lib->clear_entry(&queue->entries[i]);
Ivo van Doorn9c0ab712008-07-21 19:06:02 +0200595 }
Ivo van Doorn181d6902008-02-05 16:42:23 -0500596 }
597}
598
599static int rt2x00queue_alloc_entries(struct data_queue *queue,
600 const struct data_queue_desc *qdesc)
601{
602 struct queue_entry *entries;
603 unsigned int entry_size;
604 unsigned int i;
605
606 rt2x00queue_reset(queue);
607
608 queue->limit = qdesc->entry_num;
Ivo van Doornb8697672008-06-06 22:53:14 +0200609 queue->threshold = DIV_ROUND_UP(qdesc->entry_num, 10);
Ivo van Doorn181d6902008-02-05 16:42:23 -0500610 queue->data_size = qdesc->data_size;
611 queue->desc_size = qdesc->desc_size;
612
613 /*
614 * Allocate all queue entries.
615 */
616 entry_size = sizeof(*entries) + qdesc->priv_size;
617 entries = kzalloc(queue->limit * entry_size, GFP_KERNEL);
618 if (!entries)
619 return -ENOMEM;
620
621#define QUEUE_ENTRY_PRIV_OFFSET(__base, __index, __limit, __esize, __psize) \
Adam Baker231be4e2008-02-10 22:48:19 +0100622 ( ((char *)(__base)) + ((__limit) * (__esize)) + \
623 ((__index) * (__psize)) )
Ivo van Doorn181d6902008-02-05 16:42:23 -0500624
625 for (i = 0; i < queue->limit; i++) {
626 entries[i].flags = 0;
627 entries[i].queue = queue;
628 entries[i].skb = NULL;
629 entries[i].entry_idx = i;
630 entries[i].priv_data =
631 QUEUE_ENTRY_PRIV_OFFSET(entries, i, queue->limit,
632 sizeof(*entries), qdesc->priv_size);
633 }
634
635#undef QUEUE_ENTRY_PRIV_OFFSET
636
637 queue->entries = entries;
638
639 return 0;
640}
641
Gertjan van Wingerdec4da0042008-06-16 19:56:31 +0200642static void rt2x00queue_free_skbs(struct rt2x00_dev *rt2x00dev,
643 struct data_queue *queue)
Gertjan van Wingerde30caa6e2008-06-16 19:56:08 +0200644{
645 unsigned int i;
646
647 if (!queue->entries)
648 return;
649
650 for (i = 0; i < queue->limit; i++) {
651 if (queue->entries[i].skb)
Gertjan van Wingerdec4da0042008-06-16 19:56:31 +0200652 rt2x00queue_free_skb(rt2x00dev, queue->entries[i].skb);
Gertjan van Wingerde30caa6e2008-06-16 19:56:08 +0200653 }
654}
655
Gertjan van Wingerdec4da0042008-06-16 19:56:31 +0200656static int rt2x00queue_alloc_rxskbs(struct rt2x00_dev *rt2x00dev,
657 struct data_queue *queue)
Gertjan van Wingerde30caa6e2008-06-16 19:56:08 +0200658{
659 unsigned int i;
660 struct sk_buff *skb;
661
662 for (i = 0; i < queue->limit; i++) {
Gertjan van Wingerdec4da0042008-06-16 19:56:31 +0200663 skb = rt2x00queue_alloc_rxskb(rt2x00dev, &queue->entries[i]);
Gertjan van Wingerde30caa6e2008-06-16 19:56:08 +0200664 if (!skb)
Ivo van Doorn61243d82008-06-20 22:10:53 +0200665 return -ENOMEM;
Gertjan van Wingerde30caa6e2008-06-16 19:56:08 +0200666 queue->entries[i].skb = skb;
667 }
668
669 return 0;
Gertjan van Wingerde30caa6e2008-06-16 19:56:08 +0200670}
671
Ivo van Doorn181d6902008-02-05 16:42:23 -0500672int rt2x00queue_initialize(struct rt2x00_dev *rt2x00dev)
673{
674 struct data_queue *queue;
675 int status;
676
Ivo van Doorn181d6902008-02-05 16:42:23 -0500677 status = rt2x00queue_alloc_entries(rt2x00dev->rx, rt2x00dev->ops->rx);
678 if (status)
679 goto exit;
680
681 tx_queue_for_each(rt2x00dev, queue) {
682 status = rt2x00queue_alloc_entries(queue, rt2x00dev->ops->tx);
683 if (status)
684 goto exit;
685 }
686
687 status = rt2x00queue_alloc_entries(rt2x00dev->bcn, rt2x00dev->ops->bcn);
688 if (status)
689 goto exit;
690
Gertjan van Wingerde30caa6e2008-06-16 19:56:08 +0200691 if (test_bit(DRIVER_REQUIRE_ATIM_QUEUE, &rt2x00dev->flags)) {
692 status = rt2x00queue_alloc_entries(&rt2x00dev->bcn[1],
693 rt2x00dev->ops->atim);
694 if (status)
695 goto exit;
696 }
Ivo van Doorn181d6902008-02-05 16:42:23 -0500697
Gertjan van Wingerdec4da0042008-06-16 19:56:31 +0200698 status = rt2x00queue_alloc_rxskbs(rt2x00dev, rt2x00dev->rx);
Ivo van Doorn181d6902008-02-05 16:42:23 -0500699 if (status)
700 goto exit;
701
702 return 0;
703
704exit:
705 ERROR(rt2x00dev, "Queue entries allocation failed.\n");
706
707 rt2x00queue_uninitialize(rt2x00dev);
708
709 return status;
710}
711
712void rt2x00queue_uninitialize(struct rt2x00_dev *rt2x00dev)
713{
714 struct data_queue *queue;
715
Gertjan van Wingerdec4da0042008-06-16 19:56:31 +0200716 rt2x00queue_free_skbs(rt2x00dev, rt2x00dev->rx);
Gertjan van Wingerde30caa6e2008-06-16 19:56:08 +0200717
Ivo van Doorn181d6902008-02-05 16:42:23 -0500718 queue_for_each(rt2x00dev, queue) {
719 kfree(queue->entries);
720 queue->entries = NULL;
721 }
722}
723
Ivo van Doorn8f539272008-02-10 22:51:41 +0100724static void rt2x00queue_init(struct rt2x00_dev *rt2x00dev,
725 struct data_queue *queue, enum data_queue_qid qid)
726{
727 spin_lock_init(&queue->lock);
728
729 queue->rt2x00dev = rt2x00dev;
730 queue->qid = qid;
Ivo van Doorn2af0a572008-08-29 21:05:45 +0200731 queue->txop = 0;
Ivo van Doorn8f539272008-02-10 22:51:41 +0100732 queue->aifs = 2;
733 queue->cw_min = 5;
734 queue->cw_max = 10;
735}
736
Ivo van Doorn181d6902008-02-05 16:42:23 -0500737int rt2x00queue_allocate(struct rt2x00_dev *rt2x00dev)
738{
739 struct data_queue *queue;
740 enum data_queue_qid qid;
741 unsigned int req_atim =
742 !!test_bit(DRIVER_REQUIRE_ATIM_QUEUE, &rt2x00dev->flags);
743
744 /*
745 * We need the following queues:
746 * RX: 1
Gertjan van Wingerde61448f82008-05-10 13:43:33 +0200747 * TX: ops->tx_queues
Ivo van Doorn181d6902008-02-05 16:42:23 -0500748 * Beacon: 1
749 * Atim: 1 (if required)
750 */
Gertjan van Wingerde61448f82008-05-10 13:43:33 +0200751 rt2x00dev->data_queues = 2 + rt2x00dev->ops->tx_queues + req_atim;
Ivo van Doorn181d6902008-02-05 16:42:23 -0500752
753 queue = kzalloc(rt2x00dev->data_queues * sizeof(*queue), GFP_KERNEL);
754 if (!queue) {
755 ERROR(rt2x00dev, "Queue allocation failed.\n");
756 return -ENOMEM;
757 }
758
759 /*
760 * Initialize pointers
761 */
762 rt2x00dev->rx = queue;
763 rt2x00dev->tx = &queue[1];
Gertjan van Wingerde61448f82008-05-10 13:43:33 +0200764 rt2x00dev->bcn = &queue[1 + rt2x00dev->ops->tx_queues];
Ivo van Doorn181d6902008-02-05 16:42:23 -0500765
766 /*
767 * Initialize queue parameters.
768 * RX: qid = QID_RX
769 * TX: qid = QID_AC_BE + index
770 * TX: cw_min: 2^5 = 32.
771 * TX: cw_max: 2^10 = 1024.
Ivo van Doorn565a0192008-06-03 20:29:05 +0200772 * BCN: qid = QID_BEACON
773 * ATIM: qid = QID_ATIM
Ivo van Doorn181d6902008-02-05 16:42:23 -0500774 */
Ivo van Doorn8f539272008-02-10 22:51:41 +0100775 rt2x00queue_init(rt2x00dev, rt2x00dev->rx, QID_RX);
776
Ivo van Doorn181d6902008-02-05 16:42:23 -0500777 qid = QID_AC_BE;
Ivo van Doorn8f539272008-02-10 22:51:41 +0100778 tx_queue_for_each(rt2x00dev, queue)
779 rt2x00queue_init(rt2x00dev, queue, qid++);
Ivo van Doorn181d6902008-02-05 16:42:23 -0500780
Ivo van Doorn565a0192008-06-03 20:29:05 +0200781 rt2x00queue_init(rt2x00dev, &rt2x00dev->bcn[0], QID_BEACON);
Ivo van Doorn181d6902008-02-05 16:42:23 -0500782 if (req_atim)
Ivo van Doorn565a0192008-06-03 20:29:05 +0200783 rt2x00queue_init(rt2x00dev, &rt2x00dev->bcn[1], QID_ATIM);
Ivo van Doorn181d6902008-02-05 16:42:23 -0500784
785 return 0;
786}
787
788void rt2x00queue_free(struct rt2x00_dev *rt2x00dev)
789{
790 kfree(rt2x00dev->rx);
791 rt2x00dev->rx = NULL;
792 rt2x00dev->tx = NULL;
793 rt2x00dev->bcn = NULL;
794}