/Linux-v5.15/drivers/net/wireless/broadcom/b43/ |
D | ppr.c | 71 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 …]
|
D | xmit.c | 260 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.15/net/mac80211/ |
D | rate.c | 292 "no overlap between basic rates (0x%x) and user mask (0x%x on band %d) - clearing the latter", in ieee80211_check_rate_mask() 321 return; /* assume basic rates unknown and accept rate */ in rc_send_low_basicrate() 348 info->control.rates[0].flags |= IEEE80211_TX_RC_S1G_MCS; in __rate_control_send_low() 349 info->control.rates[0].idx = 0; in __rate_control_send_low() 357 info->control.rates[0].idx = 0; in __rate_control_send_low() 368 info->control.rates[0].idx = i; in __rate_control_send_low() 372 "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() 378 info->control.rates[0].count = in __rate_control_send_low() 402 info->control.rates[0].idx = mcast_rate - 1; in rate_control_send_low() 413 rc_send_low_basicrate(&info->control.rates[0], in rate_control_send_low() [all …]
|
D | rc80211_minstrel_ht.c | 201 "Use only VHT rates when VHT is supported by sta."); 204 * To enable sufficiently targeted rate sampling, MCS rates are divided into 384 return &mi->groups[group].rates[idx]; in minstrel_ht_get_stats() 390 return &mi->groups[MI_RATE_GROUP(index)].rates[MI_RATE_IDX(index)]; in minstrel_get_ratestats() 462 * Find & sort topmost throughput rates 464 * If multiple rates provide equal throughput the sorting is based on their 466 * MCS groups, CCK rates do not provide aggregation and are therefore at last. 478 cur_prob = mi->groups[cur_group].rates[cur_idx].prob_avg; in minstrel_ht_sort_best_tp_rates() 484 tmp_prob = mi->groups[tmp_group].rates[tmp_idx].prob_avg; in minstrel_ht_sort_best_tp_rates() 518 mrs = &mg->rates[cur_idx]; in minstrel_ht_set_best_prob_rate() [all …]
|
D | status.c | 259 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.15/drivers/staging/wfx/ |
D | data_tx.c | 47 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.15/drivers/net/wireless/st/cw1200/ |
D | txrx.c | 67 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.15/drivers/clk/sunxi-ng/ |
D | ccu_frac.c | 59 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.15/drivers/soundwire/ |
D | generic_bandwidth_allocation.c | 28 unsigned int *rates; member 169 int *rates, int count) in sdw_compute_group_params() argument 178 params[i].rate = rates[i]; in sdw_compute_group_params() 214 if (rate == group->rates[i]) in sdw_add_element_group_count() 221 unsigned int *rates; in sdw_add_element_group_count() local 224 rates = krealloc(group->rates, in sdw_add_element_group_count() 227 if (!rates) in sdw_add_element_group_count() 229 group->rates = rates; in sdw_add_element_group_count() 232 group->rates[group->count++] = rate; in sdw_add_element_group_count() 247 group->rates = kcalloc(group->max_size, sizeof(int), GFP_KERNEL); in sdw_get_group_count() [all …]
|
/Linux-v5.15/drivers/net/wireless/marvell/mwifiex/ |
D | cfp.c | 95 /* 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.15/Documentation/devicetree/bindings/net/wireless/ |
D | mediatek,mt76.yaml | 112 rates-cck: 119 rates-ofdm: 126 rates-mcs: 130 rates for multiple channel bandwidth settings. 140 rates-ru: 143 Sets of per-rate power limit values for 802.11ax rates 187 rates-ofdm = /bits/ 8 <23 23 23 23 23 23 23 23>; 188 rates-mcs = /bits/ 8 <1 23 23 23 23 23 23 23 23 23 23>, 190 rates-ru = /bits/ 8 <3 22 22 22 22 22 22 22 22 22 22 22 22>, 195 rates-ofdm = /bits/ 8 <14 14 14 14 14 14 14 14>; [all …]
|
/Linux-v5.15/drivers/gpu/drm/tegra/ |
D | dp.c | 54 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.15/drivers/net/wireless/intersil/orinoco/ |
D | scan.c | 27 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.15/sound/usb/ |
D | format.c | 164 fp->rates = rate_bits; in set_fixed_rate() 169 /* set up rate_min, rate_max and rates from the rate table */ 177 fp->rates = 0; in set_rate_table_min_max() 182 fp->rates |= snd_pcm_rate_to_rate_bit(rate); in set_rate_table_min_max() 187 * parse the format descriptor and stores the possible sample rates 244 "%u:%d: All rates were zero\n", in parse_audio_format_rates_v1() 250 /* continuous rates */ in parse_audio_format_rates_v1() 251 fp->rates = SNDRV_PCM_RATE_CONTINUOUS; in parse_audio_format_rates_v1() 269 * rates per altsetting but reports the full set each time. 270 * If we don't filter out the unsupported rates and attempt [all …]
|
/Linux-v5.15/drivers/net/wireless/ath/ath9k/ |
D | ar9002_mac.c | 238 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 …]
|
D | xmit.c | 160 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.15/sound/soc/intel/skylake/ |
D | skl-pcm.c | 42 .rates = SNDRV_PCM_RATE_48000 | SNDRV_PCM_RATE_16000 | 691 .rates = SNDRV_PCM_RATE_48000 | SNDRV_PCM_RATE_16000 | SNDRV_PCM_RATE_8000, 700 .rates = SNDRV_PCM_RATE_48000 | SNDRV_PCM_RATE_16000, 712 .rates = SNDRV_PCM_RATE_48000 | SNDRV_PCM_RATE_16000 | 725 .rates = SNDRV_PCM_RATE_48000 | SNDRV_PCM_RATE_16000 | 738 .rates = SNDRV_PCM_RATE_48000 | SNDRV_PCM_RATE_16000, 750 .rates = SNDRV_PCM_RATE_48000, 762 .rates = SNDRV_PCM_RATE_48000, 774 .rates = SNDRV_PCM_RATE_48000 | SNDRV_PCM_RATE_16000, 786 .rates = SNDRV_PCM_RATE_32000 | SNDRV_PCM_RATE_44100 | [all …]
|
/Linux-v5.15/drivers/net/wireless/mediatek/mt76/mt7603/ |
D | mac.c | 719 struct ieee80211_tx_rate *rates) in mt7603_wtbl_set_rates() argument 737 rates[i] = rates[n_rates - 1]; in mt7603_wtbl_set_rates() 740 memcpy(sta->rateset[rateset].rates, rates, in mt7603_wtbl_set_rates() 741 sizeof(sta->rateset[rateset].rates)); in mt7603_wtbl_set_rates() 747 ref = &sta->rateset[rateset].rates[0]; in mt7603_wtbl_set_rates() 750 rates = sta->rateset[rateset].rates; in mt7603_wtbl_set_rates() 751 for (i = 0; i < ARRAY_SIZE(sta->rateset[rateset].rates); i++) { in mt7603_wtbl_set_rates() 759 if ((ref->flags ^ rates[i].flags) & IEEE80211_TX_RC_SHORT_GI) in mt7603_wtbl_set_rates() 760 rates[i].flags ^= IEEE80211_TX_RC_SHORT_GI; in mt7603_wtbl_set_rates() 763 if (rates[i].idx != rates[k].idx) in mt7603_wtbl_set_rates() [all …]
|
/Linux-v5.15/drivers/clk/pistachio/ |
D | clk-pll.c | 74 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.15/drivers/staging/r8188eu/include/ |
D | ieee80211_ext.h | 177 /* followed by SSID and Supported rates */ 184 /* followed by Supported rates */ 191 /* followed by SSID and Supported rates */ 201 /* followed by some of SSID, Supported rates, 206 /* only variable items: SSID, Supported rates */ 213 /* followed by some of SSID, Supported rates, 252 * code, AID and supported rates, 253 * and directly by supported rates in
|
/Linux-v5.15/drivers/net/wireless/ti/wl1251/ |
D | wl12xx_80211.h | 7 /* 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.15/sound/pci/ac97/ |
D | ac97_pcm.c | 31 /* 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.15/sound/soc/uniphier/ |
D | aio-ld11.c | 224 .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.15/Documentation/devicetree/bindings/serial/ |
D | nvidia,tegra20-hsuart.txt | 27 - 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.15/drivers/net/wireless/broadcom/brcm80211/brcmsmac/ |
D | rate.c | 43 /* 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 …]
|