From: Ping-Ke Shih <pkshih@realtek.com>
To: Maxim Skokov <skokovmaksimevg@gmail.com>
Cc: "linux-wireless@vger.kernel.org" <linux-wireless@vger.kernel.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Subject: RE: rtw89: BT connect state differs between scoreboard and bt_info on RTL8851B
Date: Wed, 16 Sep 2026 02:39:42 +0000 [thread overview]
Message-ID: <25270f2066784a02806daa352643be53@realtek.com> (raw)
In-Reply-To: <20260915123718.7239-1-skokovmaksimevg@gmail.com>
[-- Attachment #1: Type: text/plain, Size: 559 bytes --]
Maxim Skokov <skokovmaksimevg@gmail.com> wrote:
> Same on WL_FW 0.29.41.5, the newest in linux-firmware, with the sink
> connected and playing:
>
> [status] : enable:Y, btg:N, connect:N, mailbox_avl:Y
> [profile] : profile: , A2DP_active:Y, PAN_active:N
> [bt_info] : raw_data[49 00 d0 00 04 00] (type:auto/cnt:82/same:3)
> [scoreboard] : BT0->WL:0x40000003(total:0, bt_update:26)
>
> BTC_BSCB_BT_CONNECT is not set here either.
We found the problem recently, and ongoing to send out the patch.
Please try the attachment.
[-- Attachment #2: 20260916_00_patch_for_scoreboard.patch --]
[-- Type: application/octet-stream, Size: 2817 bytes --]
diff --git a/drivers/net/wireless/realtek/rtw89/coex.c b/drivers/net/wireless/realtek/rtw89/coex.c
index 5a9dc4d8a00b..df49f62f566b 100644
--- a/drivers/net/wireless/realtek/rtw89/coex.c
+++ b/drivers/net/wireless/realtek/rtw89/coex.c
@@ -1000,7 +1000,7 @@ static void _run_coex(struct rtw89_dev *rtwdev,
enum btc_reason_and_action reason);
static void _write_scbd(struct rtw89_dev *rtwdev, u8 bid, u32 val, bool state);
static u8 _sned_h2c_w2bscbd(struct rtw89_dev *rtwdev, bool force_exec, u8 bid);
-static void _update_bt_scbd(struct rtw89_dev *rtwdev, u8 bid);
+static void _update_bt_scbd(struct rtw89_dev *rtwdev, u8 bid, bool is_c2h);
static const char *id_to_h2c(u32 id);
static void _reset_h2c_macro(struct rtw89_btc *btc)
@@ -3602,7 +3602,7 @@ void btc_fw_event(struct rtw89_dev *rtwdev, u8 evt_id, void *data, u32 len)
"[BTC], %s() bt%d:c2h->0x%08x, rb->0x%08x\n",
__func__, i, bt->scbd_c2h, bt->scbd_rb);
bt->scbd_c2h = bt->scbd_rb;
- _update_bt_scbd(rtwdev, i);
+ _update_bt_scbd(rtwdev, i, true);
btc->dm.scbd_b2w_update = false;
}
}
@@ -7805,7 +7805,21 @@ static void _update_bt_ctrl_lps(struct rtw89_dev *rtwdev)
}
}
-static void _update_bt_scbd(struct rtw89_dev *rtwdev, u8 bid)
+static u32 _read_scbd(struct rtw89_dev *rtwdev, u8 id)
+{
+ const struct rtw89_chip_info *chip = rtwdev->chip;
+ u32 val;
+
+ if (!chip->scbd)
+ return 0;
+
+ val = rtw89_read32(rtwdev, chip->btc_sb.n[id].get);
+ rtw89_debug(rtwdev, RTW89_DBG_BTC,
+ "[BTC], read scbd bt%d: 0x%08x\n", id, val);
+ return val;
+}
+
+static void _update_bt_scbd(struct rtw89_dev *rtwdev, u8 bid, bool is_c2h)
{
struct rtw89_btc_bt_link_info *bt_2g, *bt_56g;
struct rtw89_btc *btc = &rtwdev->btc;
@@ -7838,7 +7852,7 @@ static void _update_bt_scbd(struct rtw89_dev *rtwdev, u8 bid)
if (!(rtwdev->chip->para_ver & BTC_FEAT_DUAL_BT) && id == BTC_BT_2ND)
break;
- val = bt->scbd_c2h;
+ val = is_c2h ? bt->scbd_c2h : _read_scbd(rtwdev, id);
if (val == 0xffffffff) {
rtw89_debug(rtwdev, RTW89_DBG_BTC,
@@ -8473,8 +8487,8 @@ void _run_coex(struct rtw89_dev *rtwdev, enum btc_reason_and_action reason)
_update_run_ctrl_info(rtwdev);
- if (reason == BTC_RSN_NTFY_INIT || reason == BTC_RSN_NTFY_RADIO_STATE)
- _update_bt_scbd(rtwdev, false);
+ if (reason == BTC_RSN_NTFY_RADIO_STATE)
+ _update_bt_scbd(rtwdev, BTC_ALL_BT, false);
dm->freerun = false;
dm->cnt_dm[BTC_DCNT_RUN]++;
@@ -9814,7 +9828,7 @@ void rtw89_btc_c2h_handle(struct rtw89_dev *rtwdev, struct sk_buff *skb,
rtw89_debug(rtwdev, RTW89_DBG_BTC,
"[BTC], handle C2H BT%d SCBD with data 0x%08x\n",
bid, bt->scbd_c2h);
- _update_bt_scbd(rtwdev, bid);
+ _update_bt_scbd(rtwdev, bid, true);
_run_coex(rtwdev, BTC_RSN_UPDATE_BT_SCBD);
break;
case BTF_EVNT_BT_PSD:
next prev parent reply other threads:[~2026-09-16 2:39 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-09-15 12:26 Maxim Skokov
2026-09-15 12:36 ` Maxim Skokov
2026-09-16 2:39 ` Ping-Ke Shih [this message]
2026-09-16 5:32 ` Maxim Skokov
2026-09-17 0:30 ` Ping-Ke Shih
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=25270f2066784a02806daa352643be53@realtek.com \
--to=pkshih@realtek.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-wireless@vger.kernel.org \
--cc=skokovmaksimevg@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®