Home
last modified time | relevance | path

Searched refs:kbps (Results 1 – 17 of 17) sorted by relevance

/drivers/gpu/drm/amd/display/dc/dsc/
A Ddc_dsc.c64 uint32_t total_kbps = kbps; in apply_128b_132b_stream_overhead()
67 return kbps; in apply_128b_132b_stream_overhead()
73 bpp = dc_fixpt_from_int(kbps); in apply_128b_132b_stream_overhead()
98 uint32_t kbps; in dc_bandwidth_in_kbps_from_timing() local
131 kbps = timing->pix_clk_100hz / 10; in dc_bandwidth_in_kbps_from_timing()
132 kbps *= bits_per_channel; in dc_bandwidth_in_kbps_from_timing()
136 kbps *= 3; in dc_bandwidth_in_kbps_from_timing()
138 kbps /= 2; in dc_bandwidth_in_kbps_from_timing()
140 kbps = kbps * 2 / 3; in dc_bandwidth_in_kbps_from_timing()
144 kbps = apply_128b_132b_stream_overhead(timing, kbps); in dc_bandwidth_in_kbps_from_timing()
[all …]
/drivers/gpu/drm/amd/display/amdgpu_dm/
A Damdgpu_dm_mst_types.c859 static int kbps_to_peak_pbn(int kbps, uint16_t fec_overhead_multiplier_x1000) in kbps_to_peak_pbn() argument
861 u64 peak_kbps = kbps; in kbps_to_peak_pbn()
929 u64 kbps; in bpp_x16_from_pbn() local
937 kbps = div_u64((u64)pbn * 994 * 8 * 54, 64); in bpp_x16_from_pbn()
942 (int) kbps, param.timing, in bpp_x16_from_pbn()
1728 uint64_t kbps = (uint64_t)pbn; in kbps_from_pbn() local
1730 kbps *= (1000000 / PEAK_FACTOR_X1000); in kbps_from_pbn()
1731 kbps *= 8; in kbps_from_pbn()
1732 kbps *= 54; in kbps_from_pbn()
1733 kbps /= 64; in kbps_from_pbn()
[all …]
/drivers/net/wireless/ath/wil6210/
A Dwil_platform.h37 int (*bus_request)(void *handle, uint32_t kbps /* KBytes/Sec */);
A Dmain.c775 void wil6210_bus_request(struct wil6210_priv *wil, u32 kbps) in wil6210_bus_request() argument
778 wil->bus_request_kbps = kbps; in wil6210_bus_request()
779 wil->platform_ops.bus_request(wil->platform_handle, kbps); in wil6210_bus_request()
A Dwil6210.h1351 void wil6210_bus_request(struct wil6210_priv *wil, u32 kbps);
/drivers/soc/qcom/
A Dicc-bwmon.c548 unsigned int kbps) in bwmon_kbps_to_count() argument
550 return kbps / bwmon->data->count_unit_kb; in bwmon_kbps_to_count()
554 struct regmap_field *reg, unsigned int kbps) in bwmon_set_threshold() argument
558 thres = mult_frac(bwmon_kbps_to_count(bwmon, kbps), in bwmon_set_threshold()
/drivers/gpu/drm/amd/display/dc/link/
A Dlink_dpms.c1129 static struct fixed31_32 get_pbn_from_bw_in_kbps(uint64_t kbps) in get_pbn_from_bw_in_kbps() argument
1151 kbps *= numerator; in get_pbn_from_bw_in_kbps()
1152 peak_kbps = dc_fixpt_from_fraction(kbps, denominator); in get_pbn_from_bw_in_kbps()
1159 uint64_t kbps; in get_pbn_from_timing() local
1167 kbps = dc_bandwidth_in_kbps_from_timing(&pipe_ctx->stream->timing, link_encoding); in get_pbn_from_timing()
1168 return get_pbn_from_bw_in_kbps(kbps); in get_pbn_from_timing()
/drivers/net/ethernet/chelsio/cxgb4/
A Dcudbg_entity.h46 u32 kbps[NTX_SCHED]; member
A Dt4_hw.c10285 unsigned int *kbps, unsigned int *ipg, bool sleep_ok) in t4_get_tx_sched() argument
10289 if (kbps) { in t4_get_tx_sched()
10297 *kbps = 0; /* scheduler disabled */ in t4_get_tx_sched()
10300 *kbps = (v * bpt) / 125; in t4_get_tx_sched()
A Dcxgb4.h2064 unsigned int *kbps, unsigned int *ipg, bool sleep_ok);
A Dcudbg_lib.c1651 t4_get_tx_sched(padap, i, &hw_sched_buff->kbps[i], in cudbg_collect_hw_sched()
/drivers/net/ethernet/chelsio/cxgb3/
A Dt3_hw.c2972 int t3_config_sched(struct adapter *adap, unsigned int kbps, int sched) in t3_config_sched() argument
2978 if (kbps > 0) { in t3_config_sched()
2979 kbps *= 125; /* -> bytes */ in t3_config_sched()
2982 bpt = (kbps + tps / 2) / tps; in t3_config_sched()
2985 delta = v >= kbps ? v - kbps : kbps - v; in t3_config_sched()
A Dcommon.h730 int t3_config_sched(struct adapter *adap, unsigned int kbps, int sched);
/drivers/net/wireless/ath/ath9k/
A Dhw.c168 u8 phy, int kbps, in ath9k_hw_computetxtime() argument
174 if (kbps == 0) in ath9k_hw_computetxtime()
183 txTime = CCK_SIFS_TIME + phyTime + ((numBits * 1000) / kbps); in ath9k_hw_computetxtime()
188 ((kbps >> 2) * OFDM_SYMBOL_TIME_QUARTER) / 1000; in ath9k_hw_computetxtime()
197 ((kbps >> 1) * OFDM_SYMBOL_TIME_HALF) / 1000; in ath9k_hw_computetxtime()
204 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME) / 1000; in ath9k_hw_computetxtime()
A Dhw.h1052 u8 phy, int kbps,
/drivers/tty/serial/8250/
A DKconfig342 would like to use its >115kbps speeds.
/drivers/tty/serial/
A DKconfig691 Support for the LPC32XX high speed serial ports (up to 900kbps).

Completed in 846 milliseconds