hc
2023-12-06 08f87f769b595151be1afeff53e144f543faa614
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
/******************************************************************************
 *
 * Copyright(c) 2015 - 2019 Realtek Corporation.
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of version 2 of the GNU General Public License as
 * published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
 * more details.
 *
 *****************************************************************************/
#define _RTL8822BS_XMIT_C_
 
#include <drv_types.h>        /* PADAPTER, rtw_xmit.h and etc. */
#include <hal_data.h>        /* HAL_DATA_TYPE */
#include "../../hal_halmac.h"    /* rtw_halmac_sdio_tx_allowed() and etc. */
#include "../rtl8822b.h"    /* rtl8822b_update_txdesc() and etc. */
 
 
static s32 dequeue_writeport(PADAPTER adapter)
{
   struct mlme_priv *pmlmepriv = &adapter->mlmepriv;
   struct xmit_priv *pxmitpriv = &adapter->xmitpriv;
   struct dvobj_priv *pdvobjpriv = adapter_to_dvobj(adapter);
   struct xmit_buf *pxmitbuf;
   u32 polling_num = 0;
 
   pxmitbuf = select_and_dequeue_pending_xmitbuf(adapter);
 
   if (pxmitbuf == NULL)
       return _TRUE;
 
   /* check if hardware tx fifo page is enough */
   while (rtw_halmac_sdio_tx_allowed(pdvobjpriv, pxmitbuf->pdata, pxmitbuf->len)) {
       if (RTW_CANNOT_RUN(adapter)) {
           RTW_INFO("%s: bSurpriseRemoved(write port)\n", __func__);
           goto free_xmitbuf;
       }
 
       polling_num++;
       /* Only polling (0x7F / 10) times here, since rtw_halmac_sdio_tx_allowed() has polled 10 times within */
       if (((polling_num % (0x7F / 10))) == 0) {
           enqueue_pending_xmitbuf_to_head(pxmitpriv, pxmitbuf);
           rtw_msleep_os(1);
           return _FALSE;
       }
   }
 
#ifdef CONFIG_CHECK_LEAVE_LPS
   #ifdef CONFIG_LPS_CHK_BY_TP
   if (!adapter_to_pwrctl(adapter)->lps_chk_by_tp)
   #endif
       traffic_check_for_leave_lps(adapter, _TRUE, pxmitbuf->agg_num);
#endif
 
   rtw_write_port(adapter, 0, pxmitbuf->len, (u8 *)pxmitbuf);
 
free_xmitbuf:
   rtw_free_xmitbuf(pxmitpriv, pxmitbuf);
 
#ifdef CONFIG_SDIO_TX_TASKLET
   tasklet_hi_schedule(&pxmitpriv->xmit_tasklet);
#endif
 
   return _FALSE;
}
 
/*
 * Description
 *    For MI call.
 */
s32 rtl8822bs_dequeue_writeport(PADAPTER adapter)
{
   return dequeue_writeport(adapter);
}
 
/*
 * Description
 *    Transmit xmitbuf to hardware tx fifo
 *
 * Return
 *    _SUCCESS    ok
 *    _FAIL        something error
 */
s32 rtl8822bs_xmit_buf_handler(PADAPTER adapter)
{
   struct xmit_priv *pxmitpriv;
   u8 queue_empty, queue_pending;
   s32 ret;
 
 
   pxmitpriv = &adapter->xmitpriv;
 
   ret = _rtw_down_sema(&pxmitpriv->xmit_sema);
   if (_FAIL == ret) {
       RTW_ERR("%s: down SdioXmitBufSema fail!\n", __FUNCTION__);
       return _FAIL;
   }
 
   if (RTW_CANNOT_RUN(adapter)) {
       RTW_DBG(FUNC_ADPT_FMT "- bDriverStopped(%s) bSurpriseRemoved(%s)\n",
            FUNC_ADPT_ARG(adapter),
            rtw_is_drv_stopped(adapter) ? "True" : "False",
            rtw_is_surprise_removed(adapter) ? "True" : "False");
       return _FAIL;
   }
 
   if (rtw_mi_check_pending_xmitbuf(adapter) == 0)
       return _SUCCESS;
 
#ifdef CONFIG_LPS_LCLK
   ret = rtw_register_tx_alive(adapter);
   if (ret != _SUCCESS)
       return _SUCCESS;
#endif
 
   do {
       queue_empty = rtw_mi_dequeue_writeport(adapter);
   } while (!queue_empty);
 
#ifdef CONFIG_LPS_LCLK
   rtw_unregister_tx_alive(adapter);
#endif
 
   return _SUCCESS;
}
 
/*
 * Description:
 *    Aggregation packets and send to hardware
 *
 * Return:
 *    0    Success
 *    -1    Hardware resource(TX FIFO) not ready
 *    -2    Software resource(xmitbuf) not ready
 */
static s32 xmit_xmitframes(PADAPTER adapter, struct xmit_priv *pxmitpriv)
{
   s32 err, ret;
   u32 k = 0;
   u8 max_agg_num;
   struct hw_xmit *hwxmits, *phwxmit;
   u8 no_res, idx, hwentry;
   _irqL irql;
   struct tx_servq *ptxservq;
   _list *sta_plist, *sta_phead, *frame_plist, *frame_phead;
   struct xmit_frame *pxmitframe;
   _queue *pframe_queue;
   struct xmit_buf *pxmitbuf;
   u32 txlen, max_txbuf_len, max_pg_num;
   u32 page_size, desc_size;
   int inx[4];
   u8 pre_qsel = 0xFF, next_qsel = 0xFF;
   u8 single_sta_in_queue = _FALSE;
 
 
   err = 0;
   no_res = _FALSE;
   hwxmits = pxmitpriv->hwxmits;
   hwentry = pxmitpriv->hwxmit_entry;
   ptxservq = NULL;
   pxmitframe = NULL;
   pframe_queue = NULL;
   pxmitbuf = NULL;
   max_txbuf_len = MAX_XMITBUF_SZ;
   max_agg_num = 0xFF;
   rtw_halmac_get_oqt_size(adapter_to_dvobj(adapter), &max_agg_num);
   rtw_hal_get_def_var(adapter, HAL_DEF_TX_PAGE_SIZE, &page_size);
   desc_size = rtl8822b_get_tx_desc_size(adapter);
 
   if (adapter->registrypriv.wifi_spec == 1) {
       for (idx = 0; idx < 4; idx++)
           inx[idx] = pxmitpriv->wmm_para_seq[idx];
   } else {
       inx[0] = 0;
       inx[1] = 1;
       inx[2] = 2;
       inx[3] = 3;
   }
 
   /* 0(VO), 1(VI), 2(BE), 3(BK) */
   for (idx = 0; idx < hwentry; idx++) {
       phwxmit = hwxmits + inx[idx];
 
       if ((check_pending_xmitbuf(pxmitpriv) == _TRUE)
           && (adapter->mlmepriv.LinkDetectInfo.bHigherBusyTxTraffic == _TRUE)) {
           if ((phwxmit->accnt > 0) && (phwxmit->accnt < 5)) {
               err = -2;
               break;
           }
       }
 
       rtw_halmac_get_tx_queue_page_num(adapter_to_dvobj(adapter), inx[idx], &max_pg_num);
 
       _enter_critical_bh(&pxmitpriv->lock, &irql);
 
       sta_phead = get_list_head(phwxmit->sta_queue);
       sta_plist = get_next(sta_phead);
       /*
        * Because stop_sta_xmit may delete sta_plist at any time,
        * so we should add lock here, or while loop can not exit
        */
 
       single_sta_in_queue = rtw_end_of_queue_search(sta_phead, get_next(sta_plist));
 
       while (rtw_end_of_queue_search(sta_phead, sta_plist) == _FALSE) {
           ptxservq = LIST_CONTAINOR(sta_plist, struct tx_servq, tx_pending);
           sta_plist = get_next(sta_plist);
 
#ifdef DBG_XMIT_BUF
           RTW_INFO("%s idx:%d hwxmit_pkt_num:%d ptxservq_pkt_num:%d\n", __FUNCTION__, idx, phwxmit->accnt, ptxservq->qcnt);
           RTW_INFO("%s free_xmit_extbuf_cnt=%d free_xmitbuf_cnt=%d free_xmitframe_cnt=%d\n",
               __FUNCTION__, pxmitpriv->free_xmit_extbuf_cnt, pxmitpriv->free_xmitbuf_cnt,
                pxmitpriv->free_xmitframe_cnt);
#endif
           pframe_queue = &ptxservq->sta_pending;
 
           frame_phead = get_list_head(pframe_queue);
 
           while (rtw_is_list_empty(frame_phead) == _FALSE) {
               frame_plist = get_next(frame_phead);
               pxmitframe = LIST_CONTAINOR(frame_plist, struct xmit_frame, list);
 
               /* check xmit_buf size enough or not */
               txlen = desc_size + rtw_wlan_pkt_size(pxmitframe);
               next_qsel = pxmitframe->attrib.qsel;
               if ((NULL == pxmitbuf)
                   || ((_RND(pxmitbuf->len, 8) + txlen) > max_txbuf_len)
                   || ((pxmitbuf->pg_num + PageNum(txlen, page_size)) > max_pg_num)
                   || (k == max_agg_num)
                   || ((k != 0) && (_FAIL == rtw_hal_busagg_qsel_check(adapter, pre_qsel, next_qsel)))) {
                   if (pxmitbuf) {
                       if (pxmitbuf->len > 0 && pxmitbuf->priv_data) {
                           struct xmit_frame *pframe;
 
                           pframe = (struct xmit_frame *)pxmitbuf->priv_data;
                           pframe->agg_num = k;
                           pxmitbuf->agg_num = k;
                           rtl8822b_update_txdesc(pframe, pframe->buf_addr);
                           rtw_free_xmitframe(pxmitpriv, pframe);
                           pxmitbuf->priv_data = NULL;
                           enqueue_pending_xmitbuf(pxmitpriv, pxmitbuf);
 
                           if (single_sta_in_queue == _FALSE) {
                               /* break the loop in case there is more than one sta in this ac queue */
                               pxmitbuf = NULL;
                               err = -3;
                               break;
                           }
                       } else
                           rtw_free_xmitbuf(pxmitpriv, pxmitbuf);
                   }
 
                   pxmitbuf = rtw_alloc_xmitbuf(pxmitpriv);
                   if (pxmitbuf == NULL) {
#if 0
                       RTW_ERR("%s: xmit_buf is not enough!\n", __FUNCTION__);
#endif
                       err = -2;
#ifdef CONFIG_SDIO_TX_ENABLE_AVAL_INT
                       _rtw_up_sema(&GET_PRIMARY_ADAPTER(adapter)->xmitpriv.xmit_sema);
#endif /* CONFIG_SDIO_TX_ENABLE_AVAL_INT */
                       break;
                   }
                   k = 0;
               }
 
               /* ok to send, remove frame from queue */
#ifdef CONFIG_AP_MODE
               if (MLME_IS_AP(adapter) || MLME_IS_MESH(adapter)) {
                   if ((pxmitframe->attrib.psta->state & WIFI_SLEEP_STATE)
                       && (pxmitframe->attrib.triggered == 0)) {
                       RTW_INFO("%s: one not triggered pkt in queue when this STA sleep, break and goto next sta\n", __FUNCTION__);
                       break;
                   }
               }
#endif
               rtw_list_delete(&pxmitframe->list);
               ptxservq->qcnt--;
               phwxmit->accnt--;
 
               if (k == 0) {
                   pxmitbuf->ff_hwaddr = rtw_get_ff_hwaddr(pxmitframe);
                   pxmitbuf->priv_data = (u8 *)pxmitframe;
               }
 
               /* coalesce the xmitframe to xmitbuf */
               pxmitframe->pxmitbuf = pxmitbuf;
               pxmitframe->buf_addr = pxmitbuf->ptail;
 
               ret = rtw_xmitframe_coalesce(adapter, pxmitframe->pkt, pxmitframe);
               if (ret == _FAIL) {
                   RTW_ERR("%s: coalesce FAIL!", __FUNCTION__);
                   /* Todo: error handler */
               } else {
                   k++;
                   if (k != 1)
                       rtl8822b_update_txdesc(pxmitframe, pxmitframe->buf_addr);
                   rtw_count_tx_stats(adapter, pxmitframe, pxmitframe->attrib.last_txcmdsz);
                   pre_qsel = pxmitframe->attrib.qsel;
                   txlen = desc_size + pxmitframe->attrib.last_txcmdsz;
                   pxmitframe->pg_num =  PageNum(txlen, page_size);
                   pxmitbuf->pg_num += pxmitframe->pg_num;
                   pxmitbuf->ptail += _RND(txlen, 8); /* round to 8 bytes alignment */
                   pxmitbuf->len = _RND(pxmitbuf->len, 8) + txlen;
               }
 
               if (k != 1)
                   rtw_free_xmitframe(pxmitpriv, pxmitframe);
               pxmitframe = NULL;
           }
#if 0
           /* dump xmit_buf to hw tx fifo */
           if (pxmitbuf && (pxmitbuf->len > 0)) {
               struct xmit_frame *pframe;
 
               RTW_INFO("STA pxmitbuf->len=%d enqueue\n", pxmitbuf->len);
 
               pframe = (struct xmit_frame *)pxmitbuf->priv_data;
               pframe->agg_num = k;
               pxmitbuf->agg_num = k;
               rtl8822b_update_txdesc(pframe, pframe->buf_addr);
               rtw_free_xmitframe(pxmitpriv, pframe);
               pxmitbuf->priv_data = NULL;
               enqueue_pending_xmitbuf(pxmitpriv, pxmitbuf);
 
               pxmitbuf = NULL;
           }
#endif
           if (_rtw_queue_empty(pframe_queue) == _TRUE)
               rtw_list_delete(&ptxservq->tx_pending);
           else if (err == -3) {
               /* Re-arrange the order of stations in this ac queue to balance the service for these stations */
               rtw_list_delete(&ptxservq->tx_pending);
               rtw_list_insert_tail(&ptxservq->tx_pending, get_list_head(phwxmit->sta_queue));
               err = 0;
           }
 
           if (err)
               break;
       }
       _exit_critical_bh(&pxmitpriv->lock, &irql);
 
       /* dump xmit_buf to hw tx fifo */
       if (pxmitbuf) {
           if (pxmitbuf->len > 0) {
               struct xmit_frame *pframe;
 
               pframe = (struct xmit_frame *)pxmitbuf->priv_data;
               pframe->agg_num = k;
               pxmitbuf->agg_num = k;
               rtl8822b_update_txdesc(pframe, pframe->buf_addr);
               rtw_free_xmitframe(pxmitpriv, pframe);
               pxmitbuf->priv_data = NULL;
               enqueue_pending_xmitbuf(pxmitpriv, pxmitbuf);
               rtw_yield_os();
           } else
               rtw_free_xmitbuf(pxmitpriv, pxmitbuf);
           pxmitbuf = NULL;
       }
 
       if (err == -2)
           break;
   }
 
   return err;
}
 
/*
 * Description
 *    Transmit xmitframe from queue
 *
 * Return
 *    _SUCCESS    ok
 *    _FAIL        something error
 */
static s32 xmit_handler(PADAPTER adapter)
{
   struct xmit_priv *pxmitpriv;
   s32 ret;
   _irqL irql;
 
 
   pxmitpriv = &adapter->xmitpriv;
 
   ret = _rtw_down_sema(&pxmitpriv->SdioXmitSema);
   if (_FAIL == ret) {
       RTW_ERR("%s: down sema fail!\n", __FUNCTION__);
       return _FAIL;
   }
 
next:
   if (RTW_CANNOT_RUN(adapter)) {
       RTW_DBG(FUNC_ADPT_FMT "- bDriverStopped(%s) bSurpriseRemoved(%s)\n",
            FUNC_ADPT_ARG(adapter),
            rtw_is_drv_stopped(adapter) ? "True" : "False",
            rtw_is_surprise_removed(adapter) ? "True" : "False");
       return _FAIL;
   }
 
   _enter_critical_bh(&pxmitpriv->lock, &irql);
   ret = rtw_txframes_pending(adapter);
   _exit_critical_bh(&pxmitpriv->lock, &irql);
   /* All queues are empty! */
   if (!ret)
       return _SUCCESS;
 
   /* Dequeue frame and write to hardware */
   ret = xmit_xmitframes(adapter, pxmitpriv);
   if (ret == -2) {
       _rtw_up_sema(&pxmitpriv->SdioXmitSema);
       /*
        * here sleep 1ms will cause big TP loss of TX
        * from 50+ to 40+
        */
       if (adapter->registrypriv.wifi_spec)
           rtw_msleep_os(1);
       else
#ifdef CONFIG_REDUCE_TX_CPU_LOADING
           rtw_msleep_os(1);
#else
#ifdef RTW_XMIT_THREAD_HIGH_PRIORITY_AGG
           rtw_usleep_os(10);
#else
           rtw_yield_os();
#endif
#endif
       goto next;
   }
 
   return _SUCCESS;
}
 
thread_return rtl8822bs_xmit_thread(thread_context context)
{
   s32 ret;
   PADAPTER adapter;
   struct xmit_priv *pxmitpriv;
   u8 thread_name[20] = {0};
#ifdef RTW_XMIT_THREAD_HIGH_PRIORITY_AGG
#ifdef PLATFORM_LINUX
   struct sched_param param = { .sched_priority = 1 };
 
   sched_setscheduler(current, SCHED_FIFO, &param);
#endif /* PLATFORM_LINUX */
#endif /* RTW_XMIT_THREAD_HIGH_PRIORITY_AGG */
 
 
   ret = _SUCCESS;
   adapter = (PADAPTER)context;
   pxmitpriv = &adapter->xmitpriv;
 
   rtw_sprintf(thread_name, 20, "RTWHALXT-"ADPT_FMT, ADPT_ARG(adapter));
   thread_enter(thread_name);
 
   RTW_INFO("start "FUNC_ADPT_FMT"\n", FUNC_ADPT_ARG(adapter));
 
   do {
       ret = xmit_handler(adapter);
       flush_signals_thread();
   } while (_SUCCESS == ret);
 
   RTW_INFO(FUNC_ADPT_FMT " Exit\n", FUNC_ADPT_ARG(adapter));
 
   rtw_thread_wait_stop();
 
   return 0;
}
 
/*
 * Description:
 *    Transmit manage frame
 *
 * Return:
 *    _SUCCESS    ok or enqueue
 *    _FAIL        fail
 */
s32 rtl8822bs_mgnt_xmit(PADAPTER adapter, struct xmit_frame *pmgntframe)
{
   s32 ret = _SUCCESS;
   struct dvobj_priv *pdvobjpriv;
   struct xmit_priv *pxmitpriv;
   struct pkt_attrib *pattrib;
   struct xmit_buf *pxmitbuf;
   u32 page_size, desc_size;
   u16 subtype;
   u8 *pframe;
 
 
   pdvobjpriv = adapter_to_dvobj(adapter);
   pxmitpriv = &adapter->xmitpriv;
   pattrib = &pmgntframe->attrib;
   pxmitbuf = pmgntframe->pxmitbuf;
   rtw_hal_get_def_var(adapter, HAL_DEF_TX_PAGE_SIZE, &page_size);
   desc_size = rtl8822b_get_tx_desc_size(adapter);
 
   rtl8822b_update_txdesc(pmgntframe, pmgntframe->buf_addr);
 
   pxmitbuf->len = desc_size + pattrib->last_txcmdsz;
   pxmitbuf->pg_num = PageNum(pxmitbuf->len, page_size);
   pxmitbuf->ptail = pmgntframe->buf_addr + pxmitbuf->len;
 
   pframe = pmgntframe->buf_addr + desc_size;
   subtype = get_frame_sub_type(pframe);
 
   rtw_count_tx_stats(adapter, pmgntframe, pattrib->last_txcmdsz);
 
   rtw_free_xmitframe(pxmitpriv, pmgntframe);
   pxmitbuf->priv_data = NULL;
 
   if (subtype == WIFI_BEACON) {
       /* dump beacon directly */
       ret = rtw_write_port(adapter, 0, pxmitbuf->len, (u8 *)pxmitbuf);
       if (ret != _SUCCESS)
           rtw_sctx_done_err(&pxmitbuf->sctx, RTW_SCTX_DONE_WRITE_PORT_ERR);
 
       rtw_free_xmitbuf(pxmitpriv, pxmitbuf);
   } else
       enqueue_pending_xmitbuf(pxmitpriv, pxmitbuf);
 
   return ret;
}
 
/*
 * Description:
 *    Enqueue xmitframe
 *
 * Return:
 *    _TRUE    enqueue ok
 *    _FALSE    fail
 */
s32 rtl8822bs_hal_xmit_enqueue(PADAPTER adapter, struct xmit_frame *pxmitframe)
{
   struct xmit_priv *pxmitpriv;
   s32 ret;
 
 
   pxmitpriv = &adapter->xmitpriv;
 
   ret = rtw_xmitframe_enqueue(adapter, pxmitframe);
   if (ret != _SUCCESS) {
       rtw_free_xmitframe(pxmitpriv, pxmitframe);
       pxmitpriv->tx_drop++;
       return _FALSE;
   }
 
#ifdef CONFIG_SDIO_TX_TASKLET
   tasklet_hi_schedule(&pxmitpriv->xmit_tasklet);
#else /* !CONFIG_SDIO_TX_TASKLET */
   _rtw_up_sema(&pxmitpriv->SdioXmitSema);
#endif /* !CONFIG_SDIO_TX_TASKLET */
 
   return _TRUE;
}
 
/*
 * Description:
 *    Handle xmitframe(packet) come from rtw_xmit()
 *
 * Return:
 *    _TRUE    handle packet directly, maybe ok or drop
 *    _FALSE    enqueue, temporary can't transmit packets to hardware
 */
s32 rtl8822bs_hal_xmit(PADAPTER adapter, struct xmit_frame *pxmitframe)
{
   struct xmit_priv *pxmitpriv;
   _irqL irql;
   s32 ret;
 
 
   pxmitpriv = &adapter->xmitpriv;
 
#ifdef CONFIG_80211N_HT
   if ((pxmitframe->frame_tag == DATA_FRAMETAG)
       && (pxmitframe->attrib.ether_type != 0x0806)
       && (pxmitframe->attrib.ether_type != 0x888e)
       && (pxmitframe->attrib.dhcp_pkt != 1)) {
       if (adapter->mlmepriv.LinkDetectInfo.bBusyTraffic == _TRUE)
           rtw_issue_addbareq_cmd(adapter, pxmitframe);
   }
#endif /* CONFIG_80211N_HT */
 
   _enter_critical_bh(&pxmitpriv->lock, &irql);
   ret = rtl8822bs_hal_xmit_enqueue(adapter, pxmitframe);
   _exit_critical_bh(&pxmitpriv->lock, &irql);
   if (ret != _TRUE) {
       RTW_INFO("%s: enqueue xmitframe FAIL!\n", __FUNCTION__);
       return _TRUE;
   }
 
   return _FALSE;
}
 
/*
 * Return
 *    _SUCCESS    start thread ok
 *    _FAIL        start thread fail
 *
 */
s32 rtl8822bs_init_xmit_priv(PADAPTER adapter)
{
   struct xmit_priv *xmitpriv;
 
 
   xmitpriv = &adapter->xmitpriv;
 
   _rtw_init_sema(&xmitpriv->SdioXmitSema, 0);
   rtl8822b_init_xmit_priv(adapter);
   return _SUCCESS;
}
 
void rtl8822bs_free_xmit_priv(PADAPTER adapter)
{
   struct xmit_priv *pxmitpriv;
   struct xmit_buf *pxmitbuf;
   _queue *pqueue;
   _list *plist, *phead;
   _list tmplist;
   _irqL irql;
 
 
   pxmitpriv = &adapter->xmitpriv;
   pqueue = &pxmitpriv->pending_xmitbuf_queue;
   phead = get_list_head(pqueue);
   _rtw_init_listhead(&tmplist);
 
   _enter_critical_bh(&pqueue->lock, &irql);
   if (_rtw_queue_empty(pqueue) == _FALSE) {
       /*
        * Insert tmplist to end of queue, and delete phead
        * then tmplist become head of queue.
        */
       rtw_list_insert_tail(&tmplist, phead);
       rtw_list_delete(phead);
   }
   _exit_critical_bh(&pqueue->lock, &irql);
 
   phead = &tmplist;
   while (rtw_is_list_empty(phead) == _FALSE) {
       plist = get_next(phead);
       rtw_list_delete(plist);
 
       pxmitbuf = LIST_CONTAINOR(plist, struct xmit_buf, list);
       rtw_free_xmitframe(pxmitpriv, (struct xmit_frame *)pxmitbuf->priv_data);
       pxmitbuf->priv_data = NULL;
       rtw_free_xmitbuf(pxmitpriv, pxmitbuf);
   }
}