rt2x00: Use unlikely for error case in rt2x00queue_write_tx_frame
[linux-flexiantxendom0-natty.git] / drivers / net / wireless / rt2x00 / rt2x00queue.c
1 /*
2         Copyright (C) 2010 Willow Garage <http://www.willowgarage.com>
3         Copyright (C) 2004 - 2010 Ivo van Doorn <IvDoorn@gmail.com>
4         Copyright (C) 2004 - 2009 Gertjan van Wingerde <gwingerde@gmail.com>
5         <http://rt2x00.serialmonkey.com>
6
7         This program is free software; you can redistribute it and/or modify
8         it under the terms of the GNU General Public License as published by
9         the Free Software Foundation; either version 2 of the License, or
10         (at your option) any later version.
11
12         This program is distributed in the hope that it will be useful,
13         but WITHOUT ANY WARRANTY; without even the implied warranty of
14         MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15         GNU General Public License for more details.
16
17         You should have received a copy of the GNU General Public License
18         along with this program; if not, write to the
19         Free Software Foundation, Inc.,
20         59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21  */
22
23 /*
24         Module: rt2x00lib
25         Abstract: rt2x00 queue specific routines.
26  */
27
28 #include <linux/slab.h>
29 #include <linux/kernel.h>
30 #include <linux/module.h>
31 #include <linux/dma-mapping.h>
32
33 #include "rt2x00.h"
34 #include "rt2x00lib.h"
35
36 struct sk_buff *rt2x00queue_alloc_rxskb(struct rt2x00_dev *rt2x00dev,
37                                         struct queue_entry *entry)
38 {
39         struct sk_buff *skb;
40         struct skb_frame_desc *skbdesc;
41         unsigned int frame_size;
42         unsigned int head_size = 0;
43         unsigned int tail_size = 0;
44
45         /*
46          * The frame size includes descriptor size, because the
47          * hardware directly receive the frame into the skbuffer.
48          */
49         frame_size = entry->queue->data_size + entry->queue->desc_size;
50
51         /*
52          * The payload should be aligned to a 4-byte boundary,
53          * this means we need at least 3 bytes for moving the frame
54          * into the correct offset.
55          */
56         head_size = 4;
57
58         /*
59          * For IV/EIV/ICV assembly we must make sure there is
60          * at least 8 bytes bytes available in headroom for IV/EIV
61          * and 8 bytes for ICV data as tailroon.
62          */
63         if (test_bit(CONFIG_SUPPORT_HW_CRYPTO, &rt2x00dev->flags)) {
64                 head_size += 8;
65                 tail_size += 8;
66         }
67
68         /*
69          * Allocate skbuffer.
70          */
71         skb = dev_alloc_skb(frame_size + head_size + tail_size);
72         if (!skb)
73                 return NULL;
74
75         /*
76          * Make sure we not have a frame with the requested bytes
77          * available in the head and tail.
78          */
79         skb_reserve(skb, head_size);
80         skb_put(skb, frame_size);
81
82         /*
83          * Populate skbdesc.
84          */
85         skbdesc = get_skb_frame_desc(skb);
86         memset(skbdesc, 0, sizeof(*skbdesc));
87         skbdesc->entry = entry;
88
89         if (test_bit(DRIVER_REQUIRE_DMA, &rt2x00dev->flags)) {
90                 skbdesc->skb_dma = dma_map_single(rt2x00dev->dev,
91                                                   skb->data,
92                                                   skb->len,
93                                                   DMA_FROM_DEVICE);
94                 skbdesc->flags |= SKBDESC_DMA_MAPPED_RX;
95         }
96
97         return skb;
98 }
99
100 void rt2x00queue_map_txskb(struct rt2x00_dev *rt2x00dev, struct sk_buff *skb)
101 {
102         struct skb_frame_desc *skbdesc = get_skb_frame_desc(skb);
103
104         skbdesc->skb_dma =
105             dma_map_single(rt2x00dev->dev, skb->data, skb->len, DMA_TO_DEVICE);
106         skbdesc->flags |= SKBDESC_DMA_MAPPED_TX;
107 }
108 EXPORT_SYMBOL_GPL(rt2x00queue_map_txskb);
109
110 void rt2x00queue_unmap_skb(struct rt2x00_dev *rt2x00dev, struct sk_buff *skb)
111 {
112         struct skb_frame_desc *skbdesc = get_skb_frame_desc(skb);
113
114         if (skbdesc->flags & SKBDESC_DMA_MAPPED_RX) {
115                 dma_unmap_single(rt2x00dev->dev, skbdesc->skb_dma, skb->len,
116                                  DMA_FROM_DEVICE);
117                 skbdesc->flags &= ~SKBDESC_DMA_MAPPED_RX;
118         } else if (skbdesc->flags & SKBDESC_DMA_MAPPED_TX) {
119                 dma_unmap_single(rt2x00dev->dev, skbdesc->skb_dma, skb->len,
120                                  DMA_TO_DEVICE);
121                 skbdesc->flags &= ~SKBDESC_DMA_MAPPED_TX;
122         }
123 }
124 EXPORT_SYMBOL_GPL(rt2x00queue_unmap_skb);
125
126 void rt2x00queue_free_skb(struct rt2x00_dev *rt2x00dev, struct sk_buff *skb)
127 {
128         if (!skb)
129                 return;
130
131         rt2x00queue_unmap_skb(rt2x00dev, skb);
132         dev_kfree_skb_any(skb);
133 }
134
135 void rt2x00queue_align_frame(struct sk_buff *skb)
136 {
137         unsigned int frame_length = skb->len;
138         unsigned int align = ALIGN_SIZE(skb, 0);
139
140         if (!align)
141                 return;
142
143         skb_push(skb, align);
144         memmove(skb->data, skb->data + align, frame_length);
145         skb_trim(skb, frame_length);
146 }
147
148 void rt2x00queue_align_payload(struct sk_buff *skb, unsigned int header_length)
149 {
150         unsigned int frame_length = skb->len;
151         unsigned int align = ALIGN_SIZE(skb, header_length);
152
153         if (!align)
154                 return;
155
156         skb_push(skb, align);
157         memmove(skb->data, skb->data + align, frame_length);
158         skb_trim(skb, frame_length);
159 }
160
161 void rt2x00queue_insert_l2pad(struct sk_buff *skb, unsigned int header_length)
162 {
163         unsigned int payload_length = skb->len - header_length;
164         unsigned int header_align = ALIGN_SIZE(skb, 0);
165         unsigned int payload_align = ALIGN_SIZE(skb, header_length);
166         unsigned int l2pad = payload_length ? L2PAD_SIZE(header_length) : 0;
167
168         /*
169          * Adjust the header alignment if the payload needs to be moved more
170          * than the header.
171          */
172         if (payload_align > header_align)
173                 header_align += 4;
174
175         /* There is nothing to do if no alignment is needed */
176         if (!header_align)
177                 return;
178
179         /* Reserve the amount of space needed in front of the frame */
180         skb_push(skb, header_align);
181
182         /*
183          * Move the header.
184          */
185         memmove(skb->data, skb->data + header_align, header_length);
186
187         /* Move the payload, if present and if required */
188         if (payload_length && payload_align)
189                 memmove(skb->data + header_length + l2pad,
190                         skb->data + header_length + l2pad + payload_align,
191                         payload_length);
192
193         /* Trim the skb to the correct size */
194         skb_trim(skb, header_length + l2pad + payload_length);
195 }
196
197 void rt2x00queue_remove_l2pad(struct sk_buff *skb, unsigned int header_length)
198 {
199         unsigned int l2pad = L2PAD_SIZE(header_length);
200
201         if (!l2pad)
202                 return;
203
204         memmove(skb->data + l2pad, skb->data, header_length);
205         skb_pull(skb, l2pad);
206 }
207
208 static void rt2x00queue_create_tx_descriptor_seq(struct queue_entry *entry,
209                                                  struct txentry_desc *txdesc)
210 {
211         struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(entry->skb);
212         struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)entry->skb->data;
213         struct rt2x00_intf *intf = vif_to_intf(tx_info->control.vif);
214         unsigned long irqflags;
215
216         if (!(tx_info->flags & IEEE80211_TX_CTL_ASSIGN_SEQ) ||
217             unlikely(!tx_info->control.vif))
218                 return;
219
220         /*
221          * Hardware should insert sequence counter.
222          * FIXME: We insert a software sequence counter first for
223          * hardware that doesn't support hardware sequence counting.
224          *
225          * This is wrong because beacons are not getting sequence
226          * numbers assigned properly.
227          *
228          * A secondary problem exists for drivers that cannot toggle
229          * sequence counting per-frame, since those will override the
230          * sequence counter given by mac80211.
231          */
232         spin_lock_irqsave(&intf->seqlock, irqflags);
233
234         if (test_bit(ENTRY_TXD_FIRST_FRAGMENT, &txdesc->flags))
235                 intf->seqno += 0x10;
236         hdr->seq_ctrl &= cpu_to_le16(IEEE80211_SCTL_FRAG);
237         hdr->seq_ctrl |= cpu_to_le16(intf->seqno);
238
239         spin_unlock_irqrestore(&intf->seqlock, irqflags);
240
241         __set_bit(ENTRY_TXD_GENERATE_SEQ, &txdesc->flags);
242 }
243
244 static void rt2x00queue_create_tx_descriptor_plcp(struct queue_entry *entry,
245                                                   struct txentry_desc *txdesc,
246                                                   const struct rt2x00_rate *hwrate)
247 {
248         struct rt2x00_dev *rt2x00dev = entry->queue->rt2x00dev;
249         struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(entry->skb);
250         struct ieee80211_tx_rate *txrate = &tx_info->control.rates[0];
251         unsigned int data_length;
252         unsigned int duration;
253         unsigned int residual;
254
255         /* Data length + CRC + Crypto overhead (IV/EIV/ICV/MIC) */
256         data_length = entry->skb->len + 4;
257         data_length += rt2x00crypto_tx_overhead(rt2x00dev, entry->skb);
258
259         /*
260          * PLCP setup
261          * Length calculation depends on OFDM/CCK rate.
262          */
263         txdesc->signal = hwrate->plcp;
264         txdesc->service = 0x04;
265
266         if (hwrate->flags & DEV_RATE_OFDM) {
267                 txdesc->length_high = (data_length >> 6) & 0x3f;
268                 txdesc->length_low = data_length & 0x3f;
269         } else {
270                 /*
271                  * Convert length to microseconds.
272                  */
273                 residual = GET_DURATION_RES(data_length, hwrate->bitrate);
274                 duration = GET_DURATION(data_length, hwrate->bitrate);
275
276                 if (residual != 0) {
277                         duration++;
278
279                         /*
280                          * Check if we need to set the Length Extension
281                          */
282                         if (hwrate->bitrate == 110 && residual <= 30)
283                                 txdesc->service |= 0x80;
284                 }
285
286                 txdesc->length_high = (duration >> 8) & 0xff;
287                 txdesc->length_low = duration & 0xff;
288
289                 /*
290                  * When preamble is enabled we should set the
291                  * preamble bit for the signal.
292                  */
293                 if (txrate->flags & IEEE80211_TX_RC_USE_SHORT_PREAMBLE)
294                         txdesc->signal |= 0x08;
295         }
296 }
297
298 static void rt2x00queue_create_tx_descriptor(struct queue_entry *entry,
299                                              struct txentry_desc *txdesc)
300 {
301         struct rt2x00_dev *rt2x00dev = entry->queue->rt2x00dev;
302         struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(entry->skb);
303         struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)entry->skb->data;
304         struct ieee80211_rate *rate =
305             ieee80211_get_tx_rate(rt2x00dev->hw, tx_info);
306         const struct rt2x00_rate *hwrate;
307
308         memset(txdesc, 0, sizeof(*txdesc));
309
310         /*
311          * Initialize information from queue
312          */
313         txdesc->qid = entry->queue->qid;
314         txdesc->cw_min = entry->queue->cw_min;
315         txdesc->cw_max = entry->queue->cw_max;
316         txdesc->aifs = entry->queue->aifs;
317
318         /*
319          * Header and frame information.
320          */
321         txdesc->length = entry->skb->len;
322         txdesc->header_length = ieee80211_get_hdrlen_from_skb(entry->skb);
323
324         /*
325          * Check whether this frame is to be acked.
326          */
327         if (!(tx_info->flags & IEEE80211_TX_CTL_NO_ACK))
328                 __set_bit(ENTRY_TXD_ACK, &txdesc->flags);
329
330         /*
331          * Check if this is a RTS/CTS frame
332          */
333         if (ieee80211_is_rts(hdr->frame_control) ||
334             ieee80211_is_cts(hdr->frame_control)) {
335                 __set_bit(ENTRY_TXD_BURST, &txdesc->flags);
336                 if (ieee80211_is_rts(hdr->frame_control))
337                         __set_bit(ENTRY_TXD_RTS_FRAME, &txdesc->flags);
338                 else
339                         __set_bit(ENTRY_TXD_CTS_FRAME, &txdesc->flags);
340                 if (tx_info->control.rts_cts_rate_idx >= 0)
341                         rate =
342                             ieee80211_get_rts_cts_rate(rt2x00dev->hw, tx_info);
343         }
344
345         /*
346          * Determine retry information.
347          */
348         txdesc->retry_limit = tx_info->control.rates[0].count - 1;
349         if (txdesc->retry_limit >= rt2x00dev->long_retry)
350                 __set_bit(ENTRY_TXD_RETRY_MODE, &txdesc->flags);
351
352         /*
353          * Check if more fragments are pending
354          */
355         if (ieee80211_has_morefrags(hdr->frame_control)) {
356                 __set_bit(ENTRY_TXD_BURST, &txdesc->flags);
357                 __set_bit(ENTRY_TXD_MORE_FRAG, &txdesc->flags);
358         }
359
360         /*
361          * Check if more frames (!= fragments) are pending
362          */
363         if (tx_info->flags & IEEE80211_TX_CTL_MORE_FRAMES)
364                 __set_bit(ENTRY_TXD_BURST, &txdesc->flags);
365
366         /*
367          * Beacons and probe responses require the tsf timestamp
368          * to be inserted into the frame, except for a frame that has been injected
369          * through a monitor interface. This latter is needed for testing a
370          * monitor interface.
371          */
372         if ((ieee80211_is_beacon(hdr->frame_control) ||
373             ieee80211_is_probe_resp(hdr->frame_control)) &&
374             (!(tx_info->flags & IEEE80211_TX_CTL_INJECTED)))
375                 __set_bit(ENTRY_TXD_REQ_TIMESTAMP, &txdesc->flags);
376
377         /*
378          * Determine with what IFS priority this frame should be send.
379          * Set ifs to IFS_SIFS when the this is not the first fragment,
380          * or this fragment came after RTS/CTS.
381          */
382         if ((tx_info->flags & IEEE80211_TX_CTL_FIRST_FRAGMENT) &&
383             !test_bit(ENTRY_TXD_RTS_FRAME, &txdesc->flags)) {
384                 __set_bit(ENTRY_TXD_FIRST_FRAGMENT, &txdesc->flags);
385                 txdesc->ifs = IFS_BACKOFF;
386         } else
387                 txdesc->ifs = IFS_SIFS;
388
389         /*
390          * Determine rate modulation.
391          */
392         hwrate = rt2x00_get_rate(rate->hw_value);
393         txdesc->rate_mode = RATE_MODE_CCK;
394         if (hwrate->flags & DEV_RATE_OFDM)
395                 txdesc->rate_mode = RATE_MODE_OFDM;
396
397         /*
398          * Apply TX descriptor handling by components
399          */
400         rt2x00crypto_create_tx_descriptor(entry, txdesc);
401         rt2x00ht_create_tx_descriptor(entry, txdesc, hwrate);
402         rt2x00queue_create_tx_descriptor_seq(entry, txdesc);
403         rt2x00queue_create_tx_descriptor_plcp(entry, txdesc, hwrate);
404 }
405
406 static int rt2x00queue_write_tx_data(struct queue_entry *entry,
407                                      struct txentry_desc *txdesc)
408 {
409         struct rt2x00_dev *rt2x00dev = entry->queue->rt2x00dev;
410
411         /*
412          * This should not happen, we already checked the entry
413          * was ours. When the hardware disagrees there has been
414          * a queue corruption!
415          */
416         if (unlikely(rt2x00dev->ops->lib->get_entry_state &&
417                      rt2x00dev->ops->lib->get_entry_state(entry))) {
418                 ERROR(rt2x00dev,
419                       "Corrupt queue %d, accessing entry which is not ours.\n"
420                       "Please file bug report to %s.\n",
421                       entry->queue->qid, DRV_PROJECT);
422                 return -EINVAL;
423         }
424
425         /*
426          * Add the requested extra tx headroom in front of the skb.
427          */
428         skb_push(entry->skb, rt2x00dev->ops->extra_tx_headroom);
429         memset(entry->skb->data, 0, rt2x00dev->ops->extra_tx_headroom);
430
431         /*
432          * Call the driver's write_tx_data function, if it exists.
433          */
434         if (rt2x00dev->ops->lib->write_tx_data)
435                 rt2x00dev->ops->lib->write_tx_data(entry, txdesc);
436
437         /*
438          * Map the skb to DMA.
439          */
440         if (test_bit(DRIVER_REQUIRE_DMA, &rt2x00dev->flags))
441                 rt2x00queue_map_txskb(rt2x00dev, entry->skb);
442
443         return 0;
444 }
445
446 static void rt2x00queue_write_tx_descriptor(struct queue_entry *entry,
447                                             struct txentry_desc *txdesc)
448 {
449         struct data_queue *queue = entry->queue;
450
451         queue->rt2x00dev->ops->lib->write_tx_desc(entry, txdesc);
452
453         /*
454          * All processing on the frame has been completed, this means
455          * it is now ready to be dumped to userspace through debugfs.
456          */
457         rt2x00debug_dump_frame(queue->rt2x00dev, DUMP_FRAME_TX, entry->skb);
458 }
459
460 static void rt2x00queue_kick_tx_queue(struct queue_entry *entry,
461                                       struct txentry_desc *txdesc)
462 {
463         struct data_queue *queue = entry->queue;
464         struct rt2x00_dev *rt2x00dev = queue->rt2x00dev;
465
466         /*
467          * Check if we need to kick the queue, there are however a few rules
468          *      1) Don't kick unless this is the last in frame in a burst.
469          *         When the burst flag is set, this frame is always followed
470          *         by another frame which in some way are related to eachother.
471          *         This is true for fragments, RTS or CTS-to-self frames.
472          *      2) Rule 1 can be broken when the available entries
473          *         in the queue are less then a certain threshold.
474          */
475         if (rt2x00queue_threshold(queue) ||
476             !test_bit(ENTRY_TXD_BURST, &txdesc->flags))
477                 rt2x00dev->ops->lib->kick_tx_queue(queue);
478 }
479
480 int rt2x00queue_write_tx_frame(struct data_queue *queue, struct sk_buff *skb,
481                                bool local)
482 {
483         struct ieee80211_tx_info *tx_info;
484         struct queue_entry *entry = rt2x00queue_get_entry(queue, Q_INDEX);
485         struct txentry_desc txdesc;
486         struct skb_frame_desc *skbdesc;
487         u8 rate_idx, rate_flags;
488
489         if (unlikely(rt2x00queue_full(queue)))
490                 return -ENOBUFS;
491
492         if (unlikely(test_and_set_bit(ENTRY_OWNER_DEVICE_DATA,
493                                       &entry->flags))) {
494                 ERROR(queue->rt2x00dev,
495                       "Arrived at non-free entry in the non-full queue %d.\n"
496                       "Please file bug report to %s.\n",
497                       queue->qid, DRV_PROJECT);
498                 return -EINVAL;
499         }
500
501         /*
502          * Copy all TX descriptor information into txdesc,
503          * after that we are free to use the skb->cb array
504          * for our information.
505          */
506         entry->skb = skb;
507         rt2x00queue_create_tx_descriptor(entry, &txdesc);
508
509         /*
510          * All information is retrieved from the skb->cb array,
511          * now we should claim ownership of the driver part of that
512          * array, preserving the bitrate index and flags.
513          */
514         tx_info = IEEE80211_SKB_CB(skb);
515         rate_idx = tx_info->control.rates[0].idx;
516         rate_flags = tx_info->control.rates[0].flags;
517         skbdesc = get_skb_frame_desc(skb);
518         memset(skbdesc, 0, sizeof(*skbdesc));
519         skbdesc->entry = entry;
520         skbdesc->tx_rate_idx = rate_idx;
521         skbdesc->tx_rate_flags = rate_flags;
522
523         if (local)
524                 skbdesc->flags |= SKBDESC_NOT_MAC80211;
525
526         /*
527          * When hardware encryption is supported, and this frame
528          * is to be encrypted, we should strip the IV/EIV data from
529          * the frame so we can provide it to the driver separately.
530          */
531         if (test_bit(ENTRY_TXD_ENCRYPT, &txdesc.flags) &&
532             !test_bit(ENTRY_TXD_ENCRYPT_IV, &txdesc.flags)) {
533                 if (test_bit(DRIVER_REQUIRE_COPY_IV, &queue->rt2x00dev->flags))
534                         rt2x00crypto_tx_copy_iv(skb, &txdesc);
535                 else
536                         rt2x00crypto_tx_remove_iv(skb, &txdesc);
537         }
538
539         /*
540          * When DMA allocation is required we should guarentee to the
541          * driver that the DMA is aligned to a 4-byte boundary.
542          * However some drivers require L2 padding to pad the payload
543          * rather then the header. This could be a requirement for
544          * PCI and USB devices, while header alignment only is valid
545          * for PCI devices.
546          */
547         if (test_bit(DRIVER_REQUIRE_L2PAD, &queue->rt2x00dev->flags))
548                 rt2x00queue_insert_l2pad(entry->skb, txdesc.header_length);
549         else if (test_bit(DRIVER_REQUIRE_DMA, &queue->rt2x00dev->flags))
550                 rt2x00queue_align_frame(entry->skb);
551
552         /*
553          * It could be possible that the queue was corrupted and this
554          * call failed. Since we always return NETDEV_TX_OK to mac80211,
555          * this frame will simply be dropped.
556          */
557         if (unlikely(rt2x00queue_write_tx_data(entry, &txdesc))) {
558                 clear_bit(ENTRY_OWNER_DEVICE_DATA, &entry->flags);
559                 entry->skb = NULL;
560                 return -EIO;
561         }
562
563         set_bit(ENTRY_DATA_PENDING, &entry->flags);
564
565         rt2x00queue_index_inc(queue, Q_INDEX);
566         rt2x00queue_write_tx_descriptor(entry, &txdesc);
567         rt2x00queue_kick_tx_queue(entry, &txdesc);
568
569         return 0;
570 }
571
572 int rt2x00queue_update_beacon(struct rt2x00_dev *rt2x00dev,
573                               struct ieee80211_vif *vif,
574                               const bool enable_beacon)
575 {
576         struct rt2x00_intf *intf = vif_to_intf(vif);
577         struct skb_frame_desc *skbdesc;
578         struct txentry_desc txdesc;
579
580         if (unlikely(!intf->beacon))
581                 return -ENOBUFS;
582
583         mutex_lock(&intf->beacon_skb_mutex);
584
585         /*
586          * Clean up the beacon skb.
587          */
588         rt2x00queue_free_skb(rt2x00dev, intf->beacon->skb);
589         intf->beacon->skb = NULL;
590
591         if (!enable_beacon) {
592                 rt2x00dev->ops->lib->kill_tx_queue(intf->beacon->queue);
593                 mutex_unlock(&intf->beacon_skb_mutex);
594                 return 0;
595         }
596
597         intf->beacon->skb = ieee80211_beacon_get(rt2x00dev->hw, vif);
598         if (!intf->beacon->skb) {
599                 mutex_unlock(&intf->beacon_skb_mutex);
600                 return -ENOMEM;
601         }
602
603         /*
604          * Copy all TX descriptor information into txdesc,
605          * after that we are free to use the skb->cb array
606          * for our information.
607          */
608         rt2x00queue_create_tx_descriptor(intf->beacon, &txdesc);
609
610         /*
611          * Fill in skb descriptor
612          */
613         skbdesc = get_skb_frame_desc(intf->beacon->skb);
614         memset(skbdesc, 0, sizeof(*skbdesc));
615         skbdesc->entry = intf->beacon;
616
617         /*
618          * Send beacon to hardware and enable beacon genaration..
619          */
620         rt2x00dev->ops->lib->write_beacon(intf->beacon, &txdesc);
621
622         mutex_unlock(&intf->beacon_skb_mutex);
623
624         return 0;
625 }
626
627 void rt2x00queue_for_each_entry(struct data_queue *queue,
628                                 enum queue_index start,
629                                 enum queue_index end,
630                                 void (*fn)(struct queue_entry *entry))
631 {
632         unsigned long irqflags;
633         unsigned int index_start;
634         unsigned int index_end;
635         unsigned int i;
636
637         if (unlikely(start >= Q_INDEX_MAX || end >= Q_INDEX_MAX)) {
638                 ERROR(queue->rt2x00dev,
639                       "Entry requested from invalid index range (%d - %d)\n",
640                       start, end);
641                 return;
642         }
643
644         /*
645          * Only protect the range we are going to loop over,
646          * if during our loop a extra entry is set to pending
647          * it should not be kicked during this run, since it
648          * is part of another TX operation.
649          */
650         spin_lock_irqsave(&queue->lock, irqflags);
651         index_start = queue->index[start];
652         index_end = queue->index[end];
653         spin_unlock_irqrestore(&queue->lock, irqflags);
654
655         /*
656          * Start from the TX done pointer, this guarentees that we will
657          * send out all frames in the correct order.
658          */
659         if (index_start < index_end) {
660                 for (i = index_start; i < index_end; i++)
661                         fn(&queue->entries[i]);
662         } else {
663                 for (i = index_start; i < queue->limit; i++)
664                         fn(&queue->entries[i]);
665
666                 for (i = 0; i < index_end; i++)
667                         fn(&queue->entries[i]);
668         }
669 }
670 EXPORT_SYMBOL_GPL(rt2x00queue_for_each_entry);
671
672 struct data_queue *rt2x00queue_get_queue(struct rt2x00_dev *rt2x00dev,
673                                          const enum data_queue_qid queue)
674 {
675         int atim = test_bit(DRIVER_REQUIRE_ATIM_QUEUE, &rt2x00dev->flags);
676
677         if (queue == QID_RX)
678                 return rt2x00dev->rx;
679
680         if (queue < rt2x00dev->ops->tx_queues && rt2x00dev->tx)
681                 return &rt2x00dev->tx[queue];
682
683         if (!rt2x00dev->bcn)
684                 return NULL;
685
686         if (queue == QID_BEACON)
687                 return &rt2x00dev->bcn[0];
688         else if (queue == QID_ATIM && atim)
689                 return &rt2x00dev->bcn[1];
690
691         return NULL;
692 }
693 EXPORT_SYMBOL_GPL(rt2x00queue_get_queue);
694
695 struct queue_entry *rt2x00queue_get_entry(struct data_queue *queue,
696                                           enum queue_index index)
697 {
698         struct queue_entry *entry;
699         unsigned long irqflags;
700
701         if (unlikely(index >= Q_INDEX_MAX)) {
702                 ERROR(queue->rt2x00dev,
703                       "Entry requested from invalid index type (%d)\n", index);
704                 return NULL;
705         }
706
707         spin_lock_irqsave(&queue->lock, irqflags);
708
709         entry = &queue->entries[queue->index[index]];
710
711         spin_unlock_irqrestore(&queue->lock, irqflags);
712
713         return entry;
714 }
715 EXPORT_SYMBOL_GPL(rt2x00queue_get_entry);
716
717 void rt2x00queue_index_inc(struct data_queue *queue, enum queue_index index)
718 {
719         unsigned long irqflags;
720
721         if (unlikely(index >= Q_INDEX_MAX)) {
722                 ERROR(queue->rt2x00dev,
723                       "Index change on invalid index type (%d)\n", index);
724                 return;
725         }
726
727         spin_lock_irqsave(&queue->lock, irqflags);
728
729         queue->index[index]++;
730         if (queue->index[index] >= queue->limit)
731                 queue->index[index] = 0;
732
733         queue->last_action[index] = jiffies;
734
735         if (index == Q_INDEX) {
736                 queue->length++;
737         } else if (index == Q_INDEX_DONE) {
738                 queue->length--;
739                 queue->count++;
740         }
741
742         spin_unlock_irqrestore(&queue->lock, irqflags);
743 }
744
745 static void rt2x00queue_reset(struct data_queue *queue)
746 {
747         unsigned long irqflags;
748         unsigned int i;
749
750         spin_lock_irqsave(&queue->lock, irqflags);
751
752         queue->count = 0;
753         queue->length = 0;
754
755         for (i = 0; i < Q_INDEX_MAX; i++) {
756                 queue->index[i] = 0;
757                 queue->last_action[i] = jiffies;
758         }
759
760         spin_unlock_irqrestore(&queue->lock, irqflags);
761 }
762
763 void rt2x00queue_stop_queues(struct rt2x00_dev *rt2x00dev)
764 {
765         struct data_queue *queue;
766
767         txall_queue_for_each(rt2x00dev, queue)
768                 rt2x00dev->ops->lib->kill_tx_queue(queue);
769 }
770
771 void rt2x00queue_init_queues(struct rt2x00_dev *rt2x00dev)
772 {
773         struct data_queue *queue;
774         unsigned int i;
775
776         queue_for_each(rt2x00dev, queue) {
777                 rt2x00queue_reset(queue);
778
779                 for (i = 0; i < queue->limit; i++) {
780                         rt2x00dev->ops->lib->clear_entry(&queue->entries[i]);
781                         if (queue->qid == QID_RX)
782                                 rt2x00queue_index_inc(queue, Q_INDEX);
783                 }
784         }
785 }
786
787 static int rt2x00queue_alloc_entries(struct data_queue *queue,
788                                      const struct data_queue_desc *qdesc)
789 {
790         struct queue_entry *entries;
791         unsigned int entry_size;
792         unsigned int i;
793
794         rt2x00queue_reset(queue);
795
796         queue->limit = qdesc->entry_num;
797         queue->threshold = DIV_ROUND_UP(qdesc->entry_num, 10);
798         queue->data_size = qdesc->data_size;
799         queue->desc_size = qdesc->desc_size;
800
801         /*
802          * Allocate all queue entries.
803          */
804         entry_size = sizeof(*entries) + qdesc->priv_size;
805         entries = kzalloc(queue->limit * entry_size, GFP_KERNEL);
806         if (!entries)
807                 return -ENOMEM;
808
809 #define QUEUE_ENTRY_PRIV_OFFSET(__base, __index, __limit, __esize, __psize) \
810         ( ((char *)(__base)) + ((__limit) * (__esize)) + \
811             ((__index) * (__psize)) )
812
813         for (i = 0; i < queue->limit; i++) {
814                 entries[i].flags = 0;
815                 entries[i].queue = queue;
816                 entries[i].skb = NULL;
817                 entries[i].entry_idx = i;
818                 entries[i].priv_data =
819                     QUEUE_ENTRY_PRIV_OFFSET(entries, i, queue->limit,
820                                             sizeof(*entries), qdesc->priv_size);
821         }
822
823 #undef QUEUE_ENTRY_PRIV_OFFSET
824
825         queue->entries = entries;
826
827         return 0;
828 }
829
830 static void rt2x00queue_free_skbs(struct rt2x00_dev *rt2x00dev,
831                                   struct data_queue *queue)
832 {
833         unsigned int i;
834
835         if (!queue->entries)
836                 return;
837
838         for (i = 0; i < queue->limit; i++) {
839                 if (queue->entries[i].skb)
840                         rt2x00queue_free_skb(rt2x00dev, queue->entries[i].skb);
841         }
842 }
843
844 static int rt2x00queue_alloc_rxskbs(struct rt2x00_dev *rt2x00dev,
845                                     struct data_queue *queue)
846 {
847         unsigned int i;
848         struct sk_buff *skb;
849
850         for (i = 0; i < queue->limit; i++) {
851                 skb = rt2x00queue_alloc_rxskb(rt2x00dev, &queue->entries[i]);
852                 if (!skb)
853                         return -ENOMEM;
854                 queue->entries[i].skb = skb;
855         }
856
857         return 0;
858 }
859
860 int rt2x00queue_initialize(struct rt2x00_dev *rt2x00dev)
861 {
862         struct data_queue *queue;
863         int status;
864
865         status = rt2x00queue_alloc_entries(rt2x00dev->rx, rt2x00dev->ops->rx);
866         if (status)
867                 goto exit;
868
869         tx_queue_for_each(rt2x00dev, queue) {
870                 status = rt2x00queue_alloc_entries(queue, rt2x00dev->ops->tx);
871                 if (status)
872                         goto exit;
873         }
874
875         status = rt2x00queue_alloc_entries(rt2x00dev->bcn, rt2x00dev->ops->bcn);
876         if (status)
877                 goto exit;
878
879         if (test_bit(DRIVER_REQUIRE_ATIM_QUEUE, &rt2x00dev->flags)) {
880                 status = rt2x00queue_alloc_entries(&rt2x00dev->bcn[1],
881                                                    rt2x00dev->ops->atim);
882                 if (status)
883                         goto exit;
884         }
885
886         status = rt2x00queue_alloc_rxskbs(rt2x00dev, rt2x00dev->rx);
887         if (status)
888                 goto exit;
889
890         return 0;
891
892 exit:
893         ERROR(rt2x00dev, "Queue entries allocation failed.\n");
894
895         rt2x00queue_uninitialize(rt2x00dev);
896
897         return status;
898 }
899
900 void rt2x00queue_uninitialize(struct rt2x00_dev *rt2x00dev)
901 {
902         struct data_queue *queue;
903
904         rt2x00queue_free_skbs(rt2x00dev, rt2x00dev->rx);
905
906         queue_for_each(rt2x00dev, queue) {
907                 kfree(queue->entries);
908                 queue->entries = NULL;
909         }
910 }
911
912 static void rt2x00queue_init(struct rt2x00_dev *rt2x00dev,
913                              struct data_queue *queue, enum data_queue_qid qid)
914 {
915         spin_lock_init(&queue->lock);
916
917         queue->rt2x00dev = rt2x00dev;
918         queue->qid = qid;
919         queue->txop = 0;
920         queue->aifs = 2;
921         queue->cw_min = 5;
922         queue->cw_max = 10;
923 }
924
925 int rt2x00queue_allocate(struct rt2x00_dev *rt2x00dev)
926 {
927         struct data_queue *queue;
928         enum data_queue_qid qid;
929         unsigned int req_atim =
930             !!test_bit(DRIVER_REQUIRE_ATIM_QUEUE, &rt2x00dev->flags);
931
932         /*
933          * We need the following queues:
934          * RX: 1
935          * TX: ops->tx_queues
936          * Beacon: 1
937          * Atim: 1 (if required)
938          */
939         rt2x00dev->data_queues = 2 + rt2x00dev->ops->tx_queues + req_atim;
940
941         queue = kzalloc(rt2x00dev->data_queues * sizeof(*queue), GFP_KERNEL);
942         if (!queue) {
943                 ERROR(rt2x00dev, "Queue allocation failed.\n");
944                 return -ENOMEM;
945         }
946
947         /*
948          * Initialize pointers
949          */
950         rt2x00dev->rx = queue;
951         rt2x00dev->tx = &queue[1];
952         rt2x00dev->bcn = &queue[1 + rt2x00dev->ops->tx_queues];
953
954         /*
955          * Initialize queue parameters.
956          * RX: qid = QID_RX
957          * TX: qid = QID_AC_BE + index
958          * TX: cw_min: 2^5 = 32.
959          * TX: cw_max: 2^10 = 1024.
960          * BCN: qid = QID_BEACON
961          * ATIM: qid = QID_ATIM
962          */
963         rt2x00queue_init(rt2x00dev, rt2x00dev->rx, QID_RX);
964
965         qid = QID_AC_BE;
966         tx_queue_for_each(rt2x00dev, queue)
967                 rt2x00queue_init(rt2x00dev, queue, qid++);
968
969         rt2x00queue_init(rt2x00dev, &rt2x00dev->bcn[0], QID_BEACON);
970         if (req_atim)
971                 rt2x00queue_init(rt2x00dev, &rt2x00dev->bcn[1], QID_ATIM);
972
973         return 0;
974 }
975
976 void rt2x00queue_free(struct rt2x00_dev *rt2x00dev)
977 {
978         kfree(rt2x00dev->rx);
979         rt2x00dev->rx = NULL;
980         rt2x00dev->tx = NULL;
981         rt2x00dev->bcn = NULL;
982 }