rtlwifi: btcoexist: Modify driver to support BT coexistence in rtl8723be
[deliverable/linux.git] / drivers / net / wireless / rtlwifi / btcoexist / halbtc8723b1ant.c
1 /******************************************************************************
2 *
3 * Copyright(c) 2012 Realtek Corporation.
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of version 2 of the GNU General Public License as
7 * published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
14 * The full GNU General Public License is included in this distribution in the
15 * file called LICENSE.
16 *
17 * Contact Information:
18 * wlanfae <wlanfae@realtek.com>
19 * Realtek Corporation, No. 2, Innovation Road II, Hsinchu Science Park,
20 * Hsinchu 300, Taiwan.
21 *
22 * Larry Finger <Larry.Finger@lwfinger.net>
23 *
24 *****************************************************************************/
25
26 /***************************************************************
27 * Description:
28 *
29 * This file is for RTL8723B Co-exist mechanism
30 *
31 * History
32 * 2012/11/15 Cosa first check in.
33 *
34 ***************************************************************/
35
36 /***************************************************************
37 * include files
38 ***************************************************************/
39 #include "halbt_precomp.h"
40 /***************************************************************
41 * Global variables, these are static variables
42 ***************************************************************/
43 static struct coex_dm_8723b_1ant glcoex_dm_8723b_1ant;
44 static struct coex_dm_8723b_1ant *coex_dm = &glcoex_dm_8723b_1ant;
45 static struct coex_sta_8723b_1ant glcoex_sta_8723b_1ant;
46 static struct coex_sta_8723b_1ant *coex_sta = &glcoex_sta_8723b_1ant;
47
48 static const char *const GLBtInfoSrc8723b1Ant[] = {
49 "BT Info[wifi fw]",
50 "BT Info[bt rsp]",
51 "BT Info[bt auto report]",
52 };
53
54 static u32 glcoex_ver_date_8723b_1ant = 20130918;
55 static u32 glcoex_ver_8723b_1ant = 0x47;
56
57 /***************************************************************
58 * local function proto type if needed
59 ***************************************************************/
60 /***************************************************************
61 * local function start with halbtc8723b1ant_
62 ***************************************************************/
63 static u8 halbtc8723b1ant_bt_rssi_state(u8 level_num, u8 rssi_thresh,
64 u8 rssi_thresh1)
65 {
66 s32 bt_rssi = 0;
67 u8 bt_rssi_state = coex_sta->pre_bt_rssi_state;
68
69 bt_rssi = coex_sta->bt_rssi;
70
71 if (level_num == 2) {
72 if ((coex_sta->pre_bt_rssi_state == BTC_RSSI_STATE_LOW) ||
73 (coex_sta->pre_bt_rssi_state == BTC_RSSI_STATE_STAY_LOW)) {
74 if (bt_rssi >= rssi_thresh +
75 BTC_RSSI_COEX_THRESH_TOL_8723B_1ANT) {
76 bt_rssi_state = BTC_RSSI_STATE_HIGH;
77 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_BT_RSSI_STATE,
78 "[BTCoex], BT Rssi state switch to High\n");
79 } else {
80 bt_rssi_state = BTC_RSSI_STATE_STAY_LOW;
81 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_BT_RSSI_STATE,
82 "[BTCoex], BT Rssi state stay at Low\n");
83 }
84 } else {
85 if (bt_rssi < rssi_thresh) {
86 bt_rssi_state = BTC_RSSI_STATE_LOW;
87 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_BT_RSSI_STATE,
88 "[BTCoex], BT Rssi state switch to Low\n");
89 } else {
90 bt_rssi_state = BTC_RSSI_STATE_STAY_HIGH;
91 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_BT_RSSI_STATE,
92 "[BTCoex], BT Rssi state stay at High\n");
93 }
94 }
95 } else if (level_num == 3) {
96 if (rssi_thresh > rssi_thresh1) {
97 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_BT_RSSI_STATE,
98 "[BTCoex], BT Rssi thresh error!!\n");
99 return coex_sta->pre_bt_rssi_state;
100 }
101
102 if ((coex_sta->pre_bt_rssi_state == BTC_RSSI_STATE_LOW) ||
103 (coex_sta->pre_bt_rssi_state == BTC_RSSI_STATE_STAY_LOW)) {
104 if (bt_rssi >= rssi_thresh +
105 BTC_RSSI_COEX_THRESH_TOL_8723B_1ANT) {
106 bt_rssi_state = BTC_RSSI_STATE_MEDIUM;
107 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_BT_RSSI_STATE,
108 "[BTCoex], BT Rssi state switch to Medium\n");
109 } else {
110 bt_rssi_state = BTC_RSSI_STATE_STAY_LOW;
111 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_BT_RSSI_STATE,
112 "[BTCoex], BT Rssi state stay at Low\n");
113 }
114 } else if ((coex_sta->pre_bt_rssi_state ==
115 BTC_RSSI_STATE_MEDIUM) ||
116 (coex_sta->pre_bt_rssi_state ==
117 BTC_RSSI_STATE_STAY_MEDIUM)) {
118 if (bt_rssi >= rssi_thresh1 +
119 BTC_RSSI_COEX_THRESH_TOL_8723B_1ANT) {
120 bt_rssi_state = BTC_RSSI_STATE_HIGH;
121 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_BT_RSSI_STATE,
122 "[BTCoex], BT Rssi state switch to High\n");
123 } else if (bt_rssi < rssi_thresh) {
124 bt_rssi_state = BTC_RSSI_STATE_LOW;
125 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_BT_RSSI_STATE,
126 "[BTCoex], BT Rssi state switch to Low\n");
127 } else {
128 bt_rssi_state = BTC_RSSI_STATE_STAY_MEDIUM;
129 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_BT_RSSI_STATE,
130 "[BTCoex], BT Rssi state stay at Medium\n");
131 }
132 } else {
133 if (bt_rssi < rssi_thresh1) {
134 bt_rssi_state = BTC_RSSI_STATE_MEDIUM;
135 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_BT_RSSI_STATE,
136 "[BTCoex], BT Rssi state switch to Medium\n");
137 } else {
138 bt_rssi_state = BTC_RSSI_STATE_STAY_HIGH;
139 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_BT_RSSI_STATE,
140 "[BTCoex], BT Rssi state stay at High\n");
141 }
142 }
143 }
144
145 coex_sta->pre_bt_rssi_state = bt_rssi_state;
146
147 return bt_rssi_state;
148 }
149
150 static u8 halbtc8723b1ant_wifi_rssi_state(struct btc_coexist *btcoexist,
151 u8 index, u8 level_num,
152 u8 rssi_thresh, u8 rssi_thresh1)
153 {
154 s32 wifi_rssi = 0;
155 u8 wifi_rssi_state = coex_sta->pre_wifi_rssi_state[index];
156
157 btcoexist->btc_get(btcoexist,
158 BTC_GET_S4_WIFI_RSSI, &wifi_rssi);
159
160 if (level_num == 2) {
161 if ((coex_sta->pre_wifi_rssi_state[index] ==
162 BTC_RSSI_STATE_LOW) ||
163 (coex_sta->pre_wifi_rssi_state[index] ==
164 BTC_RSSI_STATE_STAY_LOW)) {
165 if (wifi_rssi >= rssi_thresh +
166 BTC_RSSI_COEX_THRESH_TOL_8723B_1ANT) {
167 wifi_rssi_state = BTC_RSSI_STATE_HIGH;
168 BTC_PRINT(BTC_MSG_ALGORITHM,
169 ALGO_WIFI_RSSI_STATE,
170 "[BTCoex], wifi RSSI state switch to High\n");
171 } else {
172 wifi_rssi_state = BTC_RSSI_STATE_STAY_LOW;
173 BTC_PRINT(BTC_MSG_ALGORITHM,
174 ALGO_WIFI_RSSI_STATE,
175 "[BTCoex], wifi RSSI state stay at Low\n");
176 }
177 } else {
178 if (wifi_rssi < rssi_thresh) {
179 wifi_rssi_state = BTC_RSSI_STATE_LOW;
180 BTC_PRINT(BTC_MSG_ALGORITHM,
181 ALGO_WIFI_RSSI_STATE,
182 "[BTCoex], wifi RSSI state switch to Low\n");
183 } else {
184 wifi_rssi_state = BTC_RSSI_STATE_STAY_HIGH;
185 BTC_PRINT(BTC_MSG_ALGORITHM,
186 ALGO_WIFI_RSSI_STATE,
187 "[BTCoex], wifi RSSI state stay at High\n");
188 }
189 }
190 } else if (level_num == 3) {
191 if (rssi_thresh > rssi_thresh1) {
192 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_WIFI_RSSI_STATE,
193 "[BTCoex], wifi RSSI thresh error!!\n");
194 return coex_sta->pre_wifi_rssi_state[index];
195 }
196
197 if ((coex_sta->pre_wifi_rssi_state[index] ==
198 BTC_RSSI_STATE_LOW) ||
199 (coex_sta->pre_wifi_rssi_state[index] ==
200 BTC_RSSI_STATE_STAY_LOW)) {
201 if (wifi_rssi >= rssi_thresh +
202 BTC_RSSI_COEX_THRESH_TOL_8723B_1ANT) {
203 wifi_rssi_state = BTC_RSSI_STATE_MEDIUM;
204 BTC_PRINT(BTC_MSG_ALGORITHM,
205 ALGO_WIFI_RSSI_STATE,
206 "[BTCoex], wifi RSSI state switch to Medium\n");
207 } else {
208 wifi_rssi_state = BTC_RSSI_STATE_STAY_LOW;
209 BTC_PRINT(BTC_MSG_ALGORITHM,
210 ALGO_WIFI_RSSI_STATE,
211 "[BTCoex], wifi RSSI state stay at Low\n");
212 }
213 } else if ((coex_sta->pre_wifi_rssi_state[index] ==
214 BTC_RSSI_STATE_MEDIUM) ||
215 (coex_sta->pre_wifi_rssi_state[index] ==
216 BTC_RSSI_STATE_STAY_MEDIUM)) {
217 if (wifi_rssi >= rssi_thresh1 +
218 BTC_RSSI_COEX_THRESH_TOL_8723B_1ANT) {
219 wifi_rssi_state = BTC_RSSI_STATE_HIGH;
220 BTC_PRINT(BTC_MSG_ALGORITHM,
221 ALGO_WIFI_RSSI_STATE,
222 "[BTCoex], wifi RSSI state switch to High\n");
223 } else if (wifi_rssi < rssi_thresh) {
224 wifi_rssi_state = BTC_RSSI_STATE_LOW;
225 BTC_PRINT(BTC_MSG_ALGORITHM,
226 ALGO_WIFI_RSSI_STATE,
227 "[BTCoex], wifi RSSI state switch to Low\n");
228 } else {
229 wifi_rssi_state = BTC_RSSI_STATE_STAY_MEDIUM;
230 BTC_PRINT(BTC_MSG_ALGORITHM,
231 ALGO_WIFI_RSSI_STATE,
232 "[BTCoex], wifi RSSI state stay at Medium\n");
233 }
234 } else {
235 if (wifi_rssi < rssi_thresh1) {
236 wifi_rssi_state = BTC_RSSI_STATE_MEDIUM;
237 BTC_PRINT(BTC_MSG_ALGORITHM,
238 ALGO_WIFI_RSSI_STATE,
239 "[BTCoex], wifi RSSI state switch to Medium\n");
240 } else {
241 wifi_rssi_state = BTC_RSSI_STATE_STAY_HIGH;
242 BTC_PRINT(BTC_MSG_ALGORITHM,
243 ALGO_WIFI_RSSI_STATE,
244 "[BTCoex], wifi RSSI state stay at High\n");
245 }
246 }
247 }
248
249 coex_sta->pre_wifi_rssi_state[index] = wifi_rssi_state;
250
251 return wifi_rssi_state;
252 }
253
254 static void halbtc8723b1ant_updatera_mask(struct btc_coexist *btcoexist,
255 bool force_exec, u32 dis_rate_mask)
256 {
257 coex_dm->curra_mask = dis_rate_mask;
258
259 if (force_exec || (coex_dm->prera_mask != coex_dm->curra_mask))
260 btcoexist->btc_set(btcoexist, BTC_SET_ACT_UPDATE_ra_mask,
261 &coex_dm->curra_mask);
262
263 coex_dm->prera_mask = coex_dm->curra_mask;
264 }
265
266 static void btc8723b1ant_auto_rate_fb_retry(struct btc_coexist *btcoexist,
267 bool force_exec, u8 type)
268 {
269 bool wifi_under_bmode = false;
270
271 coex_dm->cur_arfr_type = type;
272
273 if (force_exec || (coex_dm->pre_arfr_type != coex_dm->cur_arfr_type)) {
274 switch (coex_dm->cur_arfr_type) {
275 case 0: /* normal mode */
276 btcoexist->btc_write_4byte(btcoexist, 0x430,
277 coex_dm->backup_arfr_cnt1);
278 btcoexist->btc_write_4byte(btcoexist, 0x434,
279 coex_dm->backup_arfr_cnt2);
280 break;
281 case 1:
282 btcoexist->btc_get(btcoexist,
283 BTC_GET_BL_WIFI_UNDER_B_MODE,
284 &wifi_under_bmode);
285 if (wifi_under_bmode) {
286 btcoexist->btc_write_4byte(btcoexist,
287 0x430, 0x0);
288 btcoexist->btc_write_4byte(btcoexist,
289 0x434, 0x01010101);
290 } else {
291 btcoexist->btc_write_4byte(btcoexist,
292 0x430, 0x0);
293 btcoexist->btc_write_4byte(btcoexist,
294 0x434, 0x04030201);
295 }
296 break;
297 default:
298 break;
299 }
300 }
301
302 coex_dm->pre_arfr_type = coex_dm->cur_arfr_type;
303 }
304
305 static void halbtc8723b1ant_retry_limit(struct btc_coexist *btcoexist,
306 bool force_exec, u8 type)
307 {
308 coex_dm->cur_retry_limit_type = type;
309
310 if (force_exec || (coex_dm->pre_retry_limit_type !=
311 coex_dm->cur_retry_limit_type)) {
312 switch (coex_dm->cur_retry_limit_type) {
313 case 0: /* normal mode */
314 btcoexist->btc_write_2byte(btcoexist, 0x42a,
315 coex_dm->backup_retry_limit);
316 break;
317 case 1: /* retry limit = 8 */
318 btcoexist->btc_write_2byte(btcoexist, 0x42a, 0x0808);
319 break;
320 default:
321 break;
322 }
323 }
324
325 coex_dm->pre_retry_limit_type = coex_dm->cur_retry_limit_type;
326 }
327
328 static void halbtc8723b1ant_ampdu_maxtime(struct btc_coexist *btcoexist,
329 bool force_exec, u8 type)
330 {
331 coex_dm->cur_ampdu_time_type = type;
332
333 if (force_exec || (coex_dm->pre_ampdu_time_type !=
334 coex_dm->cur_ampdu_time_type)) {
335 switch (coex_dm->cur_ampdu_time_type) {
336 case 0: /* normal mode */
337 btcoexist->btc_write_1byte(btcoexist, 0x456,
338 coex_dm->backup_ampdu_max_time);
339 break;
340 case 1: /* AMPDU timw = 0x38 * 32us */
341 btcoexist->btc_write_1byte(btcoexist,
342 0x456, 0x38);
343 break;
344 default:
345 break;
346 }
347 }
348
349 coex_dm->pre_ampdu_time_type = coex_dm->cur_ampdu_time_type;
350 }
351
352 static void halbtc8723b1ant_limited_tx(struct btc_coexist *btcoexist,
353 bool force_exec, u8 ra_masktype,
354 u8 arfr_type, u8 retry_limit_type,
355 u8 ampdu_time_type)
356 {
357 switch (ra_masktype) {
358 case 0: /* normal mode */
359 halbtc8723b1ant_updatera_mask(btcoexist, force_exec, 0x0);
360 break;
361 case 1: /* disable cck 1/2 */
362 halbtc8723b1ant_updatera_mask(btcoexist, force_exec,
363 0x00000003);
364 break;
365 /* disable cck 1/2/5.5, ofdm 6/9/12/18/24, mcs 0/1/2/3/4*/
366 case 2:
367 halbtc8723b1ant_updatera_mask(btcoexist, force_exec,
368 0x0001f1f7);
369 break;
370 default:
371 break;
372 }
373
374 btc8723b1ant_auto_rate_fb_retry(btcoexist, force_exec, arfr_type);
375 halbtc8723b1ant_retry_limit(btcoexist, force_exec, retry_limit_type);
376 halbtc8723b1ant_ampdu_maxtime(btcoexist, force_exec, ampdu_time_type);
377 }
378
379 static void halbtc8723b1ant_limited_rx(struct btc_coexist *btcoexist,
380 bool force_exec, bool rej_ap_agg_pkt,
381 bool bt_ctrl_agg_buf_size,
382 u8 agg_buf_size)
383 {
384 bool reject_rx_agg = rej_ap_agg_pkt;
385 bool bt_ctrl_rx_agg_size = bt_ctrl_agg_buf_size;
386 u8 rxaggsize = agg_buf_size;
387
388 /**********************************************
389 * Rx Aggregation related setting
390 **********************************************/
391 btcoexist->btc_set(btcoexist, BTC_SET_BL_TO_REJ_AP_AGG_PKT,
392 &reject_rx_agg);
393 /* decide BT control aggregation buf size or not */
394 btcoexist->btc_set(btcoexist, BTC_SET_BL_BT_CTRL_AGG_SIZE,
395 &bt_ctrl_rx_agg_size);
396 /* aggregation buf size, only work
397 * when BT control Rx aggregation size.
398 */
399 btcoexist->btc_set(btcoexist, BTC_SET_U1_AGG_BUF_SIZE, &rxaggsize);
400 /* real update aggregation setting */
401 btcoexist->btc_set(btcoexist, BTC_SET_ACT_AGGREGATE_CTRL, NULL);
402 }
403
404 static void halbtc8723b1ant_monitor_bt_ctr(struct btc_coexist *btcoexist)
405 {
406 u32 reg_hp_txrx, reg_lp_txrx, u32tmp;
407 u32 reg_hp_tx = 0, reg_hp_rx = 0;
408 u32 reg_lp_tx = 0, reg_lp_rx = 0;
409
410 reg_hp_txrx = 0x770;
411 reg_lp_txrx = 0x774;
412
413 u32tmp = btcoexist->btc_read_4byte(btcoexist, reg_hp_txrx);
414 reg_hp_tx = u32tmp & MASKLWORD;
415 reg_hp_rx = (u32tmp & MASKHWORD) >> 16;
416
417 u32tmp = btcoexist->btc_read_4byte(btcoexist, reg_lp_txrx);
418 reg_lp_tx = u32tmp & MASKLWORD;
419 reg_lp_rx = (u32tmp & MASKHWORD) >> 16;
420
421 coex_sta->high_priority_tx = reg_hp_tx;
422 coex_sta->high_priority_rx = reg_hp_rx;
423 coex_sta->low_priority_tx = reg_lp_tx;
424 coex_sta->low_priority_rx = reg_lp_rx;
425
426 /* reset counter */
427 btcoexist->btc_write_1byte(btcoexist, 0x76e, 0xc);
428 }
429
430 static void halbtc8723b1ant_query_bt_info(struct btc_coexist *btcoexist)
431 {
432 u8 h2c_parameter[1] = {0};
433
434 coex_sta->c2h_bt_info_req_sent = true;
435
436 h2c_parameter[0] |= BIT0; /* trigger*/
437
438 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE_FW_EXEC,
439 "[BTCoex], Query Bt Info, FW write 0x61 = 0x%x\n",
440 h2c_parameter[0]);
441
442 btcoexist->btc_fill_h2c(btcoexist, 0x61, 1, h2c_parameter);
443 }
444
445 static bool btc8723b1ant_is_wifi_status_changed(struct btc_coexist *btcoexist)
446 {
447 static bool pre_wifi_busy;
448 static bool pre_under_4way, pre_bt_hs_on;
449 bool wifi_busy = false, under_4way = false, bt_hs_on = false;
450 bool wifi_connected = false;
451
452 btcoexist->btc_get(btcoexist, BTC_GET_BL_WIFI_CONNECTED,
453 &wifi_connected);
454 btcoexist->btc_get(btcoexist, BTC_GET_BL_WIFI_BUSY, &wifi_busy);
455 btcoexist->btc_get(btcoexist, BTC_GET_BL_HS_OPERATION, &bt_hs_on);
456 btcoexist->btc_get(btcoexist, BTC_GET_BL_WIFI_4_WAY_PROGRESS,
457 &under_4way);
458
459 if (wifi_connected) {
460 if (wifi_busy != pre_wifi_busy) {
461 pre_wifi_busy = wifi_busy;
462 return true;
463 }
464 if (under_4way != pre_under_4way) {
465 pre_under_4way = under_4way;
466 return true;
467 }
468 if (bt_hs_on != pre_bt_hs_on) {
469 pre_bt_hs_on = bt_hs_on;
470 return true;
471 }
472 }
473
474 return false;
475 }
476
477 static void halbtc8723b1ant_update_bt_link_info(struct btc_coexist *btcoexist)
478 {
479 struct btc_bt_link_info *bt_link_info = &btcoexist->bt_link_info;
480 bool bt_hs_on = false;
481
482 btcoexist->btc_get(btcoexist, BTC_GET_BL_HS_OPERATION, &bt_hs_on);
483
484 bt_link_info->bt_link_exist = coex_sta->bt_link_exist;
485 bt_link_info->sco_exist = coex_sta->sco_exist;
486 bt_link_info->a2dp_exist = coex_sta->a2dp_exist;
487 bt_link_info->pan_exist = coex_sta->pan_exist;
488 bt_link_info->hid_exist = coex_sta->hid_exist;
489
490 /* work around for HS mode. */
491 if (bt_hs_on) {
492 bt_link_info->pan_exist = true;
493 bt_link_info->bt_link_exist = true;
494 }
495
496 /* check if Sco only */
497 if (bt_link_info->sco_exist && !bt_link_info->a2dp_exist &&
498 !bt_link_info->pan_exist && !bt_link_info->hid_exist)
499 bt_link_info->sco_only = true;
500 else
501 bt_link_info->sco_only = false;
502
503 /* check if A2dp only */
504 if (!bt_link_info->sco_exist && bt_link_info->a2dp_exist &&
505 !bt_link_info->pan_exist && !bt_link_info->hid_exist)
506 bt_link_info->a2dp_only = true;
507 else
508 bt_link_info->a2dp_only = false;
509
510 /* check if Pan only */
511 if (!bt_link_info->sco_exist && !bt_link_info->a2dp_exist &&
512 bt_link_info->pan_exist && !bt_link_info->hid_exist)
513 bt_link_info->pan_only = true;
514 else
515 bt_link_info->pan_only = false;
516
517 /* check if Hid only */
518 if (!bt_link_info->sco_exist && !bt_link_info->a2dp_exist &&
519 !bt_link_info->pan_exist && bt_link_info->hid_exist)
520 bt_link_info->hid_only = true;
521 else
522 bt_link_info->hid_only = false;
523 }
524
525 static u8 halbtc8723b1ant_action_algorithm(struct btc_coexist *btcoexist)
526 {
527 struct btc_bt_link_info *bt_link_info = &btcoexist->bt_link_info;
528 bool bt_hs_on = false;
529 u8 algorithm = BT_8723B_1ANT_COEX_ALGO_UNDEFINED;
530 u8 numdiffprofile = 0;
531
532 btcoexist->btc_get(btcoexist, BTC_GET_BL_HS_OPERATION, &bt_hs_on);
533
534 if (!bt_link_info->bt_link_exist) {
535 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE,
536 "[BTCoex], No BT link exists!!!\n");
537 return algorithm;
538 }
539
540 if (bt_link_info->sco_exist)
541 numdiffprofile++;
542 if (bt_link_info->hid_exist)
543 numdiffprofile++;
544 if (bt_link_info->pan_exist)
545 numdiffprofile++;
546 if (bt_link_info->a2dp_exist)
547 numdiffprofile++;
548
549 if (numdiffprofile == 1) {
550 if (bt_link_info->sco_exist) {
551 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE,
552 "[BTCoex], BT Profile = SCO only\n");
553 algorithm = BT_8723B_1ANT_COEX_ALGO_SCO;
554 } else {
555 if (bt_link_info->hid_exist) {
556 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE,
557 "[BTCoex], BT Profile = HID only\n");
558 algorithm = BT_8723B_1ANT_COEX_ALGO_HID;
559 } else if (bt_link_info->a2dp_exist) {
560 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE,
561 "[BTCoex], BT Profile = A2DP only\n");
562 algorithm = BT_8723B_1ANT_COEX_ALGO_A2DP;
563 } else if (bt_link_info->pan_exist) {
564 if (bt_hs_on) {
565 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE,
566 "[BTCoex], BT Profile = PAN(HS) only\n");
567 algorithm =
568 BT_8723B_1ANT_COEX_ALGO_PANHS;
569 } else {
570 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE,
571 "[BTCoex], BT Profile = PAN(EDR) only\n");
572 algorithm =
573 BT_8723B_1ANT_COEX_ALGO_PANEDR;
574 }
575 }
576 }
577 } else if (numdiffprofile == 2) {
578 if (bt_link_info->sco_exist) {
579 if (bt_link_info->hid_exist) {
580 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE,
581 "[BTCoex], BT Profile = SCO + HID\n");
582 algorithm = BT_8723B_1ANT_COEX_ALGO_HID;
583 } else if (bt_link_info->a2dp_exist) {
584 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE,
585 "[BTCoex], BT Profile = SCO + A2DP ==> SCO\n");
586 algorithm = BT_8723B_1ANT_COEX_ALGO_SCO;
587 } else if (bt_link_info->pan_exist) {
588 if (bt_hs_on) {
589 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE,
590 "[BTCoex], BT Profile = SCO + PAN(HS)\n");
591 algorithm = BT_8723B_1ANT_COEX_ALGO_SCO;
592 } else {
593 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE,
594 "[BTCoex], BT Profile = SCO + PAN(EDR)\n");
595 algorithm =
596 BT_8723B_1ANT_COEX_ALGO_PANEDR_HID;
597 }
598 }
599 } else {
600 if (bt_link_info->hid_exist &&
601 bt_link_info->a2dp_exist) {
602 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE,
603 "[BTCoex], BT Profile = HID + A2DP\n");
604 algorithm = BT_8723B_1ANT_COEX_ALGO_HID_A2DP;
605 } else if (bt_link_info->hid_exist &&
606 bt_link_info->pan_exist) {
607 if (bt_hs_on) {
608 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE,
609 "[BTCoex], BT Profile = HID + PAN(HS)\n");
610 algorithm =
611 BT_8723B_1ANT_COEX_ALGO_HID_A2DP;
612 } else {
613 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE,
614 "[BTCoex], BT Profile = HID + PAN(EDR)\n");
615 algorithm =
616 BT_8723B_1ANT_COEX_ALGO_PANEDR_HID;
617 }
618 } else if (bt_link_info->pan_exist &&
619 bt_link_info->a2dp_exist) {
620 if (bt_hs_on) {
621 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE,
622 "[BTCoex], BT Profile = A2DP + PAN(HS)\n");
623 algorithm =
624 BT_8723B_1ANT_COEX_ALGO_A2DP_PANHS;
625 } else {
626 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE,
627 "[BTCoex], BT Profile = A2DP + PAN(EDR)\n");
628 algorithm =
629 BT_8723B_1ANT_COEX_ALGO_PANEDR_A2DP;
630 }
631 }
632 }
633 } else if (numdiffprofile == 3) {
634 if (bt_link_info->sco_exist) {
635 if (bt_link_info->hid_exist &&
636 bt_link_info->a2dp_exist) {
637 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE,
638 "[BTCoex], BT Profile = SCO + HID + A2DP ==> HID\n");
639 algorithm = BT_8723B_1ANT_COEX_ALGO_HID;
640 } else if (bt_link_info->hid_exist &&
641 bt_link_info->pan_exist) {
642 if (bt_hs_on) {
643 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE,
644 "[BTCoex], BT Profile = SCO + HID + PAN(HS)\n");
645 algorithm =
646 BT_8723B_1ANT_COEX_ALGO_HID_A2DP;
647 } else {
648 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE,
649 "[BTCoex], BT Profile = SCO + HID + PAN(EDR)\n");
650 algorithm =
651 BT_8723B_1ANT_COEX_ALGO_PANEDR_HID;
652 }
653 } else if (bt_link_info->pan_exist &&
654 bt_link_info->a2dp_exist) {
655 if (bt_hs_on) {
656 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE,
657 "[BTCoex], BT Profile = SCO + A2DP + PAN(HS)\n");
658 algorithm = BT_8723B_1ANT_COEX_ALGO_SCO;
659 } else {
660 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE,
661 "[BTCoex], BT Profile = SCO + A2DP + PAN(EDR) ==> HID\n");
662 algorithm =
663 BT_8723B_1ANT_COEX_ALGO_PANEDR_HID;
664 }
665 }
666 } else {
667 if (bt_link_info->hid_exist &&
668 bt_link_info->pan_exist &&
669 bt_link_info->a2dp_exist) {
670 if (bt_hs_on) {
671 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE,
672 "[BTCoex], BT Profile = HID + A2DP + PAN(HS)\n");
673 algorithm =
674 BT_8723B_1ANT_COEX_ALGO_HID_A2DP;
675 } else {
676 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE,
677 "[BTCoex], BT Profile = HID + A2DP + PAN(EDR)\n");
678 algorithm =
679 BT_8723B_1ANT_COEX_ALGO_HID_A2DP_PANEDR;
680 }
681 }
682 }
683 } else if (numdiffprofile >= 3) {
684 if (bt_link_info->sco_exist) {
685 if (bt_link_info->hid_exist &&
686 bt_link_info->pan_exist &&
687 bt_link_info->a2dp_exist) {
688 if (bt_hs_on) {
689 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE,
690 "[BTCoex], Error!!! BT Profile = SCO + HID + A2DP + PAN(HS)\n");
691 } else {
692 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE,
693 "[BTCoex], BT Profile = SCO + HID + A2DP + PAN(EDR)==>PAN(EDR)+HID\n");
694 algorithm =
695 BT_8723B_1ANT_COEX_ALGO_PANEDR_HID;
696 }
697 }
698 }
699 }
700
701 return algorithm;
702 }
703
704 static void btc8723b1ant_set_sw_pen_tx_rate_adapt(struct btc_coexist *btcoexist,
705 bool low_penalty_ra)
706 {
707 u8 h2c_parameter[6] = {0};
708
709 h2c_parameter[0] = 0x6; /* opCode, 0x6= Retry_Penalty */
710
711 if (low_penalty_ra) {
712 h2c_parameter[1] |= BIT0;
713 /*normal rate except MCS7/6/5, OFDM54/48/36 */
714 h2c_parameter[2] = 0x00;
715 h2c_parameter[3] = 0xf7; /*MCS7 or OFDM54 */
716 h2c_parameter[4] = 0xf8; /*MCS6 or OFDM48 */
717 h2c_parameter[5] = 0xf9; /*MCS5 or OFDM36 */
718 }
719
720 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE_FW_EXEC,
721 "[BTCoex], set WiFi Low-Penalty Retry: %s",
722 (low_penalty_ra ? "ON!!" : "OFF!!"));
723
724 btcoexist->btc_fill_h2c(btcoexist, 0x69, 6, h2c_parameter);
725 }
726
727 static void halbtc8723b1ant_low_penalty_ra(struct btc_coexist *btcoexist,
728 bool force_exec, bool low_penalty_ra)
729 {
730 coex_dm->cur_low_penalty_ra = low_penalty_ra;
731
732 if (!force_exec) {
733 if (coex_dm->pre_low_penalty_ra == coex_dm->cur_low_penalty_ra)
734 return;
735 }
736 btc8723b1ant_set_sw_pen_tx_rate_adapt(btcoexist,
737 coex_dm->cur_low_penalty_ra);
738
739 coex_dm->pre_low_penalty_ra = coex_dm->cur_low_penalty_ra;
740 }
741
742 static void halbtc8723b1ant_set_coex_table(struct btc_coexist *btcoexist,
743 u32 val0x6c0, u32 val0x6c4,
744 u32 val0x6c8, u8 val0x6cc)
745 {
746 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE_SW_EXEC,
747 "[BTCoex], set coex table, set 0x6c0 = 0x%x\n", val0x6c0);
748 btcoexist->btc_write_4byte(btcoexist, 0x6c0, val0x6c0);
749
750 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE_SW_EXEC,
751 "[BTCoex], set coex table, set 0x6c4 = 0x%x\n", val0x6c4);
752 btcoexist->btc_write_4byte(btcoexist, 0x6c4, val0x6c4);
753
754 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE_SW_EXEC,
755 "[BTCoex], set coex table, set 0x6c8 = 0x%x\n", val0x6c8);
756 btcoexist->btc_write_4byte(btcoexist, 0x6c8, val0x6c8);
757
758 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE_SW_EXEC,
759 "[BTCoex], set coex table, set 0x6cc = 0x%x\n", val0x6cc);
760 btcoexist->btc_write_1byte(btcoexist, 0x6cc, val0x6cc);
761 }
762
763 static void halbtc8723b1ant_coex_table(struct btc_coexist *btcoexist,
764 bool force_exec, u32 val0x6c0,
765 u32 val0x6c4, u32 val0x6c8,
766 u8 val0x6cc)
767 {
768 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE_SW,
769 "[BTCoex], %s write Coex Table 0x6c0 = 0x%x, 0x6c4 = 0x%x, 0x6cc = 0x%x\n",
770 (force_exec ? "force to" : ""),
771 val0x6c0, val0x6c4, val0x6cc);
772 coex_dm->cur_val0x6c0 = val0x6c0;
773 coex_dm->cur_val0x6c4 = val0x6c4;
774 coex_dm->cur_val0x6c8 = val0x6c8;
775 coex_dm->cur_val0x6cc = val0x6cc;
776
777 if (!force_exec) {
778 if ((coex_dm->pre_val0x6c0 == coex_dm->cur_val0x6c0) &&
779 (coex_dm->pre_val0x6c4 == coex_dm->cur_val0x6c4) &&
780 (coex_dm->pre_val0x6c8 == coex_dm->cur_val0x6c8) &&
781 (coex_dm->pre_val0x6cc == coex_dm->cur_val0x6cc))
782 return;
783 }
784 halbtc8723b1ant_set_coex_table(btcoexist, val0x6c0, val0x6c4,
785 val0x6c8, val0x6cc);
786
787 coex_dm->pre_val0x6c0 = coex_dm->cur_val0x6c0;
788 coex_dm->pre_val0x6c4 = coex_dm->cur_val0x6c4;
789 coex_dm->pre_val0x6c8 = coex_dm->cur_val0x6c8;
790 coex_dm->pre_val0x6cc = coex_dm->cur_val0x6cc;
791 }
792
793 static void halbtc8723b1ant_coex_table_with_type(struct btc_coexist *btcoexist,
794 bool force_exec, u8 type)
795 {
796 switch (type) {
797 case 0:
798 halbtc8723b1ant_coex_table(btcoexist, force_exec, 0x55555555,
799 0x55555555, 0xffffff, 0x3);
800 break;
801 case 1:
802 halbtc8723b1ant_coex_table(btcoexist, force_exec, 0x55555555,
803 0x5a5a5a5a, 0xffffff, 0x3);
804 break;
805 case 2:
806 halbtc8723b1ant_coex_table(btcoexist, force_exec, 0x5a5a5a5a,
807 0x5a5a5a5a, 0xffffff, 0x3);
808 break;
809 case 3:
810 halbtc8723b1ant_coex_table(btcoexist, force_exec, 0x55555555,
811 0xaaaaaaaa, 0xffffff, 0x3);
812 break;
813 case 4:
814 halbtc8723b1ant_coex_table(btcoexist, force_exec, 0x55555555,
815 0x5aaa5aaa, 0xffffff, 0x3);
816 break;
817 case 5:
818 halbtc8723b1ant_coex_table(btcoexist, force_exec, 0x5a5a5a5a,
819 0xaaaa5a5a, 0xffffff, 0x3);
820 break;
821 case 6:
822 halbtc8723b1ant_coex_table(btcoexist, force_exec, 0x55555555,
823 0xaaaa5a5a, 0xffffff, 0x3);
824 break;
825 case 7:
826 halbtc8723b1ant_coex_table(btcoexist, force_exec, 0xaaaaaaaa,
827 0xaaaaaaaa, 0xffffff, 0x3);
828 break;
829 default:
830 break;
831 }
832 }
833
834 static void halbtc8723b1ant_SetFwIgnoreWlanAct(struct btc_coexist *btcoexist,
835 bool enable)
836 {
837 u8 h2c_parameter[1] = {0};
838
839 if (enable)
840 h2c_parameter[0] |= BIT0; /* function enable */
841
842 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE_FW_EXEC,
843 "[BTCoex], set FW for BT Ignore Wlan_Act, FW write 0x63 = 0x%x\n",
844 h2c_parameter[0]);
845
846 btcoexist->btc_fill_h2c(btcoexist, 0x63, 1, h2c_parameter);
847 }
848
849 static void halbtc8723b1ant_ignore_wlan_act(struct btc_coexist *btcoexist,
850 bool force_exec, bool enable)
851 {
852 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE_FW,
853 "[BTCoex], %s turn Ignore WlanAct %s\n",
854 (force_exec ? "force to" : ""), (enable ? "ON" : "OFF"));
855 coex_dm->cur_ignore_wlan_act = enable;
856
857 if (!force_exec) {
858 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE_FW_DETAIL,
859 "[BTCoex], bPreIgnoreWlanAct = %d, bCurIgnoreWlanAct = %d!!\n",
860 coex_dm->pre_ignore_wlan_act,
861 coex_dm->cur_ignore_wlan_act);
862
863 if (coex_dm->pre_ignore_wlan_act ==
864 coex_dm->cur_ignore_wlan_act)
865 return;
866 }
867 halbtc8723b1ant_SetFwIgnoreWlanAct(btcoexist, enable);
868
869 coex_dm->pre_ignore_wlan_act = coex_dm->cur_ignore_wlan_act;
870 }
871
872 static void halbtc8723b1ant_set_fw_ps_tdma(struct btc_coexist *btcoexist,
873 u8 byte1, u8 byte2, u8 byte3,
874 u8 byte4, u8 byte5)
875 {
876 u8 h2c_parameter[5] = {0};
877 u8 real_byte1 = byte1, real_byte5 = byte5;
878 bool ap_enable = false;
879
880 btcoexist->btc_get(btcoexist, BTC_GET_BL_WIFI_AP_MODE_ENABLE,
881 &ap_enable);
882
883 if (ap_enable) {
884 if ((byte1 & BIT4) && !(byte1 & BIT5)) {
885 BTC_PRINT(BTC_MSG_INTERFACE, INTF_NOTIFY,
886 "[BTCoex], FW for 1Ant AP mode\n");
887 real_byte1 &= ~BIT4;
888 real_byte1 |= BIT5;
889
890 real_byte5 |= BIT5;
891 real_byte5 &= ~BIT6;
892 }
893 }
894
895 h2c_parameter[0] = real_byte1;
896 h2c_parameter[1] = byte2;
897 h2c_parameter[2] = byte3;
898 h2c_parameter[3] = byte4;
899 h2c_parameter[4] = real_byte5;
900
901 coex_dm->ps_tdma_para[0] = real_byte1;
902 coex_dm->ps_tdma_para[1] = byte2;
903 coex_dm->ps_tdma_para[2] = byte3;
904 coex_dm->ps_tdma_para[3] = byte4;
905 coex_dm->ps_tdma_para[4] = real_byte5;
906
907 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE_FW_EXEC,
908 "[BTCoex], PS-TDMA H2C cmd =0x%x%08x\n",
909 h2c_parameter[0],
910 h2c_parameter[1] << 24 |
911 h2c_parameter[2] << 16 |
912 h2c_parameter[3] << 8 |
913 h2c_parameter[4]);
914
915 btcoexist->btc_fill_h2c(btcoexist, 0x60, 5, h2c_parameter);
916 }
917
918 static void halbtc8723b1ant_set_lps_rpwm(struct btc_coexist *btcoexist,
919 u8 lps_val, u8 rpwm_val)
920 {
921 u8 lps = lps_val;
922 u8 rpwm = rpwm_val;
923
924 btcoexist->btc_set(btcoexist, BTC_SET_U1_LPS_VAL, &lps);
925 btcoexist->btc_set(btcoexist, BTC_SET_U1_RPWM_VAL, &rpwm);
926 }
927
928 static void halbtc8723b1ant_LpsRpwm(struct btc_coexist *btcoexist,
929 bool force_exec,
930 u8 lps_val, u8 rpwm_val)
931 {
932 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE_FW,
933 "[BTCoex], %s set lps/rpwm = 0x%x/0x%x\n",
934 (force_exec ? "force to" : ""), lps_val, rpwm_val);
935 coex_dm->cur_lps = lps_val;
936 coex_dm->cur_rpwm = rpwm_val;
937
938 if (!force_exec) {
939 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE_FW_DETAIL,
940 "[BTCoex], LPS-RxBeaconMode = 0x%x , LPS-RPWM = 0x%x!!\n",
941 coex_dm->cur_lps, coex_dm->cur_rpwm);
942
943 if ((coex_dm->pre_lps == coex_dm->cur_lps) &&
944 (coex_dm->pre_rpwm == coex_dm->cur_rpwm)) {
945 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE_FW_DETAIL,
946 "[BTCoex], LPS-RPWM_Last = 0x%x , LPS-RPWM_Now = 0x%x!!\n",
947 coex_dm->pre_rpwm, coex_dm->cur_rpwm);
948
949 return;
950 }
951 }
952 halbtc8723b1ant_set_lps_rpwm(btcoexist, lps_val, rpwm_val);
953
954 coex_dm->pre_lps = coex_dm->cur_lps;
955 coex_dm->pre_rpwm = coex_dm->cur_rpwm;
956 }
957
958 static void halbtc8723b1ant_sw_mechanism(struct btc_coexist *btcoexist,
959 bool low_penalty_ra)
960 {
961 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_BT_MONITOR,
962 "[BTCoex], SM[LpRA] = %d\n", low_penalty_ra);
963
964 halbtc8723b1ant_low_penalty_ra(btcoexist, NORMAL_EXEC, low_penalty_ra);
965 }
966
967 static void halbtc8723b1ant_SetAntPath(struct btc_coexist *btcoexist,
968 u8 ant_pos_type, bool init_hw_cfg,
969 bool wifi_off)
970 {
971 struct btc_board_info *board_info = &btcoexist->board_info;
972 u32 fw_ver = 0, u32tmp = 0;
973 bool pg_ext_switch = false;
974 bool use_ext_switch = false;
975 u8 h2c_parameter[2] = {0};
976
977 btcoexist->btc_get(btcoexist, BTC_GET_BL_EXT_SWITCH, &pg_ext_switch);
978 /* [31:16] = fw ver, [15:0] = fw sub ver */
979 btcoexist->btc_get(btcoexist, BTC_GET_U4_WIFI_FW_VER, &fw_ver);
980
981 if ((fw_ver < 0xc0000) || pg_ext_switch)
982 use_ext_switch = true;
983
984 if (init_hw_cfg) {
985 /*BT select s0/s1 is controlled by WiFi */
986 btcoexist->btc_write_1byte_bitmask(btcoexist, 0x67, 0x20, 0x1);
987
988 /*Force GNT_BT to Normal */
989 btcoexist->btc_write_1byte_bitmask(btcoexist, 0x765, 0x18, 0x0);
990 } else if (wifi_off) {
991 /*Force GNT_BT to High */
992 btcoexist->btc_write_1byte_bitmask(btcoexist, 0x765, 0x18, 0x3);
993 /*BT select s0/s1 is controlled by BT */
994 btcoexist->btc_write_1byte_bitmask(btcoexist, 0x67, 0x20, 0x0);
995
996 /* 0x4c[24:23] = 00, Set Antenna control by BT_RFE_CTRL
997 * BT Vendor 0xac = 0xf002
998 */
999 u32tmp = btcoexist->btc_read_4byte(btcoexist, 0x4c);
1000 u32tmp &= ~BIT23;
1001 u32tmp &= ~BIT24;
1002 btcoexist->btc_write_4byte(btcoexist, 0x4c, u32tmp);
1003 }
1004
1005 if (use_ext_switch) {
1006 if (init_hw_cfg) {
1007 /* 0x4c[23] = 0, 0x4c[24] = 1
1008 * Antenna control by WL/BT
1009 */
1010 u32tmp = btcoexist->btc_read_4byte(btcoexist, 0x4c);
1011 u32tmp &= ~BIT23;
1012 u32tmp |= BIT24;
1013 btcoexist->btc_write_4byte(btcoexist, 0x4c, u32tmp);
1014
1015 if (board_info->btdm_ant_pos ==
1016 BTC_ANTENNA_AT_MAIN_PORT) {
1017 /* Main Ant to BT for IPS case 0x4c[23] = 1 */
1018 btcoexist->btc_write_1byte_bitmask(btcoexist,
1019 0x64, 0x1,
1020 0x1);
1021
1022 /*tell firmware "no antenna inverse"*/
1023 h2c_parameter[0] = 0;
1024 h2c_parameter[1] = 1; /*ext switch type*/
1025 btcoexist->btc_fill_h2c(btcoexist, 0x65, 2,
1026 h2c_parameter);
1027 } else {
1028 /*Aux Ant to BT for IPS case 0x4c[23] = 1 */
1029 btcoexist->btc_write_1byte_bitmask(btcoexist,
1030 0x64, 0x1,
1031 0x0);
1032
1033 /*tell firmware "antenna inverse"*/
1034 h2c_parameter[0] = 1;
1035 h2c_parameter[1] = 1; /*ext switch type*/
1036 btcoexist->btc_fill_h2c(btcoexist, 0x65, 2,
1037 h2c_parameter);
1038 }
1039 }
1040
1041 /* fixed internal switch first*/
1042 /* fixed internal switch S1->WiFi, S0->BT*/
1043 if (board_info->btdm_ant_pos == BTC_ANTENNA_AT_MAIN_PORT)
1044 btcoexist->btc_write_2byte(btcoexist, 0x948, 0x0);
1045 else/* fixed internal switch S0->WiFi, S1->BT*/
1046 btcoexist->btc_write_2byte(btcoexist, 0x948, 0x280);
1047
1048 /* ext switch setting */
1049 switch (ant_pos_type) {
1050 case BTC_ANT_PATH_WIFI:
1051 if (board_info->btdm_ant_pos ==
1052 BTC_ANTENNA_AT_MAIN_PORT)
1053 btcoexist->btc_write_1byte_bitmask(btcoexist,
1054 0x92c, 0x3,
1055 0x1);
1056 else
1057 btcoexist->btc_write_1byte_bitmask(btcoexist,
1058 0x92c, 0x3,
1059 0x2);
1060 break;
1061 case BTC_ANT_PATH_BT:
1062 if (board_info->btdm_ant_pos ==
1063 BTC_ANTENNA_AT_MAIN_PORT)
1064 btcoexist->btc_write_1byte_bitmask(btcoexist,
1065 0x92c, 0x3,
1066 0x2);
1067 else
1068 btcoexist->btc_write_1byte_bitmask(btcoexist,
1069 0x92c, 0x3,
1070 0x1);
1071 break;
1072 default:
1073 case BTC_ANT_PATH_PTA:
1074 if (board_info->btdm_ant_pos ==
1075 BTC_ANTENNA_AT_MAIN_PORT)
1076 btcoexist->btc_write_1byte_bitmask(btcoexist,
1077 0x92c, 0x3,
1078 0x1);
1079 else
1080 btcoexist->btc_write_1byte_bitmask(btcoexist,
1081 0x92c, 0x3,
1082 0x2);
1083 break;
1084 }
1085
1086 } else {
1087 if (init_hw_cfg) {
1088 /* 0x4c[23] = 1, 0x4c[24] = 0 Antenna control by 0x64*/
1089 u32tmp = btcoexist->btc_read_4byte(btcoexist, 0x4c);
1090 u32tmp |= BIT23;
1091 u32tmp &= ~BIT24;
1092 btcoexist->btc_write_4byte(btcoexist, 0x4c, u32tmp);
1093
1094 if (board_info->btdm_ant_pos ==
1095 BTC_ANTENNA_AT_MAIN_PORT) {
1096 /*Main Ant to WiFi for IPS case 0x4c[23] = 1*/
1097 btcoexist->btc_write_1byte_bitmask(btcoexist,
1098 0x64, 0x1,
1099 0x0);
1100
1101 /*tell firmware "no antenna inverse"*/
1102 h2c_parameter[0] = 0;
1103 h2c_parameter[1] = 0; /*internal switch type*/
1104 btcoexist->btc_fill_h2c(btcoexist, 0x65, 2,
1105 h2c_parameter);
1106 } else {
1107 /*Aux Ant to BT for IPS case 0x4c[23] = 1*/
1108 btcoexist->btc_write_1byte_bitmask(btcoexist,
1109 0x64, 0x1,
1110 0x1);
1111
1112 /*tell firmware "antenna inverse"*/
1113 h2c_parameter[0] = 1;
1114 h2c_parameter[1] = 0; /*internal switch type*/
1115 btcoexist->btc_fill_h2c(btcoexist, 0x65, 2,
1116 h2c_parameter);
1117 }
1118 }
1119
1120 /* fixed external switch first*/
1121 /*Main->WiFi, Aux->BT*/
1122 if (board_info->btdm_ant_pos ==
1123 BTC_ANTENNA_AT_MAIN_PORT)
1124 btcoexist->btc_write_1byte_bitmask(btcoexist, 0x92c,
1125 0x3, 0x1);
1126 else/*Main->BT, Aux->WiFi */
1127 btcoexist->btc_write_1byte_bitmask(btcoexist, 0x92c,
1128 0x3, 0x2);
1129
1130 /* internal switch setting*/
1131 switch (ant_pos_type) {
1132 case BTC_ANT_PATH_WIFI:
1133 if (board_info->btdm_ant_pos ==
1134 BTC_ANTENNA_AT_MAIN_PORT)
1135 btcoexist->btc_write_2byte(btcoexist, 0x948,
1136 0x0);
1137 else
1138 btcoexist->btc_write_2byte(btcoexist, 0x948,
1139 0x280);
1140 break;
1141 case BTC_ANT_PATH_BT:
1142 if (board_info->btdm_ant_pos ==
1143 BTC_ANTENNA_AT_MAIN_PORT)
1144 btcoexist->btc_write_2byte(btcoexist, 0x948,
1145 0x280);
1146 else
1147 btcoexist->btc_write_2byte(btcoexist, 0x948,
1148 0x0);
1149 break;
1150 default:
1151 case BTC_ANT_PATH_PTA:
1152 if (board_info->btdm_ant_pos ==
1153 BTC_ANTENNA_AT_MAIN_PORT)
1154 btcoexist->btc_write_2byte(btcoexist, 0x948,
1155 0x200);
1156 else
1157 btcoexist->btc_write_2byte(btcoexist, 0x948,
1158 0x80);
1159 break;
1160 }
1161 }
1162 }
1163
1164 static void halbtc8723b1ant_ps_tdma(struct btc_coexist *btcoexist,
1165 bool force_exec, bool turn_on, u8 type)
1166 {
1167 bool wifi_busy = false;
1168 u8 rssi_adjust_val = 0;
1169
1170 coex_dm->cur_ps_tdma_on = turn_on;
1171 coex_dm->cur_ps_tdma = type;
1172
1173 btcoexist->btc_get(btcoexist, BTC_GET_BL_WIFI_BUSY, &wifi_busy);
1174
1175 if (!force_exec) {
1176 if (coex_dm->cur_ps_tdma_on)
1177 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE_FW_DETAIL,
1178 "[BTCoex], ******** TDMA(on, %d) *********\n",
1179 coex_dm->cur_ps_tdma);
1180 else
1181 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE_FW_DETAIL,
1182 "[BTCoex], ******** TDMA(off, %d) ********\n",
1183 coex_dm->cur_ps_tdma);
1184
1185 if ((coex_dm->pre_ps_tdma_on == coex_dm->cur_ps_tdma_on) &&
1186 (coex_dm->pre_ps_tdma == coex_dm->cur_ps_tdma))
1187 return;
1188 }
1189 if (turn_on) {
1190 switch (type) {
1191 default:
1192 halbtc8723b1ant_set_fw_ps_tdma(btcoexist, 0x51, 0x1a,
1193 0x1a, 0x0, 0x50);
1194 break;
1195 case 1:
1196 halbtc8723b1ant_set_fw_ps_tdma(btcoexist, 0x51, 0x3a,
1197 0x03, 0x10, 0x50);
1198
1199 rssi_adjust_val = 11;
1200 break;
1201 case 2:
1202 halbtc8723b1ant_set_fw_ps_tdma(btcoexist, 0x51, 0x2b,
1203 0x03, 0x10, 0x50);
1204 rssi_adjust_val = 14;
1205 break;
1206 case 3:
1207 halbtc8723b1ant_set_fw_ps_tdma(btcoexist, 0x51, 0x1d,
1208 0x1d, 0x0, 0x52);
1209 break;
1210 case 4:
1211 halbtc8723b1ant_set_fw_ps_tdma(btcoexist, 0x93, 0x15,
1212 0x3, 0x14, 0x0);
1213 rssi_adjust_val = 17;
1214 break;
1215 case 5:
1216 halbtc8723b1ant_set_fw_ps_tdma(btcoexist, 0x61, 0x15,
1217 0x3, 0x11, 0x10);
1218 break;
1219 case 6:
1220 halbtc8723b1ant_set_fw_ps_tdma(btcoexist, 0x61, 0x20,
1221 0x3, 0x11, 0x13);
1222 break;
1223 case 7:
1224 halbtc8723b1ant_set_fw_ps_tdma(btcoexist, 0x13, 0xc,
1225 0x5, 0x0, 0x0);
1226 break;
1227 case 8:
1228 halbtc8723b1ant_set_fw_ps_tdma(btcoexist, 0x93, 0x25,
1229 0x3, 0x10, 0x0);
1230 break;
1231 case 9:
1232 halbtc8723b1ant_set_fw_ps_tdma(btcoexist, 0x51, 0x21,
1233 0x3, 0x10, 0x50);
1234 rssi_adjust_val = 18;
1235 break;
1236 case 10:
1237 halbtc8723b1ant_set_fw_ps_tdma(btcoexist, 0x13, 0xa,
1238 0xa, 0x0, 0x40);
1239 break;
1240 case 11:
1241 halbtc8723b1ant_set_fw_ps_tdma(btcoexist, 0x51, 0x15,
1242 0x03, 0x10, 0x50);
1243 rssi_adjust_val = 20;
1244 break;
1245 case 12:
1246 halbtc8723b1ant_set_fw_ps_tdma(btcoexist, 0x51, 0x0a,
1247 0x0a, 0x0, 0x50);
1248 break;
1249 case 13:
1250 halbtc8723b1ant_set_fw_ps_tdma(btcoexist, 0x51, 0x15,
1251 0x15, 0x0, 0x50);
1252 break;
1253 case 14:
1254 halbtc8723b1ant_set_fw_ps_tdma(btcoexist, 0x51, 0x21,
1255 0x3, 0x10, 0x52);
1256 break;
1257 case 15:
1258 halbtc8723b1ant_set_fw_ps_tdma(btcoexist, 0x13, 0xa,
1259 0x3, 0x8, 0x0);
1260 break;
1261 case 16:
1262 halbtc8723b1ant_set_fw_ps_tdma(btcoexist, 0x93, 0x15,
1263 0x3, 0x10, 0x0);
1264 rssi_adjust_val = 18;
1265 break;
1266 case 18:
1267 halbtc8723b1ant_set_fw_ps_tdma(btcoexist, 0x93, 0x25,
1268 0x3, 0x10, 0x0);
1269 rssi_adjust_val = 14;
1270 break;
1271 case 20:
1272 halbtc8723b1ant_set_fw_ps_tdma(btcoexist, 0x61, 0x35,
1273 0x03, 0x11, 0x10);
1274 break;
1275 case 21:
1276 halbtc8723b1ant_set_fw_ps_tdma(btcoexist, 0x61, 0x25,
1277 0x03, 0x11, 0x11);
1278 break;
1279 case 22:
1280 halbtc8723b1ant_set_fw_ps_tdma(btcoexist, 0x61, 0x25,
1281 0x03, 0x11, 0x10);
1282 break;
1283 case 23:
1284 halbtc8723b1ant_set_fw_ps_tdma(btcoexist, 0xe3, 0x25,
1285 0x3, 0x31, 0x18);
1286 rssi_adjust_val = 22;
1287 break;
1288 case 24:
1289 halbtc8723b1ant_set_fw_ps_tdma(btcoexist, 0xe3, 0x15,
1290 0x3, 0x31, 0x18);
1291 rssi_adjust_val = 22;
1292 break;
1293 case 25:
1294 halbtc8723b1ant_set_fw_ps_tdma(btcoexist, 0xe3, 0xa,
1295 0x3, 0x31, 0x18);
1296 rssi_adjust_val = 22;
1297 break;
1298 case 26:
1299 halbtc8723b1ant_set_fw_ps_tdma(btcoexist, 0xe3, 0xa,
1300 0x3, 0x31, 0x18);
1301 rssi_adjust_val = 22;
1302 break;
1303 case 27:
1304 halbtc8723b1ant_set_fw_ps_tdma(btcoexist, 0xe3, 0x25,
1305 0x3, 0x31, 0x98);
1306 rssi_adjust_val = 22;
1307 break;
1308 case 28:
1309 halbtc8723b1ant_set_fw_ps_tdma(btcoexist, 0x69, 0x25,
1310 0x3, 0x31, 0x0);
1311 break;
1312 case 29:
1313 halbtc8723b1ant_set_fw_ps_tdma(btcoexist, 0xab, 0x1a,
1314 0x1a, 0x1, 0x10);
1315 break;
1316 case 30:
1317 halbtc8723b1ant_set_fw_ps_tdma(btcoexist, 0x51, 0x14,
1318 0x3, 0x10, 0x50);
1319 break;
1320 case 31:
1321 halbtc8723b1ant_set_fw_ps_tdma(btcoexist, 0xd3, 0x1a,
1322 0x1a, 0, 0x58);
1323 break;
1324 case 32:
1325 halbtc8723b1ant_set_fw_ps_tdma(btcoexist, 0x61, 0xa,
1326 0x3, 0x10, 0x0);
1327 break;
1328 case 33:
1329 halbtc8723b1ant_set_fw_ps_tdma(btcoexist, 0xa3, 0x25,
1330 0x3, 0x30, 0x90);
1331 break;
1332 case 34:
1333 halbtc8723b1ant_set_fw_ps_tdma(btcoexist, 0x53, 0x1a,
1334 0x1a, 0x0, 0x10);
1335 break;
1336 case 35:
1337 halbtc8723b1ant_set_fw_ps_tdma(btcoexist, 0x63, 0x1a,
1338 0x1a, 0x0, 0x10);
1339 break;
1340 case 36:
1341 halbtc8723b1ant_set_fw_ps_tdma(btcoexist, 0xd3, 0x12,
1342 0x3, 0x14, 0x50);
1343 break;
1344 /* SoftAP only with no sta associated,BT disable ,
1345 * TDMA mode for power saving
1346 * here softap mode screen off will cost 70-80mA for phone
1347 */
1348 case 40:
1349 halbtc8723b1ant_set_fw_ps_tdma(btcoexist, 0x23, 0x18,
1350 0x00, 0x10, 0x24);
1351 break;
1352 }
1353 } else {
1354 switch (type) {
1355 case 8: /*PTA Control */
1356 halbtc8723b1ant_set_fw_ps_tdma(btcoexist, 0x8, 0x0,
1357 0x0, 0x0, 0x0);
1358 halbtc8723b1ant_SetAntPath(btcoexist, BTC_ANT_PATH_PTA,
1359 false, false);
1360 break;
1361 case 0:
1362 default: /*Software control, Antenna at BT side */
1363 halbtc8723b1ant_set_fw_ps_tdma(btcoexist, 0x0, 0x0,
1364 0x0, 0x0, 0x0);
1365 halbtc8723b1ant_SetAntPath(btcoexist, BTC_ANT_PATH_BT,
1366 false, false);
1367 break;
1368 case 9: /*Software control, Antenna at WiFi side */
1369 halbtc8723b1ant_set_fw_ps_tdma(btcoexist, 0x0, 0x0,
1370 0x0, 0x0, 0x0);
1371 halbtc8723b1ant_SetAntPath(btcoexist, BTC_ANT_PATH_WIFI,
1372 false, false);
1373 break;
1374 }
1375 }
1376 rssi_adjust_val = 0;
1377 btcoexist->btc_set(btcoexist,
1378 BTC_SET_U1_RSSI_ADJ_VAL_FOR_1ANT_COEX_TYPE,
1379 &rssi_adjust_val);
1380
1381 /* update pre state */
1382 coex_dm->pre_ps_tdma_on = coex_dm->cur_ps_tdma_on;
1383 coex_dm->pre_ps_tdma = coex_dm->cur_ps_tdma;
1384 }
1385
1386 static bool halbtc8723b1ant_is_common_action(struct btc_coexist *btcoexist)
1387 {
1388 bool commom = false, wifi_connected = false;
1389 bool wifi_busy = false;
1390
1391 btcoexist->btc_get(btcoexist, BTC_GET_BL_WIFI_CONNECTED,
1392 &wifi_connected);
1393 btcoexist->btc_get(btcoexist, BTC_GET_BL_WIFI_BUSY, &wifi_busy);
1394
1395 if (!wifi_connected &&
1396 BT_8723B_1ANT_BT_STATUS_NON_CONNECTED_IDLE == coex_dm->bt_status) {
1397 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE,
1398 "[BTCoex], Wifi non connected-idle + BT non connected-idle!!\n");
1399 halbtc8723b1ant_sw_mechanism(btcoexist, false);
1400 commom = true;
1401 } else if (wifi_connected &&
1402 (BT_8723B_1ANT_BT_STATUS_NON_CONNECTED_IDLE ==
1403 coex_dm->bt_status)) {
1404 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE,
1405 "[BTCoex], Wifi connected + BT non connected-idle!!\n");
1406 halbtc8723b1ant_sw_mechanism(btcoexist, false);
1407 commom = true;
1408 } else if (!wifi_connected &&
1409 (BT_8723B_1ANT_BT_STATUS_CONNECTED_IDLE ==
1410 coex_dm->bt_status)) {
1411 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE,
1412 "[BTCoex], Wifi non connected-idle + BT connected-idle!!\n");
1413 halbtc8723b1ant_sw_mechanism(btcoexist, false);
1414 commom = true;
1415 } else if (wifi_connected &&
1416 (BT_8723B_1ANT_BT_STATUS_CONNECTED_IDLE ==
1417 coex_dm->bt_status)) {
1418 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE,
1419 "[BTCoex], Wifi connected + BT connected-idle!!\n");
1420 halbtc8723b1ant_sw_mechanism(btcoexist, false);
1421 commom = true;
1422 } else if (!wifi_connected &&
1423 (BT_8723B_1ANT_BT_STATUS_CONNECTED_IDLE !=
1424 coex_dm->bt_status)) {
1425 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE,
1426 ("[BTCoex], Wifi non connected-idle + BT Busy!!\n"));
1427 halbtc8723b1ant_sw_mechanism(btcoexist, false);
1428 commom = true;
1429 } else {
1430 if (wifi_busy)
1431 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE,
1432 "[BTCoex], Wifi Connected-Busy + BT Busy!!\n");
1433 else
1434 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE,
1435 "[BTCoex], Wifi Connected-Idle + BT Busy!!\n");
1436
1437 commom = false;
1438 }
1439
1440 return commom;
1441 }
1442
1443 static void btc8723b1ant_tdma_dur_adj_for_acl(struct btc_coexist *btcoexist,
1444 u8 wifi_status)
1445 {
1446 static s32 up, dn, m, n, wait_count;
1447 /* 0: no change, +1: increase WiFi duration,
1448 * -1: decrease WiFi duration
1449 */
1450 s32 result;
1451 u8 retry_count = 0, bt_info_ext;
1452 bool wifi_busy = false;
1453
1454 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE_FW,
1455 "[BTCoex], TdmaDurationAdjustForAcl()\n");
1456
1457 if (BT_8723B_1ANT_WIFI_STATUS_CONNECTED_BUSY == wifi_status)
1458 wifi_busy = true;
1459 else
1460 wifi_busy = false;
1461
1462 if ((BT_8723B_1ANT_WIFI_STATUS_NON_CONNECTED_ASSO_AUTH_SCAN ==
1463 wifi_status) ||
1464 (BT_8723B_1ANT_WIFI_STATUS_CONNECTED_SCAN == wifi_status) ||
1465 (BT_8723B_1ANT_WIFI_STATUS_CONNECTED_SPECIAL_PKT == wifi_status)) {
1466 if (coex_dm->cur_ps_tdma != 1 && coex_dm->cur_ps_tdma != 2 &&
1467 coex_dm->cur_ps_tdma != 3 && coex_dm->cur_ps_tdma != 9) {
1468 halbtc8723b1ant_ps_tdma(btcoexist, NORMAL_EXEC,
1469 true, 9);
1470 coex_dm->tdma_adj_type = 9;
1471
1472 up = 0;
1473 dn = 0;
1474 m = 1;
1475 n = 3;
1476 result = 0;
1477 wait_count = 0;
1478 }
1479 return;
1480 }
1481
1482 if (!coex_dm->auto_tdma_adjust) {
1483 coex_dm->auto_tdma_adjust = true;
1484 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE_FW_DETAIL,
1485 "[BTCoex], first run TdmaDurationAdjust()!!\n");
1486
1487 halbtc8723b1ant_ps_tdma(btcoexist, NORMAL_EXEC, true, 2);
1488 coex_dm->tdma_adj_type = 2;
1489
1490 up = 0;
1491 dn = 0;
1492 m = 1;
1493 n = 3;
1494 result = 0;
1495 wait_count = 0;
1496 } else {
1497 /*accquire the BT TRx retry count from BT_Info byte2 */
1498 retry_count = coex_sta->bt_retry_cnt;
1499 bt_info_ext = coex_sta->bt_info_ext;
1500 result = 0;
1501 wait_count++;
1502 /* no retry in the last 2-second duration */
1503 if (retry_count == 0) {
1504 up++;
1505 dn--;
1506
1507 if (dn <= 0)
1508 dn = 0;
1509
1510 if (up >= n) {
1511 wait_count = 0;
1512 n = 3;
1513 up = 0;
1514 dn = 0;
1515 result = 1;
1516 BTC_PRINT(BTC_MSG_ALGORITHM,
1517 ALGO_TRACE_FW_DETAIL,
1518 "[BTCoex], Increase wifi duration!!\n");
1519 }
1520 } else if (retry_count <= 3) {
1521 up--;
1522 dn++;
1523
1524 if (up <= 0)
1525 up = 0;
1526
1527 if (dn == 2) {
1528 if (wait_count <= 2)
1529 m++;
1530 else
1531 m = 1;
1532
1533 if (m >= 20)
1534 m = 20;
1535
1536 n = 3 * m;
1537 up = 0;
1538 dn = 0;
1539 wait_count = 0;
1540 result = -1;
1541 BTC_PRINT(BTC_MSG_ALGORITHM,
1542 ALGO_TRACE_FW_DETAIL,
1543 "[BTCoex], Decrease wifi duration for retryCounter<3!!\n");
1544 }
1545 } else {
1546 if (wait_count == 1)
1547 m++;
1548 else
1549 m = 1;
1550
1551 if (m >= 20)
1552 m = 20;
1553
1554 n = 3 * m;
1555 up = 0;
1556 dn = 0;
1557 wait_count = 0;
1558 result = -1;
1559 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE_FW_DETAIL,
1560 "[BTCoex], Decrease wifi duration for retryCounter>3!!\n");
1561 }
1562
1563 if (result == -1) {
1564 if ((BT_INFO_8723B_1ANT_A2DP_BASIC_RATE(bt_info_ext)) &&
1565 ((coex_dm->cur_ps_tdma == 1) ||
1566 (coex_dm->cur_ps_tdma == 2))) {
1567 halbtc8723b1ant_ps_tdma(btcoexist, NORMAL_EXEC,
1568 true, 9);
1569 coex_dm->tdma_adj_type = 9;
1570 } else if (coex_dm->cur_ps_tdma == 1) {
1571 halbtc8723b1ant_ps_tdma(btcoexist, NORMAL_EXEC,
1572 true, 2);
1573 coex_dm->tdma_adj_type = 2;
1574 } else if (coex_dm->cur_ps_tdma == 2) {
1575 halbtc8723b1ant_ps_tdma(btcoexist, NORMAL_EXEC,
1576 true, 9);
1577 coex_dm->tdma_adj_type = 9;
1578 } else if (coex_dm->cur_ps_tdma == 9) {
1579 halbtc8723b1ant_ps_tdma(btcoexist, NORMAL_EXEC,
1580 true, 11);
1581 coex_dm->tdma_adj_type = 11;
1582 }
1583 } else if (result == 1) {
1584 if ((BT_INFO_8723B_1ANT_A2DP_BASIC_RATE(bt_info_ext)) &&
1585 ((coex_dm->cur_ps_tdma == 1) ||
1586 (coex_dm->cur_ps_tdma == 2))) {
1587 halbtc8723b1ant_ps_tdma(btcoexist, NORMAL_EXEC,
1588 true, 9);
1589 coex_dm->tdma_adj_type = 9;
1590 } else if (coex_dm->cur_ps_tdma == 11) {
1591 halbtc8723b1ant_ps_tdma(btcoexist, NORMAL_EXEC,
1592 true, 9);
1593 coex_dm->tdma_adj_type = 9;
1594 } else if (coex_dm->cur_ps_tdma == 9) {
1595 halbtc8723b1ant_ps_tdma(btcoexist, NORMAL_EXEC,
1596 true, 2);
1597 coex_dm->tdma_adj_type = 2;
1598 } else if (coex_dm->cur_ps_tdma == 2) {
1599 halbtc8723b1ant_ps_tdma(btcoexist, NORMAL_EXEC,
1600 true, 1);
1601 coex_dm->tdma_adj_type = 1;
1602 }
1603 } else { /*no change */
1604 /*if busy / idle change */
1605 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE_FW_DETAIL,
1606 "[BTCoex],********* TDMA(on, %d) ********\n",
1607 coex_dm->cur_ps_tdma);
1608 }
1609
1610 if (coex_dm->cur_ps_tdma != 1 && coex_dm->cur_ps_tdma != 2 &&
1611 coex_dm->cur_ps_tdma != 9 && coex_dm->cur_ps_tdma != 11) {
1612 /* recover to previous adjust type */
1613 halbtc8723b1ant_ps_tdma(btcoexist, NORMAL_EXEC, true,
1614 coex_dm->tdma_adj_type);
1615 }
1616 }
1617 }
1618
1619 static void btc8723b1ant_pstdmachkpwrsave(struct btc_coexist *btcoexist,
1620 bool new_ps_state)
1621 {
1622 u8 lps_mode = 0x0;
1623
1624 btcoexist->btc_get(btcoexist, BTC_GET_U1_LPS_MODE, &lps_mode);
1625
1626 if (lps_mode) { /* already under LPS state */
1627 if (new_ps_state) {
1628 /* keep state under LPS, do nothing. */
1629 } else {
1630 /* will leave LPS state, turn off psTdma first */
1631 halbtc8723b1ant_ps_tdma(btcoexist, NORMAL_EXEC,
1632 false, 0);
1633 }
1634 } else { /* NO PS state */
1635 if (new_ps_state) {
1636 /* will enter LPS state, turn off psTdma first */
1637 halbtc8723b1ant_ps_tdma(btcoexist, NORMAL_EXEC,
1638 false, 0);
1639 } else {
1640 /* keep state under NO PS state, do nothing. */
1641 }
1642 }
1643 }
1644
1645 static void halbtc8723b1ant_power_save_state(struct btc_coexist *btcoexist,
1646 u8 ps_type, u8 lps_val,
1647 u8 rpwm_val)
1648 {
1649 bool low_pwr_disable = false;
1650
1651 switch (ps_type) {
1652 case BTC_PS_WIFI_NATIVE:
1653 /* recover to original 32k low power setting */
1654 low_pwr_disable = false;
1655 btcoexist->btc_set(btcoexist, BTC_SET_ACT_DISABLE_LOW_POWER,
1656 &low_pwr_disable);
1657 btcoexist->btc_set(btcoexist, BTC_SET_ACT_NORMAL_LPS, NULL);
1658 break;
1659 case BTC_PS_LPS_ON:
1660 btc8723b1ant_pstdmachkpwrsave(btcoexist, true);
1661 halbtc8723b1ant_LpsRpwm(btcoexist, NORMAL_EXEC, lps_val,
1662 rpwm_val);
1663 /* when coex force to enter LPS, do not enter 32k low power. */
1664 low_pwr_disable = true;
1665 btcoexist->btc_set(btcoexist, BTC_SET_ACT_DISABLE_LOW_POWER,
1666 &low_pwr_disable);
1667 /* power save must executed before psTdma. */
1668 btcoexist->btc_set(btcoexist, BTC_SET_ACT_ENTER_LPS, NULL);
1669 break;
1670 case BTC_PS_LPS_OFF:
1671 btc8723b1ant_pstdmachkpwrsave(btcoexist, false);
1672 btcoexist->btc_set(btcoexist, BTC_SET_ACT_LEAVE_LPS, NULL);
1673 break;
1674 default:
1675 break;
1676 }
1677 }
1678
1679 /***************************************************
1680 *
1681 * Software Coex Mechanism start
1682 *
1683 ***************************************************/
1684 /* SCO only or SCO+PAN(HS) */
1685 static void halbtc8723b1ant_action_sco(struct btc_coexist *btcoexist)
1686 {
1687 halbtc8723b1ant_sw_mechanism(btcoexist, true);
1688 }
1689
1690 static void halbtc8723b1ant_action_hid(struct btc_coexist *btcoexist)
1691 {
1692 halbtc8723b1ant_sw_mechanism(btcoexist, true);
1693 }
1694
1695 /*A2DP only / PAN(EDR) only/ A2DP+PAN(HS) */
1696 static void halbtc8723b1ant_action_a2dp(struct btc_coexist *btcoexist)
1697 {
1698 halbtc8723b1ant_sw_mechanism(btcoexist, false);
1699 }
1700
1701 static void halbtc8723b1ant_action_a2dp_pan_hs(struct btc_coexist *btcoexist)
1702 {
1703 halbtc8723b1ant_sw_mechanism(btcoexist, false);
1704 }
1705
1706 static void halbtc8723b1ant_action_pan_edr(struct btc_coexist *btcoexist)
1707 {
1708 halbtc8723b1ant_sw_mechanism(btcoexist, false);
1709 }
1710
1711 /* PAN(HS) only */
1712 static void halbtc8723b1ant_action_pan_hs(struct btc_coexist *btcoexist)
1713 {
1714 halbtc8723b1ant_sw_mechanism(btcoexist, false);
1715 }
1716
1717 /*PAN(EDR)+A2DP */
1718 static void halbtc8723b1ant_action_pan_edr_a2dp(struct btc_coexist *btcoexist)
1719 {
1720 halbtc8723b1ant_sw_mechanism(btcoexist, false);
1721 }
1722
1723 static void halbtc8723b1ant_action_pan_edr_hid(struct btc_coexist *btcoexist)
1724 {
1725 halbtc8723b1ant_sw_mechanism(btcoexist, true);
1726 }
1727
1728 /* HID+A2DP+PAN(EDR) */
1729 static void btc8723b1ant_action_hid_a2dp_pan_edr(struct btc_coexist *btcoexist)
1730 {
1731 halbtc8723b1ant_sw_mechanism(btcoexist, true);
1732 }
1733
1734 static void halbtc8723b1ant_action_hid_a2dp(struct btc_coexist *btcoexist)
1735 {
1736 halbtc8723b1ant_sw_mechanism(btcoexist, true);
1737 }
1738
1739 /*****************************************************
1740 *
1741 * Non-Software Coex Mechanism start
1742 *
1743 *****************************************************/
1744 static void halbtc8723b1ant_action_wifi_multiport(struct btc_coexist *btcoexist)
1745 {
1746 halbtc8723b1ant_power_save_state(btcoexist, BTC_PS_WIFI_NATIVE,
1747 0x0, 0x0);
1748
1749 halbtc8723b1ant_ps_tdma(btcoexist, NORMAL_EXEC, false, 8);
1750 halbtc8723b1ant_coex_table_with_type(btcoexist, NORMAL_EXEC, 2);
1751 }
1752
1753 static void halbtc8723b1ant_action_hs(struct btc_coexist *btcoexist)
1754 {
1755 halbtc8723b1ant_ps_tdma(btcoexist, NORMAL_EXEC, true, 5);
1756 halbtc8723b1ant_coex_table_with_type(btcoexist, NORMAL_EXEC, 2);
1757 }
1758
1759 static void halbtc8723b1ant_action_bt_inquiry(struct btc_coexist *btcoexist)
1760 {
1761 struct btc_bt_link_info *bt_link_info = &btcoexist->bt_link_info;
1762 bool wifi_connected = false, ap_enable = false;
1763
1764 btcoexist->btc_get(btcoexist, BTC_GET_BL_WIFI_AP_MODE_ENABLE,
1765 &ap_enable);
1766 btcoexist->btc_get(btcoexist, BTC_GET_BL_WIFI_CONNECTED,
1767 &wifi_connected);
1768
1769 if (!wifi_connected) {
1770 halbtc8723b1ant_power_save_state(btcoexist,
1771 BTC_PS_WIFI_NATIVE, 0x0, 0x0);
1772 halbtc8723b1ant_ps_tdma(btcoexist, NORMAL_EXEC, false, 8);
1773 halbtc8723b1ant_coex_table_with_type(btcoexist, NORMAL_EXEC, 2);
1774 } else if (bt_link_info->sco_exist || bt_link_info->hid_only) {
1775 /* SCO/HID-only busy */
1776 halbtc8723b1ant_power_save_state(btcoexist, BTC_PS_WIFI_NATIVE,
1777 0x0, 0x0);
1778 halbtc8723b1ant_ps_tdma(btcoexist, NORMAL_EXEC, true, 32);
1779 halbtc8723b1ant_coex_table_with_type(btcoexist, NORMAL_EXEC, 1);
1780 } else {
1781 if (ap_enable)
1782 halbtc8723b1ant_power_save_state(btcoexist,
1783 BTC_PS_WIFI_NATIVE,
1784 0x0, 0x0);
1785 else
1786 halbtc8723b1ant_power_save_state(btcoexist,
1787 BTC_PS_LPS_ON,
1788 0x50, 0x4);
1789
1790 halbtc8723b1ant_ps_tdma(btcoexist, NORMAL_EXEC, true, 30);
1791 halbtc8723b1ant_coex_table_with_type(btcoexist, NORMAL_EXEC, 1);
1792 }
1793 }
1794
1795 static void btc8723b1ant_act_bt_sco_hid_only_busy(struct btc_coexist *btcoexist,
1796 u8 wifi_status)
1797 {
1798 struct btc_bt_link_info *bt_link_info = &btcoexist->bt_link_info;
1799 bool wifi_connected = false;
1800
1801 btcoexist->btc_get(btcoexist, BTC_GET_BL_WIFI_CONNECTED,
1802 &wifi_connected);
1803
1804 /* tdma and coex table */
1805
1806 if (bt_link_info->sco_exist) {
1807 halbtc8723b1ant_ps_tdma(btcoexist, NORMAL_EXEC, true, 5);
1808 halbtc8723b1ant_coex_table_with_type(btcoexist, NORMAL_EXEC, 2);
1809 } else { /* HID */
1810 halbtc8723b1ant_ps_tdma(btcoexist, NORMAL_EXEC, true, 6);
1811 halbtc8723b1ant_coex_table_with_type(btcoexist, NORMAL_EXEC, 5);
1812 }
1813 }
1814
1815 static void halbtc8723b1ant_action_wifi_connected_bt_acl_busy(
1816 struct btc_coexist *btcoexist,
1817 u8 wifi_status)
1818 {
1819 u8 bt_rssi_state;
1820
1821 struct btc_bt_link_info *bt_link_info = &btcoexist->bt_link_info;
1822
1823 bt_rssi_state = halbtc8723b1ant_bt_rssi_state(2, 28, 0);
1824
1825 if (bt_link_info->hid_only) { /*HID */
1826 btc8723b1ant_act_bt_sco_hid_only_busy(btcoexist, wifi_status);
1827 coex_dm->auto_tdma_adjust = false;
1828 return;
1829 } else if (bt_link_info->a2dp_only) { /*A2DP */
1830 if (BT_8723B_1ANT_WIFI_STATUS_CONNECTED_IDLE == wifi_status) {
1831 halbtc8723b1ant_ps_tdma(btcoexist, NORMAL_EXEC,
1832 false, 8);
1833 halbtc8723b1ant_coex_table_with_type(btcoexist,
1834 NORMAL_EXEC, 2);
1835 coex_dm->auto_tdma_adjust = false;
1836 } else if ((bt_rssi_state == BTC_RSSI_STATE_HIGH) ||
1837 (bt_rssi_state == BTC_RSSI_STATE_STAY_HIGH)) {
1838 btc8723b1ant_tdma_dur_adj_for_acl(btcoexist,
1839 wifi_status);
1840 halbtc8723b1ant_coex_table_with_type(btcoexist,
1841 NORMAL_EXEC, 1);
1842 } else { /*for low BT RSSI */
1843 halbtc8723b1ant_ps_tdma(btcoexist, NORMAL_EXEC,
1844 true, 11);
1845 halbtc8723b1ant_coex_table_with_type(btcoexist,
1846 NORMAL_EXEC, 1);
1847 coex_dm->auto_tdma_adjust = false;
1848 }
1849 } else if (bt_link_info->hid_exist &&
1850 bt_link_info->a2dp_exist) { /*HID+A2DP */
1851 if ((bt_rssi_state == BTC_RSSI_STATE_HIGH) ||
1852 (bt_rssi_state == BTC_RSSI_STATE_STAY_HIGH)) {
1853 halbtc8723b1ant_ps_tdma(btcoexist, NORMAL_EXEC,
1854 true, 14);
1855 coex_dm->auto_tdma_adjust = false;
1856 } else { /*for low BT RSSI*/
1857 halbtc8723b1ant_ps_tdma(btcoexist, NORMAL_EXEC,
1858 true, 14);
1859 coex_dm->auto_tdma_adjust = false;
1860 }
1861
1862 halbtc8723b1ant_coex_table_with_type(btcoexist, NORMAL_EXEC, 6);
1863 /*PAN(OPP,FTP), HID+PAN(OPP,FTP) */
1864 } else if (bt_link_info->pan_only ||
1865 (bt_link_info->hid_exist && bt_link_info->pan_exist)) {
1866 halbtc8723b1ant_ps_tdma(btcoexist, NORMAL_EXEC, true, 3);
1867 halbtc8723b1ant_coex_table_with_type(btcoexist, NORMAL_EXEC, 6);
1868 coex_dm->auto_tdma_adjust = false;
1869 /*A2DP+PAN(OPP,FTP), HID+A2DP+PAN(OPP,FTP)*/
1870 } else if ((bt_link_info->a2dp_exist && bt_link_info->pan_exist) ||
1871 (bt_link_info->hid_exist && bt_link_info->a2dp_exist &&
1872 bt_link_info->pan_exist)) {
1873 halbtc8723b1ant_ps_tdma(btcoexist, NORMAL_EXEC, true, 13);
1874 halbtc8723b1ant_coex_table_with_type(btcoexist, NORMAL_EXEC, 1);
1875 coex_dm->auto_tdma_adjust = false;
1876 } else {
1877 halbtc8723b1ant_ps_tdma(btcoexist, NORMAL_EXEC, true, 11);
1878 halbtc8723b1ant_coex_table_with_type(btcoexist, NORMAL_EXEC, 1);
1879 coex_dm->auto_tdma_adjust = false;
1880 }
1881 }
1882
1883 static void btc8723b1ant_action_wifi_not_conn(struct btc_coexist *btcoexist)
1884 {
1885 /* power save state */
1886 halbtc8723b1ant_power_save_state(btcoexist, BTC_PS_WIFI_NATIVE,
1887 0x0, 0x0);
1888
1889 /* tdma and coex table */
1890 halbtc8723b1ant_ps_tdma(btcoexist, NORMAL_EXEC, false, 8);
1891 halbtc8723b1ant_coex_table_with_type(btcoexist, NORMAL_EXEC, 0);
1892 }
1893
1894 static void btc8723b1ant_action_wifi_not_conn_scan(struct btc_coexist *btcoex)
1895 {
1896 struct btc_bt_link_info *bt_link_info = &btcoex->bt_link_info;
1897
1898 halbtc8723b1ant_power_save_state(btcoex, BTC_PS_WIFI_NATIVE,
1899 0x0, 0x0);
1900
1901 /* tdma and coex table */
1902 if (BT_8723B_1ANT_BT_STATUS_ACL_BUSY == coex_dm->bt_status) {
1903 if (bt_link_info->a2dp_exist && bt_link_info->pan_exist) {
1904 halbtc8723b1ant_ps_tdma(btcoex, NORMAL_EXEC,
1905 true, 22);
1906 halbtc8723b1ant_coex_table_with_type(btcoex,
1907 NORMAL_EXEC, 1);
1908 } else if (bt_link_info->pan_only) {
1909 halbtc8723b1ant_ps_tdma(btcoex, NORMAL_EXEC,
1910 true, 20);
1911 halbtc8723b1ant_coex_table_with_type(btcoex,
1912 NORMAL_EXEC, 2);
1913 } else {
1914 halbtc8723b1ant_ps_tdma(btcoex, NORMAL_EXEC,
1915 true, 20);
1916 halbtc8723b1ant_coex_table_with_type(btcoex,
1917 NORMAL_EXEC, 1);
1918 }
1919 } else if ((BT_8723B_1ANT_BT_STATUS_SCO_BUSY == coex_dm->bt_status) ||
1920 (BT_8723B_1ANT_BT_STATUS_ACL_SCO_BUSY ==
1921 coex_dm->bt_status)){
1922 btc8723b1ant_act_bt_sco_hid_only_busy(btcoex,
1923 BT_8723B_1ANT_WIFI_STATUS_CONNECTED_SCAN);
1924 } else {
1925 halbtc8723b1ant_ps_tdma(btcoex, NORMAL_EXEC, false, 8);
1926 halbtc8723b1ant_coex_table_with_type(btcoex, NORMAL_EXEC, 2);
1927 }
1928 }
1929
1930 static void btc8723b1ant_act_wifi_not_conn_asso_auth(struct btc_coexist *btcoex)
1931 {
1932 struct btc_bt_link_info *bt_link_info = &btcoex->bt_link_info;
1933
1934 halbtc8723b1ant_power_save_state(btcoex, BTC_PS_WIFI_NATIVE,
1935 0x0, 0x0);
1936
1937 if ((BT_8723B_1ANT_BT_STATUS_CONNECTED_IDLE == coex_dm->bt_status) ||
1938 (bt_link_info->sco_exist) || (bt_link_info->hid_only) ||
1939 (bt_link_info->a2dp_only) || (bt_link_info->pan_only)) {
1940 halbtc8723b1ant_ps_tdma(btcoex, NORMAL_EXEC, false, 8);
1941 halbtc8723b1ant_coex_table_with_type(btcoex, NORMAL_EXEC, 7);
1942 } else {
1943 halbtc8723b1ant_ps_tdma(btcoex, NORMAL_EXEC, true, 20);
1944 halbtc8723b1ant_coex_table_with_type(btcoex, NORMAL_EXEC, 1);
1945 }
1946 }
1947
1948 static void btc8723b1ant_action_wifi_conn_scan(struct btc_coexist *btcoexist)
1949 {
1950 struct btc_bt_link_info *bt_link_info = &btcoexist->bt_link_info;
1951
1952 halbtc8723b1ant_power_save_state(btcoexist, BTC_PS_WIFI_NATIVE,
1953 0x0, 0x0);
1954
1955 /* tdma and coex table */
1956 if (BT_8723B_1ANT_BT_STATUS_ACL_BUSY == coex_dm->bt_status) {
1957 if (bt_link_info->a2dp_exist && bt_link_info->pan_exist) {
1958 halbtc8723b1ant_ps_tdma(btcoexist, NORMAL_EXEC,
1959 true, 22);
1960 halbtc8723b1ant_coex_table_with_type(btcoexist,
1961 NORMAL_EXEC, 1);
1962 } else if (bt_link_info->pan_only) {
1963 halbtc8723b1ant_ps_tdma(btcoexist, NORMAL_EXEC,
1964 true, 20);
1965 halbtc8723b1ant_coex_table_with_type(btcoexist,
1966 NORMAL_EXEC, 2);
1967 } else {
1968 halbtc8723b1ant_ps_tdma(btcoexist, NORMAL_EXEC,
1969 true, 20);
1970 halbtc8723b1ant_coex_table_with_type(btcoexist,
1971 NORMAL_EXEC, 1);
1972 }
1973 } else if ((BT_8723B_1ANT_BT_STATUS_SCO_BUSY == coex_dm->bt_status) ||
1974 (BT_8723B_1ANT_BT_STATUS_ACL_SCO_BUSY ==
1975 coex_dm->bt_status)) {
1976 btc8723b1ant_act_bt_sco_hid_only_busy(btcoexist,
1977 BT_8723B_1ANT_WIFI_STATUS_CONNECTED_SCAN);
1978 } else {
1979 halbtc8723b1ant_ps_tdma(btcoexist, NORMAL_EXEC, false, 8);
1980 halbtc8723b1ant_coex_table_with_type(btcoexist, NORMAL_EXEC, 2);
1981 }
1982 }
1983
1984 static void halbtc8723b1ant_action_wifi_connected_special_packet(
1985 struct btc_coexist *btcoexist)
1986 {
1987 bool hs_connecting = false;
1988 struct btc_bt_link_info *bt_link_info = &btcoexist->bt_link_info;
1989
1990 btcoexist->btc_get(btcoexist, BTC_GET_BL_HS_CONNECTING, &hs_connecting);
1991
1992 halbtc8723b1ant_power_save_state(btcoexist, BTC_PS_WIFI_NATIVE,
1993 0x0, 0x0);
1994
1995 /* tdma and coex table */
1996 if ((BT_8723B_1ANT_BT_STATUS_CONNECTED_IDLE == coex_dm->bt_status) ||
1997 (bt_link_info->sco_exist) || (bt_link_info->hid_only) ||
1998 (bt_link_info->a2dp_only) || (bt_link_info->pan_only)) {
1999 halbtc8723b1ant_ps_tdma(btcoexist, NORMAL_EXEC, false, 8);
2000 halbtc8723b1ant_coex_table_with_type(btcoexist, NORMAL_EXEC, 7);
2001 } else {
2002 halbtc8723b1ant_ps_tdma(btcoexist, NORMAL_EXEC, true, 20);
2003 halbtc8723b1ant_coex_table_with_type(btcoexist, NORMAL_EXEC, 1);
2004 }
2005 }
2006
2007 static void halbtc8723b1ant_action_wifi_connected(struct btc_coexist *btcoexist)
2008 {
2009 bool wifi_busy = false;
2010 bool scan = false, link = false, roam = false;
2011 bool under_4way = false, ap_enable = false;
2012
2013 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE,
2014 "[BTCoex], CoexForWifiConnect()===>\n");
2015
2016 btcoexist->btc_get(btcoexist, BTC_GET_BL_WIFI_4_WAY_PROGRESS,
2017 &under_4way);
2018 if (under_4way) {
2019 halbtc8723b1ant_action_wifi_connected_special_packet(btcoexist);
2020 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE,
2021 "[BTCoex], CoexForWifiConnect(), return for wifi is under 4way<===\n");
2022 return;
2023 }
2024
2025 btcoexist->btc_get(btcoexist, BTC_GET_BL_WIFI_SCAN, &scan);
2026 btcoexist->btc_get(btcoexist, BTC_GET_BL_WIFI_LINK, &link);
2027 btcoexist->btc_get(btcoexist, BTC_GET_BL_WIFI_ROAM, &roam);
2028
2029 if (scan || link || roam) {
2030 if (scan)
2031 btc8723b1ant_action_wifi_conn_scan(btcoexist);
2032 else
2033 halbtc8723b1ant_action_wifi_connected_special_packet(
2034 btcoexist);
2035 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE,
2036 "[BTCoex], CoexForWifiConnect(), return for wifi is under scan<===\n");
2037 return;
2038 }
2039
2040 btcoexist->btc_get(btcoexist, BTC_GET_BL_WIFI_AP_MODE_ENABLE,
2041 &ap_enable);
2042 btcoexist->btc_get(btcoexist, BTC_GET_BL_WIFI_BUSY, &wifi_busy);
2043 /* power save state */
2044 if (!ap_enable &&
2045 BT_8723B_1ANT_BT_STATUS_ACL_BUSY == coex_dm->bt_status &&
2046 !btcoexist->bt_link_info.hid_only) {
2047 if (!wifi_busy && btcoexist->bt_link_info.a2dp_only)
2048 halbtc8723b1ant_power_save_state(btcoexist,
2049 BTC_PS_WIFI_NATIVE,
2050 0x0, 0x0);
2051 else
2052 halbtc8723b1ant_power_save_state(btcoexist,
2053 BTC_PS_LPS_ON,
2054 0x50, 0x4);
2055 } else {
2056 halbtc8723b1ant_power_save_state(btcoexist, BTC_PS_WIFI_NATIVE,
2057 0x0, 0x0);
2058 }
2059 /* tdma and coex table */
2060 if (!wifi_busy) {
2061 if (BT_8723B_1ANT_BT_STATUS_ACL_BUSY == coex_dm->bt_status) {
2062 halbtc8723b1ant_action_wifi_connected_bt_acl_busy(btcoexist,
2063 BT_8723B_1ANT_WIFI_STATUS_CONNECTED_IDLE);
2064 } else if ((BT_8723B_1ANT_BT_STATUS_SCO_BUSY ==
2065 coex_dm->bt_status) ||
2066 (BT_8723B_1ANT_BT_STATUS_ACL_SCO_BUSY ==
2067 coex_dm->bt_status)) {
2068 btc8723b1ant_act_bt_sco_hid_only_busy(btcoexist,
2069 BT_8723B_1ANT_WIFI_STATUS_CONNECTED_IDLE);
2070 } else {
2071 halbtc8723b1ant_ps_tdma(btcoexist, NORMAL_EXEC,
2072 false, 8);
2073 halbtc8723b1ant_coex_table_with_type(btcoexist,
2074 NORMAL_EXEC, 2);
2075 }
2076 } else {
2077 if (BT_8723B_1ANT_BT_STATUS_ACL_BUSY == coex_dm->bt_status) {
2078 halbtc8723b1ant_action_wifi_connected_bt_acl_busy(btcoexist,
2079 BT_8723B_1ANT_WIFI_STATUS_CONNECTED_BUSY);
2080 } else if ((BT_8723B_1ANT_BT_STATUS_SCO_BUSY ==
2081 coex_dm->bt_status) ||
2082 (BT_8723B_1ANT_BT_STATUS_ACL_SCO_BUSY ==
2083 coex_dm->bt_status)) {
2084 btc8723b1ant_act_bt_sco_hid_only_busy(btcoexist,
2085 BT_8723B_1ANT_WIFI_STATUS_CONNECTED_BUSY);
2086 } else {
2087 halbtc8723b1ant_ps_tdma(btcoexist, NORMAL_EXEC,
2088 false, 8);
2089 halbtc8723b1ant_coex_table_with_type(btcoexist,
2090 NORMAL_EXEC, 2);
2091 }
2092 }
2093 }
2094
2095 static void btc8723b1ant_run_sw_coex_mech(struct btc_coexist *btcoexist)
2096 {
2097 u8 algorithm = 0;
2098
2099 algorithm = halbtc8723b1ant_action_algorithm(btcoexist);
2100 coex_dm->cur_algorithm = algorithm;
2101
2102 if (!halbtc8723b1ant_is_common_action(btcoexist)) {
2103 switch (coex_dm->cur_algorithm) {
2104 case BT_8723B_1ANT_COEX_ALGO_SCO:
2105 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE,
2106 "[BTCoex], Action algorithm = SCO.\n");
2107 halbtc8723b1ant_action_sco(btcoexist);
2108 break;
2109 case BT_8723B_1ANT_COEX_ALGO_HID:
2110 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE,
2111 "[BTCoex], Action algorithm = HID.\n");
2112 halbtc8723b1ant_action_hid(btcoexist);
2113 break;
2114 case BT_8723B_1ANT_COEX_ALGO_A2DP:
2115 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE,
2116 "[BTCoex], Action algorithm = A2DP.\n");
2117 halbtc8723b1ant_action_a2dp(btcoexist);
2118 break;
2119 case BT_8723B_1ANT_COEX_ALGO_A2DP_PANHS:
2120 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE,
2121 "[BTCoex], Action algorithm = A2DP+PAN(HS).\n");
2122 halbtc8723b1ant_action_a2dp_pan_hs(btcoexist);
2123 break;
2124 case BT_8723B_1ANT_COEX_ALGO_PANEDR:
2125 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE,
2126 "[BTCoex], Action algorithm = PAN(EDR).\n");
2127 halbtc8723b1ant_action_pan_edr(btcoexist);
2128 break;
2129 case BT_8723B_1ANT_COEX_ALGO_PANHS:
2130 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE,
2131 "[BTCoex], Action algorithm = HS mode.\n");
2132 halbtc8723b1ant_action_pan_hs(btcoexist);
2133 break;
2134 case BT_8723B_1ANT_COEX_ALGO_PANEDR_A2DP:
2135 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE,
2136 "[BTCoex], Action algorithm = PAN+A2DP.\n");
2137 halbtc8723b1ant_action_pan_edr_a2dp(btcoexist);
2138 break;
2139 case BT_8723B_1ANT_COEX_ALGO_PANEDR_HID:
2140 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE,
2141 "[BTCoex], Action algorithm = PAN(EDR)+HID.\n");
2142 halbtc8723b1ant_action_pan_edr_hid(btcoexist);
2143 break;
2144 case BT_8723B_1ANT_COEX_ALGO_HID_A2DP_PANEDR:
2145 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE,
2146 "[BTCoex], Action algorithm = HID+A2DP+PAN.\n");
2147 btc8723b1ant_action_hid_a2dp_pan_edr(btcoexist);
2148 break;
2149 case BT_8723B_1ANT_COEX_ALGO_HID_A2DP:
2150 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE,
2151 "[BTCoex], Action algorithm = HID+A2DP.\n");
2152 halbtc8723b1ant_action_hid_a2dp(btcoexist);
2153 break;
2154 default:
2155 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE,
2156 "[BTCoex], Action algorithm = coexist All Off!!\n");
2157 break;
2158 }
2159 coex_dm->pre_algorithm = coex_dm->cur_algorithm;
2160 }
2161 }
2162
2163 static void halbtc8723b1ant_run_coexist_mechanism(struct btc_coexist *btcoexist)
2164 {
2165 struct btc_bt_link_info *bt_link_info = &btcoexist->bt_link_info;
2166 bool wifi_connected = false, bt_hs_on = false;
2167 bool increase_scan_dev_num = false;
2168 bool bt_ctrl_agg_buf_size = false;
2169 u8 agg_buf_size = 5;
2170 u8 wifi_rssi_state = BTC_RSSI_STATE_HIGH;
2171 u32 wifi_link_status = 0;
2172 u32 num_of_wifi_link = 0;
2173
2174 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE,
2175 "[BTCoex], RunCoexistMechanism()===>\n");
2176
2177 if (btcoexist->manual_control) {
2178 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE,
2179 "[BTCoex], RunCoexistMechanism(), return for Manual CTRL <===\n");
2180 return;
2181 }
2182
2183 if (btcoexist->stop_coex_dm) {
2184 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE,
2185 "[BTCoex], RunCoexistMechanism(), return for Stop Coex DM <===\n");
2186 return;
2187 }
2188
2189 if (coex_sta->under_ips) {
2190 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE,
2191 "[BTCoex], wifi is under IPS !!!\n");
2192 return;
2193 }
2194
2195 if ((BT_8723B_1ANT_BT_STATUS_ACL_BUSY == coex_dm->bt_status) ||
2196 (BT_8723B_1ANT_BT_STATUS_SCO_BUSY == coex_dm->bt_status) ||
2197 (BT_8723B_1ANT_BT_STATUS_ACL_SCO_BUSY == coex_dm->bt_status)) {
2198 increase_scan_dev_num = true;
2199 }
2200
2201 btcoexist->btc_set(btcoexist, BTC_SET_BL_INC_SCAN_DEV_NUM,
2202 &increase_scan_dev_num);
2203
2204 btcoexist->btc_get(btcoexist, BTC_GET_BL_WIFI_CONNECTED,
2205 &wifi_connected);
2206
2207 btcoexist->btc_get(btcoexist, BTC_GET_U4_WIFI_LINK_STATUS,
2208 &wifi_link_status);
2209 num_of_wifi_link = wifi_link_status >> 16;
2210 if (num_of_wifi_link >= 2) {
2211 halbtc8723b1ant_limited_tx(btcoexist, NORMAL_EXEC, 0, 0, 0, 0);
2212 halbtc8723b1ant_limited_rx(btcoexist, NORMAL_EXEC, false,
2213 bt_ctrl_agg_buf_size,
2214 agg_buf_size);
2215 halbtc8723b1ant_action_wifi_multiport(btcoexist);
2216 return;
2217 }
2218
2219 if (!bt_link_info->sco_exist && !bt_link_info->hid_exist) {
2220 halbtc8723b1ant_limited_tx(btcoexist, NORMAL_EXEC, 0, 0, 0, 0);
2221 } else {
2222 if (wifi_connected) {
2223 wifi_rssi_state =
2224 halbtc8723b1ant_wifi_rssi_state(btcoexist,
2225 1, 2, 30, 0);
2226 if ((wifi_rssi_state == BTC_RSSI_STATE_HIGH) ||
2227 (wifi_rssi_state == BTC_RSSI_STATE_STAY_HIGH)) {
2228 halbtc8723b1ant_limited_tx(btcoexist,
2229 NORMAL_EXEC,
2230 1, 1, 1, 1);
2231 } else {
2232 halbtc8723b1ant_limited_tx(btcoexist,
2233 NORMAL_EXEC,
2234 1, 1, 1, 1);
2235 }
2236 } else {
2237 halbtc8723b1ant_limited_tx(btcoexist, NORMAL_EXEC,
2238 0, 0, 0, 0);
2239 }
2240 }
2241
2242 if (bt_link_info->sco_exist) {
2243 bt_ctrl_agg_buf_size = true;
2244 agg_buf_size = 0x3;
2245 } else if (bt_link_info->hid_exist) {
2246 bt_ctrl_agg_buf_size = true;
2247 agg_buf_size = 0x5;
2248 } else if (bt_link_info->a2dp_exist || bt_link_info->pan_exist) {
2249 bt_ctrl_agg_buf_size = true;
2250 agg_buf_size = 0x8;
2251 }
2252 halbtc8723b1ant_limited_rx(btcoexist, NORMAL_EXEC, false,
2253 bt_ctrl_agg_buf_size, agg_buf_size);
2254
2255 btc8723b1ant_run_sw_coex_mech(btcoexist);
2256
2257 btcoexist->btc_get(btcoexist, BTC_GET_BL_HS_OPERATION, &bt_hs_on);
2258
2259 if (coex_sta->c2h_bt_inquiry_page) {
2260 halbtc8723b1ant_action_bt_inquiry(btcoexist);
2261 return;
2262 } else if (bt_hs_on) {
2263 halbtc8723b1ant_action_hs(btcoexist);
2264 return;
2265 }
2266
2267 if (!wifi_connected) {
2268 bool scan = false, link = false, roam = false;
2269
2270 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE,
2271 "[BTCoex], wifi is non connected-idle !!!\n");
2272
2273 btcoexist->btc_get(btcoexist, BTC_GET_BL_WIFI_SCAN, &scan);
2274 btcoexist->btc_get(btcoexist, BTC_GET_BL_WIFI_LINK, &link);
2275 btcoexist->btc_get(btcoexist, BTC_GET_BL_WIFI_ROAM, &roam);
2276
2277 if (scan || link || roam) {
2278 if (scan)
2279 btc8723b1ant_action_wifi_not_conn_scan(
2280 btcoexist);
2281 else
2282 btc8723b1ant_act_wifi_not_conn_asso_auth(
2283 btcoexist);
2284 } else {
2285 btc8723b1ant_action_wifi_not_conn(btcoexist);
2286 }
2287 } else { /* wifi LPS/Busy */
2288 halbtc8723b1ant_action_wifi_connected(btcoexist);
2289 }
2290 }
2291
2292 static void halbtc8723b1ant_init_coex_dm(struct btc_coexist *btcoexist)
2293 {
2294 /* sw all off */
2295 halbtc8723b1ant_sw_mechanism(btcoexist, false);
2296
2297 halbtc8723b1ant_ps_tdma(btcoexist, FORCE_EXEC, false, 8);
2298 halbtc8723b1ant_coex_table_with_type(btcoexist, FORCE_EXEC, 0);
2299 }
2300
2301 static void halbtc8723b1ant_init_hw_config(struct btc_coexist *btcoexist,
2302 bool backup)
2303 {
2304 u32 u32tmp = 0;
2305 u8 u8tmp = 0;
2306 u32 cnt_bt_cal_chk = 0;
2307
2308 BTC_PRINT(BTC_MSG_INTERFACE, INTF_INIT,
2309 "[BTCoex], 1Ant Init HW Config!!\n");
2310
2311 if (backup) {/* backup rf 0x1e value */
2312 coex_dm->backup_arfr_cnt1 =
2313 btcoexist->btc_read_4byte(btcoexist, 0x430);
2314 coex_dm->backup_arfr_cnt2 =
2315 btcoexist->btc_read_4byte(btcoexist, 0x434);
2316 coex_dm->backup_retry_limit =
2317 btcoexist->btc_read_2byte(btcoexist, 0x42a);
2318 coex_dm->backup_ampdu_max_time =
2319 btcoexist->btc_read_1byte(btcoexist, 0x456);
2320 }
2321
2322 /* WiFi goto standby while GNT_BT 0-->1 */
2323 btcoexist->btc_set_rf_reg(btcoexist, BTC_RF_A, 0x1, 0xfffff, 0x780);
2324 /* BT goto standby while GNT_BT 1-->0 */
2325 btcoexist->btc_set_rf_reg(btcoexist, BTC_RF_A, 0x2, 0xfffff, 0x500);
2326
2327 btcoexist->btc_write_1byte(btcoexist, 0x974, 0xff);
2328 btcoexist->btc_write_1byte_bitmask(btcoexist, 0x944, 0x3, 0x3);
2329 btcoexist->btc_write_1byte(btcoexist, 0x930, 0x77);
2330
2331 /* BT calibration check */
2332 while (cnt_bt_cal_chk <= 20) {
2333 u32tmp = btcoexist->btc_read_4byte(btcoexist, 0x49d);
2334 cnt_bt_cal_chk++;
2335 if (u32tmp & BIT0) {
2336 BTC_PRINT(BTC_MSG_INTERFACE, INTF_INIT,
2337 "[BTCoex], ########### BT calibration(cnt=%d) ###########\n",
2338 cnt_bt_cal_chk);
2339 mdelay(50);
2340 } else {
2341 BTC_PRINT(BTC_MSG_INTERFACE, INTF_INIT,
2342 "[BTCoex], ********** BT NOT calibration (cnt=%d)**********\n",
2343 cnt_bt_cal_chk);
2344 break;
2345 }
2346 }
2347
2348 /* 0x790[5:0] = 0x5 */
2349 u8tmp = btcoexist->btc_read_1byte(btcoexist, 0x790);
2350 u8tmp &= 0xc0;
2351 u8tmp |= 0x5;
2352 btcoexist->btc_write_1byte(btcoexist, 0x790, u8tmp);
2353
2354 /* Enable counter statistics */
2355 /*0x76e[3] =1, WLAN_Act control by PTA */
2356 btcoexist->btc_write_1byte(btcoexist, 0x76e, 0xc);
2357 btcoexist->btc_write_1byte(btcoexist, 0x778, 0x1);
2358 btcoexist->btc_write_1byte_bitmask(btcoexist, 0x40, 0x20, 0x1);
2359
2360 /*Antenna config */
2361 halbtc8723b1ant_SetAntPath(btcoexist, BTC_ANT_PATH_PTA, true, false);
2362 /* PTA parameter */
2363 halbtc8723b1ant_coex_table_with_type(btcoexist, FORCE_EXEC, 0);
2364 }
2365
2366 static void halbtc8723b1ant_wifi_off_hw_cfg(struct btc_coexist *btcoexist)
2367 {
2368 /* set wlan_act to low */
2369 btcoexist->btc_write_1byte(btcoexist, 0x76e, 0x4);
2370 }
2371
2372 /**************************************************************
2373 * work around function start with wa_halbtc8723b1ant_
2374 **************************************************************/
2375 /**************************************************************
2376 * extern function start with EXhalbtc8723b1ant_
2377 **************************************************************/
2378
2379 void ex_halbtc8723b1ant_init_hwconfig(struct btc_coexist *btcoexist)
2380 {
2381 halbtc8723b1ant_init_hw_config(btcoexist, true);
2382 }
2383
2384 void ex_halbtc8723b1ant_init_coex_dm(struct btc_coexist *btcoexist)
2385 {
2386 BTC_PRINT(BTC_MSG_INTERFACE, INTF_INIT,
2387 "[BTCoex], Coex Mechanism Init!!\n");
2388
2389 btcoexist->stop_coex_dm = false;
2390
2391 halbtc8723b1ant_init_coex_dm(btcoexist);
2392
2393 halbtc8723b1ant_query_bt_info(btcoexist);
2394 }
2395
2396 void ex_halbtc8723b1ant_display_coex_info(struct btc_coexist *btcoexist)
2397 {
2398 struct btc_board_info *board_info = &btcoexist->board_info;
2399 struct btc_stack_info *stack_info = &btcoexist->stack_info;
2400 struct btc_bt_link_info *bt_link_info = &btcoexist->bt_link_info;
2401 u8 *cli_buf = btcoexist->cli_buf;
2402 u8 u8tmp[4], i, bt_info_ext, pstdmacase = 0;
2403 u16 u16tmp[4];
2404 u32 u32tmp[4];
2405 bool roam = false, scan = false;
2406 bool link = false, wifi_under_5g = false;
2407 bool bt_hs_on = false, wifi_busy = false;
2408 s32 wifi_rssi = 0, bt_hs_rssi = 0;
2409 u32 wifi_bw, wifi_traffic_dir, fa_ofdm, fa_cck, wifi_link_status;
2410 u8 wifi_dot11_chnl, wifi_hs_chnl;
2411 u32 fw_ver = 0, bt_patch_ver = 0;
2412
2413 CL_SPRINTF(cli_buf, BT_TMP_BUF_SIZE,
2414 "\r\n ============[BT Coexist info]============");
2415 CL_PRINTF(cli_buf);
2416
2417 if (btcoexist->manual_control) {
2418 CL_SPRINTF(cli_buf, BT_TMP_BUF_SIZE,
2419 "\r\n ============[Under Manual Control]==========");
2420 CL_PRINTF(cli_buf);
2421 CL_SPRINTF(cli_buf, BT_TMP_BUF_SIZE,
2422 "\r\n ==========================================");
2423 CL_PRINTF(cli_buf);
2424 }
2425 if (btcoexist->stop_coex_dm) {
2426 CL_SPRINTF(cli_buf, BT_TMP_BUF_SIZE,
2427 "\r\n ============[Coex is STOPPED]============");
2428 CL_PRINTF(cli_buf);
2429 CL_SPRINTF(cli_buf, BT_TMP_BUF_SIZE,
2430 "\r\n ==========================================");
2431 CL_PRINTF(cli_buf);
2432 }
2433
2434 if (!board_info->bt_exist) {
2435 CL_SPRINTF(cli_buf, BT_TMP_BUF_SIZE, "\r\n BT not exists !!!");
2436 CL_PRINTF(cli_buf);
2437 return;
2438 }
2439
2440 CL_SPRINTF(cli_buf, BT_TMP_BUF_SIZE, "\r\n %-35s = %d/ %d/ %d",
2441 "Ant PG Num/ Ant Mech/ Ant Pos:",
2442 board_info->pg_ant_num, board_info->btdm_ant_num,
2443 board_info->btdm_ant_pos);
2444 CL_PRINTF(cli_buf);
2445
2446 CL_SPRINTF(cli_buf, BT_TMP_BUF_SIZE, "\r\n %-35s = %s / %d",
2447 "BT stack/ hci ext ver",
2448 ((stack_info->profile_notified) ? "Yes" : "No"),
2449 stack_info->hci_version);
2450 CL_PRINTF(cli_buf);
2451
2452 btcoexist->btc_get(btcoexist, BTC_GET_U4_BT_PATCH_VER, &bt_patch_ver);
2453 btcoexist->btc_get(btcoexist, BTC_GET_U4_WIFI_FW_VER, &fw_ver);
2454 CL_SPRINTF(cli_buf, BT_TMP_BUF_SIZE,
2455 "\r\n %-35s = %d_%x/ 0x%x/ 0x%x(%d)",
2456 "CoexVer/ FwVer/ PatchVer",
2457 glcoex_ver_date_8723b_1ant, glcoex_ver_8723b_1ant,
2458 fw_ver, bt_patch_ver, bt_patch_ver);
2459 CL_PRINTF(cli_buf);
2460
2461 btcoexist->btc_get(btcoexist, BTC_GET_BL_HS_OPERATION, &bt_hs_on);
2462 btcoexist->btc_get(btcoexist, BTC_GET_U1_WIFI_DOT11_CHNL,
2463 &wifi_dot11_chnl);
2464 btcoexist->btc_get(btcoexist, BTC_GET_U1_WIFI_HS_CHNL, &wifi_hs_chnl);
2465 CL_SPRINTF(cli_buf, BT_TMP_BUF_SIZE, "\r\n %-35s = %d / %d(%d)",
2466 "Dot11 channel / HsChnl(HsMode)",
2467 wifi_dot11_chnl, wifi_hs_chnl, bt_hs_on);
2468 CL_PRINTF(cli_buf);
2469
2470 CL_SPRINTF(cli_buf, BT_TMP_BUF_SIZE, "\r\n %-35s = %02x %02x %02x ",
2471 "H2C Wifi inform bt chnl Info",
2472 coex_dm->wifi_chnl_info[0], coex_dm->wifi_chnl_info[1],
2473 coex_dm->wifi_chnl_info[2]);
2474 CL_PRINTF(cli_buf);
2475
2476 btcoexist->btc_get(btcoexist, BTC_GET_S4_WIFI_RSSI, &wifi_rssi);
2477 btcoexist->btc_get(btcoexist, BTC_GET_S4_HS_RSSI, &bt_hs_rssi);
2478 CL_SPRINTF(cli_buf, BT_TMP_BUF_SIZE, "\r\n %-35s = %d/ %d",
2479 "Wifi rssi/ HS rssi", wifi_rssi, bt_hs_rssi);
2480 CL_PRINTF(cli_buf);
2481
2482 btcoexist->btc_get(btcoexist, BTC_GET_BL_WIFI_SCAN, &scan);
2483 btcoexist->btc_get(btcoexist, BTC_GET_BL_WIFI_LINK, &link);
2484 btcoexist->btc_get(btcoexist, BTC_GET_BL_WIFI_ROAM, &roam);
2485 CL_SPRINTF(cli_buf, BT_TMP_BUF_SIZE, "\r\n %-35s = %d/ %d/ %d ",
2486 "Wifi link/ roam/ scan", link, roam, scan);
2487 CL_PRINTF(cli_buf);
2488
2489 btcoexist->btc_get(btcoexist , BTC_GET_BL_WIFI_UNDER_5G,
2490 &wifi_under_5g);
2491 btcoexist->btc_get(btcoexist, BTC_GET_U4_WIFI_BW, &wifi_bw);
2492 btcoexist->btc_get(btcoexist, BTC_GET_BL_WIFI_BUSY, &wifi_busy);
2493 btcoexist->btc_get(btcoexist, BTC_GET_U4_WIFI_TRAFFIC_DIRECTION,
2494 &wifi_traffic_dir);
2495
2496 CL_SPRINTF(cli_buf, BT_TMP_BUF_SIZE, "\r\n %-35s = %s / %s/ %s ",
2497 "Wifi status", (wifi_under_5g ? "5G" : "2.4G"),
2498 ((BTC_WIFI_BW_LEGACY == wifi_bw) ? "Legacy" :
2499 (((BTC_WIFI_BW_HT40 == wifi_bw) ? "HT40" : "HT20"))),
2500 ((!wifi_busy) ? "idle" :
2501 ((BTC_WIFI_TRAFFIC_TX == wifi_traffic_dir) ?
2502 "uplink" : "downlink")));
2503 CL_PRINTF(cli_buf);
2504
2505 btcoexist->btc_get(btcoexist, BTC_GET_U4_WIFI_LINK_STATUS,
2506 &wifi_link_status);
2507 CL_SPRINTF(cli_buf, BT_TMP_BUF_SIZE, "\r\n %-35s = %d/ %d/ %d/ %d/ %d",
2508 "sta/vwifi/hs/p2pGo/p2pGc",
2509 ((wifi_link_status & WIFI_STA_CONNECTED) ? 1 : 0),
2510 ((wifi_link_status & WIFI_AP_CONNECTED) ? 1 : 0),
2511 ((wifi_link_status & WIFI_HS_CONNECTED) ? 1 : 0),
2512 ((wifi_link_status & WIFI_P2P_GO_CONNECTED) ? 1 : 0),
2513 ((wifi_link_status & WIFI_P2P_GC_CONNECTED) ? 1 : 0));
2514 CL_PRINTF(cli_buf);
2515
2516 CL_SPRINTF(cli_buf, BT_TMP_BUF_SIZE, "\r\n %-35s = [%s/ %d/ %d] ",
2517 "BT [status/ rssi/ retryCnt]",
2518 ((btcoexist->bt_info.bt_disabled) ? ("disabled") :
2519 ((coex_sta->c2h_bt_inquiry_page) ? ("inquiry/page scan") :
2520 ((BT_8723B_1ANT_BT_STATUS_NON_CONNECTED_IDLE ==
2521 coex_dm->bt_status) ?
2522 "non-connected idle" :
2523 ((BT_8723B_1ANT_BT_STATUS_CONNECTED_IDLE ==
2524 coex_dm->bt_status) ?
2525 "connected-idle" : "busy")))),
2526 coex_sta->bt_rssi, coex_sta->bt_retry_cnt);
2527 CL_PRINTF(cli_buf);
2528
2529 CL_SPRINTF(cli_buf, BT_TMP_BUF_SIZE,
2530 "\r\n %-35s = %d / %d / %d / %d",
2531 "SCO/HID/PAN/A2DP", bt_link_info->sco_exist,
2532 bt_link_info->hid_exist, bt_link_info->pan_exist,
2533 bt_link_info->a2dp_exist);
2534 CL_PRINTF(cli_buf);
2535 btcoexist->btc_disp_dbg_msg(btcoexist, BTC_DBG_DISP_BT_LINK_INFO);
2536
2537 bt_info_ext = coex_sta->bt_info_ext;
2538 CL_SPRINTF(cli_buf, BT_TMP_BUF_SIZE, "\r\n %-35s = %s",
2539 "BT Info A2DP rate",
2540 (bt_info_ext & BIT0) ? "Basic rate" : "EDR rate");
2541 CL_PRINTF(cli_buf);
2542
2543 for (i = 0; i < BT_INFO_SRC_8723B_1ANT_MAX; i++) {
2544 if (coex_sta->bt_info_c2h_cnt[i]) {
2545 CL_SPRINTF(cli_buf, BT_TMP_BUF_SIZE,
2546 "\r\n %-35s = %02x %02x %02x %02x %02x %02x %02x(%d)",
2547 GLBtInfoSrc8723b1Ant[i],
2548 coex_sta->bt_info_c2h[i][0],
2549 coex_sta->bt_info_c2h[i][1],
2550 coex_sta->bt_info_c2h[i][2],
2551 coex_sta->bt_info_c2h[i][3],
2552 coex_sta->bt_info_c2h[i][4],
2553 coex_sta->bt_info_c2h[i][5],
2554 coex_sta->bt_info_c2h[i][6],
2555 coex_sta->bt_info_c2h_cnt[i]);
2556 CL_PRINTF(cli_buf);
2557 }
2558 }
2559 CL_SPRINTF(cli_buf, BT_TMP_BUF_SIZE,
2560 "\r\n %-35s = %s/%s, (0x%x/0x%x)",
2561 "PS state, IPS/LPS, (lps/rpwm)",
2562 ((coex_sta->under_ips ? "IPS ON" : "IPS OFF")),
2563 ((coex_sta->under_lps ? "LPS ON" : "LPS OFF")),
2564 btcoexist->bt_info.lps_val,
2565 btcoexist->bt_info.rpwm_val);
2566 CL_PRINTF(cli_buf);
2567 btcoexist->btc_disp_dbg_msg(btcoexist, BTC_DBG_DISP_FW_PWR_MODE_CMD);
2568
2569 if (!btcoexist->manual_control) {
2570 /* Sw mechanism */
2571 CL_SPRINTF(cli_buf, BT_TMP_BUF_SIZE, "\r\n %-35s",
2572 "============[Sw mechanism]============");
2573 CL_PRINTF(cli_buf);
2574
2575 CL_SPRINTF(cli_buf, BT_TMP_BUF_SIZE, "\r\n %-35s = %d/",
2576 "SM[LowPenaltyRA]", coex_dm->cur_low_penalty_ra);
2577 CL_PRINTF(cli_buf);
2578
2579 CL_SPRINTF(cli_buf, BT_TMP_BUF_SIZE, "\r\n %-35s = %s/ %s/ %d ",
2580 "DelBA/ BtCtrlAgg/ AggSize",
2581 (btcoexist->bt_info.reject_agg_pkt ? "Yes" : "No"),
2582 (btcoexist->bt_info.bt_ctrl_buf_size ? "Yes" : "No"),
2583 btcoexist->bt_info.agg_buf_size);
2584 CL_PRINTF(cli_buf);
2585
2586 CL_SPRINTF(cli_buf, BT_TMP_BUF_SIZE, "\r\n %-35s = 0x%x ",
2587 "Rate Mask", btcoexist->bt_info.ra_mask);
2588 CL_PRINTF(cli_buf);
2589
2590 /* Fw mechanism */
2591 CL_SPRINTF(cli_buf, BT_TMP_BUF_SIZE, "\r\n %-35s",
2592 "============[Fw mechanism]============");
2593 CL_PRINTF(cli_buf);
2594
2595 pstdmacase = coex_dm->cur_ps_tdma;
2596 CL_SPRINTF(cli_buf, BT_TMP_BUF_SIZE,
2597 "\r\n %-35s = %02x %02x %02x %02x %02x case-%d (auto:%d)",
2598 "PS TDMA", coex_dm->ps_tdma_para[0],
2599 coex_dm->ps_tdma_para[1], coex_dm->ps_tdma_para[2],
2600 coex_dm->ps_tdma_para[3], coex_dm->ps_tdma_para[4],
2601 pstdmacase, coex_dm->auto_tdma_adjust);
2602 CL_PRINTF(cli_buf);
2603
2604 CL_SPRINTF(cli_buf, BT_TMP_BUF_SIZE, "\r\n %-35s = %d ",
2605 "IgnWlanAct", coex_dm->cur_ignore_wlan_act);
2606 CL_PRINTF(cli_buf);
2607
2608 CL_SPRINTF(cli_buf, BT_TMP_BUF_SIZE, "\r\n %-35s = 0x%x ",
2609 "Latest error condition(should be 0)",
2610 coex_dm->error_condition);
2611 CL_PRINTF(cli_buf);
2612 }
2613
2614 /* Hw setting */
2615 CL_SPRINTF(cli_buf, BT_TMP_BUF_SIZE, "\r\n %-35s",
2616 "============[Hw setting]============");
2617 CL_PRINTF(cli_buf);
2618
2619 CL_SPRINTF(cli_buf, BT_TMP_BUF_SIZE, "\r\n %-35s = 0x%x/0x%x/0x%x/0x%x",
2620 "backup ARFR1/ARFR2/RL/AMaxTime", coex_dm->backup_arfr_cnt1,
2621 coex_dm->backup_arfr_cnt2, coex_dm->backup_retry_limit,
2622 coex_dm->backup_ampdu_max_time);
2623 CL_PRINTF(cli_buf);
2624
2625 u32tmp[0] = btcoexist->btc_read_4byte(btcoexist, 0x430);
2626 u32tmp[1] = btcoexist->btc_read_4byte(btcoexist, 0x434);
2627 u16tmp[0] = btcoexist->btc_read_2byte(btcoexist, 0x42a);
2628 u8tmp[0] = btcoexist->btc_read_1byte(btcoexist, 0x456);
2629 CL_SPRINTF(cli_buf, BT_TMP_BUF_SIZE, "\r\n %-35s = 0x%x/0x%x/0x%x/0x%x",
2630 "0x430/0x434/0x42a/0x456",
2631 u32tmp[0], u32tmp[1], u16tmp[0], u8tmp[0]);
2632 CL_PRINTF(cli_buf);
2633
2634 u8tmp[0] = btcoexist->btc_read_1byte(btcoexist, 0x778);
2635 u32tmp[0] = btcoexist->btc_read_4byte(btcoexist, 0x6cc);
2636 u32tmp[1] = btcoexist->btc_read_4byte(btcoexist, 0x880);
2637 CL_SPRINTF(cli_buf, BT_TMP_BUF_SIZE, "\r\n %-35s = 0x%x/ 0x%x/ 0x%x",
2638 "0x778/0x6cc/0x880[29:25]", u8tmp[0], u32tmp[0],
2639 (u32tmp[1] & 0x3e000000) >> 25);
2640 CL_PRINTF(cli_buf);
2641
2642 u32tmp[0] = btcoexist->btc_read_4byte(btcoexist, 0x948);
2643 u8tmp[0] = btcoexist->btc_read_1byte(btcoexist, 0x67);
2644 u8tmp[1] = btcoexist->btc_read_1byte(btcoexist, 0x765);
2645 CL_SPRINTF(cli_buf, BT_TMP_BUF_SIZE, "\r\n %-35s = 0x%x/ 0x%x/ 0x%x",
2646 "0x948/ 0x67[5] / 0x765",
2647 u32tmp[0], ((u8tmp[0] & 0x20) >> 5), u8tmp[1]);
2648 CL_PRINTF(cli_buf);
2649
2650 u32tmp[0] = btcoexist->btc_read_4byte(btcoexist, 0x92c);
2651 u32tmp[1] = btcoexist->btc_read_4byte(btcoexist, 0x930);
2652 u32tmp[2] = btcoexist->btc_read_4byte(btcoexist, 0x944);
2653 CL_SPRINTF(cli_buf, BT_TMP_BUF_SIZE, "\r\n %-35s = 0x%x/ 0x%x/ 0x%x",
2654 "0x92c[1:0]/ 0x930[7:0]/0x944[1:0]",
2655 u32tmp[0] & 0x3, u32tmp[1] & 0xff, u32tmp[2] & 0x3);
2656 CL_PRINTF(cli_buf);
2657
2658 u8tmp[0] = btcoexist->btc_read_1byte(btcoexist, 0x39);
2659 u8tmp[1] = btcoexist->btc_read_1byte(btcoexist, 0x40);
2660 u32tmp[0] = btcoexist->btc_read_4byte(btcoexist, 0x4c);
2661 u8tmp[2] = btcoexist->btc_read_1byte(btcoexist, 0x64);
2662 CL_SPRINTF(cli_buf, BT_TMP_BUF_SIZE,
2663 "\r\n %-35s = 0x%x/ 0x%x/ 0x%x/ 0x%x",
2664 "0x38[11]/0x40/0x4c[24:23]/0x64[0]",
2665 ((u8tmp[0] & 0x8)>>3), u8tmp[1],
2666 ((u32tmp[0] & 0x01800000) >> 23), u8tmp[2] & 0x1);
2667 CL_PRINTF(cli_buf);
2668
2669 u32tmp[0] = btcoexist->btc_read_4byte(btcoexist, 0x550);
2670 u8tmp[0] = btcoexist->btc_read_1byte(btcoexist, 0x522);
2671 CL_SPRINTF(cli_buf, BT_TMP_BUF_SIZE, "\r\n %-35s = 0x%x/ 0x%x",
2672 "0x550(bcn ctrl)/0x522", u32tmp[0], u8tmp[0]);
2673 CL_PRINTF(cli_buf);
2674
2675 u32tmp[0] = btcoexist->btc_read_4byte(btcoexist, 0xc50);
2676 u8tmp[0] = btcoexist->btc_read_1byte(btcoexist, 0x49c);
2677 CL_SPRINTF(cli_buf, BT_TMP_BUF_SIZE, "\r\n %-35s = 0x%x/ 0x%x",
2678 "0xc50(dig)/0x49c(null-drop)", u32tmp[0] & 0xff, u8tmp[0]);
2679 CL_PRINTF(cli_buf);
2680
2681 u32tmp[0] = btcoexist->btc_read_4byte(btcoexist, 0xda0);
2682 u32tmp[1] = btcoexist->btc_read_4byte(btcoexist, 0xda4);
2683 u32tmp[2] = btcoexist->btc_read_4byte(btcoexist, 0xda8);
2684 u32tmp[3] = btcoexist->btc_read_4byte(btcoexist, 0xcf0);
2685
2686 u8tmp[0] = btcoexist->btc_read_1byte(btcoexist, 0xa5b);
2687 u8tmp[1] = btcoexist->btc_read_1byte(btcoexist, 0xa5c);
2688
2689 fa_ofdm = ((u32tmp[0] & 0xffff0000) >> 16) +
2690 ((u32tmp[1] & 0xffff0000) >> 16) +
2691 (u32tmp[1] & 0xffff) +
2692 (u32tmp[2] & 0xffff) +
2693 ((u32tmp[3] & 0xffff0000) >> 16) +
2694 (u32tmp[3] & 0xffff);
2695 fa_cck = (u8tmp[0] << 8) + u8tmp[1];
2696
2697 CL_SPRINTF(cli_buf, BT_TMP_BUF_SIZE, "\r\n %-35s = 0x%x/ 0x%x/ 0x%x",
2698 "OFDM-CCA/OFDM-FA/CCK-FA",
2699 u32tmp[0] & 0xffff, fa_ofdm, fa_cck);
2700 CL_PRINTF(cli_buf);
2701
2702 u32tmp[0] = btcoexist->btc_read_4byte(btcoexist, 0x6c0);
2703 u32tmp[1] = btcoexist->btc_read_4byte(btcoexist, 0x6c4);
2704 u32tmp[2] = btcoexist->btc_read_4byte(btcoexist, 0x6c8);
2705 CL_SPRINTF(cli_buf, BT_TMP_BUF_SIZE, "\r\n %-35s = 0x%x/ 0x%x/ 0x%x",
2706 "0x6c0/0x6c4/0x6c8(coexTable)",
2707 u32tmp[0], u32tmp[1], u32tmp[2]);
2708 CL_PRINTF(cli_buf);
2709
2710 CL_SPRINTF(cli_buf, BT_TMP_BUF_SIZE, "\r\n %-35s = %d/ %d",
2711 "0x770(high-pri rx/tx)", coex_sta->high_priority_rx,
2712 coex_sta->high_priority_tx);
2713 CL_PRINTF(cli_buf);
2714 CL_SPRINTF(cli_buf, BT_TMP_BUF_SIZE, "\r\n %-35s = %d/ %d",
2715 "0x774(low-pri rx/tx)", coex_sta->low_priority_rx,
2716 coex_sta->low_priority_tx);
2717 CL_PRINTF(cli_buf);
2718 #if (BT_AUTO_REPORT_ONLY_8723B_1ANT == 1)
2719 halbtc8723b1ant_monitor_bt_ctr(btcoexist);
2720 #endif
2721 btcoexist->btc_disp_dbg_msg(btcoexist, BTC_DBG_DISP_COEX_STATISTICS);
2722 }
2723
2724 void ex_halbtc8723b1ant_ips_notify(struct btc_coexist *btcoexist, u8 type)
2725 {
2726 if (btcoexist->manual_control || btcoexist->stop_coex_dm)
2727 return;
2728
2729 if (BTC_IPS_ENTER == type) {
2730 BTC_PRINT(BTC_MSG_INTERFACE, INTF_NOTIFY,
2731 "[BTCoex], IPS ENTER notify\n");
2732 coex_sta->under_ips = true;
2733
2734 halbtc8723b1ant_SetAntPath(btcoexist, BTC_ANT_PATH_BT,
2735 false, true);
2736 /* set PTA control */
2737 halbtc8723b1ant_ps_tdma(btcoexist, NORMAL_EXEC, false, 0);
2738 halbtc8723b1ant_coex_table_with_type(btcoexist,
2739 NORMAL_EXEC, 0);
2740 halbtc8723b1ant_wifi_off_hw_cfg(btcoexist);
2741 } else if (BTC_IPS_LEAVE == type) {
2742 BTC_PRINT(BTC_MSG_INTERFACE, INTF_NOTIFY,
2743 "[BTCoex], IPS LEAVE notify\n");
2744 coex_sta->under_ips = false;
2745
2746 halbtc8723b1ant_init_hw_config(btcoexist, false);
2747 halbtc8723b1ant_init_coex_dm(btcoexist);
2748 halbtc8723b1ant_query_bt_info(btcoexist);
2749 }
2750 }
2751
2752 void ex_halbtc8723b1ant_lps_notify(struct btc_coexist *btcoexist, u8 type)
2753 {
2754 if (btcoexist->manual_control || btcoexist->stop_coex_dm)
2755 return;
2756
2757 if (BTC_LPS_ENABLE == type) {
2758 BTC_PRINT(BTC_MSG_INTERFACE, INTF_NOTIFY,
2759 "[BTCoex], LPS ENABLE notify\n");
2760 coex_sta->under_lps = true;
2761 } else if (BTC_LPS_DISABLE == type) {
2762 BTC_PRINT(BTC_MSG_INTERFACE, INTF_NOTIFY,
2763 "[BTCoex], LPS DISABLE notify\n");
2764 coex_sta->under_lps = false;
2765 }
2766 }
2767
2768 void ex_halbtc8723b1ant_scan_notify(struct btc_coexist *btcoexist, u8 type)
2769 {
2770 bool wifi_connected = false, bt_hs_on = false;
2771 u32 wifi_link_status = 0;
2772 u32 num_of_wifi_link = 0;
2773 bool bt_ctrl_agg_buf_size = false;
2774 u8 agg_buf_size = 5;
2775
2776 if (btcoexist->manual_control || btcoexist->stop_coex_dm ||
2777 btcoexist->bt_info.bt_disabled)
2778 return;
2779
2780 btcoexist->btc_get(btcoexist, BTC_GET_BL_HS_OPERATION, &bt_hs_on);
2781 btcoexist->btc_get(btcoexist, BTC_GET_BL_WIFI_CONNECTED,
2782 &wifi_connected);
2783
2784 halbtc8723b1ant_query_bt_info(btcoexist);
2785
2786 btcoexist->btc_get(btcoexist, BTC_GET_U4_WIFI_LINK_STATUS,
2787 &wifi_link_status);
2788 num_of_wifi_link = wifi_link_status >> 16;
2789 if (num_of_wifi_link >= 2) {
2790 halbtc8723b1ant_limited_tx(btcoexist, NORMAL_EXEC, 0, 0, 0, 0);
2791 halbtc8723b1ant_limited_rx(btcoexist, NORMAL_EXEC, false,
2792 bt_ctrl_agg_buf_size, agg_buf_size);
2793 halbtc8723b1ant_action_wifi_multiport(btcoexist);
2794 return;
2795 }
2796
2797 if (coex_sta->c2h_bt_inquiry_page) {
2798 halbtc8723b1ant_action_bt_inquiry(btcoexist);
2799 return;
2800 } else if (bt_hs_on) {
2801 halbtc8723b1ant_action_hs(btcoexist);
2802 return;
2803 }
2804
2805 if (BTC_SCAN_START == type) {
2806 BTC_PRINT(BTC_MSG_INTERFACE, INTF_NOTIFY,
2807 "[BTCoex], SCAN START notify\n");
2808 if (!wifi_connected) /* non-connected scan */
2809 btc8723b1ant_action_wifi_not_conn_scan(btcoexist);
2810 else /* wifi is connected */
2811 btc8723b1ant_action_wifi_conn_scan(btcoexist);
2812 } else if (BTC_SCAN_FINISH == type) {
2813 BTC_PRINT(BTC_MSG_INTERFACE, INTF_NOTIFY,
2814 "[BTCoex], SCAN FINISH notify\n");
2815 if (!wifi_connected) /* non-connected scan */
2816 btc8723b1ant_action_wifi_not_conn(btcoexist);
2817 else
2818 halbtc8723b1ant_action_wifi_connected(btcoexist);
2819 }
2820 }
2821
2822 void ex_halbtc8723b1ant_connect_notify(struct btc_coexist *btcoexist, u8 type)
2823 {
2824 bool wifi_connected = false, bt_hs_on = false;
2825 u32 wifi_link_status = 0;
2826 u32 num_of_wifi_link = 0;
2827 bool bt_ctrl_agg_buf_size = false;
2828 u8 agg_buf_size = 5;
2829
2830 if (btcoexist->manual_control || btcoexist->stop_coex_dm ||
2831 btcoexist->bt_info.bt_disabled)
2832 return;
2833
2834 btcoexist->btc_get(btcoexist, BTC_GET_U4_WIFI_LINK_STATUS,
2835 &wifi_link_status);
2836 num_of_wifi_link = wifi_link_status>>16;
2837 if (num_of_wifi_link >= 2) {
2838 halbtc8723b1ant_limited_tx(btcoexist, NORMAL_EXEC, 0, 0, 0, 0);
2839 halbtc8723b1ant_limited_rx(btcoexist, NORMAL_EXEC, false,
2840 bt_ctrl_agg_buf_size, agg_buf_size);
2841 halbtc8723b1ant_action_wifi_multiport(btcoexist);
2842 return;
2843 }
2844
2845 btcoexist->btc_get(btcoexist, BTC_GET_BL_HS_OPERATION, &bt_hs_on);
2846 if (coex_sta->c2h_bt_inquiry_page) {
2847 halbtc8723b1ant_action_bt_inquiry(btcoexist);
2848 return;
2849 } else if (bt_hs_on) {
2850 halbtc8723b1ant_action_hs(btcoexist);
2851 return;
2852 }
2853
2854 if (BTC_ASSOCIATE_START == type) {
2855 BTC_PRINT(BTC_MSG_INTERFACE, INTF_NOTIFY,
2856 "[BTCoex], CONNECT START notify\n");
2857 btc8723b1ant_act_wifi_not_conn_asso_auth(btcoexist);
2858 } else if (BTC_ASSOCIATE_FINISH == type) {
2859 BTC_PRINT(BTC_MSG_INTERFACE, INTF_NOTIFY,
2860 "[BTCoex], CONNECT FINISH notify\n");
2861
2862 btcoexist->btc_get(btcoexist, BTC_GET_BL_WIFI_CONNECTED,
2863 &wifi_connected);
2864 if (!wifi_connected) /* non-connected scan */
2865 btc8723b1ant_action_wifi_not_conn(btcoexist);
2866 else
2867 halbtc8723b1ant_action_wifi_connected(btcoexist);
2868 }
2869 }
2870
2871 void ex_halbtc8723b1ant_media_status_notify(struct btc_coexist *btcoexist,
2872 u8 type)
2873 {
2874 u8 h2c_parameter[3] = {0};
2875 u32 wifi_bw;
2876 u8 wifiCentralChnl;
2877
2878 if (btcoexist->manual_control || btcoexist->stop_coex_dm ||
2879 btcoexist->bt_info.bt_disabled)
2880 return;
2881
2882 if (BTC_MEDIA_CONNECT == type)
2883 BTC_PRINT(BTC_MSG_INTERFACE, INTF_NOTIFY,
2884 "[BTCoex], MEDIA connect notify\n");
2885 else
2886 BTC_PRINT(BTC_MSG_INTERFACE, INTF_NOTIFY,
2887 "[BTCoex], MEDIA disconnect notify\n");
2888
2889 /* only 2.4G we need to inform bt the chnl mask */
2890 btcoexist->btc_get(btcoexist, BTC_GET_U1_WIFI_CENTRAL_CHNL,
2891 &wifiCentralChnl);
2892
2893 if ((BTC_MEDIA_CONNECT == type) &&
2894 (wifiCentralChnl <= 14)) {
2895 h2c_parameter[0] = 0x0;
2896 h2c_parameter[1] = wifiCentralChnl;
2897 btcoexist->btc_get(btcoexist, BTC_GET_U4_WIFI_BW, &wifi_bw);
2898 if (BTC_WIFI_BW_HT40 == wifi_bw)
2899 h2c_parameter[2] = 0x30;
2900 else
2901 h2c_parameter[2] = 0x20;
2902 }
2903
2904 coex_dm->wifi_chnl_info[0] = h2c_parameter[0];
2905 coex_dm->wifi_chnl_info[1] = h2c_parameter[1];
2906 coex_dm->wifi_chnl_info[2] = h2c_parameter[2];
2907
2908 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE_FW_EXEC,
2909 "[BTCoex], FW write 0x66 = 0x%x\n",
2910 h2c_parameter[0] << 16 | h2c_parameter[1] << 8 |
2911 h2c_parameter[2]);
2912
2913 btcoexist->btc_fill_h2c(btcoexist, 0x66, 3, h2c_parameter);
2914 }
2915
2916 void ex_halbtc8723b1ant_special_packet_notify(struct btc_coexist *btcoexist,
2917 u8 type)
2918 {
2919 bool bt_hs_on = false;
2920 u32 wifi_link_status = 0;
2921 u32 num_of_wifi_link = 0;
2922 bool bt_ctrl_agg_buf_size = false;
2923 u8 agg_buf_size = 5;
2924
2925 if (btcoexist->manual_control || btcoexist->stop_coex_dm ||
2926 btcoexist->bt_info.bt_disabled)
2927 return;
2928
2929 btcoexist->btc_get(btcoexist, BTC_GET_U4_WIFI_LINK_STATUS,
2930 &wifi_link_status);
2931 num_of_wifi_link = wifi_link_status >> 16;
2932 if (num_of_wifi_link >= 2) {
2933 halbtc8723b1ant_limited_tx(btcoexist, NORMAL_EXEC, 0, 0, 0, 0);
2934 halbtc8723b1ant_limited_rx(btcoexist, NORMAL_EXEC, false,
2935 bt_ctrl_agg_buf_size, agg_buf_size);
2936 halbtc8723b1ant_action_wifi_multiport(btcoexist);
2937 return;
2938 }
2939
2940 coex_sta->special_pkt_period_cnt = 0;
2941
2942 btcoexist->btc_get(btcoexist, BTC_GET_BL_HS_OPERATION, &bt_hs_on);
2943 if (coex_sta->c2h_bt_inquiry_page) {
2944 halbtc8723b1ant_action_bt_inquiry(btcoexist);
2945 return;
2946 } else if (bt_hs_on) {
2947 halbtc8723b1ant_action_hs(btcoexist);
2948 return;
2949 }
2950
2951 if (BTC_PACKET_DHCP == type ||
2952 BTC_PACKET_EAPOL == type) {
2953 BTC_PRINT(BTC_MSG_INTERFACE, INTF_NOTIFY,
2954 "[BTCoex], special Packet(%d) notify\n", type);
2955 halbtc8723b1ant_action_wifi_connected_special_packet(btcoexist);
2956 }
2957 }
2958
2959 void ex_halbtc8723b1ant_bt_info_notify(struct btc_coexist *btcoexist,
2960 u8 *tmp_buf, u8 length)
2961 {
2962 u8 bt_info = 0;
2963 u8 i, rsp_source = 0;
2964 bool wifi_connected = false;
2965 bool bt_busy = false;
2966
2967 coex_sta->c2h_bt_info_req_sent = false;
2968
2969 rsp_source = tmp_buf[0] & 0xf;
2970 if (rsp_source >= BT_INFO_SRC_8723B_1ANT_MAX)
2971 rsp_source = BT_INFO_SRC_8723B_1ANT_WIFI_FW;
2972 coex_sta->bt_info_c2h_cnt[rsp_source]++;
2973
2974 BTC_PRINT(BTC_MSG_INTERFACE, INTF_NOTIFY,
2975 "[BTCoex], Bt info[%d], length=%d, hex data = [",
2976 rsp_source, length);
2977 for (i = 0; i < length; i++) {
2978 coex_sta->bt_info_c2h[rsp_source][i] = tmp_buf[i];
2979 if (i == 1)
2980 bt_info = tmp_buf[i];
2981 if (i == length - 1)
2982 BTC_PRINT(BTC_MSG_INTERFACE, INTF_NOTIFY,
2983 "0x%02x]\n", tmp_buf[i]);
2984 else
2985 BTC_PRINT(BTC_MSG_INTERFACE, INTF_NOTIFY,
2986 "0x%02x, ", tmp_buf[i]);
2987 }
2988
2989 if (BT_INFO_SRC_8723B_1ANT_WIFI_FW != rsp_source) {
2990 coex_sta->bt_retry_cnt = /* [3:0] */
2991 coex_sta->bt_info_c2h[rsp_source][2] & 0xf;
2992
2993 coex_sta->bt_rssi =
2994 coex_sta->bt_info_c2h[rsp_source][3] * 2 + 10;
2995
2996 coex_sta->bt_info_ext =
2997 coex_sta->bt_info_c2h[rsp_source][4];
2998
2999 /* Here we need to resend some wifi info to BT
3000 * because bt is reset and loss of the info.
3001 */
3002 if (coex_sta->bt_info_ext & BIT1) {
3003 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE,
3004 "[BTCoex], BT ext info bit1 check, send wifi BW&Chnl to BT!!\n");
3005 btcoexist->btc_get(btcoexist, BTC_GET_BL_WIFI_CONNECTED,
3006 &wifi_connected);
3007 if (wifi_connected)
3008 ex_halbtc8723b1ant_media_status_notify(btcoexist,
3009 BTC_MEDIA_CONNECT);
3010 else
3011 ex_halbtc8723b1ant_media_status_notify(btcoexist,
3012 BTC_MEDIA_DISCONNECT);
3013 }
3014
3015 if (coex_sta->bt_info_ext & BIT3) {
3016 if (!btcoexist->manual_control &&
3017 !btcoexist->stop_coex_dm) {
3018 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE,
3019 "[BTCoex], BT ext info bit3 check, set BT NOT ignore Wlan active!!\n");
3020 halbtc8723b1ant_ignore_wlan_act(btcoexist,
3021 FORCE_EXEC,
3022 false);
3023 }
3024 } else {
3025 /* BT already NOT ignore Wlan active, do nothing here.*/
3026 }
3027 #if (BT_AUTO_REPORT_ONLY_8723B_1ANT == 0)
3028 if (coex_sta->bt_info_ext & BIT4) {
3029 /* BT auto report already enabled, do nothing */
3030 } else {
3031 halbtc8723b1ant_bt_auto_report(btcoexist, FORCE_EXEC,
3032 true);
3033 }
3034 #endif
3035 }
3036
3037 /* check BIT2 first ==> check if bt is under inquiry or page scan */
3038 if (bt_info & BT_INFO_8723B_1ANT_B_INQ_PAGE)
3039 coex_sta->c2h_bt_inquiry_page = true;
3040 else
3041 coex_sta->c2h_bt_inquiry_page = false;
3042
3043 /* set link exist status */
3044 if (!(bt_info & BT_INFO_8723B_1ANT_B_CONNECTION)) {
3045 coex_sta->bt_link_exist = false;
3046 coex_sta->pan_exist = false;
3047 coex_sta->a2dp_exist = false;
3048 coex_sta->hid_exist = false;
3049 coex_sta->sco_exist = false;
3050 } else { /* connection exists */
3051 coex_sta->bt_link_exist = true;
3052 if (bt_info & BT_INFO_8723B_1ANT_B_FTP)
3053 coex_sta->pan_exist = true;
3054 else
3055 coex_sta->pan_exist = false;
3056 if (bt_info & BT_INFO_8723B_1ANT_B_A2DP)
3057 coex_sta->a2dp_exist = true;
3058 else
3059 coex_sta->a2dp_exist = false;
3060 if (bt_info & BT_INFO_8723B_1ANT_B_HID)
3061 coex_sta->hid_exist = true;
3062 else
3063 coex_sta->hid_exist = false;
3064 if (bt_info & BT_INFO_8723B_1ANT_B_SCO_ESCO)
3065 coex_sta->sco_exist = true;
3066 else
3067 coex_sta->sco_exist = false;
3068 }
3069
3070 halbtc8723b1ant_update_bt_link_info(btcoexist);
3071
3072 if (!(bt_info&BT_INFO_8723B_1ANT_B_CONNECTION)) {
3073 coex_dm->bt_status = BT_8723B_1ANT_BT_STATUS_NON_CONNECTED_IDLE;
3074 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE,
3075 "[BTCoex], BtInfoNotify(), BT Non-Connected idle!\n");
3076 /* connection exists but no busy */
3077 } else if (bt_info == BT_INFO_8723B_1ANT_B_CONNECTION) {
3078 coex_dm->bt_status = BT_8723B_1ANT_BT_STATUS_CONNECTED_IDLE;
3079 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE,
3080 "[BTCoex], BtInfoNotify(), BT Connected-idle!!!\n");
3081 } else if ((bt_info & BT_INFO_8723B_1ANT_B_SCO_ESCO) ||
3082 (bt_info & BT_INFO_8723B_1ANT_B_SCO_BUSY)) {
3083 coex_dm->bt_status = BT_8723B_1ANT_BT_STATUS_SCO_BUSY;
3084 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE,
3085 "[BTCoex], BtInfoNotify(), BT SCO busy!!!\n");
3086 } else if (bt_info & BT_INFO_8723B_1ANT_B_ACL_BUSY) {
3087 if (BT_8723B_1ANT_BT_STATUS_ACL_BUSY != coex_dm->bt_status)
3088 coex_dm->auto_tdma_adjust = false;
3089
3090 coex_dm->bt_status = BT_8723B_1ANT_BT_STATUS_ACL_BUSY;
3091 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE,
3092 "[BTCoex], BtInfoNotify(), BT ACL busy!!!\n");
3093 } else {
3094 coex_dm->bt_status =
3095 BT_8723B_1ANT_BT_STATUS_MAX;
3096 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE,
3097 "[BTCoex], BtInfoNotify(), BT Non-Defined state!!\n");
3098 }
3099
3100 if ((BT_8723B_1ANT_BT_STATUS_ACL_BUSY == coex_dm->bt_status) ||
3101 (BT_8723B_1ANT_BT_STATUS_SCO_BUSY == coex_dm->bt_status) ||
3102 (BT_8723B_1ANT_BT_STATUS_ACL_SCO_BUSY == coex_dm->bt_status))
3103 bt_busy = true;
3104 else
3105 bt_busy = false;
3106 btcoexist->btc_set(btcoexist, BTC_SET_BL_BT_TRAFFIC_BUSY, &bt_busy);
3107
3108 halbtc8723b1ant_run_coexist_mechanism(btcoexist);
3109 }
3110
3111 void ex_halbtc8723b1ant_halt_notify(struct btc_coexist *btcoexist)
3112 {
3113 BTC_PRINT(BTC_MSG_INTERFACE, INTF_NOTIFY, "[BTCoex], Halt notify\n");
3114
3115 btcoexist->stop_coex_dm = true;
3116
3117 halbtc8723b1ant_SetAntPath(btcoexist, BTC_ANT_PATH_BT, false, true);
3118
3119 halbtc8723b1ant_wifi_off_hw_cfg(btcoexist);
3120 halbtc8723b1ant_ignore_wlan_act(btcoexist, FORCE_EXEC, true);
3121
3122 halbtc8723b1ant_power_save_state(btcoexist, BTC_PS_WIFI_NATIVE,
3123 0x0, 0x0);
3124 halbtc8723b1ant_ps_tdma(btcoexist, FORCE_EXEC, false, 0);
3125
3126 ex_halbtc8723b1ant_media_status_notify(btcoexist, BTC_MEDIA_DISCONNECT);
3127 }
3128
3129 void ex_halbtc8723b1ant_pnp_notify(struct btc_coexist *btcoexist, u8 pnp_state)
3130 {
3131 BTC_PRINT(BTC_MSG_INTERFACE, INTF_NOTIFY, "[BTCoex], Pnp notify\n");
3132
3133 if (BTC_WIFI_PNP_SLEEP == pnp_state) {
3134 BTC_PRINT(BTC_MSG_INTERFACE, INTF_NOTIFY,
3135 "[BTCoex], Pnp notify to SLEEP\n");
3136 btcoexist->stop_coex_dm = true;
3137 halbtc8723b1ant_SetAntPath(btcoexist, BTC_ANT_PATH_BT, false,
3138 true);
3139 halbtc8723b1ant_power_save_state(btcoexist, BTC_PS_WIFI_NATIVE,
3140 0x0, 0x0);
3141 halbtc8723b1ant_ps_tdma(btcoexist, NORMAL_EXEC, false, 0);
3142 halbtc8723b1ant_coex_table_with_type(btcoexist, NORMAL_EXEC, 2);
3143 halbtc8723b1ant_wifi_off_hw_cfg(btcoexist);
3144 } else if (BTC_WIFI_PNP_WAKE_UP == pnp_state) {
3145 BTC_PRINT(BTC_MSG_INTERFACE, INTF_NOTIFY,
3146 "[BTCoex], Pnp notify to WAKE UP\n");
3147 btcoexist->stop_coex_dm = false;
3148 halbtc8723b1ant_init_hw_config(btcoexist, false);
3149 halbtc8723b1ant_init_coex_dm(btcoexist);
3150 halbtc8723b1ant_query_bt_info(btcoexist);
3151 }
3152 }
3153
3154 void ex_halbtc8723b1ant_coex_dm_reset(struct btc_coexist *btcoexist)
3155 {
3156 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE,
3157 "[BTCoex], *****************Coex DM Reset****************\n");
3158
3159 halbtc8723b1ant_init_hw_config(btcoexist, false);
3160 btcoexist->btc_set_rf_reg(btcoexist, BTC_RF_A, 0x1, 0xfffff, 0x0);
3161 btcoexist->btc_set_rf_reg(btcoexist, BTC_RF_A, 0x2, 0xfffff, 0x0);
3162 halbtc8723b1ant_init_coex_dm(btcoexist);
3163 }
3164
3165 void ex_halbtc8723b1ant_periodical(struct btc_coexist *btcoexist)
3166 {
3167 struct btc_board_info *board_info = &btcoexist->board_info;
3168 struct btc_stack_info *stack_info = &btcoexist->stack_info;
3169 static u8 dis_ver_info_cnt;
3170 u32 fw_ver = 0, bt_patch_ver = 0;
3171
3172 BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE,
3173 "[BTCoex], ==========================Periodical===========================\n");
3174
3175 if (dis_ver_info_cnt <= 5) {
3176 dis_ver_info_cnt += 1;
3177 BTC_PRINT(BTC_MSG_INTERFACE, INTF_INIT,
3178 "[BTCoex], ****************************************************************\n");
3179 BTC_PRINT(BTC_MSG_INTERFACE, INTF_INIT,
3180 "[BTCoex], Ant PG Num/ Ant Mech/ Ant Pos = %d/ %d/ %d\n",
3181 board_info->pg_ant_num, board_info->btdm_ant_num,
3182 board_info->btdm_ant_pos);
3183 BTC_PRINT(BTC_MSG_INTERFACE, INTF_INIT,
3184 "[BTCoex], BT stack/ hci ext ver = %s / %d\n",
3185 ((stack_info->profile_notified) ? "Yes" : "No"),
3186 stack_info->hci_version);
3187 btcoexist->btc_get(btcoexist, BTC_GET_U4_BT_PATCH_VER,
3188 &bt_patch_ver);
3189 btcoexist->btc_get(btcoexist, BTC_GET_U4_WIFI_FW_VER, &fw_ver);
3190 BTC_PRINT(BTC_MSG_INTERFACE, INTF_INIT,
3191 "[BTCoex], CoexVer/ FwVer/ PatchVer = %d_%x/ 0x%x/ 0x%x(%d)\n",
3192 glcoex_ver_date_8723b_1ant,
3193 glcoex_ver_8723b_1ant, fw_ver,
3194 bt_patch_ver, bt_patch_ver);
3195 BTC_PRINT(BTC_MSG_INTERFACE, INTF_INIT,
3196 "[BTCoex], ****************************************************************\n");
3197 }
3198
3199 #if (BT_AUTO_REPORT_ONLY_8723B_1ANT == 0)
3200 halbtc8723b1ant_query_bt_info(btcoexist);
3201 halbtc8723b1ant_monitor_bt_ctr(btcoexist);
3202 halbtc8723b1ant_monitor_bt_enable_disable(btcoexist);
3203 #else
3204 if (btc8723b1ant_is_wifi_status_changed(btcoexist) ||
3205 coex_dm->auto_tdma_adjust) {
3206 halbtc8723b1ant_run_coexist_mechanism(btcoexist);
3207 }
3208
3209 coex_sta->special_pkt_period_cnt++;
3210 #endif
3211 }
This page took 0.155507 seconds and 5 git commands to generate.