1 /* SPDX-License-Identifier: GPL-2.0 */
2 /* Copyright(c) 2012 Realtek Corporation.*/
4 /**********************************************************************
5 * The following is for 8723B 1ANT BT Co-exist definition
6 **********************************************************************/
7 #define BT_INFO_8723B_1ANT_B_FTP BIT7
8 #define BT_INFO_8723B_1ANT_B_A2DP BIT6
9 #define BT_INFO_8723B_1ANT_B_HID BIT5
10 #define BT_INFO_8723B_1ANT_B_SCO_BUSY BIT4
11 #define BT_INFO_8723B_1ANT_B_ACL_BUSY BIT3
12 #define BT_INFO_8723B_1ANT_B_INQ_PAGE BIT2
13 #define BT_INFO_8723B_1ANT_B_SCO_ESCO BIT1
14 #define BT_INFO_8723B_1ANT_B_CONNECTION BIT0
16 #define BT_INFO_8723B_1ANT_A2DP_BASIC_RATE(_BT_INFO_EXT_) \
17 (((_BT_INFO_EXT_&BIT0)) ? true : false)
19 #define BTC_RSSI_COEX_THRESH_TOL_8723B_1ANT 2
21 #define BT_8723B_1ANT_WIFI_NOISY_THRESH 50
23 enum _BT_INFO_SRC_8723B_1ANT
{
24 BT_INFO_SRC_8723B_1ANT_WIFI_FW
= 0x0,
25 BT_INFO_SRC_8723B_1ANT_BT_RSP
= 0x1,
26 BT_INFO_SRC_8723B_1ANT_BT_ACTIVE_SEND
= 0x2,
27 BT_INFO_SRC_8723B_1ANT_MAX
30 enum _BT_8723B_1ANT_BT_STATUS
{
31 BT_8723B_1ANT_BT_STATUS_NON_CONNECTED_IDLE
= 0x0,
32 BT_8723B_1ANT_BT_STATUS_CONNECTED_IDLE
= 0x1,
33 BT_8723B_1ANT_BT_STATUS_INQ_PAGE
= 0x2,
34 BT_8723B_1ANT_BT_STATUS_ACL_BUSY
= 0x3,
35 BT_8723B_1ANT_BT_STATUS_SCO_BUSY
= 0x4,
36 BT_8723B_1ANT_BT_STATUS_ACL_SCO_BUSY
= 0x5,
37 BT_8723B_1ANT_BT_STATUS_MAX
40 enum _BT_8723B_1ANT_WIFI_STATUS
{
41 BT_8723B_1ANT_WIFI_STATUS_NON_CONNECTED_IDLE
= 0x0,
42 BT_8723B_1ANT_WIFI_STATUS_NON_CONNECTED_ASSO_AUTH_SCAN
= 0x1,
43 BT_8723B_1ANT_WIFI_STATUS_CONNECTED_SCAN
= 0x2,
44 BT_8723B_1ANT_WIFI_STATUS_CONNECTED_SPECIAL_PKT
= 0x3,
45 BT_8723B_1ANT_WIFI_STATUS_CONNECTED_IDLE
= 0x4,
46 BT_8723B_1ANT_WIFI_STATUS_CONNECTED_BUSY
= 0x5,
47 BT_8723B_1ANT_WIFI_STATUS_MAX
50 enum _BT_8723B_1ANT_COEX_ALGO
{
51 BT_8723B_1ANT_COEX_ALGO_UNDEFINED
= 0x0,
52 BT_8723B_1ANT_COEX_ALGO_SCO
= 0x1,
53 BT_8723B_1ANT_COEX_ALGO_HID
= 0x2,
54 BT_8723B_1ANT_COEX_ALGO_A2DP
= 0x3,
55 BT_8723B_1ANT_COEX_ALGO_A2DP_PANHS
= 0x4,
56 BT_8723B_1ANT_COEX_ALGO_PANEDR
= 0x5,
57 BT_8723B_1ANT_COEX_ALGO_PANHS
= 0x6,
58 BT_8723B_1ANT_COEX_ALGO_PANEDR_A2DP
= 0x7,
59 BT_8723B_1ANT_COEX_ALGO_PANEDR_HID
= 0x8,
60 BT_8723B_1ANT_COEX_ALGO_HID_A2DP_PANEDR
= 0x9,
61 BT_8723B_1ANT_COEX_ALGO_HID_A2DP
= 0xa,
62 BT_8723B_1ANT_COEX_ALGO_MAX
= 0xb,
65 struct coex_dm_8723b_1ant
{
70 bool cur_ignore_wlan_act
;
71 bool pre_ignore_wlan_act
;
75 u8 ps_tdma_du_adj_type
;
76 bool auto_tdma_adjust
;
79 bool pre_bt_auto_report
;
80 bool cur_bt_auto_report
;
87 bool pre_low_penalty_ra
;
88 bool cur_low_penalty_ra
;
99 u32 backup_arfr_cnt1
; /* Auto Rate Fallback Retry cnt */
100 u32 backup_arfr_cnt2
; /* Auto Rate Fallback Retry cnt */
101 u16 backup_retry_limit
;
102 u8 backup_ampdu_max_time
;
104 /* algorithm related */
108 u8 wifi_chnl_info
[3];
114 u8 pre_retry_limit_type
;
115 u8 cur_retry_limit_type
;
116 u8 pre_ampdu_time_type
;
117 u8 cur_ampdu_time_type
;
123 struct coex_sta_8723b_1ant
{
130 bool bt_hi_pri_link_exist
;
132 bool bt_abnormal_scan
;
136 u32 special_pkt_period_cnt
;
137 u32 high_priority_tx
;
138 u32 high_priority_rx
;
142 u8 pre_bt_rssi_state
;
143 u8 pre_wifi_rssi_state
[4];
145 bool c2h_bt_info_req_sent
;
146 u8 bt_info_c2h
[BT_INFO_SRC_8723B_1ANT_MAX
][10];
147 u32 bt_info_c2h_cnt
[BT_INFO_SRC_8723B_1ANT_MAX
];
149 bool c2h_bt_inquiry_page
;
150 bool c2h_bt_remote_name_req
;
151 bool wifi_is_high_pri_task
;
173 u32 wrong_profile_notification
;
179 /*************************************************************************
180 * The following is interface which will notify coex module.
181 *************************************************************************/
182 void ex_btc8723b1ant_power_on_setting(struct btc_coexist
*btcoexist
);
183 void ex_btc8723b1ant_init_hwconfig(struct btc_coexist
*btcoexist
,
185 void ex_btc8723b1ant_init_coex_dm(struct btc_coexist
*btcoexist
);
186 void ex_btc8723b1ant_ips_notify(struct btc_coexist
*btcoexist
, u8 type
);
187 void ex_btc8723b1ant_lps_notify(struct btc_coexist
*btcoexist
, u8 type
);
188 void ex_btc8723b1ant_scan_notify(struct btc_coexist
*btcoexist
, u8 type
);
189 void ex_btc8723b1ant_connect_notify(struct btc_coexist
*btcoexist
, u8 type
);
190 void ex_btc8723b1ant_media_status_notify(struct btc_coexist
*btcoexist
,
192 void ex_btc8723b1ant_special_packet_notify(struct btc_coexist
*btcoexist
,
194 void ex_btc8723b1ant_bt_info_notify(struct btc_coexist
*btcoexist
,
195 u8
*tmpbuf
, u8 length
);
196 void ex_btc8723b1ant_rf_status_notify(struct btc_coexist
*btcoexist
,
198 void ex_btc8723b1ant_halt_notify(struct btc_coexist
*btcoexist
);
199 void ex_btc8723b1ant_pnp_notify(struct btc_coexist
*btcoexist
, u8 pnpstate
);
200 void ex_btc8723b1ant_coex_dm_reset(struct btc_coexist
*btcoexist
);
201 void ex_btc8723b1ant_periodical(struct btc_coexist
*btcoexist
);
202 void ex_btc8723b1ant_display_coex_info(struct btc_coexist
*btcoexist
,
204 void ex_btc8723b1ant_pnp_notify(struct btc_coexist
*btcoexist
, u8 pnp_state
);