1 /* SPDX-License-Identifier: GPL-2.0 */ 2 3 #if (BT_SUPPORT == 1 && COEX_SUPPORT == 1) 4 5 #if (RTL8822B_SUPPORT == 1) 6 7 /* ******************************************* 8 * The following is for 8822B 2Ant BT Co-exist definition 9 * ******************************************* */ 10 #define BT_8822B_2ANT_COEX_DBG 1 11 #define BT_AUTO_REPORT_ONLY_8822B_2ANT 1 12 13 14 15 16 #define BT_INFO_8822B_2ANT_B_FTP BIT(7) 17 #define BT_INFO_8822B_2ANT_B_A2DP BIT(6) 18 #define BT_INFO_8822B_2ANT_B_HID BIT(5) 19 #define BT_INFO_8822B_2ANT_B_SCO_BUSY BIT(4) 20 #define BT_INFO_8822B_2ANT_B_ACL_BUSY BIT(3) 21 #define BT_INFO_8822B_2ANT_B_INQ_PAGE BIT(2) 22 #define BT_INFO_8822B_2ANT_B_SCO_ESCO BIT(1) 23 #define BT_INFO_8822B_2ANT_B_CONNECTION BIT(0) 24 25 #define BTC_RSSI_COEX_THRESH_TOL_8822B_2ANT 2 26 27 28 #define BT_8822B_2ANT_WIFI_RSSI_COEXSWITCH_THRES1 60 /* unit: % WiFi RSSI Threshold for 2-Ant free-run/2-Ant TDMA translation, default = 42 */ 29 #define BT_8822B_2ANT_BT_RSSI_COEXSWITCH_THRES1 50 /* unit: % BT RSSI Threshold for 2-Ant free-run/2-Ant TDMA translation, default = 46 */ 30 #define BT_8822B_2ANT_WIFI_RSSI_COEXSWITCH_THRES2 40 /* unit: % WiFi RSSI Threshold for 1-Ant TDMA/1-Ant PS-TDMA translation, default = 42 */ 31 #define BT_8822B_2ANT_BT_RSSI_COEXSWITCH_THRES2 35 /* unit: % BT RSSI Threshold for 1-Ant TDMA/1-Ant PS-TDMA translation, default = 46 */ 32 #define BT_8822B_2ANT_DEFAULT_ISOLATION 15 /* unit: dB */ 33 #define BT_8822B_2ANT_WIFI_MAX_TX_POWER 15 /* unit: dBm */ 34 #define BT_8822B_2ANT_BT_MAX_TX_POWER 3 /* unit: dBm */ 35 #define BT_8822B_2ANT_WIFI_SIR_THRES1 -15 /* unit: dB */ 36 #define BT_8822B_2ANT_WIFI_SIR_THRES2 -30 /* unit: dB */ 37 #define BT_8822B_2ANT_BT_SIR_THRES1 -15 /* unit: dB */ 38 #define BT_8822B_2ANT_BT_SIR_THRES2 -30 /* unit: dB */ 39 40 41 /* for Antenna detection */ 42 #define BT_8822B_2ANT_ANTDET_PSDTHRES_BACKGROUND 50 43 #define BT_8822B_2ANT_ANTDET_PSDTHRES_2ANT_BADISOLATION 70 44 #define BT_8822B_2ANT_ANTDET_PSDTHRES_2ANT_GOODISOLATION 52 45 #define BT_8822B_2ANT_ANTDET_PSDTHRES_1ANT 40 46 #define BT_8822B_2ANT_ANTDET_RETRY_INTERVAL 10 /* retry timer if ant det is fail, unit: second */ 47 #define BT_8822B_2ANT_ANTDET_SWEEPPOINT_DELAY 60000 48 #define BT_8822B_2ANT_ANTDET_ENABLE 0 49 #define BT_8822B_2ANT_ANTDET_BTTXTIME 100 50 #define BT_8822B_2ANT_ANTDET_BTTXCHANNEL 39 51 #define BT_8822B_2ANT_ANTDET_PSD_SWWEEPCOUNT 50 52 53 54 #define BT_8822B_2ANT_LTECOEX_INDIRECTREG_ACCESS_TIMEOUT 30000 55 56 enum bt_8822b_2ant_signal_state { 57 BT_8822B_2ANT_SIG_STA_SET_TO_LOW = 0x0, 58 BT_8822B_2ANT_SIG_STA_SET_BY_HW = 0x0, 59 BT_8822B_2ANT_SIG_STA_SET_TO_HIGH = 0x1, 60 BT_8822B_2ANT_SIG_STA_MAX 61 }; 62 63 enum bt_8822b_2ant_path_ctrl_owner { 64 BT_8822B_2ANT_PCO_BTSIDE = 0x0, 65 BT_8822B_2ANT_PCO_WLSIDE = 0x1, 66 BT_8822B_2ANT_PCO_MAX 67 }; 68 69 enum bt_8822b_2ant_gnt_ctrl_type { 70 BT_8822B_2ANT_GNT_TYPE_CTRL_BY_PTA = 0x0, 71 BT_8822B_2ANT_GNT_TYPE_CTRL_BY_SW = 0x1, 72 BT_8822B_2ANT_GNT_TYPE_MAX 73 }; 74 75 enum bt_8822b_2ant_gnt_ctrl_block { 76 BT_8822B_2ANT_GNT_BLOCK_RFC_BB = 0x0, 77 BT_8822B_2ANT_GNT_BLOCK_RFC = 0x1, 78 BT_8822B_2ANT_GNT_BLOCK_BB = 0x2, 79 BT_8822B_2ANT_GNT_BLOCK_MAX 80 }; 81 82 enum bt_8822b_2ant_lte_coex_table_type { 83 BT_8822B_2ANT_CTT_WL_VS_LTE = 0x0, 84 BT_8822B_2ANT_CTT_BT_VS_LTE = 0x1, 85 BT_8822B_2ANT_CTT_MAX 86 }; 87 88 enum bt_8822b_2ant_lte_break_table_type { 89 BT_8822B_2ANT_LBTT_WL_BREAK_LTE = 0x0, 90 BT_8822B_2ANT_LBTT_BT_BREAK_LTE = 0x1, 91 BT_8822B_2ANT_LBTT_LTE_BREAK_WL = 0x2, 92 BT_8822B_2ANT_LBTT_LTE_BREAK_BT = 0x3, 93 BT_8822B_2ANT_LBTT_MAX 94 }; 95 96 enum bt_info_src_8822b_2ant { 97 BT_INFO_SRC_8822B_2ANT_WIFI_FW = 0x0, 98 BT_INFO_SRC_8822B_2ANT_BT_RSP = 0x1, 99 BT_INFO_SRC_8822B_2ANT_BT_ACTIVE_SEND = 0x2, 100 BT_INFO_SRC_8822B_2ANT_MAX 101 }; 102 103 enum bt_8822b_2ant_bt_status { 104 BT_8822B_2ANT_BT_STATUS_NON_CONNECTED_IDLE = 0x0, 105 BT_8822B_2ANT_BT_STATUS_CONNECTED_IDLE = 0x1, 106 BT_8822B_2ANT_BT_STATUS_INQ_PAGE = 0x2, 107 BT_8822B_2ANT_BT_STATUS_ACL_BUSY = 0x3, 108 BT_8822B_2ANT_BT_STATUS_SCO_BUSY = 0x4, 109 BT_8822B_2ANT_BT_STATUS_ACL_SCO_BUSY = 0x5, 110 BT_8822B_2ANT_BT_STATUS_MAX 111 }; 112 113 enum bt_8822b_2ant_coex_algo { 114 BT_8822B_2ANT_COEX_ALGO_UNDEFINED = 0x0, 115 BT_8822B_2ANT_COEX_ALGO_SCO = 0x1, 116 BT_8822B_2ANT_COEX_ALGO_HID = 0x2, 117 BT_8822B_2ANT_COEX_ALGO_A2DP = 0x3, 118 BT_8822B_2ANT_COEX_ALGO_A2DP_PANHS = 0x4, 119 BT_8822B_2ANT_COEX_ALGO_PANEDR = 0x5, 120 BT_8822B_2ANT_COEX_ALGO_PANHS = 0x6, 121 BT_8822B_2ANT_COEX_ALGO_PANEDR_A2DP = 0x7, 122 BT_8822B_2ANT_COEX_ALGO_PANEDR_HID = 0x8, 123 BT_8822B_2ANT_COEX_ALGO_HID_A2DP_PANEDR = 0x9, 124 BT_8822B_2ANT_COEX_ALGO_HID_A2DP = 0xa, 125 BT_8822B_2ANT_COEX_ALGO_NOPROFILEBUSY = 0xb, 126 BT_8822B_2ANT_COEX_ALGO_MAX 127 }; 128 129 enum bt_8822b_2ant_ext_ant_switch_type { 130 BT_8822B_2ANT_EXT_ANT_SWITCH_USE_DPDT = 0x0, 131 BT_8822B_2ANT_EXT_ANT_SWITCH_USE_SPDT = 0x1, 132 BT_8822B_2ANT_EXT_ANT_SWITCH_NONE = 0x2, 133 BT_8822B_2ANT_EXT_ANT_SWITCH_MAX 134 }; 135 136 enum bt_8822b_2ant_ext_ant_switch_ctrl_type { 137 BT_8822B_2ANT_EXT_ANT_SWITCH_CTRL_BY_BBSW = 0x0, 138 BT_8822B_2ANT_EXT_ANT_SWITCH_CTRL_BY_PTA = 0x1, 139 BT_8822B_2ANT_EXT_ANT_SWITCH_CTRL_BY_ANTDIV = 0x2, 140 BT_8822B_2ANT_EXT_ANT_SWITCH_CTRL_BY_MAC = 0x3, 141 BT_8822B_2ANT_EXT_ANT_SWITCH_CTRL_BY_BT = 0x4, 142 BT_8822B_2ANT_EXT_ANT_SWITCH_CTRL_MAX 143 }; 144 145 enum bt_8822b_2ant_ext_ant_switch_pos_type { 146 BT_8822B_2ANT_EXT_ANT_SWITCH_MAIN_TO_BT = 0x0, 147 BT_8822B_2ANT_EXT_ANT_SWITCH_MAIN_TO_WLG = 0x1, 148 BT_8822B_2ANT_EXT_ANT_SWITCH_MAIN_TO_WLA = 0x2, 149 BT_8822B_2ANT_EXT_ANT_SWITCH_MAIN_TO_NOCARE = 0x3, 150 BT_8822B_2ANT_EXT_ANT_SWITCH_MAIN_TO_MAX 151 }; 152 153 enum bt_8822b_2ant_ext_band_switch_pos_type { 154 BT_8822B_2ANT_EXT_BAND_SWITCH_TO_WLG = 0x0, 155 BT_8822B_2ANT_EXT_BAND_SWITCH_TO_WLA = 0x1, 156 BT_8822B_2ANT_EXT_BAND_SWITCH_TO_MAX 157 }; 158 159 enum bt_8822b_2ant_int_block { 160 BT_8822B_2ANT_INT_BLOCK_SWITCH_TO_WLG_OF_BTG = 0x0, 161 BT_8822B_2ANT_INT_BLOCK_SWITCH_TO_WLG_OF_WLAG = 0x1, 162 BT_8822B_2ANT_INT_BLOCK_SWITCH_TO_WLA_OF_WLAG = 0x2, 163 BT_8822B_2ANT_INT_BLOCK_SWITCH_TO_MAX 164 }; 165 166 enum bt_8822b_2ant_phase { 167 BT_8822B_2ANT_PHASE_COEX_INIT = 0x0, 168 BT_8822B_2ANT_PHASE_WLANONLY_INIT = 0x1, 169 BT_8822B_2ANT_PHASE_WLAN_OFF = 0x2, 170 BT_8822B_2ANT_PHASE_2G_RUNTIME = 0x3, 171 BT_8822B_2ANT_PHASE_5G_RUNTIME = 0x4, 172 BT_8822B_2ANT_PHASE_BTMPMODE = 0x5, 173 BT_8822B_2ANT_PHASE_ANTENNA_DET = 0x6, 174 BT_8822B_2ANT_PHASE_COEX_POWERON = 0x7, 175 BT_8822B_2ANT_PHASE_2G_RUNTIME_CONCURRENT = 0x8, 176 BT_8822B_2ANT_PHASE_MAX 177 }; 178 179 /*ADD SCOREBOARD TO FIX BT LPS 32K ISSUE WHILE WL BUSY*/ 180 181 enum bt_8822b_2ant_Scoreboard { 182 BT_8822B_2ANT_SCOREBOARD_ACTIVE = BIT(0), 183 BT_8822B_2ANT_SCOREBOARD_ONOFF = BIT(1), 184 BT_8822B_2ANT_SCOREBOARD_SCAN = BIT(2), 185 BT_8822B_2ANT_SCOREBOARD_UNDERTEST = BIT(3), 186 BT_8822B_2ANT_SCOREBOARD_WLBUSY = BIT(6) 187 }; 188 189 190 191 192 193 struct coex_dm_8822b_2ant { 194 /* hw setting */ 195 u32 pre_ant_pos_type; 196 u32 cur_ant_pos_type; 197 /* fw mechanism */ 198 u8 pre_bt_dec_pwr_lvl; 199 u8 cur_bt_dec_pwr_lvl; 200 u8 pre_fw_dac_swing_lvl; 201 u8 cur_fw_dac_swing_lvl; 202 boolean cur_ignore_wlan_act; 203 boolean pre_ignore_wlan_act; 204 u8 pre_ps_tdma; 205 u8 cur_ps_tdma; 206 u8 ps_tdma_para[5]; 207 u8 ps_tdma_du_adj_type; 208 boolean reset_tdma_adjust; 209 boolean pre_ps_tdma_on; 210 boolean cur_ps_tdma_on; 211 boolean pre_bt_auto_report; 212 boolean cur_bt_auto_report; 213 214 /* sw mechanism */ 215 boolean pre_rf_rx_lpf_shrink; 216 boolean cur_rf_rx_lpf_shrink; 217 u32 bt_rf_0x1e_backup; 218 boolean pre_low_penalty_ra; 219 boolean cur_low_penalty_ra; 220 boolean pre_dac_swing_on; 221 u32 pre_dac_swing_lvl; 222 boolean cur_dac_swing_on; 223 u32 cur_dac_swing_lvl; 224 boolean pre_adc_back_off; 225 boolean cur_adc_back_off; 226 boolean pre_agc_table_en; 227 boolean cur_agc_table_en; 228 u32 pre_val0x6c0; 229 u32 cur_val0x6c0; 230 u32 pre_val0x6c4; 231 u32 cur_val0x6c4; 232 u32 pre_val0x6c8; 233 u32 cur_val0x6c8; 234 u8 pre_val0x6cc; 235 u8 cur_val0x6cc; 236 boolean limited_dig; 237 238 /* algorithm related */ 239 u8 pre_algorithm; 240 u8 cur_algorithm; 241 u8 bt_status; 242 u8 wifi_chnl_info[3]; 243 244 boolean need_recover0x948; 245 u32 backup0x948; 246 247 u8 pre_lps; 248 u8 cur_lps; 249 u8 pre_rpwm; 250 u8 cur_rpwm; 251 252 boolean is_switch_to_1dot5_ant; 253 u8 switch_thres_offset; 254 u32 arp_cnt; 255 256 u32 pre_ext_ant_switch_status; 257 u32 cur_ext_ant_switch_status; 258 259 u8 pre_ext_band_switch_status; 260 u8 cur_ext_band_switch_status; 261 262 u8 pre_int_block_status; 263 u8 cur_int_block_status; 264 }; 265 266 struct coex_sta_8822b_2ant { 267 boolean bt_disabled; 268 boolean bt_link_exist; 269 boolean sco_exist; 270 boolean a2dp_exist; 271 boolean hid_exist; 272 boolean pan_exist; 273 274 boolean under_lps; 275 boolean under_ips; 276 u32 high_priority_tx; 277 u32 high_priority_rx; 278 u32 low_priority_tx; 279 u32 low_priority_rx; 280 u8 bt_rssi; 281 boolean bt_tx_rx_mask; 282 u8 pre_bt_rssi_state; 283 u8 pre_wifi_rssi_state[4]; 284 boolean c2h_bt_info_req_sent; 285 u8 bt_info_c2h[BT_INFO_SRC_8822B_2ANT_MAX][10]; 286 u32 bt_info_c2h_cnt[BT_INFO_SRC_8822B_2ANT_MAX]; 287 boolean bt_whck_test; 288 boolean c2h_bt_inquiry_page; 289 boolean c2h_bt_remote_name_req; 290 u8 bt_retry_cnt; 291 u8 bt_info_ext; 292 u8 bt_info_ext2; 293 u32 pop_event_cnt; 294 u8 scan_ap_num; 295 296 u32 crc_ok_cck; 297 u32 crc_ok_11g; 298 u32 crc_ok_11n; 299 u32 crc_ok_11n_agg; 300 u32 crc_ok_11n_vht; 301 302 u32 crc_err_cck; 303 u32 crc_err_11g; 304 u32 crc_err_11n; 305 u32 crc_err_11n_agg; 306 u32 crc_err_11n_vht; 307 308 boolean cck_lock; 309 boolean pre_ccklock; 310 boolean cck_ever_lock; 311 312 u8 coex_table_type; 313 boolean force_lps_on; 314 315 u8 dis_ver_info_cnt; 316 317 u8 a2dp_bit_pool; 318 u8 cut_version; 319 320 boolean concurrent_rx_mode_on; 321 322 u16 score_board; 323 u8 isolation_btween_wb; /* 0~ 50 */ 324 u8 wifi_coex_thres; 325 u8 bt_coex_thres; 326 u8 wifi_coex_thres2; 327 u8 bt_coex_thres2; 328 329 u8 num_of_profile; 330 boolean acl_busy; 331 boolean wl_rf_off_on_event; 332 boolean bt_create_connection; 333 boolean wifi_is_high_pri_task; 334 u32 specific_pkt_period_cnt; 335 u32 bt_coex_supported_feature; 336 u32 bt_coex_supported_version; 337 338 u8 bt_ble_scan_type; 339 u8 bt_ble_scan_para[3]; 340 341 boolean run_time_state; 342 boolean freeze_coexrun_by_btinfo; 343 344 boolean is_A2DP_3M; 345 boolean voice_over_HOGP; 346 u8 bt_info; 347 boolean is_autoslot; 348 u8 forbidden_slot; 349 u8 hid_busy_num; 350 u8 hid_pair_cnt; 351 352 u32 cnt_RemoteNameReq; 353 u32 cnt_setupLink; 354 u32 cnt_ReInit; 355 u32 cnt_IgnWlanAct; 356 u32 cnt_Page; 357 358 u16 bt_reg_vendor_ac; 359 u16 bt_reg_vendor_ae; 360 361 boolean is_setupLink; 362 u8 wl_noisy_level; 363 u32 gnt_error_cnt; 364 365 u8 bt_afh_map[10]; 366 u8 bt_relink_downcount; 367 }; 368 369 370 #define BT_8822B_2ANT_EXT_BAND_SWITCH_USE_DPDT 0 371 #define BT_8822B_2ANT_EXT_BAND_SWITCH_USE_SPDT 1 372 373 374 struct rfe_type_8822b_2ant { 375 376 u8 rfe_module_type; 377 boolean ext_ant_switch_exist; 378 u8 ext_ant_switch_type; /* 0:DPDT, 1:SPDT */ 379 u8 ext_ant_switch_ctrl_polarity; /* iF 0: DPDT_P=0, DPDT_N=1 => BTG to Main, WL_A+G to Aux */ 380 381 boolean ext_band_switch_exist; 382 u8 ext_band_switch_type; /* 0:DPDT, 1:SPDT */ 383 u8 ext_band_switch_ctrl_polarity; 384 385 boolean wlg_Locate_at_btg; /* If true: WLG at BTG, If false: WLG at WLAG */ 386 387 boolean ext_ant_switch_diversity; /* If diversity on */ 388 }; 389 390 #define BT_8822B_2ANT_ANTDET_PSD_POINTS 256 /* MAX:1024 */ 391 #define BT_8822B_2ANT_ANTDET_PSD_AVGNUM 1 /* MAX:3 */ 392 #define BT_8822B_2ANT_ANTDET_BUF_LEN 16 393 394 struct psdscan_sta_8822b_2ant { 395 396 u32 ant_det_bt_le_channel; /* BT LE Channel ex:2412 */ 397 u32 ant_det_bt_tx_time; 398 u32 ant_det_pre_psdscan_peak_val; 399 boolean ant_det_is_ant_det_available; 400 u32 ant_det_psd_scan_peak_val; 401 boolean ant_det_is_btreply_available; 402 u32 ant_det_psd_scan_peak_freq; 403 404 u8 ant_det_result; 405 u8 ant_det_peak_val[BT_8822B_2ANT_ANTDET_BUF_LEN]; 406 u8 ant_det_peak_freq[BT_8822B_2ANT_ANTDET_BUF_LEN]; 407 u32 ant_det_try_count; 408 u32 ant_det_fail_count; 409 u32 ant_det_inteval_count; 410 u32 ant_det_thres_offset; 411 412 u32 real_cent_freq; 413 s32 real_offset; 414 u32 real_span; 415 416 u32 psd_band_width; /* unit: Hz */ 417 u32 psd_point; /* 128/256/512/1024 */ 418 u32 psd_report[1024]; /* unit:dB (20logx), 0~255 */ 419 u32 psd_report_max_hold[1024]; /* unit:dB (20logx), 0~255 */ 420 u32 psd_start_point; 421 u32 psd_stop_point; 422 u32 psd_max_value_point; 423 u32 psd_max_value; 424 u32 psd_max_value2; 425 u32 psd_avg_value; /* filter loop_max_value that below BT_8822B_1ANT_ANTDET_PSDTHRES_1ANT, and average the rest*/ 426 u32 psd_loop_max_value[BT_8822B_2ANT_ANTDET_PSD_SWWEEPCOUNT]; /*max value in each loop */ 427 u32 psd_start_base; 428 u32 psd_avg_num; /* 1/8/16/32 */ 429 u32 psd_gen_count; 430 boolean is_AntDet_running; 431 boolean is_psd_show_max_only; 432 }; 433 434 435 /* ******************************************* 436 * The following is interface which will notify coex module. 437 * ******************************************* */ 438 void ex_halbtc8822b2ant_power_on_setting(IN struct btc_coexist *btcoexist); 439 void ex_halbtc8822b2ant_pre_load_firmware(IN struct btc_coexist *btcoexist); 440 void ex_halbtc8822b2ant_init_hw_config(IN struct btc_coexist *btcoexist, 441 IN boolean wifi_only); 442 void ex_halbtc8822b2ant_init_coex_dm(IN struct btc_coexist *btcoexist); 443 void ex_halbtc8822b2ant_ips_notify(IN struct btc_coexist *btcoexist, 444 IN u8 type); 445 void ex_halbtc8822b2ant_lps_notify(IN struct btc_coexist *btcoexist, 446 IN u8 type); 447 void ex_halbtc8822b2ant_scan_notify(IN struct btc_coexist *btcoexist, 448 IN u8 type); 449 void ex_halbtc8822b2ant_switchband_notify(IN struct btc_coexist *btcoexist, 450 IN u8 type); 451 void ex_halbtc8822b2ant_connect_notify(IN struct btc_coexist *btcoexist, 452 IN u8 type); 453 void ex_halbtc8822b2ant_media_status_notify(IN struct btc_coexist *btcoexist, 454 IN u8 type); 455 void ex_halbtc8822b2ant_specific_packet_notify(IN struct btc_coexist *btcoexist, 456 IN u8 type); 457 void ex_halbtc8822b2ant_bt_info_notify(IN struct btc_coexist *btcoexist, 458 IN u8 *tmp_buf, IN u8 length); 459 void ex_halbtc8822b2ant_rf_status_notify(IN struct btc_coexist *btcoexist, 460 IN u8 type); 461 void ex_halbtc8822b2ant_halt_notify(IN struct btc_coexist *btcoexist); 462 void ex_halbtc8822b2ant_pnp_notify(IN struct btc_coexist *btcoexist, 463 IN u8 pnp_state); 464 void ex_halbtc8822b2ant_periodical(IN struct btc_coexist *btcoexist); 465 void ex_halbtc8822b2ant_display_coex_info(IN struct btc_coexist *btcoexist); 466 void ex_halbtc8822b2ant_antenna_detection(IN struct btc_coexist *btcoexist, 467 IN u32 cent_freq, IN u32 offset, IN u32 span, IN u32 seconds); 468 void ex_halbtc8822b2ant_display_ant_detection(IN struct btc_coexist *btcoexist); 469 470 471 #else 472 #define ex_halbtc8822b2ant_power_on_setting(btcoexist) 473 #define ex_halbtc8822b2ant_pre_load_firmware(btcoexist) 474 #define ex_halbtc8822b2ant_init_hw_config(btcoexist, wifi_only) 475 #define ex_halbtc8822b2ant_init_coex_dm(btcoexist) 476 #define ex_halbtc8822b2ant_ips_notify(btcoexist, type) 477 #define ex_halbtc8822b2ant_lps_notify(btcoexist, type) 478 #define ex_halbtc8822b2ant_scan_notify(btcoexist, type) 479 #define ex_halbtc8822b2ant_switchband_notify(btcoexist, type) 480 #define ex_halbtc8822b2ant_connect_notify(btcoexist, type) 481 #define ex_halbtc8822b2ant_media_status_notify(btcoexist, type) 482 #define ex_halbtc8822b2ant_specific_packet_notify(btcoexist, type) 483 #define ex_halbtc8822b2ant_bt_info_notify(btcoexist, tmp_buf, length) 484 #define ex_halbtc8822b2ant_rf_status_notify(btcoexist, type) 485 #define ex_halbtc8822b2ant_halt_notify(btcoexist) 486 #define ex_halbtc8822b2ant_pnp_notify(btcoexist, pnp_state) 487 #define ex_halbtc8822b2ant_periodical(btcoexist) 488 #define ex_halbtc8822b2ant_display_coex_info(btcoexist) 489 #define ex_halbtc8822b2ant_display_ant_detection(btcoexist) 490 #define ex_halbtc8822b2ant_antenna_detection(btcoexist, cent_freq, offset, span, seconds) 491 #endif 492 493 #endif 494 495