/openbmc/linux/drivers/net/wireless/intel/iwlwifi/mvm/ |
H A D | utils.c | 756 u8 iwl_mvm_tcm_load_percentage(u32 airtime, u32 elapsed) in iwl_mvm_tcm_load_percentage() argument 761 return (100 * airtime / elapsed) / USEC_PER_MSEC; in iwl_mvm_tcm_load_percentage() 954 u32 airtime = mdata->rx.airtime + mdata->tx.airtime; in iwl_mvm_calc_tcm_stats() local 956 total_airtime += airtime; in iwl_mvm_calc_tcm_stats() 957 band_airtime[band[mac]] += airtime; in iwl_mvm_calc_tcm_stats() 959 load = iwl_mvm_tcm_load(mvm, airtime, elapsed); in iwl_mvm_calc_tcm_stats() 962 mvm->tcm.result.airtime[mac] = airtime; in iwl_mvm_calc_tcm_stats() 987 memset(&mdata->rx.airtime, 0, sizeof(mdata->rx.airtime)); in iwl_mvm_calc_tcm_stats() 988 memset(&mdata->tx.airtime, 0, sizeof(mdata->tx.airtime)); in iwl_mvm_calc_tcm_stats() 1098 memset(&mdata->rx.airtime, 0, sizeof(mdata->rx.airtime)); in iwl_mvm_resume_tcm() [all …]
|
H A D | rx.c | 234 mdata->rx.airtime += le16_to_cpu(phy_info->frame_time); in iwl_mvm_rx_handle_tcm() 741 u32 airtime = le32_to_cpu(air_time_le[i]); in iwl_mvm_update_tcm_from_stats() local 743 mdata->rx.airtime += airtime; in iwl_mvm_update_tcm_from_stats() 745 if (airtime) { in iwl_mvm_update_tcm_from_stats() 749 rx_bytes * 8 / airtime); in iwl_mvm_update_tcm_from_stats()
|
H A D | mvm.h | 595 u32 airtime; member 599 u32 airtime; member 621 u32 airtime[NUM_MAC_INDEX_DRIVER]; member 2354 u8 iwl_mvm_tcm_load_percentage(u32 airtime, u32 elapsed);
|
H A D | tx.c | 1092 int airtime) in iwl_mvm_tx_airtime() argument 1108 mdata->tx.airtime += airtime; in iwl_mvm_tx_airtime()
|
/openbmc/linux/net/mac80211/ |
H A D | debugfs_sta.c | 215 rx_airtime += sta->airtime[ac].rx_airtime; in sta_airtime_read() 216 tx_airtime += sta->airtime[ac].tx_airtime; in sta_airtime_read() 217 deficit[ac] = sta->airtime[ac].deficit; in sta_airtime_read() 241 sta->airtime[ac].rx_airtime = 0; in sta_airtime_write() 242 sta->airtime[ac].tx_airtime = 0; in sta_airtime_write() 243 sta->airtime[ac].deficit = sta->airtime_weight; in sta_airtime_write() 249 STA_OPS_RW(airtime); 268 q_limit_l[ac] = sta->airtime[ac].aql_limit_low; in sta_aql_read() 307 sta->airtime[ac].aql_limit_low = q_limit_l; in sta_aql_write() 308 sta->airtime[ac].aql_limit_high = q_limit_h; in sta_aql_write() [all …]
|
H A D | sta_info.c | 631 sta->airtime[i].deficit = sta->airtime_weight; in __sta_info_alloc() 632 atomic_set(&sta->airtime[i].aql_tx_pending, 0); in __sta_info_alloc() 2289 u32 airtime = 0; in ieee80211_sta_register_airtime() local 2293 airtime += tx_airtime; in ieee80211_sta_register_airtime() 2295 airtime += rx_airtime; in ieee80211_sta_register_airtime() 2298 sta->airtime[ac].tx_airtime += tx_airtime; in ieee80211_sta_register_airtime() 2299 sta->airtime[ac].rx_airtime += rx_airtime; in ieee80211_sta_register_airtime() 2303 sta->airtime[ac].deficit -= airtime; in ieee80211_sta_register_airtime() 2374 &sta->airtime[ac].aql_tx_pending); in ieee80211_sta_update_pending_airtime() 2383 &sta->airtime[ac].aql_tx_pending); in ieee80211_sta_update_pending_airtime() [all …]
|
H A D | Makefile | 38 airtime.o \
|
H A D | debugfs.c | 297 if (sta->airtime[ac].aql_limit_low == q_limit_low_old && in aql_txq_limit_write() 298 sta->airtime[ac].aql_limit_high == q_limit_high_old) { in aql_txq_limit_write() 299 sta->airtime[ac].aql_limit_low = q_limit_low; in aql_txq_limit_write() 300 sta->airtime[ac].aql_limit_high = q_limit_high; in aql_txq_limit_write()
|
H A D | tx.c | 3971 u32 airtime; in ieee80211_tx_dequeue() local 3975 if (airtime) { in ieee80211_tx_dequeue() 3976 airtime = ieee80211_info_set_tx_time_est(info, airtime); in ieee80211_tx_dequeue() 3979 airtime, in ieee80211_tx_dequeue() 3995 struct airtime_info *air_info = &sta->airtime[ac]; in ieee80211_sta_deficit() 4069 sta->airtime[txqi->txq.ac].deficit += in ieee80211_next_txq() 4150 sta->airtime[txq->ac].aql_limit_low) in ieee80211_txq_airtime_check() 4156 sta->airtime[txq->ac].aql_limit_high) in ieee80211_txq_airtime_check() 4213 sta->airtime[ac].deficit += sta->airtime_weight; in ieee80211_txq_may_transmit() 4218 if (sta->airtime[ac].deficit >= 0) in ieee80211_txq_may_transmit() [all …]
|
H A D | sta_info.h | 706 struct airtime_info airtime[IEEE80211_NUM_ACS]; member
|
/openbmc/linux/drivers/net/wireless/ath/ath9k/ |
H A D | recv.c | 1023 u32 airtime = 0; in ath_rx_count_airtime() local 1045 airtime += ath_pkt_duration(sc, rxs->rate_idx, len, in ath_rx_count_airtime() 1051 airtime += ath9k_hw_computetxtime(ah, phy, rate->bitrate * 100, in ath_rx_count_airtime() 1055 ieee80211_sta_register_airtime(sta, tidno, 0, airtime); in ath_rx_count_airtime()
|
H A D | xmit.c | 718 u32 airtime = 0; in ath_tx_count_airtime() local 721 airtime += ts->duration * (ts->ts_longretry + 1); in ath_tx_count_airtime() 724 airtime += rate_dur * bf->rates[i].count; in ath_tx_count_airtime() 727 ieee80211_sta_register_airtime(sta, tid, airtime, 0); in ath_tx_count_airtime()
|
/openbmc/linux/drivers/net/wireless/mediatek/mt76/mt7603/ |
H A D | mac.c | 417 u32 airtime[4]; in mt7603_mac_sta_poll() local 442 airtime[i] = msta->tx_airtime_ac[i] - airtime_last; in mt7603_mac_sta_poll() 443 airtime[i] *= 32; in mt7603_mac_sta_poll() 444 total_airtime += airtime[i]; in mt7603_mac_sta_poll() 465 u32 txtime = airtime[qidx]; in mt7603_mac_sta_poll()
|
/openbmc/linux/drivers/net/wireless/mediatek/mt76/ |
H A D | mac80211.c | 1183 u32 airtime; in mt76_airtime_report() local 1186 airtime = ieee80211_calc_rx_airtime(dev->hw, &info, len); in mt76_airtime_report() 1188 dev->cur_cc_bss_rx += airtime; in mt76_airtime_report() 1195 ieee80211_sta_register_airtime(sta, tidno, 0, airtime); in mt76_airtime_report()
|
/openbmc/linux/drivers/net/wireless/intersil/p54/ |
H A D | lmac.h | 418 __le32 airtime; member
|
/openbmc/linux/drivers/net/wireless/ath/ath10k/ |
H A D | mac.c | 3873 struct sk_buff *skb, u16 airtime) in ath10k_mac_tx_h_fill_cb() argument 3933 cb->airtime_est = airtime; in ath10k_mac_tx_h_fill_cb() 4343 u16 airtime = 0; in ath10k_mac_update_airtime() local 4346 return airtime; in ath10k_mac_update_airtime() 4349 return airtime; in ath10k_mac_update_airtime() 4357 airtime = (pktlen * 8 * (1000 / 100)) in ath10k_mac_update_airtime() 4360 airtime += IEEE80211_ATF_OVERHEAD_IFS; in ath10k_mac_update_airtime() 4368 airtime += IEEE80211_ATF_OVERHEAD; in ath10k_mac_update_airtime() 4372 return airtime; in ath10k_mac_update_airtime() 4390 u16 airtime; in ath10k_mac_tx_push_txq() local [all …]
|