Home
last modified time | relevance | path

Searched full:rates (Results 1 – 25 of 1708) sorted by relevance

12345678910>>...69

/Linux-v5.10/drivers/net/wireless/broadcom/b43/
Dppr.c71 struct b43_ppr_rates *rates = &ppr->rates; in b43_ppr_load_max_from_sprom() local
121 rates->cck[i] = maxpwr - off; in b43_ppr_load_max_from_sprom()
128 rates->ofdm[i] = maxpwr - off; in b43_ppr_load_max_from_sprom()
132 rates->mcs_20[0] = rates->ofdm[0]; in b43_ppr_load_max_from_sprom()
133 rates->mcs_20[1] = rates->ofdm[2]; in b43_ppr_load_max_from_sprom()
134 rates->mcs_20[2] = rates->ofdm[3]; in b43_ppr_load_max_from_sprom()
135 rates->mcs_20[3] = rates->ofdm[4]; in b43_ppr_load_max_from_sprom()
136 rates->mcs_20[4] = rates->ofdm[5]; in b43_ppr_load_max_from_sprom()
137 rates->mcs_20[5] = rates->ofdm[6]; in b43_ppr_load_max_from_sprom()
138 rates->mcs_20[6] = rates->ofdm[7]; in b43_ppr_load_max_from_sprom()
[all …]
Dxmit.c260 struct ieee80211_tx_rate *rates; in b43_generate_txhdr() local
374 if (info->control.rates[0].flags & IEEE80211_TX_RC_USE_SHORT_PREAMBLE) in b43_generate_txhdr()
397 rates = info->control.rates; in b43_generate_txhdr()
409 /* Overwrite rates[0].count to make the retry calculation in b43_generate_txhdr()
413 if ((rates[0].flags & IEEE80211_TX_RC_USE_RTS_CTS) || in b43_generate_txhdr()
414 (rates[0].count <= dev->wl->hw->conf.long_frame_max_tx_count)) { in b43_generate_txhdr()
415 rates[0].count = dev->wl->hw->conf.long_frame_max_tx_count; in b43_generate_txhdr()
418 rates[0].count = dev->wl->hw->conf.short_frame_max_tx_count; in b43_generate_txhdr()
422 if ((rates[0].flags & IEEE80211_TX_RC_USE_RTS_CTS) || in b43_generate_txhdr()
423 (rates[0].flags & IEEE80211_TX_RC_USE_CTS_PROTECT)) { in b43_generate_txhdr()
[all …]
/Linux-v5.10/net/mac80211/
Drate.c292 "no overlap between basic rates (0x%x) and user mask (0x%x on band %d) - clearing the latter", in ieee80211_check_rate_mask()
325 return; /* assume basic rates unknown and accept rate */ in rc_send_low_basicrate()
352 info->control.rates[0].flags |= IEEE80211_TX_RC_S1G_MCS; in __rate_control_send_low()
353 info->control.rates[0].idx = 0; in __rate_control_send_low()
361 info->control.rates[0].idx = 0; in __rate_control_send_low()
372 info->control.rates[0].idx = i; in __rate_control_send_low()
376 "no supported rates for sta %pM (0x%x, band %d) in rate_mask 0x%x with flags 0x%x\n", in __rate_control_send_low()
382 info->control.rates[0].count = in __rate_control_send_low()
406 info->control.rates[0].idx = mcast_rate - 1; in rate_control_send_low()
417 rc_send_low_basicrate(&info->control.rates[0], in rate_control_send_low()
[all …]
Drc80211_minstrel_ht.c174 "Use only VHT rates when VHT is supported by sta.");
177 * To enable sufficiently targeted rate sampling, MCS rates are divided into
326 return &mi->groups[group].rates[idx]; in minstrel_ht_get_stats()
332 return &mi->groups[index / MCS_GROUP_RATES].rates[index % MCS_GROUP_RATES]; in minstrel_get_ratestats()
377 * Find & sort topmost throughput rates
379 * If multiple rates provide equal throughput the sorting is based on their
381 * MCS groups, CCK rates do not provide aggregation and are therefore at last.
393 cur_prob = mi->groups[cur_group].rates[cur_idx].prob_avg; in minstrel_ht_sort_best_tp_rates()
399 tmp_prob = mi->groups[tmp_group].rates[tmp_idx].prob_avg; in minstrel_ht_sort_best_tp_rates()
432 mrs = &mg->rates[index % MCS_GROUP_RATES]; in minstrel_ht_set_best_prob_rate()
[all …]
Dstatus.c259 else if (info->status.rates[0].idx >= 0 && in ieee80211_tx_radiotap_len()
260 !(info->status.rates[0].flags & in ieee80211_tx_radiotap_len()
279 } else if (info->status.rates[0].idx >= 0) { in ieee80211_tx_radiotap_len()
280 if (info->status.rates[0].flags & IEEE80211_TX_RC_MCS) in ieee80211_tx_radiotap_len()
282 else if (info->status.rates[0].flags & IEEE80211_TX_RC_VHT_MCS) in ieee80211_tx_radiotap_len()
327 } else if (info->status.rates[0].idx >= 0 && in ieee80211_add_tx_radiotap_header()
328 !(info->status.rates[0].flags & (IEEE80211_TX_RC_MCS | in ieee80211_add_tx_radiotap_header()
331 sband->bitrates[info->status.rates[0].idx].bitrate; in ieee80211_add_tx_radiotap_header()
346 if (info->status.rates[0].flags & IEEE80211_TX_RC_USE_CTS_PROTECT) in ieee80211_add_tx_radiotap_header()
348 if (info->status.rates[0].flags & IEEE80211_TX_RC_USE_RTS_CTS) in ieee80211_add_tx_radiotap_header()
[all …]
/Linux-v5.10/drivers/staging/wfx/
Ddata_tx.c47 struct ieee80211_tx_rate *rates) in wfx_tx_policy_build() argument
53 WARN(rates[0].idx < 0, "invalid rate policy"); in wfx_tx_policy_build()
56 if (rates[i].idx < 0) in wfx_tx_policy_build()
58 WARN_ON(rates[i].count > 15); in wfx_tx_policy_build()
59 rateid = wfx_get_hw_rate(wdev, &rates[i]); in wfx_tx_policy_build()
60 // Pack two values in each byte of policy->rates in wfx_tx_policy_build()
61 count = rates[i].count; in wfx_tx_policy_build()
64 policy->rates[rateid / 2] |= count; in wfx_tx_policy_build()
71 return !memcmp(a->rates, b->rates, sizeof(a->rates)); in tx_policy_is_equal()
106 struct ieee80211_tx_rate *rates, bool *renew) in wfx_tx_policy_get() argument
[all …]
/Linux-v5.10/drivers/net/wireless/st/cw1200/
Dtxrx.c67 struct ieee80211_tx_rate *rates, size_t count) in tx_policy_build() argument
72 BUG_ON(rates[0].idx < 0); in tx_policy_build()
75 /* Sort rates in descending order. */ in tx_policy_build()
77 if (rates[i].idx < 0) { in tx_policy_build()
81 if (rates[i].idx > rates[i - 1].idx) { in tx_policy_build()
82 struct ieee80211_tx_rate tmp = rates[i - 1]; in tx_policy_build()
83 rates[i - 1] = rates[i]; in tx_policy_build()
84 rates[i] = tmp; in tx_policy_build()
89 total = rates[0].count; in tx_policy_build()
91 if (rates[j].idx == rates[i].idx) { in tx_policy_build()
[all …]
/Linux-v5.10/drivers/clk/sunxi-ng/
Dccu_frac.c59 return (cf->rates[0] == rate) || (cf->rates[1] == rate); in ccu_frac_helper_has_rate()
72 pr_debug("%s: clock is fractional (rates %lu and %lu)\n", in ccu_frac_helper_read_rate()
73 clk_hw_get_name(&common->hw), cf->rates[0], cf->rates[1]); in ccu_frac_helper_read_rate()
80 return (reg & cf->select) ? cf->rates[1] : cf->rates[0]; in ccu_frac_helper_read_rate()
93 if (cf->rates[0] == rate) in ccu_frac_helper_set_rate()
95 else if (cf->rates[1] == rate) in ccu_frac_helper_set_rate()
/Linux-v5.10/drivers/soundwire/
Dgeneric_bandwidth_allocation.c28 unsigned int *rates; member
170 int *rates, int count) in sdw_compute_group_params() argument
179 params[i].rate = rates[i]; in sdw_compute_group_params()
215 if (rate == group->rates[i]) in sdw_add_element_group_count()
222 unsigned int *rates; in sdw_add_element_group_count() local
225 rates = krealloc(group->rates, in sdw_add_element_group_count()
228 if (!rates) in sdw_add_element_group_count()
230 group->rates = rates; in sdw_add_element_group_count()
233 group->rates[group->count++] = rate; in sdw_add_element_group_count()
248 group->rates = kcalloc(group->max_size, sizeof(int), GFP_KERNEL); in sdw_get_group_count()
[all …]
/Linux-v5.10/drivers/net/wireless/marvell/mwifiex/
Dcfp.c95 /* AC rates */
193 * This function maps an index in supported rates table into
238 /* 11n non-HT rates */ in mwifiex_index_to_acs_data_rate()
247 /* This function maps an index in supported rates table into
293 * This function returns the current active data rates.
297 u32 mwifiex_get_active_data_rates(struct mwifiex_private *priv, u8 *rates) in mwifiex_get_active_data_rates() argument
300 return mwifiex_get_supported_rates(priv, rates); in mwifiex_get_active_data_rates()
302 return mwifiex_copy_rates(rates, 0, in mwifiex_get_active_data_rates()
387 /* This function gets the supported data rates from bitmask inside
391 u8 *rates, u8 radio_type) in mwifiex_get_rates_from_cfg80211() argument
[all …]
/Linux-v5.10/sound/usb/
Dformat.c163 fp->rates = rate_bits; in set_fixed_rate()
169 * parse the format descriptor and stores the possible sample rates
226 fp->rates |= snd_pcm_rate_to_rate_bit(rate); in parse_audio_format_rates_v1()
230 hwc_debug("All rates were zero. Skipping format!\n"); in parse_audio_format_rates_v1()
234 /* continuous rates */ in parse_audio_format_rates_v1()
235 fp->rates = SNDRV_PCM_RATE_CONTINUOUS; in parse_audio_format_rates_v1()
253 * rates per altsetting but reports the full set each time.
254 * If we don't filter out the unsupported rates and attempt
258 * The list of supported rates per altsetting (set of available
281 * Many Focusrite devices supports a limited set of sampling rates per
[all …]
/Linux-v5.10/drivers/gpu/drm/tegra/
Ddp.c54 link->rates[i] = 0; in drm_dp_link_reset()
60 * drm_dp_link_add_rate() - add a rate to the list of supported rates
64 * Add a link rate to the list of supported link rates.
68 * - ENOSPC if the maximum number of supported rates has been reached
82 if (rate <= link->rates[pivot]) in drm_dp_link_add_rate()
85 if (pivot != link->num_rates && rate == link->rates[pivot]) in drm_dp_link_add_rate()
89 link->rates[i] = link->rates[i - 1]; in drm_dp_link_add_rate()
91 link->rates[pivot] = rate; in drm_dp_link_add_rate()
98 * drm_dp_link_remove_rate() - remove a rate from the list of supported rates
102 * Removes a link rate from the list of supported link rates.
[all …]
/Linux-v5.10/drivers/net/wireless/intersil/orinoco/
Dscan.c27 static int symbol_build_supp_rates(u8 *buf, const __le16 *rates) in symbol_build_supp_rates() argument
34 rate = le16_to_cpu(rates[i]); in symbol_build_supp_rates()
45 static int prism_build_supp_rates(u8 *buf, const u8 *rates) in prism_build_supp_rates() argument
52 if (rates[i] == 0x0) in prism_build_supp_rates()
54 buf[i + 2] = rates[i]; in prism_build_supp_rates()
58 /* We might still have another 2 rates, which need to go in in prism_build_supp_rates()
59 * extended supported rates */ in prism_build_supp_rates()
60 if (i == 8 && rates[i] > 0) { in prism_build_supp_rates()
64 if (rates[i] == 0x0) in prism_build_supp_rates()
66 buf[i + 2] = rates[i]; in prism_build_supp_rates()
[all …]
/Linux-v5.10/drivers/net/wireless/ath/ath9k/
Dar9002_mac.c238 WRITE_ONCE(ads->ds_ctl2, set11nTries(i->rates, 0) in ar9002_set_txdesc()
239 | set11nTries(i->rates, 1) in ar9002_set_txdesc()
240 | set11nTries(i->rates, 2) in ar9002_set_txdesc()
241 | set11nTries(i->rates, 3) in ar9002_set_txdesc()
245 WRITE_ONCE(ads->ds_ctl3, set11nRate(i->rates, 0) in ar9002_set_txdesc()
246 | set11nRate(i->rates, 1) in ar9002_set_txdesc()
247 | set11nRate(i->rates, 2) in ar9002_set_txdesc()
248 | set11nRate(i->rates, 3)); in ar9002_set_txdesc()
298 WRITE_ONCE(ads->ds_ctl4, set11nPktDurRTSCTS(i->rates, 0) in ar9002_set_txdesc()
299 | set11nPktDurRTSCTS(i->rates, 1)); in ar9002_set_txdesc()
[all …]
Dxmit.c160 ieee80211_get_tx_rates(vif, sta, bf->bf_mpdu, bf->rates, in ath_set_rates()
161 ARRAY_SIZE(bf->rates)); in ath_set_rates()
455 struct ieee80211_tx_rate rates[4]; in ath_tx_complete_aggr() local
465 memcpy(rates, bf->rates, sizeof(rates)); in ath_tx_complete_aggr()
469 retries += rates[i].count; in ath_tx_complete_aggr()
579 memcpy(tx_info->control.rates, rates, sizeof(rates)); in ath_tx_complete_aggr()
675 airtime += rate_dur * bf->rates[i].count; in ath_tx_count_airtime()
716 memcpy(info->control.rates, bf->rates, in ath_tx_process_buffer()
717 sizeof(info->control.rates)); in ath_tx_process_buffer()
734 struct ieee80211_tx_rate *rates; in ath_lookup_legacy() local
[all …]
/Linux-v5.10/drivers/net/wireless/mediatek/mt76/mt7603/
Dmac.c703 struct ieee80211_tx_rate *rates) in mt7603_wtbl_set_rates() argument
721 rates[i] = rates[n_rates - 1]; in mt7603_wtbl_set_rates()
724 memcpy(sta->rateset[rateset].rates, rates, in mt7603_wtbl_set_rates()
725 sizeof(sta->rateset[rateset].rates)); in mt7603_wtbl_set_rates()
731 ref = &sta->rateset[rateset].rates[0]; in mt7603_wtbl_set_rates()
734 rates = sta->rateset[rateset].rates; in mt7603_wtbl_set_rates()
735 for (i = 0; i < ARRAY_SIZE(sta->rateset[rateset].rates); i++) { in mt7603_wtbl_set_rates()
743 if ((ref->flags ^ rates[i].flags) & IEEE80211_TX_RC_SHORT_GI) in mt7603_wtbl_set_rates()
744 rates[i].flags ^= IEEE80211_TX_RC_SHORT_GI; in mt7603_wtbl_set_rates()
747 if (rates[i].idx != rates[k].idx) in mt7603_wtbl_set_rates()
[all …]
/Linux-v5.10/sound/soc/intel/skylake/
Dskl-pcm.c42 .rates = SNDRV_PCM_RATE_48000 | SNDRV_PCM_RATE_16000 |
692 .rates = SNDRV_PCM_RATE_48000 | SNDRV_PCM_RATE_16000 | SNDRV_PCM_RATE_8000,
701 .rates = SNDRV_PCM_RATE_48000 | SNDRV_PCM_RATE_16000,
713 .rates = SNDRV_PCM_RATE_48000 | SNDRV_PCM_RATE_16000 |
726 .rates = SNDRV_PCM_RATE_48000 | SNDRV_PCM_RATE_16000 |
739 .rates = SNDRV_PCM_RATE_48000 | SNDRV_PCM_RATE_16000,
751 .rates = SNDRV_PCM_RATE_48000,
763 .rates = SNDRV_PCM_RATE_48000,
775 .rates = SNDRV_PCM_RATE_48000 | SNDRV_PCM_RATE_16000,
787 .rates = SNDRV_PCM_RATE_32000 | SNDRV_PCM_RATE_44100 |
[all …]
/Linux-v5.10/drivers/clk/pistachio/
Dclk-pll.c74 struct pistachio_pll_rate_table *rates; member
135 if (pll->rates[i].fref == fref && pll->rates[i].fout == fout) in pll_get_params()
136 return &pll->rates[i]; in pll_get_params()
149 if (i > 0 && pll->rates[i].fref == *parent_rate && in pll_round_rate()
150 pll->rates[i].fout <= rate) in pll_round_rate()
151 return pll->rates[i - 1].fout; in pll_round_rate()
154 return pll->rates[0].fout; in pll_round_rate()
449 struct pistachio_pll_rate_table *rates, in pll_register() argument
467 if (rates) in pll_register()
473 if (rates) in pll_register()
[all …]
/Linux-v5.10/drivers/net/wireless/ti/wl1251/
Dwl12xx_80211.h7 /* RATES */
85 u8 rates[MAX_SUPPORTED_RATES]; member
114 struct wl12xx_ie_rates rates; member
139 struct wl12xx_ie_rates rates; member
150 struct wl12xx_ie_rates rates; member
/Linux-v5.10/sound/pci/ac97/
Dac97_pcm.c31 /* standard rates */
82 /* double rates */
396 unsigned int rates = ~0; in get_rates() local
411 rates &= pcm->r[dbl].codec[cidx]->rates[idx]; in get_rates()
414 rates &= ~(SNDRV_PCM_RATE_64000 | SNDRV_PCM_RATE_88200 | in get_rates()
416 return rates; in get_rates()
442 unsigned int rates; in snd_ac97_pcm_assign() local
478 rpcm->rates = ~0; in snd_ac97_pcm_assign()
483 rates = ~0; in snd_ac97_pcm_assign()
504 rates = SNDRV_PCM_RATE_48000; in snd_ac97_pcm_assign()
[all …]
/Linux-v5.10/sound/soc/uniphier/
Daio-ld11.c224 .rates = SNDRV_PCM_RATE_48000,
231 .rates = SNDRV_PCM_RATE_48000 |
246 .rates = SNDRV_PCM_RATE_48000,
259 .rates = SNDRV_PCM_RATE_48000,
266 .rates = SNDRV_PCM_RATE_48000,
279 .rates = SNDRV_PCM_RATE_48000,
292 .rates = SNDRV_PCM_RATE_48000,
305 .rates = SNDRV_PCM_RATE_48000,
318 .rates = SNDRV_PCM_RATE_48000 |
333 .rates = SNDRV_PCM_RATE_48000 |
/Linux-v5.10/Documentation/devicetree/bindings/serial/
Dnvidia,tegra20-hsuart.txt27 - nvidia,adjust-baud-rates: List of entries providing percentage of baud rate
46 Tx baud rate observed. To do this we use nvidia,adjust-baud-rates
48 As an example, consider there is deviation observed in Tx for baud rates as
56 nvidia,adjust-baud-rates = <0 9600 100>,
72 nvidia,adjust-baud-rates = <1000000 4000000 136>; /* 1.36% shift */
/Linux-v5.10/arch/mips/lantiq/
Dclk.c84 if (clk->rates && *clk->rates) { in clk_set_rate()
85 unsigned long *r = clk->rates; in clk_set_rate()
104 if (clk->rates && *clk->rates) { in clk_round_rate()
105 unsigned long *r = clk->rates; in clk_round_rate()
/Linux-v5.10/drivers/net/wireless/broadcom/brcm80211/brcmsmac/
Drate.c43 /* rates are in units of Kbps */
188 /* Hardware rates (also encodes default basic rates) */
282 /* error if no basic rates */ in brcms_c_rateset_valid()
284 if (rs->rates[idx] & BRCMS_RATE_FLAG) in brcms_c_rateset_valid()
316 r = (int)rs->rates[i] & BRCMS_RATE_MASK; in brcms_c_rate_hwrs_filter_sort_validate()
319 rateset[r] = rs->rates[i]; /* preserve basic bit! */ in brcms_c_rate_hwrs_filter_sort_validate()
322 /* fill out the rates in order, looking at only supported rates */ in brcms_c_rate_hwrs_filter_sort_validate()
325 r = hw_rs->rates[i] & BRCMS_RATE_MASK; in brcms_c_rate_hwrs_filter_sort_validate()
327 rs->rates[count++] = rateset[r]; in brcms_c_rate_hwrs_filter_sort_validate()
400 * 'basic_only' means only copy basic rates.
[all …]
/Linux-v5.10/drivers/usb/serial/
Dir-usb.c200 int rates; in ir_startup() local
209 rates = le16_to_cpu(irda_desc->wBaudRate); in ir_startup()
212 "%s - Baud rates supported:%s%s%s%s%s%s%s%s%s\n", in ir_startup()
214 (rates & USB_IRDA_BR_2400) ? " 2400" : "", in ir_startup()
215 (rates & USB_IRDA_BR_9600) ? " 9600" : "", in ir_startup()
216 (rates & USB_IRDA_BR_19200) ? " 19200" : "", in ir_startup()
217 (rates & USB_IRDA_BR_38400) ? " 38400" : "", in ir_startup()
218 (rates & USB_IRDA_BR_57600) ? " 57600" : "", in ir_startup()
219 (rates & USB_IRDA_BR_115200) ? " 115200" : "", in ir_startup()
220 (rates & USB_IRDA_BR_576000) ? " 576000" : "", in ir_startup()
[all …]

12345678910>>...69