1 /* SPDX-License-Identifier: GPL-2.0 */ 2 3 #if (BT_SUPPORT == 1 && COEX_SUPPORT == 1) 4 5 #if (RTL8723D_SUPPORT == 1) 6 7 /* ******************************************* 8 * The following is for 8723D 1ANT BT Co-exist definition 9 * ******************************************* */ 10 #define BT_AUTO_REPORT_ONLY_8723D_1ANT 1 11 12 #define BT_INFO_8723D_1ANT_B_FTP BIT(7) 13 #define BT_INFO_8723D_1ANT_B_A2DP BIT(6) 14 #define BT_INFO_8723D_1ANT_B_HID BIT(5) 15 #define BT_INFO_8723D_1ANT_B_SCO_BUSY BIT(4) 16 #define BT_INFO_8723D_1ANT_B_ACL_BUSY BIT(3) 17 #define BT_INFO_8723D_1ANT_B_INQ_PAGE BIT(2) 18 #define BT_INFO_8723D_1ANT_B_SCO_ESCO BIT(1) 19 #define BT_INFO_8723D_1ANT_B_CONNECTION BIT(0) 20 21 #define BT_INFO_8723D_1ANT_A2DP_BASIC_RATE(_BT_INFO_EXT_) \ 22 (((_BT_INFO_EXT_&BIT(0))) ? true : false) 23 24 #define BTC_RSSI_COEX_THRESH_TOL_8723D_1ANT 2 25 26 #define BT_8723D_1ANT_WIFI_NOISY_THRESH 30 /* max: 255 */ 27 28 /* for Antenna detection */ 29 #define BT_8723D_1ANT_ANTDET_PSDTHRES_BACKGROUND 50 30 #define BT_8723D_1ANT_ANTDET_PSDTHRES_2ANT_BADISOLATION 70 31 #define BT_8723D_1ANT_ANTDET_PSDTHRES_2ANT_GOODISOLATION 55 32 #define BT_8723D_1ANT_ANTDET_PSDTHRES_1ANT 35 33 #define BT_8723D_1ANT_ANTDET_RETRY_INTERVAL 10 /* retry timer if ant det is fail, unit: second */ 34 #define BT_8723D_1ANT_ANTDET_SWEEPPOINT_DELAY 40000 35 #define BT_8723D_1ANT_ANTDET_ENABLE 0 36 #define BT_8723D_1ANT_ANTDET_COEXMECHANISMSWITCH_ENABLE 0 37 #define BT_8723D_1ANT_ANTDET_BTTXTIME 100 38 #define BT_8723D_1ANT_ANTDET_BTTXCHANNEL 39 39 40 #define BT_8723D_1ANT_LTECOEX_INDIRECTREG_ACCESS_TIMEOUT 30000 41 42 enum bt_8723d_1ant_signal_state { 43 BT_8723D_1ANT_SIG_STA_SET_TO_LOW = 0x0, 44 BT_8723D_1ANT_SIG_STA_SET_BY_HW = 0x0, 45 BT_8723D_1ANT_SIG_STA_SET_TO_HIGH = 0x1, 46 BT_8723D_1ANT_SIG_STA_MAX 47 }; 48 49 enum bt_8723d_1ant_path_ctrl_owner { 50 BT_8723D_1ANT_PCO_BTSIDE = 0x0, 51 BT_8723D_1ANT_PCO_WLSIDE = 0x1, 52 BT_8723D_1ANT_PCO_MAX 53 }; 54 55 enum bt_8723d_1ant_gnt_ctrl_type { 56 BT_8723D_1ANT_GNT_TYPE_CTRL_BY_PTA = 0x0, 57 BT_8723D_1ANT_GNT_TYPE_CTRL_BY_SW = 0x1, 58 BT_8723D_1ANT_GNT_TYPE_MAX 59 }; 60 61 enum bt_8723d_1ant_gnt_ctrl_block { 62 BT_8723D_1ANT_GNT_BLOCK_RFC_BB = 0x0, 63 BT_8723D_1ANT_GNT_BLOCK_RFC = 0x1, 64 BT_8723D_1ANT_GNT_BLOCK_BB = 0x2, 65 BT_8723D_1ANT_GNT_BLOCK_MAX 66 }; 67 68 enum bt_8723d_1ant_lte_coex_table_type { 69 BT_8723D_1ANT_CTT_WL_VS_LTE = 0x0, 70 BT_8723D_1ANT_CTT_BT_VS_LTE = 0x1, 71 BT_8723D_1ANT_CTT_MAX 72 }; 73 74 enum bt_8723d_1ant_lte_break_table_type { 75 BT_8723D_1ANT_LBTT_WL_BREAK_LTE = 0x0, 76 BT_8723D_1ANT_LBTT_BT_BREAK_LTE = 0x1, 77 BT_8723D_1ANT_LBTT_LTE_BREAK_WL = 0x2, 78 BT_8723D_1ANT_LBTT_LTE_BREAK_BT = 0x3, 79 BT_8723D_1ANT_LBTT_MAX 80 }; 81 82 enum bt_info_src_8723d_1ant { 83 BT_INFO_SRC_8723D_1ANT_WIFI_FW = 0x0, 84 BT_INFO_SRC_8723D_1ANT_BT_RSP = 0x1, 85 BT_INFO_SRC_8723D_1ANT_BT_ACTIVE_SEND = 0x2, 86 BT_INFO_SRC_8723D_1ANT_MAX 87 }; 88 89 enum bt_8723d_1ant_bt_status { 90 BT_8723D_1ANT_BT_STATUS_NON_CONNECTED_IDLE = 0x0, 91 BT_8723D_1ANT_BT_STATUS_CONNECTED_IDLE = 0x1, 92 BT_8723D_1ANT_BT_STATUS_INQ_PAGE = 0x2, 93 BT_8723D_1ANT_BT_STATUS_ACL_BUSY = 0x3, 94 BT_8723D_1ANT_BT_STATUS_SCO_BUSY = 0x4, 95 BT_8723D_1ANT_BT_STATUS_ACL_SCO_BUSY = 0x5, 96 BT_8723D_1ANT_BT_STATUS_MAX 97 }; 98 99 enum bt_8723d_1ant_wifi_status { 100 BT_8723D_1ANT_WIFI_STATUS_NON_CONNECTED_IDLE = 0x0, 101 BT_8723D_1ANT_WIFI_STATUS_NON_CONNECTED_ASSO_AUTH_SCAN = 0x1, 102 BT_8723D_1ANT_WIFI_STATUS_CONNECTED_SCAN = 0x2, 103 BT_8723D_1ANT_WIFI_STATUS_CONNECTED_SPECIFIC_PKT = 0x3, 104 BT_8723D_1ANT_WIFI_STATUS_CONNECTED_IDLE = 0x4, 105 BT_8723D_1ANT_WIFI_STATUS_CONNECTED_BUSY = 0x5, 106 BT_8723D_1ANT_WIFI_STATUS_MAX 107 }; 108 109 enum bt_8723d_1ant_coex_algo { 110 BT_8723D_1ANT_COEX_ALGO_UNDEFINED = 0x0, 111 BT_8723D_1ANT_COEX_ALGO_SCO = 0x1, 112 BT_8723D_1ANT_COEX_ALGO_HID = 0x2, 113 BT_8723D_1ANT_COEX_ALGO_A2DP = 0x3, 114 BT_8723D_1ANT_COEX_ALGO_A2DP_PANHS = 0x4, 115 BT_8723D_1ANT_COEX_ALGO_PANEDR = 0x5, 116 BT_8723D_1ANT_COEX_ALGO_PANHS = 0x6, 117 BT_8723D_1ANT_COEX_ALGO_PANEDR_A2DP = 0x7, 118 BT_8723D_1ANT_COEX_ALGO_PANEDR_HID = 0x8, 119 BT_8723D_1ANT_COEX_ALGO_HID_A2DP_PANEDR = 0x9, 120 BT_8723D_1ANT_COEX_ALGO_HID_A2DP = 0xa, 121 BT_8723D_1ANT_COEX_ALGO_MAX = 0xb, 122 }; 123 124 struct coex_dm_8723d_1ant { 125 /* hw setting */ 126 u8 pre_ant_pos_type; 127 u8 cur_ant_pos_type; 128 /* fw mechanism */ 129 boolean cur_ignore_wlan_act; 130 boolean pre_ignore_wlan_act; 131 u8 pre_ps_tdma; 132 u8 cur_ps_tdma; 133 u8 ps_tdma_para[5]; 134 u8 ps_tdma_du_adj_type; 135 boolean auto_tdma_adjust; 136 boolean pre_ps_tdma_on; 137 boolean cur_ps_tdma_on; 138 boolean pre_bt_auto_report; 139 boolean cur_bt_auto_report; 140 u8 pre_lps; 141 u8 cur_lps; 142 u8 pre_rpwm; 143 u8 cur_rpwm; 144 145 /* sw mechanism */ 146 boolean pre_low_penalty_ra; 147 boolean cur_low_penalty_ra; 148 u32 pre_val0x6c0; 149 u32 cur_val0x6c0; 150 u32 pre_val0x6c4; 151 u32 cur_val0x6c4; 152 u32 pre_val0x6c8; 153 u32 cur_val0x6c8; 154 u8 pre_val0x6cc; 155 u8 cur_val0x6cc; 156 boolean limited_dig; 157 158 u32 backup_arfr_cnt1; /* Auto Rate Fallback Retry cnt */ 159 u32 backup_arfr_cnt2; /* Auto Rate Fallback Retry cnt */ 160 u16 backup_retry_limit; 161 u8 backup_ampdu_max_time; 162 163 /* algorithm related */ 164 u8 pre_algorithm; 165 u8 cur_algorithm; 166 u8 bt_status; 167 u8 wifi_chnl_info[3]; 168 169 u32 pre_ra_mask; 170 u32 cur_ra_mask; 171 u8 pre_arfr_type; 172 u8 cur_arfr_type; 173 u8 pre_retry_limit_type; 174 u8 cur_retry_limit_type; 175 u8 pre_ampdu_time_type; 176 u8 cur_ampdu_time_type; 177 u32 arp_cnt; 178 179 u8 error_condition; 180 }; 181 182 struct coex_sta_8723d_1ant { 183 boolean bt_disabled; 184 boolean bt_link_exist; 185 boolean sco_exist; 186 boolean a2dp_exist; 187 boolean hid_exist; 188 boolean pan_exist; 189 boolean bt_hi_pri_link_exist; 190 u8 num_of_profile; 191 192 boolean under_lps; 193 boolean under_ips; 194 u32 specific_pkt_period_cnt; 195 u32 high_priority_tx; 196 u32 high_priority_rx; 197 u32 low_priority_tx; 198 u32 low_priority_rx; 199 s8 bt_rssi; 200 boolean bt_tx_rx_mask; 201 u8 pre_bt_rssi_state; 202 u8 pre_wifi_rssi_state[4]; 203 boolean c2h_bt_info_req_sent; 204 u8 bt_info_c2h[BT_INFO_SRC_8723D_1ANT_MAX][10]; 205 u32 bt_info_c2h_cnt[BT_INFO_SRC_8723D_1ANT_MAX]; 206 boolean bt_whck_test; 207 boolean c2h_bt_inquiry_page; 208 boolean c2h_bt_page; /* Add for win8.1 page out issue */ 209 boolean wifi_is_high_pri_task; /* Add for win8.1 page out issue */ 210 u8 bt_retry_cnt; 211 u8 bt_info_ext; 212 u32 pop_event_cnt; 213 u8 scan_ap_num; 214 215 u32 crc_ok_cck; 216 u32 crc_ok_11g; 217 u32 crc_ok_11n; 218 u32 crc_ok_11n_agg; 219 220 u32 crc_err_cck; 221 u32 crc_err_11g; 222 u32 crc_err_11n; 223 u32 crc_err_11n_agg; 224 225 boolean cck_lock; 226 boolean pre_ccklock; 227 boolean cck_ever_lock; 228 u8 coex_table_type; 229 230 boolean force_lps_on; 231 u32 wrong_profile_notification; 232 233 boolean concurrent_rx_mode_on; 234 235 u16 score_board; 236 237 u8 a2dp_bit_pool; 238 u8 cut_version; 239 boolean acl_busy; 240 boolean wl_rf_off_on_event; 241 boolean bt_create_connection; 242 boolean gnt_control_by_PTA; 243 }; 244 245 #define BT_8723D_1ANT_ANTDET_PSD_POINTS 256 /* MAX:1024 */ 246 #define BT_8723D_1ANT_ANTDET_PSD_AVGNUM 1 /* MAX:3 */ 247 #define BT_8723D_1ANT_ANTDET_BUF_LEN 16 248 249 struct psdscan_sta_8723d_1ant { 250 251 u32 ant_det_bt_le_channel; /* BT LE Channel ex:2412 */ 252 u32 ant_det_bt_tx_time; 253 u32 ant_det_pre_psdscan_peak_val; 254 boolean ant_det_is_ant_det_available; 255 u32 ant_det_psd_scan_peak_val; 256 boolean ant_det_is_btreply_available; 257 u32 ant_det_psd_scan_peak_freq; 258 259 u8 ant_det_result; 260 u8 ant_det_peak_val[BT_8723D_1ANT_ANTDET_BUF_LEN]; 261 u8 ant_det_peak_freq[BT_8723D_1ANT_ANTDET_BUF_LEN]; 262 u32 ant_det_try_count; 263 u32 ant_det_fail_count; 264 u32 ant_det_inteval_count; 265 u32 ant_det_thres_offset; 266 267 u32 real_cent_freq; 268 s32 real_offset; 269 u32 real_span; 270 271 u32 psd_band_width; /* unit: Hz */ 272 u32 psd_point; /* 128/256/512/1024 */ 273 u32 psd_report[1024]; /* unit:dB (20logx), 0~255 */ 274 u32 psd_report_max_hold[1024]; /* unit:dB (20logx), 0~255 */ 275 u32 psd_start_point; 276 u32 psd_stop_point; 277 u32 psd_max_value_point; 278 u32 psd_max_value; 279 u32 psd_start_base; 280 u32 psd_avg_num; /* 1/8/16/32 */ 281 u32 psd_gen_count; 282 boolean is_psd_running; 283 boolean is_psd_show_max_only; 284 }; 285 286 /* ******************************************* 287 * The following is interface which will notify coex module. 288 * ******************************************* */ 289 void ex_halbtc8723d1ant_power_on_setting(IN struct btc_coexist *btcoexist); 290 void ex_halbtc8723d1ant_pre_load_firmware(IN struct btc_coexist *btcoexist); 291 void ex_halbtc8723d1ant_init_hw_config(IN struct btc_coexist *btcoexist, 292 IN boolean wifi_only); 293 void ex_halbtc8723d1ant_init_coex_dm(IN struct btc_coexist *btcoexist); 294 void ex_halbtc8723d1ant_ips_notify(IN struct btc_coexist *btcoexist, 295 IN u8 type); 296 void ex_halbtc8723d1ant_lps_notify(IN struct btc_coexist *btcoexist, 297 IN u8 type); 298 void ex_halbtc8723d1ant_scan_notify(IN struct btc_coexist *btcoexist, 299 IN u8 type); 300 void ex_halbtc8723d1ant_connect_notify(IN struct btc_coexist *btcoexist, 301 IN u8 type); 302 void ex_halbtc8723d1ant_media_status_notify(IN struct btc_coexist *btcoexist, 303 IN u8 type); 304 void ex_halbtc8723d1ant_specific_packet_notify(IN struct btc_coexist *btcoexist, 305 IN u8 type); 306 void ex_halbtc8723d1ant_bt_info_notify(IN struct btc_coexist *btcoexist, 307 IN u8 *tmp_buf, IN u8 length); 308 void ex_halbtc8723d1ant_rf_status_notify(IN struct btc_coexist *btcoexist, 309 IN u8 type); 310 void ex_halbtc8723d1ant_halt_notify(IN struct btc_coexist *btcoexist); 311 void ex_halbtc8723d1ant_pnp_notify(IN struct btc_coexist *btcoexist, 312 IN u8 pnp_state); 313 void ex_halbtc8723d1ant_coex_dm_reset(IN struct btc_coexist *btcoexist); 314 void ex_halbtc8723d1ant_periodical(IN struct btc_coexist *btcoexist); 315 void ex_halbtc8723d1ant_display_coex_info(IN struct btc_coexist *btcoexist); 316 void ex_halbtc8723d1ant_antenna_detection(IN struct btc_coexist *btcoexist, 317 IN u32 cent_freq, IN u32 offset, IN u32 span, IN u32 seconds); 318 void ex_halbtc8723d1ant_antenna_isolation(IN struct btc_coexist *btcoexist, 319 IN u32 cent_freq, IN u32 offset, IN u32 span, IN u32 seconds); 320 321 void ex_halbtc8723d1ant_psd_scan(IN struct btc_coexist *btcoexist, 322 IN u32 cent_freq, IN u32 offset, IN u32 span, IN u32 seconds); 323 void ex_halbtc8723d1ant_display_ant_detection(IN struct btc_coexist *btcoexist); 324 325 #else 326 #define ex_halbtc8723d1ant_power_on_setting(btcoexist) 327 #define ex_halbtc8723d1ant_pre_load_firmware(btcoexist) 328 #define ex_halbtc8723d1ant_init_hw_config(btcoexist, wifi_only) 329 #define ex_halbtc8723d1ant_init_coex_dm(btcoexist) 330 #define ex_halbtc8723d1ant_ips_notify(btcoexist, type) 331 #define ex_halbtc8723d1ant_lps_notify(btcoexist, type) 332 #define ex_halbtc8723d1ant_scan_notify(btcoexist, type) 333 #define ex_halbtc8723d1ant_connect_notify(btcoexist, type) 334 #define ex_halbtc8723d1ant_media_status_notify(btcoexist, type) 335 #define ex_halbtc8723d1ant_specific_packet_notify(btcoexist, type) 336 #define ex_halbtc8723d1ant_bt_info_notify(btcoexist, tmp_buf, length) 337 #define ex_halbtc8723d1ant_rf_status_notify(btcoexist, type) 338 #define ex_halbtc8723d1ant_halt_notify(btcoexist) 339 #define ex_halbtc8723d1ant_pnp_notify(btcoexist, pnp_state) 340 #define ex_halbtc8723d1ant_coex_dm_reset(btcoexist) 341 #define ex_halbtc8723d1ant_periodical(btcoexist) 342 #define ex_halbtc8723d1ant_display_coex_info(btcoexist) 343 #define ex_halbtc8723d1ant_antenna_detection(btcoexist, cent_freq, offset, span, seconds) 344 #define ex_halbtc8723d1ant_antenna_isolation(btcoexist, cent_freq, offset, span, seconds) 345 #define ex_halbtc8723d1ant_psd_scan(btcoexist, cent_freq, offset, span, seconds) 346 #define ex_halbtc8723d1ant_display_ant_detection(btcoexist) 347 #endif 348 349 #endif 350