Home
last modified time | relevance | path

Searched refs:core_info (Results 1 – 7 of 7) sorted by relevance

/Linux-v6.1/tools/power/cpupower/lib/
Dcpupower.c156 cpu_top->core_info = malloc(sizeof(struct cpuid_core_info) * cpus); in get_cpu_topology()
157 if (cpu_top->core_info == NULL) in get_cpu_topology()
161 cpu_top->core_info[cpu].cpu = cpu; in get_cpu_topology()
162 cpu_top->core_info[cpu].is_online = cpupower_is_cpu_online(cpu); in get_cpu_topology()
166 &(cpu_top->core_info[cpu].pkg)) < 0) { in get_cpu_topology()
167 cpu_top->core_info[cpu].pkg = -1; in get_cpu_topology()
168 cpu_top->core_info[cpu].core = -1; in get_cpu_topology()
174 &(cpu_top->core_info[cpu].core)) < 0) { in get_cpu_topology()
175 cpu_top->core_info[cpu].pkg = -1; in get_cpu_topology()
176 cpu_top->core_info[cpu].core = -1; in get_cpu_topology()
[all …]
Dcpupower.h12 struct cpuid_core_info *core_info; member
/Linux-v6.1/tools/power/cpupower/utils/idle_monitor/
Dcpupower-monitor.c149 if (!bitmask_isbitset(cpus_chosen, cpu_top.core_info[cpu].cpu)) in print_results()
151 if (!cpu_top.core_info[cpu].is_online && in print_results()
152 cpu_top.core_info[cpu].pkg == -1) in print_results()
156 printf("%4d|", cpu_top.core_info[cpu].pkg); in print_results()
158 printf("%4d|", cpu_top.core_info[cpu].core); in print_results()
160 printf("%4d|", cpu_top.core_info[cpu].cpu); in print_results()
174 cpu_top.core_info[cpu].cpu); in print_results()
183 cpu_top.core_info[cpu].cpu); in print_results()
202 if (!cpu_top.core_info[cpu].is_online && in print_results()
203 cpu_top.core_info[cpu].pkg != -1) { in print_results()
[all …]
/Linux-v6.1/drivers/net/wwan/t7xx/
Dt7xx_modem_ops.c464 struct t7xx_sys_info *core_info = &md->core_md; in t7xx_core_hk_handler() local
469 t7xx_prepare_host_rt_data_query(core_info); in t7xx_core_hk_handler()
501 ret = t7xx_parse_host_rt_data(ctl, core_info, dev, event->data, event->length); in t7xx_core_hk_handler()
510 ret = t7xx_prepare_device_rt_data(core_info, dev, event->data); in t7xx_core_hk_handler()
516 core_info->ready = true; in t7xx_core_hk_handler()
517 core_info->handshake_ongoing = false; in t7xx_core_hk_handler()
/Linux-v6.1/arch/powerpc/kvm/
Dbook3s_hv.c3387 struct core_info { struct
3401 static void init_core_info(struct core_info *cip, struct kvmppc_vcore *vc) in init_core_info() argument
3444 static bool can_dynamic_split(struct kvmppc_vcore *vc, struct core_info *cip) in can_dynamic_split()
3477 static bool can_piggyback(struct kvmppc_vcore *pvc, struct core_info *cip, in can_piggyback()
3505 static void collect_piggybacks(struct core_info *cip, int target_threads) in collect_piggybacks()
3536 static bool recheck_signals_and_mmu(struct core_info *cip) in recheck_signals_and_mmu()
3687 struct core_info core_info; in kvmppc_run_core() local
3745 init_core_info(&core_info, vc); in kvmppc_run_core()
3751 collect_piggybacks(&core_info, target_threads); in kvmppc_run_core()
3763 recheck_signals_and_mmu(&core_info)) { in kvmppc_run_core()
[all …]
/Linux-v6.1/drivers/gpu/drm/arm/display/komeda/
Dkomeda_dev.h73 u32 core_info; member
/Linux-v6.1/drivers/gpu/drm/arm/display/komeda/d71/
Dd71_dev.c639 chip->core_info = malidp_read32(reg_base, GLB_CORE_INFO); in d71_identify()