-
Notifications
You must be signed in to change notification settings - Fork 76
/
queue.c
822 lines (737 loc) · 22.4 KB
/
queue.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
/*
* Queue implementation for XRadio drivers
*
* Copyright (c) 2013, XRadio
* Author: XRadio
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*/
#include <net/mac80211.h>
#include <linux/sched.h>
#include "xradio.h"
#include "queue.h"
/* private */ struct xradio_queue_item
{
struct list_head head;
struct sk_buff *skb;
u32 packetID;
unsigned long queue_timestamp;
unsigned long xmit_timestamp;
struct xradio_txpriv txpriv;
u8 generation;
u8 pack_stk_wr;
};
static inline void __xradio_queue_lock(struct xradio_queue *queue)
{
struct xradio_queue_stats *stats = queue->stats;
if (queue->tx_locked_cnt++ == 0) {
txrx_printk(XRADIO_DBG_MSG, "[TX] Queue %d is locked.\n",
queue->queue_id);
ieee80211_stop_queue(stats->hw_priv->hw, queue->queue_id);
}
}
static inline void __xradio_queue_unlock(struct xradio_queue *queue)
{
struct xradio_queue_stats *stats = queue->stats;
BUG_ON(!queue->tx_locked_cnt);
if (--queue->tx_locked_cnt == 0) {
txrx_printk(XRADIO_DBG_MSG, "[TX] Queue %d is unlocked.\n",
queue->queue_id);
ieee80211_wake_queue(stats->hw_priv->hw, queue->queue_id);
}
}
static inline void xradio_queue_parse_id(u32 packetID, u8 *queue_generation,
u8 *queue_id,
u8 *item_generation,
u8 *item_id,
u8 *if_id,
u8 *link_id)
{
*item_id = (packetID >> 0) & 0xFF;
*item_generation = (packetID >> 8) & 0xFF;
*queue_id = (packetID >> 16) & 0xF;
*if_id = (packetID >> 20) & 0xF;
*link_id = (packetID >> 24) & 0xF;
*queue_generation = (packetID >> 28) & 0xF;
}
static inline u32 xradio_queue_make_packet_id(u8 queue_generation, u8 queue_id,
u8 item_generation, u8 item_id,
u8 if_id, u8 link_id)
{
/*TODO:COMBO: Add interfaceID to the packetID */
return ((u32)item_id << 0) |
((u32)item_generation << 8) |
((u32)queue_id << 16) |
((u32)if_id << 20) |
((u32)link_id << 24) |
((u32)queue_generation << 28);
}
static void xradio_queue_post_gc(struct xradio_queue_stats *stats,
struct list_head *gc_list)
{
struct xradio_queue_item *item;
while (!list_empty(gc_list)) {
item = list_first_entry(
gc_list, struct xradio_queue_item, head);
list_del(&item->head);
stats->skb_dtor(stats->hw_priv, item->skb, &item->txpriv);
kfree(item);
}
}
static void xradio_queue_register_post_gc(struct list_head *gc_list,
struct xradio_queue_item *item)
{
struct xradio_queue_item *gc_item;
gc_item = kmalloc(sizeof(struct xradio_queue_item), GFP_KERNEL);
BUG_ON(!gc_item);
memcpy(gc_item, item, sizeof(struct xradio_queue_item));
list_add_tail(&gc_item->head, gc_list);
}
static void __xradio_queue_gc(struct xradio_queue *queue,
struct list_head *head,
bool unlock)
{
struct xradio_queue_stats *stats = queue->stats;
struct xradio_queue_item *item = NULL;
//struct xradio_vif *priv;
int if_id;
bool wakeup_stats = false;
while (!list_empty(&queue->queue)) {
struct xradio_txpriv *txpriv;
item = list_first_entry(
&queue->queue, struct xradio_queue_item, head);
if (time_before(jiffies, item->queue_timestamp+queue->ttl))
break;
txpriv = &item->txpriv;
if_id = txpriv->if_id;
--queue->num_queued;
--queue->num_queued_vif[if_id];
--queue->link_map_cache[if_id][txpriv->link_id];
spin_lock_bh(&stats->lock);
--stats->num_queued[if_id];
if (!--stats->link_map_cache[if_id][txpriv->link_id])
wakeup_stats = true;
spin_unlock_bh(&stats->lock);
//priv = xrwl_hwpriv_to_vifpriv(stats->hw_priv, if_id);
//if (priv) {
// xradio_debug_tx_ttl(priv);
// spin_unlock(&priv->vif_lock);
//}
xradio_queue_register_post_gc(head, item);
item->skb = NULL;
list_move_tail(&item->head, &queue->free_pool);
}
if (wakeup_stats)
wake_up(&stats->wait_link_id_empty);
//modified by yangfh for test WFD
if (queue->overfull) {
if (queue->num_queued <= ((stats->hw_priv->vif0_throttle +
stats->hw_priv->vif1_throttle+2)>>1)) {
queue->overfull = false;
if (unlock) {
__xradio_queue_unlock(queue);
}
} else if (item) {
unsigned long tmo = item->queue_timestamp + queue->ttl;
mod_timer(&queue->gc, tmo);
xradio_pm_stay_awake(&stats->hw_priv->pm_state,
tmo - jiffies);
}
}
}
static void xradio_queue_gc(unsigned long arg)
{
LIST_HEAD(list);
struct xradio_queue *queue =
(struct xradio_queue *)arg;
spin_lock_bh(&queue->lock);
__xradio_queue_gc(queue, &list, true);
spin_unlock_bh(&queue->lock);
xradio_queue_post_gc(queue->stats, &list);
}
int xradio_queue_stats_init(struct xradio_queue_stats *stats,
size_t map_capacity,
xradio_queue_skb_dtor_t skb_dtor,
struct xradio_common *hw_priv)
{
int i;
memset(stats, 0, sizeof(*stats));
stats->map_capacity = map_capacity;
stats->skb_dtor = skb_dtor;
stats->hw_priv = hw_priv;
spin_lock_init(&stats->lock);
init_waitqueue_head(&stats->wait_link_id_empty);
for (i = 0; i < XRWL_MAX_VIFS; i++) {
stats->link_map_cache[i] = kzalloc(sizeof(int[map_capacity]), GFP_KERNEL);
if (!stats->link_map_cache[i]) {
for (; i >= 0; i--)
kfree(stats->link_map_cache[i]);
return -ENOMEM;
}
}
return 0;
}
int xradio_queue_init(struct xradio_queue *queue,
struct xradio_queue_stats *stats,
u8 queue_id,
size_t capacity,
unsigned long ttl)
{
int i;
memset(queue, 0, sizeof(*queue));
queue->stats = stats;
queue->capacity = capacity;
queue->queue_id = queue_id;
queue->ttl = ttl;
INIT_LIST_HEAD(&queue->queue);
INIT_LIST_HEAD(&queue->pending);
INIT_LIST_HEAD(&queue->free_pool);
spin_lock_init(&queue->lock);
init_timer(&queue->gc);
queue->gc.data = (unsigned long)queue;
queue->gc.function = xradio_queue_gc;
queue->pool = kzalloc(sizeof(struct xradio_queue_item) * capacity,
GFP_KERNEL);
if (!queue->pool)
return -ENOMEM;
for (i = 0; i < XRWL_MAX_VIFS; i++) {
queue->link_map_cache[i] =
kzalloc(sizeof(int[stats->map_capacity]), GFP_KERNEL);
if (!queue->link_map_cache[i]) {
for (; i >= 0; i--)
kfree(queue->link_map_cache[i]);
kfree(queue->pool);
queue->pool = NULL;
return -ENOMEM;
}
}
for (i = 0; i < capacity; ++i)
list_add_tail(&queue->pool[i].head, &queue->free_pool);
return 0;
}
/* TODO:COMBO: Flush only a particular interface specific parts */
int xradio_queue_clear(struct xradio_queue *queue, int if_id)
{
int i, cnt, iter;
struct xradio_queue_stats *stats = queue->stats;
LIST_HEAD(gc_list);
cnt = 0;
spin_lock_bh(&queue->lock);
queue->generation++;
queue->generation &= 0xf;
list_splice_tail_init(&queue->queue, &queue->pending);
while (!list_empty(&queue->pending)) {
struct xradio_queue_item *item = list_first_entry(
&queue->pending, struct xradio_queue_item, head);
WARN_ON(!item->skb);
if (XRWL_ALL_IFS == if_id || item->txpriv.if_id == if_id) {
xradio_queue_register_post_gc(&gc_list, item);
item->skb = NULL;
list_move_tail(&item->head, &queue->free_pool);
cnt++;
}
}
queue->num_queued -= cnt;
queue->num_pending = 0;
if (XRWL_ALL_IFS != if_id) {
queue->num_queued_vif[if_id] = 0;
queue->num_pending_vif[if_id] = 0;
} else {
for (iter = 0; iter < XRWL_MAX_VIFS; iter++) {
queue->num_queued_vif[iter] = 0;
queue->num_pending_vif[iter] = 0;
}
}
spin_lock_bh(&stats->lock);
if (XRWL_ALL_IFS != if_id) {
for (i = 0; i < stats->map_capacity; ++i) {
stats->num_queued[if_id] -=
queue->link_map_cache[if_id][i];
stats->link_map_cache[if_id][i] -=
queue->link_map_cache[if_id][i];
queue->link_map_cache[if_id][i] = 0;
}
} else {
for (iter = 0; iter < XRWL_MAX_VIFS; iter++) {
for (i = 0; i < stats->map_capacity; ++i) {
stats->num_queued[iter] -=
queue->link_map_cache[iter][i];
stats->link_map_cache[iter][i] -=
queue->link_map_cache[iter][i];
queue->link_map_cache[iter][i] = 0;
}
}
}
spin_unlock_bh(&stats->lock);
if (unlikely(queue->overfull)) {
queue->overfull = false;
__xradio_queue_unlock(queue);
}
spin_unlock_bh(&queue->lock);
wake_up(&stats->wait_link_id_empty);
xradio_queue_post_gc(stats, &gc_list);
return 0;
}
void xradio_queue_stats_deinit(struct xradio_queue_stats *stats)
{
int i;
for (i = 0; i < XRWL_MAX_VIFS ; i++) {
kfree(stats->link_map_cache[i]);
stats->link_map_cache[i] = NULL;
}
}
void xradio_queue_deinit(struct xradio_queue *queue)
{
int i;
xradio_queue_clear(queue, XRWL_ALL_IFS);
del_timer_sync(&queue->gc);
INIT_LIST_HEAD(&queue->free_pool);
kfree(queue->pool);
for (i = 0; i < XRWL_MAX_VIFS; i++) {
kfree(queue->link_map_cache[i]);
queue->link_map_cache[i] = NULL;
}
queue->pool = NULL;
queue->capacity = 0;
}
size_t xradio_queue_get_num_queued(struct xradio_vif *priv,
struct xradio_queue *queue,
u32 link_id_map)
{
size_t ret;
int i, bit;
size_t map_capacity = queue->stats->map_capacity;
if (!link_id_map)
return 0;
spin_lock_bh(&queue->lock);
if (likely(link_id_map == (u32) -1)) {
ret = queue->num_queued_vif[priv->if_id] -
queue->num_pending_vif[priv->if_id];
} else {
ret = 0;
for (i = 0, bit = 1; i < map_capacity; ++i, bit <<= 1) {
if (link_id_map & bit)
ret +=
queue->link_map_cache[priv->if_id][i];
}
}
spin_unlock_bh(&queue->lock);
return ret;
}
int xradio_queue_put(struct xradio_queue *queue, struct sk_buff *skb,
struct xradio_txpriv *txpriv)
{
int ret = 0;
LIST_HEAD(gc_list);
struct xradio_queue_stats *stats = queue->stats;
/* TODO:COMBO: Add interface ID info to queue item */
if (txpriv->link_id >= queue->stats->map_capacity)
return -EINVAL;
spin_lock_bh(&queue->lock);
if (!WARN_ON(list_empty(&queue->free_pool))) {
struct xradio_queue_item *item = list_first_entry(
&queue->free_pool, struct xradio_queue_item, head);
BUG_ON(item->skb);
list_move_tail(&item->head, &queue->queue);
item->skb = skb;
item->txpriv = *txpriv;
item->generation = 1; /* avoid packet ID is 0.*/
item->pack_stk_wr = 0;
item->packetID = xradio_queue_make_packet_id(
queue->generation, queue->queue_id,
item->generation, item - queue->pool,
txpriv->if_id, txpriv->raw_link_id);
item->queue_timestamp = jiffies;
#ifdef TES_P2P_0002_ROC_RESTART
if (TES_P2P_0002_state == TES_P2P_0002_STATE_SEND_RESP) {
TES_P2P_0002_packet_id = item->packetID;
TES_P2P_0002_state = TES_P2P_0002_STATE_GET_PKTID;
txrx_printk(XRADIO_DBG_WARN, "[ROC_RESTART_STATE_GET_PKTID]\n");
}
#endif
++queue->num_queued;
++queue->num_queued_vif[txpriv->if_id];
++queue->link_map_cache[txpriv->if_id][txpriv->link_id];
spin_lock_bh(&stats->lock);
++stats->num_queued[txpriv->if_id];
++stats->link_map_cache[txpriv->if_id][txpriv->link_id];
spin_unlock_bh(&stats->lock);
/*
* TX may happen in parallel sometimes.
* Leave extra queue slots so we don't overflow.
*/
if (queue->overfull == false &&
queue->num_queued >=
((stats->hw_priv->vif0_throttle +stats->hw_priv->vif1_throttle)
- (num_present_cpus() - 1))) {
queue->overfull = true;
__xradio_queue_lock(queue);
mod_timer(&queue->gc, jiffies);
txrx_printk(XRADIO_DBG_NIY,"!lock queue\n");
}
} else {
ret = -ENOENT;
}
#if 0
txrx_printk(XRADIO_DBG_ERROR, "queue_put queue %d, %d, %d\n",
queue->num_queued,
queue->link_map_cache[txpriv->if_id][txpriv->link_id],
queue->num_pending);
txrx_printk(XRADIO_DBG_ERROR, "queue_put stats %d, %d\n", stats->num_queued,
stats->link_map_cache[txpriv->if_id][txpriv->link_id]);
#endif
spin_unlock_bh(&queue->lock);
return ret;
}
int xradio_queue_get(struct xradio_queue *queue,
int if_id,
u32 link_id_map,
struct wsm_tx **tx,
struct ieee80211_tx_info **tx_info,
struct xradio_txpriv **txpriv)
{
int ret = -ENOENT;
struct xradio_queue_item *item;
struct xradio_queue_stats *stats = queue->stats;
bool wakeup_stats = false;
spin_lock_bh(&queue->lock);
list_for_each_entry(item, &queue->queue, head) {
if ((item->txpriv.if_id == if_id) &&
(link_id_map & BIT(item->txpriv.link_id))) {
ret = 0;
break;
}
}
if (!WARN_ON(ret)) {
*tx = (struct wsm_tx *)item->skb->data;
*tx_info = IEEE80211_SKB_CB(item->skb);
*txpriv = &item->txpriv;
(*tx)->packetID = __cpu_to_le32(item->packetID);
list_move_tail(&item->head, &queue->pending);
++queue->num_pending;
++queue->num_pending_vif[item->txpriv.if_id];
--queue->link_map_cache[item->txpriv.if_id]
[item->txpriv.link_id];
item->xmit_timestamp = jiffies;
spin_lock_bh(&stats->lock);
--stats->num_queued[item->txpriv.if_id];
if (!--stats->link_map_cache[item->txpriv.if_id]
[item->txpriv.link_id])
wakeup_stats = true;
spin_unlock_bh(&stats->lock);
#if 0
txrx_printk(XRADIO_DBG_ERROR, "queue_get queue %d, %d, %d\n",
queue->num_queued,
queue->link_map_cache[item->txpriv.if_id][item->txpriv.link_id],
queue->num_pending);
txrx_printk(XRADIO_DBG_ERROR, "queue_get stats %d, %d\n", stats->num_queued,
stats->link_map_cache[item->txpriv.if_id]
[item->txpriv.link_id]);
#endif
}
spin_unlock_bh(&queue->lock);
if (wakeup_stats)
wake_up(&stats->wait_link_id_empty);
return ret;
}
int xradio_queue_requeue(struct xradio_queue *queue, u32 packetID, bool check)
{
int ret = 0;
u8 queue_generation, queue_id, item_generation, item_id, if_id, link_id;
struct xradio_queue_item *item;
struct xradio_queue_stats *stats = queue->stats;
xradio_queue_parse_id(packetID, &queue_generation, &queue_id,
&item_generation, &item_id, &if_id, &link_id);
item = &queue->pool[item_id];
if (check && item->txpriv.offchannel_if_id == XRWL_GENERIC_IF_ID) {
txrx_printk(XRADIO_DBG_MSG, "Requeued frame dropped for "
"generic interface id.\n");
xradio_queue_remove(queue, packetID);
return 0;
}
if (!check)
item->txpriv.offchannel_if_id = XRWL_GENERIC_IF_ID;
/*if_id = item->txpriv.if_id;*/
spin_lock_bh(&queue->lock);
BUG_ON(queue_id != queue->queue_id);
if (unlikely(queue_generation != queue->generation)) {
ret = -ENOENT;
} else if (unlikely(item_id >= (unsigned) queue->capacity)) {
WARN_ON(1);
ret = -EINVAL;
} else if (unlikely(item->generation != item_generation)) {
WARN_ON(1);
ret = -ENOENT;
} else {
--queue->num_pending;
--queue->num_pending_vif[if_id];
++queue->link_map_cache[if_id][item->txpriv.link_id];
spin_lock_bh(&stats->lock);
++stats->num_queued[item->txpriv.if_id];
++stats->link_map_cache[if_id][item->txpriv.link_id];
spin_unlock_bh(&stats->lock);
item->generation = ++item_generation;
item->packetID = xradio_queue_make_packet_id(
queue_generation, queue_id, item_generation, item_id,
if_id, link_id);
list_move(&item->head, &queue->queue);
#if 0
txrx_printk(XRADIO_DBG_ERROR, "queue_requeue queue %d, %d, %d\n",
queue->num_queued,
queue->link_map_cache[if_id][item->txpriv.link_id],
queue->num_pending);
txrx_printk(XRADIO_DBG_ERROR, "queue_requeue stats %d, %d\n",
stats->num_queued,
stats->link_map_cache[if_id][item->txpriv.link_id]);
#endif
}
spin_unlock_bh(&queue->lock);
return ret;
}
int xradio_queue_requeue_all(struct xradio_queue *queue)
{
struct xradio_queue_stats *stats = queue->stats;
spin_lock_bh(&queue->lock);
while (!list_empty(&queue->pending)) {
struct xradio_queue_item *item = list_entry(
queue->pending.prev, struct xradio_queue_item, head);
--queue->num_pending;
--queue->num_pending_vif[item->txpriv.if_id];
++queue->link_map_cache[item->txpriv.if_id]
[item->txpriv.link_id];
spin_lock_bh(&stats->lock);
++stats->num_queued[item->txpriv.if_id];
++stats->link_map_cache[item->txpriv.if_id]
[item->txpriv.link_id];
spin_unlock_bh(&stats->lock);
++item->generation;
item->packetID = xradio_queue_make_packet_id(
queue->generation, queue->queue_id,
item->generation, item - queue->pool,
item->txpriv.if_id, item->txpriv.raw_link_id);
list_move(&item->head, &queue->queue);
}
spin_unlock_bh(&queue->lock);
return 0;
}
int xradio_queue_remove(struct xradio_queue *queue, u32 packetID)
{
int ret = 0;
u8 queue_generation, queue_id, item_generation, item_id, if_id, link_id;
struct xradio_queue_item *item;
struct xradio_queue_stats *stats = queue->stats;
struct sk_buff *gc_skb = NULL;
struct xradio_txpriv gc_txpriv;
xradio_queue_parse_id(packetID, &queue_generation, &queue_id,
&item_generation, &item_id, &if_id, &link_id);
item = &queue->pool[item_id];
spin_lock_bh(&queue->lock);
BUG_ON(queue_id != queue->queue_id);
/*TODO:COMBO:Add check for interface ID also */
if (unlikely(queue_generation != queue->generation)) {
ret = -ENOENT;
} else if (unlikely(item_id >= (unsigned) queue->capacity)) {
WARN_ON(1);
ret = -EINVAL;
} else if (unlikely(item->generation != item_generation)) {
WARN_ON(1);
ret = -ENOENT;
} else {
gc_txpriv = item->txpriv;
gc_skb = item->skb;
item->skb = NULL;
--queue->num_pending;
--queue->num_pending_vif[if_id];
--queue->num_queued;
--queue->num_queued_vif[if_id];
++queue->num_sent;
++item->generation;
/* Do not use list_move_tail here, but list_move:
* try to utilize cache row.
*/
list_move(&item->head, &queue->free_pool);
if (unlikely(queue->overfull) &&
(queue->num_queued <= ((stats->hw_priv->vif0_throttle + stats->hw_priv->vif1_throttle + 2)>>1))) {
queue->overfull = false;
__xradio_queue_unlock(queue);
}
}
spin_unlock_bh(&queue->lock);
#if 0
txrx_printk(XRADIO_DBG_ERROR, "queue_drop queue %d, %d, %d\n",
queue->num_queued, queue->link_map_cache[if_id][0],
queue->num_pending);
txrx_printk(XRADIO_DBG_ERROR, "queue_drop stats %d, %d\n", stats->num_queued,
stats->link_map_cache[if_id][0]);
#endif
if (gc_skb)
stats->skb_dtor(stats->hw_priv, gc_skb, &gc_txpriv);
return ret;
}
int xradio_queue_get_skb(struct xradio_queue *queue, u32 packetID,
struct sk_buff **skb,
const struct xradio_txpriv **txpriv)
{
int ret = 0;
u8 queue_generation, queue_id, item_generation, item_id, if_id, link_id;
struct xradio_queue_item *item;
xradio_queue_parse_id(packetID, &queue_generation, &queue_id,
&item_generation, &item_id, &if_id, &link_id);
item = &queue->pool[item_id];
spin_lock_bh(&queue->lock);
BUG_ON(queue_id != queue->queue_id);
/* TODO:COMBO: Add check for interface ID here */
if (unlikely(queue_generation != queue->generation)) {
ret = -ENOENT;
} else if (unlikely(item_id >= (unsigned) queue->capacity)) {
WARN_ON(1);
ret = -EINVAL;
} else if (unlikely(item->generation != item_generation)) {
WARN_ON(1);
ret = -ENOENT;
} else {
*skb = item->skb;
*txpriv = &item->txpriv;
}
spin_unlock_bh(&queue->lock);
return ret;
}
void xradio_queue_lock(struct xradio_queue *queue)
{
spin_lock_bh(&queue->lock);
__xradio_queue_lock(queue);
spin_unlock_bh(&queue->lock);
}
void xradio_queue_unlock(struct xradio_queue *queue)
{
spin_lock_bh(&queue->lock);
__xradio_queue_unlock(queue);
spin_unlock_bh(&queue->lock);
}
bool xradio_queue_get_xmit_timestamp(struct xradio_queue *queue,
unsigned long *timestamp, int if_id,
u32 pending_frameID, u32 *Old_frame_ID)
{
struct xradio_queue_item *item;
bool ret;
spin_lock_bh(&queue->lock);
ret = !list_empty(&queue->pending);
if (ret) {
list_for_each_entry(item, &queue->pending, head) {
if (((if_id == XRWL_GENERIC_IF_ID) ||
(if_id == XRWL_ALL_IFS) ||
(item->txpriv.if_id == if_id)) &&
(item->packetID != pending_frameID)) {
if (time_before(item->xmit_timestamp,
*timestamp)) {
*timestamp = item->xmit_timestamp;
*Old_frame_ID = item->packetID;
}
}
}
}
spin_unlock_bh(&queue->lock);
return ret;
}
bool xradio_queue_stats_is_empty(struct xradio_queue_stats *stats,
u32 link_id_map, int if_id)
{
bool empty = true;
spin_lock_bh(&stats->lock);
if (link_id_map == (u32)-1)
empty = stats->num_queued[if_id] == 0;
else {
int i, if_id;
for (if_id = 0; if_id < XRWL_MAX_VIFS; if_id++) {
for (i = 0; i < stats->map_capacity; ++i) {
if (link_id_map & BIT(i)) {
if (stats->link_map_cache[if_id][i]) {
empty = false;
break;
}
}
}
}
}
spin_unlock_bh(&stats->lock);
return empty;
}
bool xradio_query_txpkt_timeout(struct xradio_common *hw_priv, int if_id,
u32 pending_pkt_id, long *timeout)
{
int i;
bool pending = false;
unsigned long timestamp = jiffies;
struct xradio_queue *queue = NULL;
struct xradio_queue_item *item = NULL;
struct xradio_queue *old_queue = NULL;
struct xradio_queue_item *old_item = NULL;
u8 pack_stk_wr = 0;
/* Get oldest frame.*/
for (i = 0; i < AC_QUEUE_NUM; ++i) {
queue = &hw_priv->tx_queue[i];
spin_lock_bh(&queue->lock);
if (!list_empty(&queue->pending)) {
list_for_each_entry(item, &queue->pending, head) {
if (((if_id == XRWL_GENERIC_IF_ID) ||
(if_id == XRWL_ALL_IFS) ||
(item->txpriv.if_id == if_id)) &&
(item->packetID != pending_pkt_id)) {
if (time_before(item->xmit_timestamp, timestamp)) {
timestamp = item->xmit_timestamp;
pack_stk_wr = item->pack_stk_wr;
old_queue = queue;
old_item = item;
}
}
}
pending = true;
}
spin_unlock_bh(&queue->lock);
}
if (!pending)
return false;
/* Check if frame transmission is timed out.
* add (WSM_CMD_LAST_CHANCE_TIMEOUT>>1) for stuck workaround.*/
*timeout = timestamp + WSM_CMD_LAST_CHANCE_TIMEOUT - jiffies;
if (unlikely(*timeout < 0) && !pack_stk_wr) {
struct ieee80211_hdr *frame = NULL;
const struct xradio_txpriv *txpriv = NULL;
u16 fctl = 0x0;
u32 len = 0x0;
u8 if_id = 0, link_id = 0, tid = 0;
/* query the timeout frame. */
spin_lock_bh(&old_queue->lock);
if (likely(old_item->skb && !hw_priv->query_packetID)) {
hw_priv->query_packetID = old_item->packetID;
old_item->pack_stk_wr = 1;
atomic_add(1, &hw_priv->query_cnt);
/* Info of stuck frames for debug.*/
txpriv = &old_item->txpriv;
frame = (struct ieee80211_hdr *)(&old_item->skb->data[txpriv->offset]);
fctl = frame->frame_control;
len = old_item->skb->len;
if_id = txpriv->if_id;
link_id = txpriv->link_id;
tid = txpriv->tid;
}
spin_unlock_bh(&old_queue->lock);
/* Dump Info of stuck frames. */
if (frame) {
txrx_printk(XRADIO_DBG_ERROR, "TX confirm timeout(%ds).\n",
WSM_CMD_LAST_CHANCE_TIMEOUT/HZ);
txrx_printk(XRADIO_DBG_ERROR, "if=%d, linkid=%d, tid=%d, " \
"old_packetID=0x%08x, fctl=0x%04x, len=%d, wr=%d\n",
if_id, link_id, tid, hw_priv->query_packetID, fctl, len,
pack_stk_wr);
}
/* Return half of timeout for query packet. */
*timeout = (WSM_CMD_LAST_CHANCE_TIMEOUT>>1);
} else if (unlikely(pack_stk_wr)){
*timeout = *timeout + (WSM_CMD_LAST_CHANCE_TIMEOUT>>1);
txrx_printk(XRADIO_DBG_MSG,"%s, wr and timeout=%ld\n", __func__, *timeout);
}
return pending;
}