hc
2024-12-19 9370bb92b2d16684ee45cf24e879c93c509162da
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
/******************************************************************************
 *
 * Copyright(c) 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 _HAL_API_BTC_C_
#include "hal_headers.h"
#include "btc/hal_btc.h"
 
#ifdef CONFIG_BTCOEX
/*******************************************
 * C2H FW message
 *******************************************/
#define BTC_FWBUF_NUM 4
struct fw_msg_entry {
   _os_list list;
   u8 c2h_class;
   u8 c2h_func;
   u16 len;
   u8 buf[RTW_PHL_BTC_FWINFO_BUF];
};
 
static void _bt_msg_init(struct rtw_hal_com_t *hal_com,
               struct hal_bt_msg *msg)
{
   void *d = halcom_to_drvpriv(hal_com);
 
   _os_spinlock_init(d, &msg->lock);
   _os_mem_set(d, &msg->latest[0], 0, RTW_BTC_OVERWRITE_BUF_LEN);
   _os_mem_set(d, &msg->working[0], 0, RTW_BTC_OVERWRITE_BUF_LEN);
   msg->len = 0;
   msg->cnt = 0;
}
 
static void _bt_msg_deinit(struct rtw_hal_com_t *hal_com,
               struct hal_bt_msg *msg)
{
   void *d = halcom_to_drvpriv(hal_com);
 
   _os_spinlock_free(d, &msg->lock);
}
 
static void _msg_enq(struct rtw_hal_com_t *hal_com,
           struct phl_queue *q, struct fw_msg_entry *entry)
{
   pq_push(halcom_to_drvpriv(hal_com), q, &entry->list, _tail, _bh);
}
 
static struct fw_msg_entry *_msg_deq(struct rtw_hal_com_t *hal_com,
                   struct phl_queue *q)
{
   struct fw_msg_entry *entry = NULL;
   _os_list *list = NULL;
 
   if (pq_pop(halcom_to_drvpriv(hal_com), q, &list, _first, _bh))
       entry = (struct fw_msg_entry *)list;
 
   return entry;
}
 
static bool _fw_msg_init(struct rtw_hal_com_t *hal_com)
{
   void *d = halcom_to_drvpriv(hal_com);
   struct btc_fw_msg *fw_msg = &hal_com->btc_msg;
   struct fw_msg_entry *entry = NULL;
   u16 i = 0;
 
   _os_spinlock_init(d, &fw_msg->lock);
   fw_msg->fev_cnt = 0;
 
   _bt_msg_init(hal_com, &fw_msg->btinfo);
   _bt_msg_init(hal_com, &fw_msg->scbd);
 
   pq_init(d, &fw_msg->idleq);
   pq_init(d, &fw_msg->waitq);
   for (i = 0; i < BTC_FWBUF_NUM; i++) {
       entry = (struct fw_msg_entry *)_os_kmem_alloc(d,
                   sizeof(struct fw_msg_entry));
       if (entry)
           _msg_enq(hal_com, &fw_msg->idleq, entry);
       else
           return false;
   }
 
   return true;
}
 
static void _fw_msg_free(struct rtw_hal_com_t *hal_com)
{
   void *d = halcom_to_drvpriv(hal_com);
   struct btc_fw_msg *fw_msg = &hal_com->btc_msg;
   struct fw_msg_entry *entry = NULL;
 
   _bt_msg_deinit(hal_com, &fw_msg->btinfo);
   _bt_msg_deinit(hal_com, &fw_msg->scbd);
 
   while (1) {
       entry = _msg_deq(hal_com, &fw_msg->waitq);
       if (entry)
           _os_kmem_free(d, entry, sizeof(struct fw_msg_entry));
       else
           break;
   }
   pq_deinit(d, &fw_msg->waitq);
 
   while (1) {
       entry = _msg_deq(hal_com, &fw_msg->idleq);
       if (entry)
           _os_kmem_free(d, entry, sizeof(struct fw_msg_entry));
       else
           break;
   }
   pq_deinit(d, &fw_msg->idleq);
 
   _os_spinlock_free(d, &fw_msg->lock);
}
 
static void _copy_btmsg(struct rtw_hal_com_t *hal_com,
           struct hal_bt_msg *msg, u16 len, u8 *buf)
{
   void *d = halcom_to_drvpriv(hal_com);
 
   if (len > RTW_BTC_OVERWRITE_BUF_LEN)
       return;
 
   _os_spinlock(d, &msg->lock, _bh, NULL);
   msg->cnt++;
   msg->len = len;
   if (len <= RTW_BTC_OVERWRITE_BUF_LEN)
       _os_mem_cpy(d, &msg->latest[0], buf, len);
   _os_spinunlock(d, &msg->lock, _bh, NULL);
}
 
static bool _fw_evnt_enq(struct rtw_hal_com_t *hal_com,
           u8 cls, u8 func, u16 len, u8 *buf)
{
   struct btc_fw_msg *fmsg = &hal_com->btc_msg;
   void *d = halcom_to_drvpriv(hal_com);
   struct fw_msg_entry *entry = NULL;
 
   entry = _msg_deq(hal_com, &fmsg->idleq);
   if (!entry)
       return false;
 
   entry->c2h_class = cls;
   entry->c2h_func = func;
   entry->len = len;
   if (len <= RTW_PHL_BTC_FWINFO_BUF)
       _os_mem_cpy(d, &entry->buf[0], buf, len);
   _msg_enq(hal_com, &fmsg->waitq, entry);
 
   return true;
}
 
enum rtw_hal_status rtw_hal_btc_init(struct rtw_phl_com_t *phl_com,
                   struct hal_info_t *hal_info)
{
   enum rtw_hal_status hal_status = RTW_HAL_STATUS_SUCCESS;
   struct btc_t *btc = NULL;
   void *drv_priv = NULL;
 
   PHL_TRACE(COMP_PHL_BTC, _PHL_DEBUG_, "%s\n", __FUNCTION__);
 
   drv_priv = halcom_to_drvpriv(hal_info->hal_com);
   btc = _os_mem_alloc(drv_priv, sizeof(struct btc_t));
   if (!btc) {
       hal_status = RTW_HAL_STATUS_RESOURCE;
       goto error_btc_init;
   }
 
   /* assign phl_com & hal_com */
   btc->phl = phl_com;
   btc->hal = hal_info->hal_com;
 
   if (!hal_btc_init(btc)) {
       hal_status = RTW_HAL_STATUS_BTC_INIT_FAILURE;
       goto error_btc_init;
   }
 
   if (!_fw_msg_init(hal_info->hal_com)) {
       hal_status = RTW_HAL_STATUS_BTC_INIT_FAILURE;
       goto error_msg_init;
   }
 
 
   hal_status = RTW_HAL_STATUS_SUCCESS;
   hal_info->btc = btc;
 
   return hal_status;
 
error_msg_init:
   _fw_msg_free(hal_info->hal_com);
 
error_btc_init:
   if (btc) {
       _os_mem_free(drv_priv, (void *)btc, sizeof(struct btc_t));
       hal_info->btc = NULL;
   }
 
   return hal_status;
}
 
void rtw_hal_btc_deinit(struct rtw_phl_com_t *phl_com,
               struct hal_info_t *hal_info)
{
   struct btc_t *btc = hal_info->btc;
   void *drv_priv = NULL;
 
   _fw_msg_free(hal_info->hal_com);
 
   drv_priv = halcom_to_drvpriv(hal_info->hal_com);
   if (drv_priv && btc) {
       hal_btc_deinit(btc);
       _os_mem_free(drv_priv, (void *)btc, sizeof(struct btc_t));
   }
}
 
/**********************/
/* called by non-hal layers */
/**********************/
void rtw_hal_btc_update_role_info_ntfy(void *hinfo,  u8 role_id,
                      struct rtw_wifi_role_t *wrole,
                      struct rtw_wifi_role_link_t *rlink,
                      struct rtw_phl_stainfo_t *sta,
                      enum link_state lstate)
{
   struct hal_info_t *h = (struct hal_info_t *)hinfo;
   struct btc_t *btc = (struct btc_t *)h->btc;
   struct btc_ops *ops = btc->ops;
   struct btc_wl_link_info r = {0};
#ifdef CONFIG_PHL_P2PPS
   u8 i =0;
#endif /* CONFIG_PHL_P2PPS */
 
   if (role_id >= MAX_WIFI_ROLE_NUMBER)
       return;
   PHL_TRACE(COMP_PHL_BTC, _PHL_INFO_, "%s: link_state(%s,%d), hw_band(%d), rid(%d), macid(%d)\n",
       __FUNCTION__, rtw_phl_get_lstate_str(lstate), lstate,
       rlink->hw_band, role_id, sta->macid);
   if (wrole) {
#ifdef CONFIG_PHL_P2PPS
       r.noa = 0;
       r.noa_duration = 0;
       for (i = 0; i < MAX_NOA_DESC; i++) {
           if (wrole->noa_desc[i].enable) {
               r.noa = 1;
               r.noa_duration = wrole->noa_desc[i].duration;
               break;
           }
       }
#endif /* CONFIG_PHL_P2PPS */
       r.role = wrole->type;
       r.phy = rlink->hw_band;
       r.pid = rlink->hw_port;
       r.active = wrole->active;
       r.connected = rlink->mstate;
       r.mode = rlink->cap.wmode;
       r.client_cnt = rlink->assoc_sta_queue.cnt;
       #ifdef RTW_PHL_BCN
       r.bcn_period = rlink->bcn_cmn.bcn_interval;
       r.dtim_period = rlink->dtim_period;
       #endif
       hal_mem_cpy(h->hal_com,
                   &r.chdef,
                   &rlink->chandef,
                   sizeof(struct rtw_chan_def));
   }
 
   if (sta && rtw_phl_role_is_client_category(sta->wrole)) {/*associated node info??*/
       r.mac_id = sta->macid;
       r.mode = (u8)sta->wmode;
       hal_mem_cpy(h->hal_com, r.mac_addr, sta->mac_addr, MAC_ALEN);
   }
   PHL_TRACE(COMP_PHL_BTC, _PHL_INFO_, "%s: rid(%d), phy(%d), mac_id(%d), client_cnt(%d)\n",
           __FUNCTION__, role_id, r.phy, r.mac_id, r.client_cnt);
   if (ops && ops->ntfy_role_info)
       ops->ntfy_role_info(btc, role_id, &r, lstate);
}
 
void
rtw_hal_btc_ap_client_notify(void *hinfo,
       struct rtw_wifi_role_link_t *rlink, enum link_state lstate)
{
   struct hal_info_t *h = (struct hal_info_t *)hinfo;
   struct rtw_phl_stainfo_t *sta = NULL;
 
   sta = rtw_phl_get_stainfo_self(h->phl_com->phl_priv, rlink);
   rtw_hal_btc_update_role_info_ntfy(h, rlink->wrole->id, rlink->wrole,
                   rlink, sta, lstate);
}
 
void rtw_hal_btc_power_on_ntfy(void *hinfo)
{
}
 
void rtw_hal_btc_power_off_ntfy(void *hinfo)
{
   struct hal_info_t *h = (struct hal_info_t *)hinfo;
   struct btc_t *btc = (struct btc_t *)h->btc;
   struct btc_ops *ops = btc->ops;
 
   if (ops && ops->ntfy_power_off)
       ops->ntfy_power_off(btc);
}
 
void rtw_hal_btc_init_coex_cfg_ntfy(void *hinfo)
{
   struct hal_info_t *h = (struct hal_info_t *)hinfo;
   struct btc_t *btc = (struct btc_t *)h->btc;
   struct btc_ops *ops = btc->ops;
   u8 mode = btc->phl->dev_cap.btc_mode;
 
   if (ops && ops->ntfy_init_coex)
       ops->ntfy_init_coex(btc, mode);
}
 
void rtw_hal_btc_bk_mdl_start_ntfy(void *hinfo)
{
   struct hal_info_t *h = (struct hal_info_t *)hinfo;
   struct btc_t *btc = (struct btc_t *)h->btc;
   struct btc_ops *ops = btc->ops;
 
   if (ops && ops->ntfy_init_coex)
       ops->ntfy_init_coex(btc, BTC_MODE_MECHANISM_INIT);
}
 
void rtw_hal_btc_redownload_fw_ntfy(void *hinfo)
{
   struct hal_info_t *h = (struct hal_info_t *)hinfo;
   struct btc_t *btc = (struct btc_t *)h->btc;
   struct btc_ops *ops = btc->ops;
 
   if (ops && ops->ntfy_radio_state)
       ops->ntfy_radio_state(btc, BTC_RFCTRL_RESUME_DL_FW);
}
 
void rtw_hal_btc_scan_start_ntfy(void *hinfo, enum phl_phy_idx phy_idx,
                 enum band_type band)
{
   struct hal_info_t *h = (struct hal_info_t *)hinfo;
   struct btc_t *btc = (struct btc_t *)h->btc;
   struct btc_ops *ops = btc->ops;
 
   if (ops && ops->ntfy_scan_start)
       ops->ntfy_scan_start(btc, phy_idx, band);
}
 
void rtw_hal_btc_scan_finish_ntfy(void *hinfo, enum phl_phy_idx phy_idx)
{
   struct hal_info_t *h = (struct hal_info_t *)hinfo;
   struct btc_t *btc = (struct btc_t *)h->btc;
   struct btc_ops *ops = btc->ops;
 
   if (ops && ops->ntfy_scan_finish)
       ops->ntfy_scan_finish(btc, phy_idx);
}
 
void rtw_hal_btc_switch_band_ntfy(void *hinfo, enum phl_phy_idx phy_idx,
                 enum band_type band)
{
   struct hal_info_t *h = (struct hal_info_t *)hinfo;
   struct btc_t *btc = (struct btc_t *)h->btc;
   struct btc_ops *ops = btc->ops;
 
   if (ops && ops->ntfy_switch_band)
       ops->ntfy_switch_band(btc, phy_idx, band);
}
 
void rtw_hal_btc_packet_event_ntfy(void *hinfo, u8 pkt_evt_type)
{
   struct hal_info_t *h = (struct hal_info_t *)hinfo;
   struct btc_t *btc = (struct btc_t *)h->btc;
   struct btc_ops *ops = btc->ops;
 
   if (ops && ops->ntfy_specific_packet)
       ops->ntfy_specific_packet(btc, pkt_evt_type);
}
 
void rtw_hal_btc_radio_state_ntfy(void *hinfo, u8 rf_state)
{
   struct hal_info_t *h = (struct hal_info_t *)hinfo;
   struct btc_t *btc = (struct btc_t *)h->btc;
   struct btc_ops *ops = btc->ops;
 
   if (ops && ops->ntfy_radio_state)
       ops->ntfy_radio_state(btc, rf_state);
}
 
void rtw_hal_btc_customerize_ntfy(void *hinfo, u8 type, u16 len, u8 *buf)
{
   struct hal_info_t *h = (struct hal_info_t *)hinfo;
   struct btc_t *btc = (struct btc_t *)h->btc;
   struct btc_ops *ops = btc->ops;
 
   if (ops && ops->ntfy_customerize)
       ops->ntfy_customerize(btc, type, len, buf);
}
 
u8 rtw_hal_btc_wl_rfk_ntfy(struct rtw_hal_com_t *hal_com, u8 phy_idx, u8 rfk_type, u8 rfk_process)
{
   struct hal_info_t *h = hal_com->hal_priv;
   struct btc_t *btc = (struct btc_t *)h->btc;
   struct btc_ops *ops = btc->ops;
   u8 val = 0;
 
   if (ops && ops->ntfy_wl_rfk)
       val = ops->ntfy_wl_rfk(btc, phy_idx, rfk_type, rfk_process);
 
   return val;
}
 
void rtw_hal_btc_wl_status_ntfy(void *hinfo, struct rtw_phl_com_t *phl_com, u8 ntfy_num,
               struct rtw_phl_stainfo_t *sta[], u8 reason)
{
   struct hal_info_t *h = (struct hal_info_t *)hinfo;
   struct btc_t *btc = (struct btc_t *)h->btc;
   struct btc_ops *ops = btc->ops;
 
   if (ops && ops->ntfy_wl_sta)
       ops->ntfy_wl_sta(btc, &phl_com->phl_stats, ntfy_num, sta, reason);
}
 
void rtw_hal_btc_fwinfo_ntfy(void *hinfo)
{
   struct hal_info_t *h = (struct hal_info_t *)hinfo;
   struct btc_t *btc = (struct btc_t *)h->btc;
   struct btc_ops *ops = btc->ops;
   struct rtw_hal_com_t *hal_com = h->hal_com;
   void *d = halcom_to_drvpriv(hal_com);
   struct btc_fw_msg *fmsg = &hal_com->btc_msg;
   struct hal_bt_msg *bmsg = NULL;
   struct fw_msg_entry *entry = NULL;
 
   _os_spinlock(d, &fmsg->lock, _bh, NULL);
   fmsg->fev_cnt = 0;
   _os_spinunlock(d, &fmsg->lock, _bh, NULL);
 
   if (!ops || !ops->ntfy_fwinfo)
       return;
 
   /* bt score board notification */
   while (1) {
       bmsg = &fmsg->scbd;
       _os_spinlock(d, &bmsg->lock, _bh, NULL);
       if (bmsg->cnt) {
           bmsg->cnt = 0;
           _os_mem_cpy(d, &bmsg->working[0],
               &bmsg->latest[0], bmsg->len);
           _os_spinunlock(d, &bmsg->lock, _bh, NULL);
           PHL_TRACE(COMP_PHL_BTC, _PHL_DEBUG_,
                 "[BTC], scoreboard notify !! \n");
           ops->ntfy_fwinfo(btc, &bmsg->working[0], bmsg->len,
                   BTC_CLASS_FEV, BTC_FEV_BT_SCBD);
       } else {
           _os_spinunlock(d, &bmsg->lock, _bh, NULL);
           break;
       }
   }
 
   /* bt info notification */
   while (1) {
       bmsg = &fmsg->btinfo;
       _os_spinlock(d, &bmsg->lock, _bh, NULL);
       if (bmsg->cnt) {
           bmsg->cnt = 0;
           _os_mem_cpy(d, &bmsg->working[0],
               &bmsg->latest[0], bmsg->len);
           _os_spinunlock(d, &bmsg->lock, _bh, NULL);
           PHL_TRACE(COMP_PHL_BTC, _PHL_DEBUG_,
                 "[BTC], bt info notify !! \n");
           ops->ntfy_fwinfo(btc, &bmsg->working[0], bmsg->len,
                   BTC_CLASS_FEV, BTC_FEV_BT_INFO);
       } else {
           _os_spinunlock(d, &bmsg->lock, _bh, NULL);
           break;
       }
   }
 
   /* common btc fw events */
   while (1) {
       entry = _msg_deq(hal_com, &fmsg->waitq);
       if (entry) {
           PHL_TRACE(COMP_PHL_BTC, _PHL_DEBUG_,
                 "[BTC], fw event notify !! \n");
           ops->ntfy_fwinfo(btc, entry->buf, entry->len,
                   entry->c2h_class, entry->c2h_func);
           _msg_enq(hal_com, &fmsg->idleq, entry);
       }
       else
           break;
   }
}
 
static struct rtw_phl_stainfo_t *
_get_first_client_sta(
   void *hinfo,
   struct rtw_wifi_role_link_t *rlink,
   struct rtw_phl_stainfo_t *self)
{
   struct hal_info_t *h = (struct hal_info_t *)hinfo;
   struct rtw_phl_stainfo_t *n, *psta, *ret = NULL;
   void *drv = hal_to_drvpriv(h);
 
   if (rlink->assoc_sta_queue.cnt > 1) {
       /* more than one sta, ex: softap & assoc sta */
       _os_spinlock(drv, &rlink->assoc_sta_queue.lock, _bh, NULL);
       phl_list_for_loop_safe(psta, n, struct rtw_phl_stainfo_t,
           &rlink->assoc_sta_queue.queue, list) {
           if (_os_mem_cmp(drv, self->mac_addr, psta->mac_addr, MAC_ALEN) == 0) {
               /* skip softap self */
               continue;
           }
           ret = psta;
           break;
       }
       _os_spinunlock(drv, &rlink->assoc_sta_queue.lock, _bh, NULL);
   }
   return ret;
}
 
void rtw_hal_btc_timer(void *hinfo, void *timer)
{
   struct hal_info_t *h = (struct hal_info_t *)hinfo;
   struct btc_t *btc = (struct btc_t *)h->btc;
   struct btc_ops *ops = btc->ops;
   struct btc_tmr *btmr = NULL;
   u8 i = 0;
   bool found = false;
 
   PHL_TRACE(COMP_PHL_BTC, _PHL_DEBUG_,
       "[BTC], %s(), timer = 0x%p !!\n", __func__, timer);
 
   if (!hinfo || !timer)
       return;
 
   btmr = (struct btc_tmr *)timer;
 
   for (i = 0; i < BTC_TIMER_MAX; i++) {
       PHL_TRACE(COMP_PHL_BTC, _PHL_DEBUG_,
           "[BTC], %s(): btmr = 0x%p, &btc->timer[%d] = 0x%p \n",
               __func__, btmr, i, &btc->timer[i]);
       if (btmr == &btc->timer[i]) {
           found = true;
           PHL_TRACE(COMP_PHL_BTC, _PHL_DEBUG_,
               "[BTC], %s(): found timer %p, id = %d \n",
               __func__, btmr, btmr->id);
           break;
       }
   }
 
   if (ops && found) {
       if (btmr->id == BTC_TIMER_PERIODIC) {
           struct rtw_wifi_role_t *wrole = NULL;
           struct rtw_phl_mld_t *mld = NULL;
           struct rtw_phl_stainfo_t *sta = NULL;
           /* Support max link num is 3 for MLO */
           struct rtw_phl_stainfo_t *wrole_sta[MAX_WIFI_ROLE_NUMBER * 3] = {0};
           u8 ntfy_num = 0;
           u8 idx = 0;
 
           for (i = 0; i < MAX_WIFI_ROLE_NUMBER; i++) {
               wrole = &(btc->phl->wifi_roles[i]);
               if(wrole->mstate == MLME_LINKED) {
                   mld = rtw_phl_get_mld_self(btc->phl->phl_priv, wrole);
 
                   for (idx = 0; idx < wrole->rlink_num; idx++) {
                       sta = mld->phl_sta[idx];
                       if(sta != NULL) {
                           struct rtw_phl_stainfo_t *client = NULL;
 
                           client = _get_first_client_sta(hinfo,
                               &wrole->rlink[idx], sta);
                           wrole_sta[ntfy_num] =
                               ((client != NULL) ? client : sta);
                           ntfy_num++;
                       }
                   }
               }
           }
           rtw_hal_btc_wl_status_ntfy(hinfo, btc->phl, ntfy_num,
                   wrole_sta, PHL_BTC_NTFY_RSN_PERIOTIC);
       }
       PHL_TRACE(COMP_PHL_BTC, _PHL_DEBUG_,
           "[BTC], %s(): btmr->id = %d \n",
           __func__, btmr->id);
       if(ops->ntfy_timer)
           ops->ntfy_timer(btc, btmr->id);
   } else {
       PHL_INFO("[BTC], %s(): not found, ops = 0x%p, found = %d \n",
               __func__, ops, found);
   }
}
 
u32 rtw_hal_btc_req_bt_slot_t(void *hinfo, enum phl_band_idx hw_band)
{
   struct hal_info_t *h = (struct hal_info_t *)hinfo;
   struct btc_t *btc = (struct btc_t *)h->btc;
 
   return btc->bt_req_len[hw_band];
}
 
/***********************/
/* Called by BTC submodule */
/***********************/
void hal_btc_send_event(struct btc_t *btc, enum phl_band_idx hw_band,
           u8 *buf, u32 len, u16 ev_id)
{
#ifdef CONFIG_PHL_CMD_BTC
   rtw_phl_btc_send_cmd(btc->phl, hw_band, buf, len, ev_id);
#endif
}
 
void hal_btc_notify_ps_tdma(struct btc_t *btc, bool tdma_start)
{
#ifdef CONFIG_POWER_SAVE
   enum rtw_hal_status hstatus;
 
   hstatus = rtw_hal_ps_pwr_req(btc->phl, HAL_BTC_PWR_REQ, (tdma_start ? true : false));
   if (hstatus != RTW_HAL_STATUS_SUCCESS) {
       PHL_ERR("[BTC], %s, TDMA (%d) request pwr fail, status: %d \n",
           __func__, tdma_start, hstatus);
   }
#endif
}
 
bool rtw_hal_btc_proc_cmd(struct hal_info_t *hal_info, struct rtw_proc_cmd *incmd,
                       char *output, u32 out_len)
{
   if(incmd->in_type == RTW_ARG_TYPE_BUF)
       halbtc_cmd(hal_info->btc, incmd->in.buf, output, out_len);
   else if(incmd->in_type == RTW_ARG_TYPE_ARRAY){
       halbtc_cmd_parser(hal_info->btc, incmd->in.vector,
                   incmd->in_cnt_len, output, out_len);
   }
 
   return true;
}
 
#else
u32 rtw_hal_btc_req_bt_slot_t(void *hinfo, enum phl_band_idx hw_band)
{
   return 0;
}
 
static void _copy_btmsg(struct rtw_hal_com_t *hal_com,
           struct hal_bt_msg *msg, u16 len, u8 *buf)
{
   return;
}
 
static bool _fw_evnt_enq(struct rtw_hal_com_t *hal_com,
           u8 cls, u8 func, u16 len, u8 *buf)
{
   return true;
}
 
void rtw_hal_btc_scan_finish_ntfy(void *hinfo, enum phl_phy_idx phy_idx)
{
   return;
}
 
void rtw_hal_btc_scan_start_ntfy(void *hinfo, enum phl_phy_idx phy_idx,
                 enum band_type band)
{
   return;
}
 
#endif
 
enum rtw_hal_status
rtw_hal_btc_get_efuse_info(struct rtw_hal_com_t *hal_com,
   u8 *efuse_map, enum rtw_efuse_info info_type, void *value,
   u8 size, u8 map_valid)
{
   PHL_TRACE(COMP_PHL_BTC, _PHL_DEBUG_, "%s\n", __FUNCTION__);
   return RTW_HAL_STATUS_SUCCESS;
}
 
u32 rtw_hal_btc_process_c2h(void *hal, struct rtw_c2h_info *c2h, struct c2h_evt_msg *c2h_msg)
{
   struct hal_info_t *h = (struct hal_info_t *)hal;
#ifdef CONFIG_PHL_CMD_BTC
   struct btc_t *btc = (struct btc_t *)h->btc;
#endif
   struct rtw_hal_com_t *hal_com = h->hal_com;
   struct btc_fw_msg *fmsg = &hal_com->btc_msg;
   void *d = halcom_to_drvpriv(hal_com);
   u8 cls = c2h->c2h_class;
   u8 func = c2h->c2h_func;
   u16 len = c2h->content_len;
   u8 *buf = c2h->content;
 
   if (len && len < RTW_PHL_BTC_FWINFO_BUF) {
       if (cls == BTC_CLASS_FEV && func == BTC_FEV_BT_INFO)
           _copy_btmsg(hal_com, &fmsg->btinfo, len, buf);
       else if (cls == BTC_CLASS_FEV && func == BTC_FEV_BT_SCBD)
           _copy_btmsg(hal_com, &fmsg->scbd, len, buf);
       else
           _fw_evnt_enq(hal_com, cls, func, len, buf);
 
       _os_spinlock(d, &fmsg->lock, _bh, NULL);
       if (fmsg->fev_cnt == 0) {
           /* Only forward c2h content to btc */
#ifdef CONFIG_PHL_CMD_BTC
           if (rtw_phl_btc_send_cmd(btc->phl, HW_BAND_0, NULL, 0,
                       BTC_HMSG_FW_EV))
               fmsg->fev_cnt++;
#endif
       }
       _os_spinunlock(d, &fmsg->lock, _bh, NULL);
   } else {
       PHL_TRACE(COMP_PHL_BTC, _PHL_ERR_, "[BTC], %s(): Invalid c2h packet len : %d\n",
             __func__, len);
   }
 
   return 0;
}