Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f4a23e19 authored by Yan-Hsuan Chuang's avatar Yan-Hsuan Chuang Committed by Kalle Valo
Browse files

rtlwifi: btcoex: 23b 2ant: some hi-prio pkt will cause hid_exist



Clear the hid_exist flag by monitoring the packet counter.

Signed-off-by: default avatarYan-Hsuan Chuang <yhchuang@realtek.com>
Signed-off-by: default avatarLarry Finger <Larry.Finger@lwfinger.net>
Cc: Pkshih <pkshih@realtek.com>
Cc: Birming Chiu <birming@realtek.com>
Cc: Shaofu <shaofu@realtek.com>
Cc: Steven Ting <steventing@realtek.com>
Signed-off-by: default avatarKalle Valo <kvalo@codeaurora.org>
parent 588a290b
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -4329,6 +4329,7 @@ void ex_btc8723b2ant_pnp_notify(struct btc_coexist *btcoexist, u8 pnp_state)
void ex_btc8723b2ant_periodical(struct btc_coexist *btcoexist)
{
	struct rtl_priv *rtlpriv = btcoexist->adapter;
	struct btc_bt_link_info *bt_link_info = &btcoexist->bt_link_info;

	RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
		 "[BTCoex], ==========================Periodical===========================\n");
@@ -4352,6 +4353,13 @@ void ex_btc8723b2ant_periodical(struct btc_coexist *btcoexist)
	btc8723b2ant_monitor_bt_ctr(btcoexist);
	btc8723b2ant_monitor_wifi_ctr(btcoexist);

	/* for some BT speakers that High-Priority pkts appear before
	 * playing, this will cause HID exist
	 */
	if ((coex_sta->high_priority_tx + coex_sta->high_priority_rx < 50) &&
	    (bt_link_info->hid_exist))
		bt_link_info->hid_exist = false;

	if (btc8723b2ant_is_wifi_status_changed(btcoexist) ||
	    coex_dm->auto_tdma_adjust)
		btc8723b2ant_run_coexist_mechanism(btcoexist);