halbtc8821a1ant.h 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214
  1. #if (BT_SUPPORT == 1 && COEX_SUPPORT == 1)
  2. #if (RTL8821A_SUPPORT == 1)
  3. /* *******************************************
  4. * The following is for 8821A 1ANT BT Co-exist definition
  5. * ******************************************* */
  6. #define BT_AUTO_REPORT_ONLY_8821A_1ANT 1
  7. #define BT_INFO_8821A_1ANT_B_FTP BIT(7)
  8. #define BT_INFO_8821A_1ANT_B_A2DP BIT(6)
  9. #define BT_INFO_8821A_1ANT_B_HID BIT(5)
  10. #define BT_INFO_8821A_1ANT_B_SCO_BUSY BIT(4)
  11. #define BT_INFO_8821A_1ANT_B_ACL_BUSY BIT(3)
  12. #define BT_INFO_8821A_1ANT_B_INQ_PAGE BIT(2)
  13. #define BT_INFO_8821A_1ANT_B_SCO_ESCO BIT(1)
  14. #define BT_INFO_8821A_1ANT_B_CONNECTION BIT(0)
  15. #define BT_INFO_8821A_1ANT_A2DP_BASIC_RATE(_BT_INFO_EXT_) \
  16. (((_BT_INFO_EXT_&BIT(0))) ? true : false)
  17. #define BTC_RSSI_COEX_THRESH_TOL_8821A_1ANT 2
  18. enum bt_info_src_8821a_1ant {
  19. BT_INFO_SRC_8821A_1ANT_WIFI_FW = 0x0,
  20. BT_INFO_SRC_8821A_1ANT_BT_RSP = 0x1,
  21. BT_INFO_SRC_8821A_1ANT_BT_ACTIVE_SEND = 0x2,
  22. BT_INFO_SRC_8821A_1ANT_MAX
  23. };
  24. enum bt_8821a_1ant_bt_status {
  25. BT_8821A_1ANT_BT_STATUS_NON_CONNECTED_IDLE = 0x0,
  26. BT_8821A_1ANT_BT_STATUS_CONNECTED_IDLE = 0x1,
  27. BT_8821A_1ANT_BT_STATUS_INQ_PAGE = 0x2,
  28. BT_8821A_1ANT_BT_STATUS_ACL_BUSY = 0x3,
  29. BT_8821A_1ANT_BT_STATUS_SCO_BUSY = 0x4,
  30. BT_8821A_1ANT_BT_STATUS_ACL_SCO_BUSY = 0x5,
  31. BT_8821A_1ANT_BT_STATUS_MAX
  32. };
  33. enum bt_8821a_1ant_wifi_status {
  34. BT_8821A_1ANT_WIFI_STATUS_NON_CONNECTED_IDLE = 0x0,
  35. BT_8821A_1ANT_WIFI_STATUS_NON_CONNECTED_ASSO_AUTH_SCAN = 0x1,
  36. BT_8821A_1ANT_WIFI_STATUS_CONNECTED_SCAN = 0x2,
  37. BT_8821A_1ANT_WIFI_STATUS_CONNECTED_SPECIFIC_PKT = 0x3,
  38. BT_8821A_1ANT_WIFI_STATUS_CONNECTED_IDLE = 0x4,
  39. BT_8821A_1ANT_WIFI_STATUS_CONNECTED_BUSY = 0x5,
  40. BT_8821A_1ANT_WIFI_STATUS_MAX
  41. };
  42. enum bt_8821a_1ant_coex_algo {
  43. BT_8821A_1ANT_COEX_ALGO_UNDEFINED = 0x0,
  44. BT_8821A_1ANT_COEX_ALGO_SCO = 0x1,
  45. BT_8821A_1ANT_COEX_ALGO_HID = 0x2,
  46. BT_8821A_1ANT_COEX_ALGO_A2DP = 0x3,
  47. BT_8821A_1ANT_COEX_ALGO_A2DP_PANHS = 0x4,
  48. BT_8821A_1ANT_COEX_ALGO_PANEDR = 0x5,
  49. BT_8821A_1ANT_COEX_ALGO_PANHS = 0x6,
  50. BT_8821A_1ANT_COEX_ALGO_PANEDR_A2DP = 0x7,
  51. BT_8821A_1ANT_COEX_ALGO_PANEDR_HID = 0x8,
  52. BT_8821A_1ANT_COEX_ALGO_HID_A2DP_PANEDR = 0x9,
  53. BT_8821A_1ANT_COEX_ALGO_HID_A2DP = 0xa,
  54. BT_8821A_1ANT_COEX_ALGO_MAX = 0xb,
  55. };
  56. struct coex_dm_8821a_1ant {
  57. /* fw mechanism */
  58. boolean cur_ignore_wlan_act;
  59. boolean pre_ignore_wlan_act;
  60. u8 pre_ps_tdma;
  61. u8 cur_ps_tdma;
  62. u8 ps_tdma_para[5];
  63. u8 ps_tdma_du_adj_type;
  64. boolean auto_tdma_adjust;
  65. boolean pre_ps_tdma_on;
  66. boolean cur_ps_tdma_on;
  67. boolean pre_bt_auto_report;
  68. boolean cur_bt_auto_report;
  69. u8 pre_lps;
  70. u8 cur_lps;
  71. u8 pre_rpwm;
  72. u8 cur_rpwm;
  73. /* sw mechanism */
  74. boolean pre_low_penalty_ra;
  75. boolean cur_low_penalty_ra;
  76. u32 pre_val0x6c0;
  77. u32 cur_val0x6c0;
  78. u32 pre_val0x6c4;
  79. u32 cur_val0x6c4;
  80. u32 pre_val0x6c8;
  81. u32 cur_val0x6c8;
  82. u8 pre_val0x6cc;
  83. u8 cur_val0x6cc;
  84. u32 backup_arfr_cnt1; /* Auto Rate Fallback Retry cnt */
  85. u32 backup_arfr_cnt2; /* Auto Rate Fallback Retry cnt */
  86. u16 backup_retry_limit;
  87. u8 backup_ampdu_max_time;
  88. /* algorithm related */
  89. u8 pre_algorithm;
  90. u8 cur_algorithm;
  91. u8 bt_status;
  92. u8 wifi_chnl_info[3];
  93. u32 pre_ra_mask;
  94. u32 cur_ra_mask;
  95. u8 pre_arfr_type;
  96. u8 cur_arfr_type;
  97. u8 pre_retry_limit_type;
  98. u8 cur_retry_limit_type;
  99. u8 pre_ampdu_time_type;
  100. u8 cur_ampdu_time_type;
  101. u32 arp_cnt;
  102. u8 error_condition;
  103. };
  104. struct coex_sta_8821a_1ant {
  105. boolean bt_disabled;
  106. boolean bt_link_exist;
  107. boolean sco_exist;
  108. boolean a2dp_exist;
  109. boolean hid_exist;
  110. boolean pan_exist;
  111. boolean under_lps;
  112. boolean under_ips;
  113. u32 specific_pkt_period_cnt;
  114. u32 high_priority_tx;
  115. u32 high_priority_rx;
  116. u32 low_priority_tx;
  117. u32 low_priority_rx;
  118. u32 crc_ok_cck;
  119. u32 crc_ok_11g;
  120. u32 crc_ok_11n;
  121. u32 crc_ok_11n_vht;
  122. u32 crc_err_cck;
  123. u32 crc_err_11g;
  124. u32 crc_err_11n;
  125. u32 crc_err_11n_vht;
  126. u32 bt_coex_supported_version;
  127. u8 cut_version;
  128. u8 bt_rssi;
  129. u8 scan_ap_num;
  130. boolean bt_tx_rx_mask;
  131. u8 pre_bt_rssi_state;
  132. u8 pre_wifi_rssi_state[4];
  133. boolean c2h_bt_info_req_sent;
  134. u8 bt_info_c2h[BT_INFO_SRC_8821A_1ANT_MAX][10];
  135. u32 bt_info_c2h_cnt[BT_INFO_SRC_8821A_1ANT_MAX];
  136. boolean c2h_bt_inquiry_page;
  137. boolean c2h_bt_page; /* Add for win8.1 page out issue */
  138. boolean wifi_is_high_pri_task; /* Add for win8.1 page out issue */
  139. u8 bt_retry_cnt;
  140. u8 bt_info_ext;
  141. boolean bt_whck_test; /* Add for ASUS WHQL TEST that enable wifi test bt */
  142. };
  143. /* *******************************************
  144. * The following is interface which will notify coex module.
  145. * ******************************************* */
  146. void ex_halbtc8821a1ant_power_on_setting(IN struct btc_coexist *btcoexist);
  147. void ex_halbtc8821a1ant_init_hw_config(IN struct btc_coexist *btcoexist,
  148. IN boolean wifi_only);
  149. void ex_halbtc8821a1ant_init_coex_dm(IN struct btc_coexist *btcoexist);
  150. void ex_halbtc8821a1ant_ips_notify(IN struct btc_coexist *btcoexist,
  151. IN u8 type);
  152. void ex_halbtc8821a1ant_lps_notify(IN struct btc_coexist *btcoexist,
  153. IN u8 type);
  154. void ex_halbtc8821a1ant_scan_notify(IN struct btc_coexist *btcoexist,
  155. IN u8 type);
  156. void ex_halbtc8821a1ant_switchband_notify(IN struct btc_coexist *btcoexist,
  157. IN u8 type);
  158. void ex_halbtc8821a1ant_connect_notify(IN struct btc_coexist *btcoexist,
  159. IN u8 type);
  160. void ex_halbtc8821a1ant_media_status_notify(IN struct btc_coexist *btcoexist,
  161. IN u8 type);
  162. void ex_halbtc8821a1ant_specific_packet_notify(IN struct btc_coexist *btcoexist,
  163. IN u8 type);
  164. void ex_halbtc8821a1ant_bt_info_notify(IN struct btc_coexist *btcoexist,
  165. IN u8 *tmp_buf, IN u8 length);
  166. void ex_halbtc8821a1ant_halt_notify(IN struct btc_coexist *btcoexist);
  167. void ex_halbtc8821a1ant_pnp_notify(IN struct btc_coexist *btcoexist,
  168. IN u8 pnp_state);
  169. void ex_halbtc8821a1ant_periodical(IN struct btc_coexist *btcoexist);
  170. void ex_halbtc8821a1ant_display_coex_info(IN struct btc_coexist *btcoexist);
  171. #else
  172. #define ex_halbtc8821a1ant_power_on_setting(btcoexist)
  173. #define ex_halbtc8821a1ant_init_hw_config(btcoexist, wifi_only)
  174. #define ex_halbtc8821a1ant_init_coex_dm(btcoexist)
  175. #define ex_halbtc8821a1ant_ips_notify(btcoexist, type)
  176. #define ex_halbtc8821a1ant_lps_notify(btcoexist, type)
  177. #define ex_halbtc8821a1ant_scan_notify(btcoexist, type)
  178. #define ex_halbtc8821a1ant_switchband_notify(btcoexist, type)
  179. #define ex_halbtc8821a1ant_connect_notify(btcoexist, type)
  180. #define ex_halbtc8821a1ant_media_status_notify(btcoexist, type)
  181. #define ex_halbtc8821a1ant_specific_packet_notify(btcoexist, type)
  182. #define ex_halbtc8821a1ant_bt_info_notify(btcoexist, tmp_buf, length)
  183. #define ex_halbtc8821a1ant_halt_notify(btcoexist)
  184. #define ex_halbtc8821a1ant_pnp_notify(btcoexist, pnp_state)
  185. #define ex_halbtc8821a1ant_periodical(btcoexist)
  186. #define ex_halbtc8821a1ant_display_coex_info(btcoexist)
  187. #endif
  188. #endif