Home
last modified time | relevance | path

Searched refs:ra_report (Results 1 – 10 of 10) sorted by relevance

/freebsd-13-stable/sys/contrib/dev/rtw89/
HDphy.c1982 struct rtw89_ra_report *ra_report = &rtwsta->ra_report; in rtw89_phy_c2h_ra_rpt_iter() local
2004 memset(&ra_report->txrate, 0, sizeof(ra_report->txrate)); in rtw89_phy_c2h_ra_rpt_iter()
2008 ra_report->txrate.legacy = legacy_bitrate; in rtw89_phy_c2h_ra_rpt_iter()
2011 ra_report->txrate.flags |= RATE_INFO_FLAGS_MCS; in rtw89_phy_c2h_ra_rpt_iter()
2017 ra_report->txrate.mcs = rate; in rtw89_phy_c2h_ra_rpt_iter()
2019 ra_report->txrate.flags |= RATE_INFO_FLAGS_SHORT_GI; in rtw89_phy_c2h_ra_rpt_iter()
2020 mcs = ra_report->txrate.mcs & 0x07; in rtw89_phy_c2h_ra_rpt_iter()
2023 ra_report->txrate.flags |= RATE_INFO_FLAGS_VHT_MCS; in rtw89_phy_c2h_ra_rpt_iter()
2024 ra_report->txrate.mcs = FIELD_GET(RTW89_RA_RATE_MASK_MCS, rate); in rtw89_phy_c2h_ra_rpt_iter()
2025 ra_report->txrate.nss = FIELD_GET(RTW89_RA_RATE_MASK_NSS, rate) + 1; in rtw89_phy_c2h_ra_rpt_iter()
[all …]
HDdebug.c2311 struct rate_info *rate = &rtwsta->ra_report.txrate; in rtw89_sta_info_get_iter()
2330 seq_printf(m, "%s", rtwsta->ra_report.might_fallback_legacy ? " FB_G" : ""); in rtw89_sta_info_get_iter()
2331 seq_printf(m, "\t(hw_rate=0x%x)", rtwsta->ra_report.hw_rate); in rtw89_sta_info_get_iter()
HDmac80211.c609 sinfo->txrate = rtwsta->ra_report.txrate; in rtw89_ops_sta_statistics()
HDcoex.c5316 if (last_tx_rate != rtwsta->ra_report.hw_rate || in rtw89_btc_ntfy_wl_sta_iter()
5322 link_info_t->tx_rate = rtwsta->ra_report.hw_rate; in rtw89_btc_ntfy_wl_sta_iter()
5327 wl->role_info.active_role[port].tx_rate = rtwsta->ra_report.hw_rate; in rtw89_btc_ntfy_wl_sta_iter()
HDcore.c611 if (rtwsta && rtwsta->ra_report.might_fallback_legacy) in __rtw89_core_tx_check_he_qos_htc()
HDcore.h2147 struct rtw89_ra_report ra_report; member
/freebsd-13-stable/sys/contrib/dev/rtw88/
HDfw.c83 si->ra_report.txrate.flags = 0; in rtw_fw_ra_report_iter()
90 si->ra_report.txrate.legacy = rtw_desc_to_bitrate(rate); in rtw_fw_ra_report_iter()
96 si->ra_report.txrate.flags |= RATE_INFO_FLAGS_VHT_MCS; in rtw_fw_ra_report_iter()
98 si->ra_report.txrate.flags |= RATE_INFO_FLAGS_MCS; in rtw_fw_ra_report_iter()
101 si->ra_report.txrate.mcs = mcs; in rtw_fw_ra_report_iter()
102 si->ra_report.txrate.nss = nss; in rtw_fw_ra_report_iter()
106 si->ra_report.txrate.flags |= RATE_INFO_FLAGS_SHORT_GI; in rtw_fw_ra_report_iter()
109 si->ra_report.txrate.bw = RATE_INFO_BW_80; in rtw_fw_ra_report_iter()
111 si->ra_report.txrate.bw = RATE_INFO_BW_40; in rtw_fw_ra_report_iter()
113 si->ra_report.txrate.bw = RATE_INFO_BW_20; in rtw_fw_ra_report_iter()
[all …]
HDmac80211.c729 sinfo->txrate = si->ra_report.txrate; in rtw_ops_sta_statistics()
HDmain.h766 struct rtw_ra_report ra_report; member
HDphy.c590 mask = rtw_phy_get_rrsr_mask(rtwdev, si->ra_report.desc_rate); in rtw_phy_rrsr_mask_min_iter()