Lines Matching full:topology
19 "%s/devices/system/cpu/cpu%d/topology/package_cpus_list"
21 "%s/devices/system/cpu/cpu%d/topology/core_siblings_list"
23 "%s/devices/system/cpu/cpu%d/topology/die_cpus_list"
25 "%s/devices/system/cpu/cpu%d/topology/core_cpus_list"
27 "%s/devices/system/cpu/cpu%d/topology/thread_siblings_list"
161 bool cpu_topology__smt_on(const struct cpu_topology *topology) in cpu_topology__smt_on() argument
163 for (u32 i = 0; i < topology->core_cpus_lists; i++) { in cpu_topology__smt_on()
164 const char *cpu_list = topology->core_cpus_list[i]; in cpu_topology__smt_on()
176 bool cpu_topology__core_wide(const struct cpu_topology *topology, in cpu_topology__core_wide() argument
190 for (u32 i = 0; i < topology->core_cpus_lists; i++) { in cpu_topology__core_wide()
191 const char *core_cpu_list = topology->core_cpus_list[i]; in cpu_topology__core_wide()
244 static const struct cpu_topology *topology; in online_topology() local
246 if (!topology) { in online_topology()
247 topology = cpu_topology__new(); in online_topology()
248 if (!topology) { in online_topology()
249 pr_err("Error creating CPU topology"); in online_topology()
253 return topology; in online_topology()