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 2Ant BT Co-exist definition 9 * ******************************************* */ 10 #define BT_AUTO_REPORT_ONLY_8723D_2ANT 1 11 12 13 #define BT_INFO_8723D_2ANT_B_FTP BIT(7) 14 #define BT_INFO_8723D_2ANT_B_A2DP BIT(6) 15 #define BT_INFO_8723D_2ANT_B_HID BIT(5) 16 #define BT_INFO_8723D_2ANT_B_SCO_BUSY BIT(4) 17 #define BT_INFO_8723D_2ANT_B_ACL_BUSY BIT(3) 18 #define BT_INFO_8723D_2ANT_B_INQ_PAGE BIT(2) 19 #define BT_INFO_8723D_2ANT_B_SCO_ESCO BIT(1) 20 #define BT_INFO_8723D_2ANT_B_CONNECTION BIT(0) 21 22 #define BTC_RSSI_COEX_THRESH_TOL_8723D_2ANT 2 23 24 25 #define BT_8723D_2ANT_WIFI_RSSI_COEXSWITCH_THRES1 80 /* unit: % WiFi RSSI Threshold for 2-Ant free-run/2-Ant TDMA translation, default = 42 */ 26 #define BT_8723D_2ANT_BT_RSSI_COEXSWITCH_THRES1 80 /* unit: % BT RSSI Threshold for 2-Ant free-run/2-Ant TDMA translation, default = 46 */ 27 #define BT_8723D_2ANT_WIFI_RSSI_COEXSWITCH_THRES2 80 /* unit: % WiFi RSSI Threshold for 1-Ant TDMA/1-Ant PS-TDMA translation, default = 42 */ 28 #define BT_8723D_2ANT_BT_RSSI_COEXSWITCH_THRES2 80 /* unit: % BT RSSI Threshold for 1-Ant TDMA/1-Ant PS-TDMA translation, default = 46 */ 29 #define BT_8723D_2ANT_DEFAULT_ISOLATION 15 /* unit: dB */ 30 #define BT_8723D_2ANT_WIFI_MAX_TX_POWER 15 /* unit: dBm */ 31 #define BT_8723D_2ANT_BT_MAX_TX_POWER 3 /* unit: dBm */ 32 #define BT_8723D_2ANT_WIFI_SIR_THRES1 -15 /* unit: dB */ 33 #define BT_8723D_2ANT_WIFI_SIR_THRES2 -30 /* unit: dB */ 34 #define BT_8723D_2ANT_BT_SIR_THRES1 -15 /* unit: dB */ 35 #define BT_8723D_2ANT_BT_SIR_THRES2 -30 /* unit: dB */ 36 37 38 /* for Antenna detection */ 39 #define BT_8723D_2ANT_ANTDET_PSDTHRES_BACKGROUND 50 40 #define BT_8723D_2ANT_ANTDET_PSDTHRES_2ANT_BADISOLATION 70 41 #define BT_8723D_2ANT_ANTDET_PSDTHRES_2ANT_GOODISOLATION 52 42 #define BT_8723D_2ANT_ANTDET_PSDTHRES_1ANT 40 43 #define BT_8723D_2ANT_ANTDET_RETRY_INTERVAL 10 /* retry timer if ant det is fail, unit: second */ 44 #define BT_8723D_2ANT_ANTDET_SWEEPPOINT_DELAY 40000 45 #define BT_8723D_2ANT_ANTDET_ENABLE 0 46 #define BT_8723D_2ANT_ANTDET_COEXMECHANISMSWITCH_ENABLE 0 47 #define BT_8723D_2ANT_ANTDET_BTTXTIME 100 48 #define BT_8723D_2ANT_ANTDET_BTTXCHANNEL 39 49 50 #define BT_8723D_2ANT_LTECOEX_INDIRECTREG_ACCESS_TIMEOUT 30000 51 52 enum bt_8723d_2ant_signal_state { 53 BT_8723D_2ANT_SIG_STA_SET_TO_LOW = 0x0, 54 BT_8723D_2ANT_SIG_STA_SET_BY_HW = 0x0, 55 BT_8723D_2ANT_SIG_STA_SET_TO_HIGH = 0x1, 56 BT_8723D_2ANT_SIG_STA_MAX 57 }; 58 59 enum bt_8723d_2ant_path_ctrl_owner { 60 BT_8723D_2ANT_PCO_BTSIDE = 0x0, 61 BT_8723D_2ANT_PCO_WLSIDE = 0x1, 62 BT_8723D_2ANT_PCO_MAX 63 }; 64 65 enum bt_8723d_2ant_gnt_ctrl_type { 66 BT_8723D_2ANT_GNT_TYPE_CTRL_BY_PTA = 0x0, 67 BT_8723D_2ANT_GNT_TYPE_CTRL_BY_SW = 0x1, 68 BT_8723D_2ANT_GNT_TYPE_MAX 69 }; 70 71 enum bt_8723d_2ant_gnt_ctrl_block { 72 BT_8723D_2ANT_GNT_BLOCK_RFC_BB = 0x0, 73 BT_8723D_2ANT_GNT_BLOCK_RFC = 0x1, 74 BT_8723D_2ANT_GNT_BLOCK_BB = 0x2, 75 BT_8723D_2ANT_GNT_BLOCK_MAX 76 }; 77 78 enum bt_8723d_2ant_lte_coex_table_type { 79 BT_8723D_2ANT_CTT_WL_VS_LTE = 0x0, 80 BT_8723D_2ANT_CTT_BT_VS_LTE = 0x1, 81 BT_8723D_2ANT_CTT_MAX 82 }; 83 84 enum bt_8723d_2ant_lte_break_table_type { 85 BT_8723D_2ANT_LBTT_WL_BREAK_LTE = 0x0, 86 BT_8723D_2ANT_LBTT_BT_BREAK_LTE = 0x1, 87 BT_8723D_2ANT_LBTT_LTE_BREAK_WL = 0x2, 88 BT_8723D_2ANT_LBTT_LTE_BREAK_BT = 0x3, 89 BT_8723D_2ANT_LBTT_MAX 90 }; 91 92 enum bt_info_src_8723d_2ant { 93 BT_INFO_SRC_8723D_2ANT_WIFI_FW = 0x0, 94 BT_INFO_SRC_8723D_2ANT_BT_RSP = 0x1, 95 BT_INFO_SRC_8723D_2ANT_BT_ACTIVE_SEND = 0x2, 96 BT_INFO_SRC_8723D_2ANT_MAX 97 }; 98 99 enum bt_8723d_2ant_bt_status { 100 BT_8723D_2ANT_BT_STATUS_NON_CONNECTED_IDLE = 0x0, 101 BT_8723D_2ANT_BT_STATUS_CONNECTED_IDLE = 0x1, 102 BT_8723D_2ANT_BT_STATUS_INQ_PAGE = 0x2, 103 BT_8723D_2ANT_BT_STATUS_ACL_BUSY = 0x3, 104 BT_8723D_2ANT_BT_STATUS_SCO_BUSY = 0x4, 105 BT_8723D_2ANT_BT_STATUS_ACL_SCO_BUSY = 0x5, 106 BT_8723D_2ANT_BT_STATUS_MAX 107 }; 108 109 enum bt_8723d_2ant_coex_algo { 110 BT_8723D_2ANT_COEX_ALGO_UNDEFINED = 0x0, 111 BT_8723D_2ANT_COEX_ALGO_SCO = 0x1, 112 BT_8723D_2ANT_COEX_ALGO_HID = 0x2, 113 BT_8723D_2ANT_COEX_ALGO_A2DP = 0x3, 114 BT_8723D_2ANT_COEX_ALGO_A2DP_PANHS = 0x4, 115 BT_8723D_2ANT_COEX_ALGO_PANEDR = 0x5, 116 BT_8723D_2ANT_COEX_ALGO_PANHS = 0x6, 117 BT_8723D_2ANT_COEX_ALGO_PANEDR_A2DP = 0x7, 118 BT_8723D_2ANT_COEX_ALGO_PANEDR_HID = 0x8, 119 BT_8723D_2ANT_COEX_ALGO_HID_A2DP_PANEDR = 0x9, 120 BT_8723D_2ANT_COEX_ALGO_HID_A2DP = 0xa, 121 BT_8723D_2ANT_COEX_ALGO_NOPROFILEBUSY = 0xb, 122 BT_8723D_2ANT_COEX_ALGO_MAX 123 }; 124 125 struct coex_dm_8723d_2ant { 126 /* fw mechanism */ 127 u8 pre_bt_dec_pwr_lvl; 128 u8 cur_bt_dec_pwr_lvl; 129 u8 pre_fw_dac_swing_lvl; 130 u8 cur_fw_dac_swing_lvl; 131 boolean cur_ignore_wlan_act; 132 boolean pre_ignore_wlan_act; 133 u8 pre_ps_tdma; 134 u8 cur_ps_tdma; 135 u8 ps_tdma_para[5]; 136 u8 ps_tdma_du_adj_type; 137 boolean reset_tdma_adjust; 138 boolean auto_tdma_adjust; 139 boolean pre_ps_tdma_on; 140 boolean cur_ps_tdma_on; 141 boolean pre_bt_auto_report; 142 boolean cur_bt_auto_report; 143 144 /* sw mechanism */ 145 boolean pre_rf_rx_lpf_shrink; 146 boolean cur_rf_rx_lpf_shrink; 147 u32 bt_rf_0x1e_backup; 148 boolean pre_low_penalty_ra; 149 boolean cur_low_penalty_ra; 150 boolean pre_dac_swing_on; 151 u32 pre_dac_swing_lvl; 152 boolean cur_dac_swing_on; 153 u32 cur_dac_swing_lvl; 154 boolean pre_adc_back_off; 155 boolean cur_adc_back_off; 156 boolean pre_agc_table_en; 157 boolean cur_agc_table_en; 158 u32 pre_val0x6c0; 159 u32 cur_val0x6c0; 160 u32 pre_val0x6c4; 161 u32 cur_val0x6c4; 162 u32 pre_val0x6c8; 163 u32 cur_val0x6c8; 164 u8 pre_val0x6cc; 165 u8 cur_val0x6cc; 166 boolean limited_dig; 167 168 /* algorithm related */ 169 u8 pre_algorithm; 170 u8 cur_algorithm; 171 u8 bt_status; 172 u8 wifi_chnl_info[3]; 173 174 boolean need_recover0x948; 175 u32 backup0x948; 176 177 u8 pre_lps; 178 u8 cur_lps; 179 u8 pre_rpwm; 180 u8 cur_rpwm; 181 182 boolean is_switch_to_1dot5_ant; 183 u8 switch_thres_offset; 184 u32 arp_cnt; 185 }; 186 187 struct coex_sta_8723d_2ant { 188 boolean bt_disabled; 189 boolean bt_link_exist; 190 boolean sco_exist; 191 boolean a2dp_exist; 192 boolean hid_exist; 193 boolean pan_exist; 194 195 boolean under_lps; 196 boolean under_ips; 197 u32 high_priority_tx; 198 u32 high_priority_rx; 199 u32 low_priority_tx; 200 u32 low_priority_rx; 201 u8 bt_rssi; 202 boolean bt_tx_rx_mask; 203 u8 pre_bt_rssi_state; 204 u8 pre_wifi_rssi_state[4]; 205 boolean c2h_bt_info_req_sent; 206 u8 bt_info_c2h[BT_INFO_SRC_8723D_2ANT_MAX][10]; 207 u32 bt_info_c2h_cnt[BT_INFO_SRC_8723D_2ANT_MAX]; 208 boolean bt_whck_test; 209 boolean c2h_bt_inquiry_page; 210 boolean c2h_bt_remote_name_req; 211 u8 bt_retry_cnt; 212 u8 bt_info_ext; 213 u32 pop_event_cnt; 214 u8 scan_ap_num; 215 216 u32 crc_ok_cck; 217 u32 crc_ok_11g; 218 u32 crc_ok_11n; 219 u32 crc_ok_11n_agg; 220 221 u32 crc_err_cck; 222 u32 crc_err_11g; 223 u32 crc_err_11n; 224 u32 crc_err_11n_agg; 225 226 u8 coex_table_type; 227 boolean force_lps_on; 228 229 u8 dis_ver_info_cnt; 230 231 u8 a2dp_bit_pool; 232 u8 cut_version; 233 234 boolean concurrent_rx_mode_on; 235 236 u16 score_board; 237 u8 isolation_btween_wb; /* 0~ 50 */ 238 u8 wifi_coex_thres; 239 u8 bt_coex_thres; 240 u8 wifi_coex_thres2; 241 u8 bt_coex_thres2; 242 243 u8 num_of_profile; 244 boolean acl_busy; 245 boolean wl_rf_off_on_event; 246 boolean bt_create_connection; 247 boolean gnt_control_by_PTA; 248 boolean wifi_is_high_pri_task; 249 u32 specific_pkt_period_cnt; 250 }; 251 252 #define BT_8723D_2ANT_ANTDET_PSD_POINTS 256 /* MAX:1024 */ 253 #define BT_8723D_2ANT_ANTDET_PSD_AVGNUM 1 /* MAX:3 */ 254 #define BT_8723D_2ANT_ANTDET_BUF_LEN 16 255 256 struct psdscan_sta_8723d_2ant { 257 258 u32 ant_det_bt_le_channel; /* BT LE Channel ex:2412 */ 259 u32 ant_det_bt_tx_time; 260 u32 ant_det_pre_psdscan_peak_val; 261 boolean ant_det_is_ant_det_available; 262 u32 ant_det_psd_scan_peak_val; 263 boolean ant_det_is_btreply_available; 264 u32 ant_det_psd_scan_peak_freq; 265 266 u8 ant_det_result; 267 u8 ant_det_peak_val[BT_8723D_2ANT_ANTDET_BUF_LEN]; 268 u8 ant_det_peak_freq[BT_8723D_2ANT_ANTDET_BUF_LEN]; 269 u32 ant_det_try_count; 270 u32 ant_det_fail_count; 271 u32 ant_det_inteval_count; 272 u32 ant_det_thres_offset; 273 274 u32 real_cent_freq; 275 s32 real_offset; 276 u32 real_span; 277 278 u32 psd_band_width; /* unit: Hz */ 279 u32 psd_point; /* 128/256/512/1024 */ 280 u32 psd_report[1024]; /* unit:dB (20logx), 0~255 */ 281 u32 psd_report_max_hold[1024]; /* unit:dB (20logx), 0~255 */ 282 u32 psd_start_point; 283 u32 psd_stop_point; 284 u32 psd_max_value_point; 285 u32 psd_max_value; 286 u32 psd_start_base; 287 u32 psd_avg_num; /* 1/8/16/32 */ 288 u32 psd_gen_count; 289 boolean is_psd_running; 290 boolean is_psd_show_max_only; 291 }; 292 293 294 /* ******************************************* 295 * The following is interface which will notify coex module. 296 * ******************************************* */ 297 void ex_halbtc8723d2ant_power_on_setting(IN struct btc_coexist *btcoexist); 298 void ex_halbtc8723d2ant_pre_load_firmware(IN struct btc_coexist *btcoexist); 299 void ex_halbtc8723d2ant_init_hw_config(IN struct btc_coexist *btcoexist, 300 IN boolean wifi_only); 301 void ex_halbtc8723d2ant_init_coex_dm(IN struct btc_coexist *btcoexist); 302 void ex_halbtc8723d2ant_ips_notify(IN struct btc_coexist *btcoexist, 303 IN u8 type); 304 void ex_halbtc8723d2ant_lps_notify(IN struct btc_coexist *btcoexist, 305 IN u8 type); 306 void ex_halbtc8723d2ant_scan_notify(IN struct btc_coexist *btcoexist, 307 IN u8 type); 308 void ex_halbtc8723d2ant_connect_notify(IN struct btc_coexist *btcoexist, 309 IN u8 type); 310 void ex_halbtc8723d2ant_media_status_notify(IN struct btc_coexist *btcoexist, 311 IN u8 type); 312 void ex_halbtc8723d2ant_specific_packet_notify(IN struct btc_coexist *btcoexist, 313 IN u8 type); 314 void ex_halbtc8723d2ant_bt_info_notify(IN struct btc_coexist *btcoexist, 315 IN u8 *tmp_buf, IN u8 length); 316 void ex_halbtc8723d2ant_rf_status_notify(IN struct btc_coexist *btcoexist, 317 IN u8 type); 318 void ex_halbtc8723d2ant_halt_notify(IN struct btc_coexist *btcoexist); 319 void ex_halbtc8723d2ant_pnp_notify(IN struct btc_coexist *btcoexist, 320 IN u8 pnp_state); 321 void ex_halbtc8723d2ant_periodical(IN struct btc_coexist *btcoexist); 322 void ex_halbtc8723d2ant_display_coex_info(IN struct btc_coexist *btcoexist); 323 void ex_halbtc8723d2ant_antenna_detection(IN struct btc_coexist *btcoexist, 324 IN u32 cent_freq, IN u32 offset, IN u32 span, IN u32 seconds); 325 void ex_halbtc8723d2ant_display_ant_detection(IN struct btc_coexist *btcoexist); 326 327 328 #else 329 #define ex_halbtc8723d2ant_power_on_setting(btcoexist) 330 #define ex_halbtc8723d2ant_pre_load_firmware(btcoexist) 331 #define ex_halbtc8723d2ant_init_hw_config(btcoexist, wifi_only) 332 #define ex_halbtc8723d2ant_init_coex_dm(btcoexist) 333 #define ex_halbtc8723d2ant_ips_notify(btcoexist, type) 334 #define ex_halbtc8723d2ant_lps_notify(btcoexist, type) 335 #define ex_halbtc8723d2ant_scan_notify(btcoexist, type) 336 #define ex_halbtc8723d2ant_connect_notify(btcoexist, type) 337 #define ex_halbtc8723d2ant_media_status_notify(btcoexist, type) 338 #define ex_halbtc8723d2ant_specific_packet_notify(btcoexist, type) 339 #define ex_halbtc8723d2ant_bt_info_notify(btcoexist, tmp_buf, length) 340 #define ex_halbtc8723d2ant_rf_status_notify(btcoexist, type) 341 #define ex_halbtc8723d2ant_halt_notify(btcoexist) 342 #define ex_halbtc8723d2ant_pnp_notify(btcoexist, pnp_state) 343 #define ex_halbtc8723d2ant_periodical(btcoexist) 344 #define ex_halbtc8723d2ant_display_coex_info(btcoexist) 345 #define ex_halbtc8723d2ant_display_ant_detection(btcoexist) 346 #define ex_halbtc8723d2ant_antenna_detection(btcoexist, centFreq, offset, span, seconds) 347 #endif 348 349 #endif 350