1 /* SPDX-License-Identifier: GPL-2.0 */ 2 3 #if (BT_SUPPORT == 1 && COEX_SUPPORT == 1) 4 5 #if (RTL8703B_SUPPORT == 1) 6 /* ******************************************* 7 * The following is for 8703B 1ANT BT Co-exist definition 8 * ******************************************* */ 9 #define BT_AUTO_REPORT_ONLY_8703B_1ANT 1 10 #define BT_8703B_1ANT_ENABLE_GNTBT_TO_GPIO14 0 11 12 #define BT_INFO_8703B_1ANT_B_FTP BIT(7) 13 #define BT_INFO_8703B_1ANT_B_A2DP BIT(6) 14 #define BT_INFO_8703B_1ANT_B_HID BIT(5) 15 #define BT_INFO_8703B_1ANT_B_SCO_BUSY BIT(4) 16 #define BT_INFO_8703B_1ANT_B_ACL_BUSY BIT(3) 17 #define BT_INFO_8703B_1ANT_B_INQ_PAGE BIT(2) 18 #define BT_INFO_8703B_1ANT_B_SCO_ESCO BIT(1) 19 #define BT_INFO_8703B_1ANT_B_CONNECTION BIT(0) 20 21 #define BT_INFO_8703B_1ANT_A2DP_BASIC_RATE(_BT_INFO_EXT_) \ 22 (((_BT_INFO_EXT_&BIT(0))) ? true : false) 23 24 #define BTC_RSSI_COEX_THRESH_TOL_8703B_1ANT 2 25 26 #define BT_8703B_1ANT_WIFI_NOISY_THRESH 30 /* max: 255 */ 27 28 /* for Antenna detection */ 29 #define BT_8703B_1ANT_ANTDET_PSDTHRES_BACKGROUND 50 30 #define BT_8703B_1ANT_ANTDET_PSDTHRES_2ANT_BADISOLATION 70 31 #define BT_8703B_1ANT_ANTDET_PSDTHRES_2ANT_GOODISOLATION 55 32 #define BT_8703B_1ANT_ANTDET_PSDTHRES_1ANT 35 33 #define BT_8703B_1ANT_ANTDET_RETRY_INTERVAL 10 /* retry timer if ant det is fail, unit: second */ 34 #define BT_8703B_1ANT_ANTDET_ENABLE 0 35 #define BT_8703B_1ANT_ANTDET_COEXMECHANISMSWITCH_ENABLE 0 36 37 #define BT_8703B_1ANT_LTECOEX_INDIRECTREG_ACCESS_TIMEOUT 30000 38 39 enum bt_8703b_1ant_signal_state { 40 BT_8703B_1ANT_SIG_STA_SET_TO_LOW = 0x0, 41 BT_8703B_1ANT_SIG_STA_SET_BY_HW = 0x0, 42 BT_8703B_1ANT_SIG_STA_SET_TO_HIGH = 0x1, 43 BT_8703B_1ANT_SIG_STA_MAX 44 }; 45 46 enum bt_8703b_1ant_path_ctrl_owner { 47 BT_8703B_1ANT_PCO_BTSIDE = 0x0, 48 BT_8703B_1ANT_PCO_WLSIDE = 0x1, 49 BT_8703B_1ANT_PCO_MAX 50 }; 51 52 enum bt_8703b_1ant_gnt_ctrl_type { 53 BT_8703B_1ANT_GNT_TYPE_CTRL_BY_PTA = 0x0, 54 BT_8703B_1ANT_GNT_TYPE_CTRL_BY_SW = 0x1, 55 BT_8703B_1ANT_GNT_TYPE_MAX 56 }; 57 58 enum bt_8703b_1ant_gnt_ctrl_block { 59 BT_8703B_1ANT_GNT_BLOCK_RFC_BB = 0x0, 60 BT_8703B_1ANT_GNT_BLOCK_RFC = 0x1, 61 BT_8703B_1ANT_GNT_BLOCK_BB = 0x2, 62 BT_8703B_1ANT_GNT_BLOCK_MAX 63 }; 64 65 enum bt_8703b_1ant_lte_coex_table_type { 66 BT_8703B_1ANT_CTT_WL_VS_LTE = 0x0, 67 BT_8703B_1ANT_CTT_BT_VS_LTE = 0x1, 68 BT_8703B_1ANT_CTT_MAX 69 }; 70 71 enum bt_8703b_1ant_lte_break_table_type { 72 BT_8703B_1ANT_LBTT_WL_BREAK_LTE = 0x0, 73 BT_8703B_1ANT_LBTT_BT_BREAK_LTE = 0x1, 74 BT_8703B_1ANT_LBTT_LTE_BREAK_WL = 0x2, 75 BT_8703B_1ANT_LBTT_LTE_BREAK_BT = 0x3, 76 BT_8703B_1ANT_LBTT_MAX 77 }; 78 79 enum bt_info_src_8703b_1ant { 80 BT_INFO_SRC_8703B_1ANT_WIFI_FW = 0x0, 81 BT_INFO_SRC_8703B_1ANT_BT_RSP = 0x1, 82 BT_INFO_SRC_8703B_1ANT_BT_ACTIVE_SEND = 0x2, 83 BT_INFO_SRC_8703B_1ANT_MAX 84 }; 85 86 enum bt_8703b_1ant_bt_status { 87 BT_8703B_1ANT_BT_STATUS_NON_CONNECTED_IDLE = 0x0, 88 BT_8703B_1ANT_BT_STATUS_CONNECTED_IDLE = 0x1, 89 BT_8703B_1ANT_BT_STATUS_INQ_PAGE = 0x2, 90 BT_8703B_1ANT_BT_STATUS_ACL_BUSY = 0x3, 91 BT_8703B_1ANT_BT_STATUS_SCO_BUSY = 0x4, 92 BT_8703B_1ANT_BT_STATUS_ACL_SCO_BUSY = 0x5, 93 BT_8703B_1ANT_BT_STATUS_MAX 94 }; 95 96 enum bt_8703b_1ant_wifi_status { 97 BT_8703B_1ANT_WIFI_STATUS_NON_CONNECTED_IDLE = 0x0, 98 BT_8703B_1ANT_WIFI_STATUS_NON_CONNECTED_ASSO_AUTH_SCAN = 0x1, 99 BT_8703B_1ANT_WIFI_STATUS_CONNECTED_SCAN = 0x2, 100 BT_8703B_1ANT_WIFI_STATUS_CONNECTED_SPECIFIC_PKT = 0x3, 101 BT_8703B_1ANT_WIFI_STATUS_CONNECTED_IDLE = 0x4, 102 BT_8703B_1ANT_WIFI_STATUS_CONNECTED_BUSY = 0x5, 103 BT_8703B_1ANT_WIFI_STATUS_MAX 104 }; 105 106 enum bt_8703b_1ant_coex_algo { 107 BT_8703B_1ANT_COEX_ALGO_UNDEFINED = 0x0, 108 BT_8703B_1ANT_COEX_ALGO_SCO = 0x1, 109 BT_8703B_1ANT_COEX_ALGO_HID = 0x2, 110 BT_8703B_1ANT_COEX_ALGO_A2DP = 0x3, 111 BT_8703B_1ANT_COEX_ALGO_A2DP_PANHS = 0x4, 112 BT_8703B_1ANT_COEX_ALGO_PANEDR = 0x5, 113 BT_8703B_1ANT_COEX_ALGO_PANHS = 0x6, 114 BT_8703B_1ANT_COEX_ALGO_PANEDR_A2DP = 0x7, 115 BT_8703B_1ANT_COEX_ALGO_PANEDR_HID = 0x8, 116 BT_8703B_1ANT_COEX_ALGO_HID_A2DP_PANEDR = 0x9, 117 BT_8703B_1ANT_COEX_ALGO_HID_A2DP = 0xa, 118 BT_8703B_1ANT_COEX_ALGO_MAX = 0xb, 119 }; 120 121 struct coex_dm_8703b_1ant { 122 /* hw setting */ 123 u8 pre_ant_pos_type; 124 u8 cur_ant_pos_type; 125 /* fw mechanism */ 126 boolean cur_ignore_wlan_act; 127 boolean pre_ignore_wlan_act; 128 u8 pre_ps_tdma; 129 u8 cur_ps_tdma; 130 u8 ps_tdma_para[5]; 131 u8 ps_tdma_du_adj_type; 132 boolean auto_tdma_adjust; 133 boolean pre_ps_tdma_on; 134 boolean cur_ps_tdma_on; 135 boolean pre_bt_auto_report; 136 boolean cur_bt_auto_report; 137 u8 pre_lps; 138 u8 cur_lps; 139 u8 pre_rpwm; 140 u8 cur_rpwm; 141 142 /* sw mechanism */ 143 boolean pre_low_penalty_ra; 144 boolean cur_low_penalty_ra; 145 u32 pre_val0x6c0; 146 u32 cur_val0x6c0; 147 u32 pre_val0x6c4; 148 u32 cur_val0x6c4; 149 u32 pre_val0x6c8; 150 u32 cur_val0x6c8; 151 u8 pre_val0x6cc; 152 u8 cur_val0x6cc; 153 boolean limited_dig; 154 155 u32 backup_arfr_cnt1; /* Auto Rate Fallback Retry cnt */ 156 u32 backup_arfr_cnt2; /* Auto Rate Fallback Retry cnt */ 157 u16 backup_retry_limit; 158 u8 backup_ampdu_max_time; 159 160 /* algorithm related */ 161 u8 pre_algorithm; 162 u8 cur_algorithm; 163 u8 bt_status; 164 u8 wifi_chnl_info[3]; 165 166 u32 pre_ra_mask; 167 u32 cur_ra_mask; 168 u8 pre_arfr_type; 169 u8 cur_arfr_type; 170 u8 pre_retry_limit_type; 171 u8 cur_retry_limit_type; 172 u8 pre_ampdu_time_type; 173 u8 cur_ampdu_time_type; 174 u32 arp_cnt; 175 176 u8 error_condition; 177 }; 178 179 struct coex_sta_8703b_1ant { 180 boolean bt_disabled; 181 boolean bt_link_exist; 182 boolean sco_exist; 183 boolean a2dp_exist; 184 boolean hid_exist; 185 boolean pan_exist; 186 boolean bt_hi_pri_link_exist; 187 u8 num_of_profile; 188 189 boolean under_lps; 190 boolean under_ips; 191 u32 specific_pkt_period_cnt; 192 u32 high_priority_tx; 193 u32 high_priority_rx; 194 u32 low_priority_tx; 195 u32 low_priority_rx; 196 s8 bt_rssi; 197 boolean bt_tx_rx_mask; 198 u8 pre_bt_rssi_state; 199 u8 pre_wifi_rssi_state[4]; 200 boolean c2h_bt_info_req_sent; 201 u8 bt_info_c2h[BT_INFO_SRC_8703B_1ANT_MAX][10]; 202 u32 bt_info_c2h_cnt[BT_INFO_SRC_8703B_1ANT_MAX]; 203 boolean bt_whck_test; 204 boolean c2h_bt_inquiry_page; 205 boolean c2h_bt_page; /* Add for win8.1 page out issue */ 206 boolean wifi_is_high_pri_task; /* Add for win8.1 page out issue */ 207 u8 bt_retry_cnt; 208 u8 bt_info_ext; 209 u32 pop_event_cnt; 210 u8 scan_ap_num; 211 212 u32 crc_ok_cck; 213 u32 crc_ok_11g; 214 u32 crc_ok_11n; 215 u32 crc_ok_11n_agg; 216 217 u32 crc_err_cck; 218 u32 crc_err_11g; 219 u32 crc_err_11n; 220 u32 crc_err_11n_agg; 221 222 boolean cck_lock; 223 boolean pre_ccklock; 224 boolean cck_ever_lock; 225 u8 coex_table_type; 226 227 boolean force_lps_on; 228 u32 wrong_profile_notification; 229 230 boolean concurrent_rx_mode_on; 231 232 u16 score_board; 233 }; 234 235 #define BT_8703B_1ANT_ANTDET_PSD_POINTS 256 /* MAX:1024 */ 236 #define BT_8703B_1ANT_ANTDET_PSD_AVGNUM 1 /* MAX:3 */ 237 #define BT_8703B_1ANT_ANTDET_BUF_LEN 16 238 239 struct psdscan_sta_8703b_1ant { 240 241 u32 ant_det_bt_le_channel; /* BT LE Channel ex:2412 */ 242 u32 ant_det_bt_tx_time; 243 u32 ant_det_pre_psdscan_peak_val; 244 boolean ant_det_is_ant_det_available; 245 u32 ant_det_psd_scan_peak_val; 246 boolean ant_det_is_btreply_available; 247 u32 ant_det_psd_scan_peak_freq; 248 249 u8 ant_det_result; 250 u8 ant_det_peak_val[BT_8703B_1ANT_ANTDET_BUF_LEN]; 251 u8 ant_det_peak_freq[BT_8703B_1ANT_ANTDET_BUF_LEN]; 252 u32 ant_det_try_count; 253 u32 ant_det_fail_count; 254 u32 ant_det_inteval_count; 255 u32 ant_det_thres_offset; 256 257 u32 real_cent_freq; 258 s32 real_offset; 259 u32 real_span; 260 261 u32 psd_band_width; /* unit: Hz */ 262 u32 psd_point; /* 128/256/512/1024 */ 263 u32 psd_report[1024]; /* unit:dB (20logx), 0~255 */ 264 u32 psd_report_max_hold[1024]; /* unit:dB (20logx), 0~255 */ 265 u32 psd_start_point; 266 u32 psd_stop_point; 267 u32 psd_max_value_point; 268 u32 psd_max_value; 269 u32 psd_start_base; 270 u32 psd_avg_num; /* 1/8/16/32 */ 271 u32 psd_gen_count; 272 boolean is_psd_running; 273 boolean is_psd_show_max_only; 274 }; 275 276 /* ******************************************* 277 * The following is interface which will notify coex module. 278 * ******************************************* */ 279 void ex_halbtc8703b1ant_power_on_setting(IN struct btc_coexist *btcoexist); 280 void ex_halbtc8703b1ant_pre_load_firmware(IN struct btc_coexist *btcoexist); 281 void ex_halbtc8703b1ant_init_hw_config(IN struct btc_coexist *btcoexist, 282 IN boolean wifi_only); 283 void ex_halbtc8703b1ant_init_coex_dm(IN struct btc_coexist *btcoexist); 284 void ex_halbtc8703b1ant_ips_notify(IN struct btc_coexist *btcoexist, 285 IN u8 type); 286 void ex_halbtc8703b1ant_lps_notify(IN struct btc_coexist *btcoexist, 287 IN u8 type); 288 void ex_halbtc8703b1ant_scan_notify(IN struct btc_coexist *btcoexist, 289 IN u8 type); 290 void ex_halbtc8703b1ant_connect_notify(IN struct btc_coexist *btcoexist, 291 IN u8 type); 292 void ex_halbtc8703b1ant_media_status_notify(IN struct btc_coexist *btcoexist, 293 IN u8 type); 294 void ex_halbtc8703b1ant_specific_packet_notify(IN struct btc_coexist *btcoexist, 295 IN u8 type); 296 void ex_halbtc8703b1ant_bt_info_notify(IN struct btc_coexist *btcoexist, 297 IN u8 *tmp_buf, IN u8 length); 298 void ex_halbtc8703b1ant_rf_status_notify(IN struct btc_coexist *btcoexist, 299 IN u8 type); 300 void ex_halbtc8703b1ant_halt_notify(IN struct btc_coexist *btcoexist); 301 void ex_halbtc8703b1ant_pnp_notify(IN struct btc_coexist *btcoexist, 302 IN u8 pnp_state); 303 void ex_halbtc8703b1ant_ScoreBoardStatusNotify(IN struct btc_coexist *btcoexist, 304 IN u8 *tmp_buf, IN u8 length); 305 void ex_halbtc8703b1ant_coex_dm_reset(IN struct btc_coexist *btcoexist); 306 void ex_halbtc8703b1ant_periodical(IN struct btc_coexist *btcoexist); 307 void ex_halbtc8703b1ant_display_coex_info(IN struct btc_coexist *btcoexist); 308 void ex_halbtc8703b1ant_antenna_detection(IN struct btc_coexist *btcoexist, 309 IN u32 cent_freq, IN u32 offset, IN u32 span, IN u32 seconds); 310 void ex_halbtc8703b1ant_antenna_isolation(IN struct btc_coexist *btcoexist, 311 IN u32 cent_freq, IN u32 offset, IN u32 span, IN u32 seconds); 312 313 void ex_halbtc8703b1ant_psd_scan(IN struct btc_coexist *btcoexist, 314 IN u32 cent_freq, IN u32 offset, IN u32 span, IN u32 seconds); 315 void ex_halbtc8703b1ant_display_ant_detection(IN struct btc_coexist *btcoexist); 316 317 #else 318 #define ex_halbtc8703b1ant_power_on_setting(btcoexist) 319 #define ex_halbtc8703b1ant_pre_load_firmware(btcoexist) 320 #define ex_halbtc8703b1ant_init_hw_config(btcoexist, wifi_only) 321 #define ex_halbtc8703b1ant_init_coex_dm(btcoexist) 322 #define ex_halbtc8703b1ant_ips_notify(btcoexist, type) 323 #define ex_halbtc8703b1ant_lps_notify(btcoexist, type) 324 #define ex_halbtc8703b1ant_scan_notify(btcoexist, type) 325 #define ex_halbtc8703b1ant_connect_notify(btcoexist, type) 326 #define ex_halbtc8703b1ant_media_status_notify(btcoexist, type) 327 #define ex_halbtc8703b1ant_specific_packet_notify(btcoexist, type) 328 #define ex_halbtc8703b1ant_bt_info_notify(btcoexist, tmp_buf, length) 329 #define ex_halbtc8703b1ant_rf_status_notify(btcoexist, type) 330 #define ex_halbtc8703b1ant_halt_notify(btcoexist) 331 #define ex_halbtc8703b1ant_pnp_notify(btcoexist, pnp_state) 332 #define ex_halbtc8703b1ant_ScoreBoardStatusNotify(btcoexist, tmp_buf, length) 333 #define ex_halbtc8703b1ant_coex_dm_reset(btcoexist) 334 #define ex_halbtc8703b1ant_periodical(btcoexist) 335 #define ex_halbtc8703b1ant_display_coex_info(btcoexist) 336 #define ex_halbtc8703b1ant_antenna_detection(btcoexist, cent_freq, offset, span, seconds) 337 #define ex_halbtc8703b1ant_antenna_isolation(btcoexist, cent_freq, offset, span, seconds) 338 #define ex_halbtc8703b1ant_psd_scan(btcoexist, cent_freq, offset, span, seconds) 339 #define ex_halbtc8703b1ant_display_ant_detection(btcoexist) 340 341 #endif 342 343 344 #endif 345