mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-07 19:49:33 -04:00
wifi: rtw89: coex: Parsing Wi-Fi firmware TDMA info from reports
Show TDMA information containing TDMA policy and time slot of Wi-Fi/BT in debug message to check things are in expected. The v1 format contains additional header, and remaining part is the same as original. So 8852CE selects v1 version, and then everything like original. Signed-off-by: Ching-Te Ku <ku920601@realtek.com> Signed-off-by: Ping-Ke Shih <pkshih@realtek.com> Signed-off-by: Kalle Valo <kvalo@kernel.org> Link: https://lore.kernel.org/r/20220913092546.43722-6-pkshih@realtek.com
This commit is contained in:
@@ -6015,6 +6015,7 @@ static void _show_error(struct rtw89_dev *rtwdev, struct seq_file *m)
|
||||
|
||||
static void _show_fbtc_tdma(struct rtw89_dev *rtwdev, struct seq_file *m)
|
||||
{
|
||||
const struct rtw89_chip_info *chip = rtwdev->chip;
|
||||
struct rtw89_btc *btc = &rtwdev->btc;
|
||||
struct rtw89_btc_btf_fwinfo *pfwinfo = &btc->fwinfo;
|
||||
struct rtw89_btc_rpt_cmn_info *pcinfo = NULL;
|
||||
@@ -6027,7 +6028,10 @@ static void _show_fbtc_tdma(struct rtw89_dev *rtwdev, struct seq_file *m)
|
||||
if (!pcinfo->valid)
|
||||
return;
|
||||
|
||||
t = &pfwinfo->rpt_fbtc_tdma.finfo;
|
||||
if (chip->chip_id == RTL8852A)
|
||||
t = &pfwinfo->rpt_fbtc_tdma.finfo;
|
||||
else
|
||||
t = &pfwinfo->rpt_fbtc_tdma.finfo_v1.tdma;
|
||||
|
||||
seq_printf(m,
|
||||
" %-15s : ", "[tdma_policy]");
|
||||
|
||||
Reference in New Issue
Block a user