Home
last modified time | relevance | path

Searched refs:max_cap (Results 1 – 9 of 9) sorted by relevance

/linux/drivers/soc/qcom/
H A Dllcc-qcom.c84 * @max_cap: The maximum capacity of the cache slice provided in KB
124 u32 max_cap; member
189 .max_cap = 768,
205 .max_cap = 256,
221 .max_cap = 2048,
230 .max_cap = 512,
239 .max_cap = 1024,
248 .max_cap = 512,
257 .max_cap = 1024,
265 .max_cap
[all...]
/linux/kernel/sched/
H A Dcpufreq_schedutil.c312 * @max_cap: the max CPU capacity
327 unsigned long max_cap) in sugov_iowait_apply() argument
354 return (sg_cpu->iowait_boost * max_cap) >> SCHED_CAPACITY_SHIFT; in sugov_iowait_apply()
400 u64 time, unsigned long max_cap, in sugov_update_single_common() argument
413 boost = sugov_iowait_apply(sg_cpu, time, max_cap); in sugov_update_single_common()
425 unsigned long max_cap; in sugov_update_single_freq() local
428 max_cap = arch_scale_cpu_capacity(sg_cpu->cpu); in sugov_update_single_freq()
430 if (!sugov_update_single_common(sg_cpu, time, max_cap, flags)) in sugov_update_single_freq()
433 next_f = get_next_freq(sg_policy, sg_cpu->util, max_cap); in sugov_update_single_freq()
465 unsigned long max_cap; in sugov_update_single_perf() local
495 unsigned long util = 0, max_cap; sugov_next_freq_shared() local
[all...]
H A Drt.c458 unsigned int max_cap; in rt_task_fits_capacity() local
466 max_cap = uclamp_eff_value(p, UCLAMP_MAX); in rt_task_fits_capacity()
470 return cpu_cap >= min(min_cap, max_cap); in rt_task_fits_capacity()
H A Dfair.c8117 unsigned long busy_time, max_cap = arch_scale_cpu_capacity(prev_cpu); in eenv_task_busy_time() local
8120 if (unlikely(irq >= max_cap)) in eenv_task_busy_time()
8121 busy_time = max_cap; in eenv_task_busy_time()
8123 busy_time = scale_irq_capacity(task_util_est(p), irq, max_cap); in eenv_task_busy_time()
/linux/arch/x86/include/asm/
H A Dtopology.h296 void arch_set_cpu_capacity(int cpu, unsigned long cap, unsigned long max_cap,
307 unsigned long max_cap, in arch_set_cpu_capacity() argument
/linux/drivers/infiniband/hw/erdma/
H A Derdma_main.c412 dev->res_cb[ERDMA_RES_TYPE_PD].max_cap = ERDMA_MAX_PD; in erdma_dev_attrs_init()
413 dev->res_cb[ERDMA_RES_TYPE_STAG_IDX].max_cap = dev->attrs.max_mr; in erdma_dev_attrs_init()
414 dev->res_cb[ERDMA_RES_TYPE_AH].max_cap = dev->attrs.max_ah; in erdma_dev_attrs_init()
453 bitmap_zalloc(dev->res_cb[i].max_cap, GFP_KERNEL); in erdma_res_cb_init()
H A Derdma.h174 u32 max_cap; member
H A Derdma_verbs.c261 idx = find_next_zero_bit(res_cb->bitmap, res_cb->max_cap, in erdma_alloc_idx()
263 if (idx == res_cb->max_cap) { in erdma_alloc_idx()
264 idx = find_first_zero_bit(res_cb->bitmap, res_cb->max_cap); in erdma_alloc_idx()
265 if (idx == res_cb->max_cap) { in erdma_alloc_idx()
/linux/kernel/power/
H A Denergy_model.c208 u64 fmax, max_cap; in em_init_performance() local
223 max_cap = (u64) arch_scale_cpu_capacity(cpu); in em_init_performance()
225 table[i].performance = div64_u64(max_cap * table[i].frequency, in em_init_performance()