/linux-6.1.9/net/mac80211/ |
D | ethtool.c | 78 struct survey_info survey; in ieee80211_get_stats() local 150 survey.filled = 0; in ieee80211_get_stats() 163 survey.filled = 0; in ieee80211_get_stats() 164 if (drv_get_survey(local, q, &survey) != 0) { in ieee80211_get_stats() 165 survey.filled = 0; in ieee80211_get_stats() 169 } while (channel != survey.channel); in ieee80211_get_stats() 172 if (survey.filled) in ieee80211_get_stats() 173 data[i++] = survey.channel->center_freq; in ieee80211_get_stats() 176 if (survey.filled & SURVEY_INFO_NOISE_DBM) in ieee80211_get_stats() 177 data[i++] = (u8)survey.noise; in ieee80211_get_stats() [all …]
|
D | driver-ops.h | 581 struct survey_info *survey) in drv_get_survey() argument 585 trace_drv_get_survey(local, idx, survey); in drv_get_survey() 588 ret = local->ops->get_survey(&local->hw, idx, survey); in drv_get_survey()
|
/linux-6.1.9/drivers/net/wireless/ath/ath9k/ |
D | link.c | 492 struct survey_info *survey = &sc->survey[channel]; in ath_update_survey_nf() local 495 survey->filled |= SURVEY_INFO_NOISE_DBM; in ath_update_survey_nf() 496 survey->noise = ath9k_hw_getchan_noise(ah, chan, in ath_update_survey_nf() 511 struct survey_info *survey = &sc->survey[pos]; in ath_update_survey_stats() local 523 survey->filled |= SURVEY_INFO_TIME | in ath_update_survey_stats() 527 survey->time += cc->cycles / div; in ath_update_survey_stats() 528 survey->time_busy += cc->rx_busy / div; in ath_update_survey_stats() 529 survey->time_rx += cc->rx_frame / div; in ath_update_survey_stats() 530 survey->time_tx += cc->tx_frame / div; in ath_update_survey_stats()
|
D | channel.c | 57 if (!sc->cur_chan->offchannel && sc->cur_survey != &sc->survey[pos]) { in ath_set_channel() 61 sc->cur_survey = &sc->survey[pos]; in ath_set_channel() 65 } else if (!(sc->survey[pos].filled & SURVEY_INFO_IN_USE)) { in ath_set_channel() 66 memset(&sc->survey[pos], 0, sizeof(struct survey_info)); in ath_set_channel()
|
/linux-6.1.9/drivers/net/wireless/ath/ath5k/ |
D | mac80211-ops.c | 649 ath5k_get_survey(struct ieee80211_hw *hw, int idx, struct survey_info *survey) in ath5k_get_survey() argument 663 ah->survey.time += cc->cycles / div; in ath5k_get_survey() 664 ah->survey.time_busy += cc->rx_busy / div; in ath5k_get_survey() 665 ah->survey.time_rx += cc->rx_frame / div; in ath5k_get_survey() 666 ah->survey.time_tx += cc->tx_frame / div; in ath5k_get_survey() 671 memcpy(survey, &ah->survey, sizeof(*survey)); in ath5k_get_survey() 673 survey->channel = conf->chandef.chan; in ath5k_get_survey() 674 survey->noise = ah->ah_noise_floor; in ath5k_get_survey() 675 survey->filled = SURVEY_INFO_NOISE_DBM | in ath5k_get_survey()
|
/linux-6.1.9/drivers/net/wireless/intersil/p54/ |
D | main.c | 302 struct survey_info *info = &priv->survey[chan->hw_value]; in p54_reset_stats() 605 struct survey_info *survey) in p54_get_survey() argument 628 memcpy(survey, &priv->survey[idx], sizeof(*survey)); in p54_get_survey() 632 if (survey->time != 0) { in p54_get_survey() 633 survey->filled |= SURVEY_INFO_IN_USE; in p54_get_survey() 835 kfree(priv->survey); in p54_free_common() 841 priv->survey = NULL; in p54_free_common()
|
D | txrx.c | 590 struct survey_info *survey = &priv->survey[chan->hw_value]; in p54_rx_stats() local 591 survey->noise = clamp(priv->noise, -128, 127); in p54_rx_stats() 592 survey->time = priv->survey_raw.active; in p54_rx_stats() 593 survey->time_tx = priv->survey_raw.tx; in p54_rx_stats() 594 survey->time_busy = priv->survey_raw.tx + in p54_rx_stats() 596 do_div(survey->time, 1024); in p54_rx_stats() 597 do_div(survey->time_tx, 1024); in p54_rx_stats() 598 do_div(survey->time_busy, 1024); in p54_rx_stats()
|
D | eeprom.c | 195 priv->survey[*chan_num].channel = &tmp->channels[j]; in p54_generate_band() 196 priv->survey[*chan_num].filled = SURVEY_INFO_NOISE_DBM | in p54_generate_band() 345 priv->survey = kcalloc(max_channel_num, sizeof(struct survey_info), in p54_generate_channel_lists() 347 if (!priv->survey) { in p54_generate_channel_lists() 413 kfree(priv->survey); in p54_generate_channel_lists() 414 priv->survey = NULL; in p54_generate_channel_lists() 936 kfree(priv->survey); in p54_parse_eeprom() 941 priv->survey = NULL; in p54_parse_eeprom()
|
D | p54.h | 201 struct survey_info *survey; member
|
/linux-6.1.9/drivers/net/wireless/mediatek/mt76/ |
D | mac80211.c | 857 struct survey_info *survey) in mt76_get_survey() argument 890 memset(survey, 0, sizeof(*survey)); in mt76_get_survey() 891 survey->channel = chan; in mt76_get_survey() 892 survey->filled = SURVEY_INFO_TIME | SURVEY_INFO_TIME_BUSY; in mt76_get_survey() 893 survey->filled |= dev->drv->survey_flags; in mt76_get_survey() 895 survey->filled |= SURVEY_INFO_NOISE_DBM; in mt76_get_survey() 898 survey->filled |= SURVEY_INFO_IN_USE; in mt76_get_survey() 901 survey->filled |= SURVEY_INFO_TIME_BSS_RX; in mt76_get_survey() 904 survey->time_busy = div_u64(state->cc_busy, 1000); in mt76_get_survey() 905 survey->time_rx = div_u64(state->cc_rx, 1000); in mt76_get_survey() [all …]
|
/linux-6.1.9/drivers/net/wireless/ath/wcn36xx/ |
D | main.c | 1293 struct survey_info *survey) in wcn36xx_get_survey() argument 1314 survey->channel = &sband->channels[band_idx]; in wcn36xx_get_survey() 1315 survey->noise = chan_survey->rssi - chan_survey->snr; in wcn36xx_get_survey() 1316 survey->filled = 0; in wcn36xx_get_survey() 1319 survey->filled |= SURVEY_INFO_NOISE_DBM; in wcn36xx_get_survey() 1321 if (survey->channel == wcn->channel) in wcn36xx_get_survey() 1322 survey->filled |= SURVEY_INFO_IN_USE; in wcn36xx_get_survey() 1328 HW_VALUE_CHANNEL(survey->channel->hw_value), in wcn36xx_get_survey() 1329 chan_survey->rssi, chan_survey->snr, survey->noise, in wcn36xx_get_survey() 1330 survey->filled, survey->channel->center_freq); in wcn36xx_get_survey()
|
/linux-6.1.9/drivers/net/wireless/ath/ath10k/ |
D | hw.c | 549 void ath10k_hw_fill_survey_time(struct ath10k *ar, struct survey_info *survey, in ath10k_hw_fill_survey_time() argument 556 survey->filled |= SURVEY_INFO_TIME | in ath10k_hw_fill_survey_time() 566 survey->filled &= ~SURVEY_INFO_TIME_BUSY; in ath10k_hw_fill_survey_time() 584 survey->time = CCNT_TO_MSEC(ar, cc); in ath10k_hw_fill_survey_time() 585 survey->time_busy = CCNT_TO_MSEC(ar, rcc); in ath10k_hw_fill_survey_time()
|
D | wmi.c | 2700 struct survey_info *survey; in ath10k_wmi_event_chan_info_unpaired() local 2709 if (idx >= ARRAY_SIZE(ar->survey)) { in ath10k_wmi_event_chan_info_unpaired() 2715 survey = &ar->survey[idx]; in ath10k_wmi_event_chan_info_unpaired() 2720 memset(survey, 0, sizeof(*survey)); in ath10k_wmi_event_chan_info_unpaired() 2722 survey->noise = params->noise_floor; in ath10k_wmi_event_chan_info_unpaired() 2723 survey->time = (params->cycle_count / params->mac_clk_mhz) / 1000; in ath10k_wmi_event_chan_info_unpaired() 2724 survey->time_busy = (params->rx_clear_count / params->mac_clk_mhz) / 1000; in ath10k_wmi_event_chan_info_unpaired() 2725 survey->filled |= SURVEY_INFO_NOISE_DBM | SURVEY_INFO_TIME | in ath10k_wmi_event_chan_info_unpaired() 2736 struct survey_info *survey; in ath10k_wmi_event_chan_info_paired() local 2740 if (idx >= ARRAY_SIZE(ar->survey)) { in ath10k_wmi_event_chan_info_paired() [all …]
|
/linux-6.1.9/drivers/net/wireless/quantenna/qtnfmac/ |
D | commands.c | 2328 qtnf_cmd_resp_proc_chan_stat_info(struct survey_info *survey, in qtnf_cmd_resp_proc_chan_stat_info() argument 2371 survey->filled |= SURVEY_INFO_TIME; in qtnf_cmd_resp_proc_chan_stat_info() 2372 survey->time = le64_to_cpu(stats->time_on); in qtnf_cmd_resp_proc_chan_stat_info() 2376 survey->filled |= SURVEY_INFO_TIME_TX; in qtnf_cmd_resp_proc_chan_stat_info() 2377 survey->time_tx = le64_to_cpu(stats->time_tx); in qtnf_cmd_resp_proc_chan_stat_info() 2381 survey->filled |= SURVEY_INFO_TIME_RX; in qtnf_cmd_resp_proc_chan_stat_info() 2382 survey->time_rx = le64_to_cpu(stats->time_rx); in qtnf_cmd_resp_proc_chan_stat_info() 2386 survey->filled |= SURVEY_INFO_TIME_BUSY; in qtnf_cmd_resp_proc_chan_stat_info() 2387 survey->time_busy = le64_to_cpu(stats->cca_busy); in qtnf_cmd_resp_proc_chan_stat_info() 2391 survey->filled |= SURVEY_INFO_TIME_EXT_BUSY; in qtnf_cmd_resp_proc_chan_stat_info() [all …]
|
D | commands.h | 63 struct survey_info *survey);
|
D | cfg80211.c | 745 int idx, struct survey_info *survey) in qtnf_dump_survey() argument 767 survey->channel = chan; in qtnf_dump_survey() 768 survey->filled = 0x0; in qtnf_dump_survey() 771 survey->filled = SURVEY_INFO_IN_USE; in qtnf_dump_survey() 773 ret = qtnf_cmd_get_chan_stats(mac, chan->center_freq, survey); in qtnf_dump_survey()
|
/linux-6.1.9/drivers/net/wireless/ath/carl9170/ |
D | main.c | 1609 struct survey_info *survey) in carl9170_op_get_survey() argument 1644 memcpy(survey, &ar->survey[idx], sizeof(*survey)); in carl9170_op_get_survey() 1646 survey->channel = chan; in carl9170_op_get_survey() 1647 survey->filled = SURVEY_INFO_NOISE_DBM; in carl9170_op_get_survey() 1650 survey->filled |= SURVEY_INFO_IN_USE; in carl9170_op_get_survey() 1653 survey->filled |= SURVEY_INFO_TIME | in carl9170_op_get_survey() 1920 ar->survey = devm_kcalloc(&ar->udev->dev, chans, in carl9170_parse_eeprom() 1922 if (!ar->survey) in carl9170_parse_eeprom()
|
D | cmd.c | 190 info = &ar->survey[ar->channel->hw_value]; in carl9170_collect_tally()
|
/linux-6.1.9/drivers/net/wireless/marvell/libertas_tf/ |
D | main.c | 460 struct survey_info *survey) in lbtf_op_get_survey() argument 468 survey->channel = conf->chandef.chan; in lbtf_op_get_survey() 469 survey->filled = SURVEY_INFO_NOISE_DBM; in lbtf_op_get_survey() 470 survey->noise = priv->noise; in lbtf_op_get_survey()
|
/linux-6.1.9/drivers/net/wireless/marvell/ |
D | mwl8k.c | 302 struct survey_info survey[MWL8K_NUM_CHANS]; member 3107 struct survey_info *survey; in mwl8k_update_survey() local 3115 survey = &priv->survey[idx]; in mwl8k_update_survey() 3119 survey->time_busy = (u64) cca_cnt; in mwl8k_update_survey() 3123 survey->time_rx = (u64) rx_rdy; in mwl8k_update_survey() 3126 survey->time = jiffies_to_msecs(priv->channel_time); in mwl8k_update_survey() 3128 survey->channel = channel; in mwl8k_update_survey() 3133 survey->noise = nf * -1; in mwl8k_update_survey() 3135 survey->filled = SURVEY_INFO_NOISE_DBM | in mwl8k_update_survey() 5405 struct survey_info *survey) in mwl8k_get_survey() argument [all …]
|
/linux-6.1.9/drivers/net/wireless/ti/wl1251/ |
D | main.c | 1330 struct survey_info *survey) in wl1251_op_get_survey() argument 1338 survey->channel = conf->chandef.chan; in wl1251_op_get_survey() 1339 survey->filled = SURVEY_INFO_NOISE_DBM; in wl1251_op_get_survey() 1340 survey->noise = wl->noise; in wl1251_op_get_survey()
|
/linux-6.1.9/drivers/net/wireless/marvell/mwifiex/ |
D | cfg80211.c | 1573 int idx, struct survey_info *survey) in mwifiex_cfg80211_dump_survey() argument 1581 memset(survey, 0, sizeof(struct survey_info)); in mwifiex_cfg80211_dump_survey() 1589 survey->channel = ieee80211_get_channel(wiphy, in mwifiex_cfg80211_dump_survey() 1593 survey->filled = SURVEY_INFO_NOISE_DBM; in mwifiex_cfg80211_dump_survey() 1594 survey->noise = priv->bcn_nf_last; in mwifiex_cfg80211_dump_survey() 1606 survey->channel = ieee80211_get_channel(wiphy, in mwifiex_cfg80211_dump_survey() 1608 survey->filled = SURVEY_INFO_NOISE_DBM | in mwifiex_cfg80211_dump_survey() 1611 survey->noise = pchan_stats[idx].noise; in mwifiex_cfg80211_dump_survey() 1612 survey->time = pchan_stats[idx].cca_scan_dur; in mwifiex_cfg80211_dump_survey() 1613 survey->time_busy = pchan_stats[idx].cca_busy_dur; in mwifiex_cfg80211_dump_survey()
|
/linux-6.1.9/drivers/net/wireless/intel/iwlwifi/mvm/ |
D | mac80211.c | 4900 struct survey_info *survey) in iwl_mvm_mac_get_survey() argument 4905 memset(survey, 0, sizeof(*survey)); in iwl_mvm_mac_get_survey() 4923 survey->filled = SURVEY_INFO_TIME | in iwl_mvm_mac_get_survey() 4927 survey->time = mvm->accu_radio_stats.on_time_rf + in iwl_mvm_mac_get_survey() 4929 do_div(survey->time, USEC_PER_MSEC); in iwl_mvm_mac_get_survey() 4931 survey->time_rx = mvm->accu_radio_stats.rx_time + in iwl_mvm_mac_get_survey() 4933 do_div(survey->time_rx, USEC_PER_MSEC); in iwl_mvm_mac_get_survey() 4935 survey->time_tx = mvm->accu_radio_stats.tx_time + in iwl_mvm_mac_get_survey() 4937 do_div(survey->time_tx, USEC_PER_MSEC); in iwl_mvm_mac_get_survey() 4939 survey->time_scan = mvm->accu_radio_stats.on_time_scan + in iwl_mvm_mac_get_survey() [all …]
|
/linux-6.1.9/drivers/net/wireless/ralink/rt2x00/ |
D | rt2800lib.h | 265 struct survey_info *survey);
|
/linux-6.1.9/drivers/net/wireless/ath/ath11k/ |
D | wmi.c | 7279 struct survey_info *survey; in ath11k_chan_info_event() local 7322 if (idx >= ARRAY_SIZE(ar->survey)) { in ath11k_chan_info_event() 7335 survey = &ar->survey[idx]; in ath11k_chan_info_event() 7336 memset(survey, 0, sizeof(*survey)); in ath11k_chan_info_event() 7337 survey->noise = ch_info_ev.noise_floor; in ath11k_chan_info_event() 7338 survey->filled = SURVEY_INFO_NOISE_DBM | SURVEY_INFO_TIME | in ath11k_chan_info_event() 7340 survey->time = div_u64(ch_info_ev.cycle_count, cc_freq_hz); in ath11k_chan_info_event() 7341 survey->time_busy = div_u64(ch_info_ev.rx_clear_count, cc_freq_hz); in ath11k_chan_info_event() 7352 struct survey_info *survey; in ath11k_pdev_bss_chan_info_event() local 7396 if (idx >= ARRAY_SIZE(ar->survey)) { in ath11k_pdev_bss_chan_info_event() [all …]
|