Lines Matching +full:cpu +full:- +full:1
1 // SPDX-License-Identifier: GPL-2.0-or-later
10 * PowerPC-64 Support added by Dave Engebretsen, Peter Bergner, and
29 #include <linux/cpu.h>
75 /* State of each CPU during hotplug phases */
97 #define THREAD_GROUP_SHARE_L1 1
116 * On big-cores system, thread_group_l1_cache_map for each CPU corresponds to
117 * the set its siblings that share the L1-cache.
122 * On some big-cores system, thread_group_l2_cache_map for each CPU
124 * L2-cache.
129 * On P10, thread_group_l3_cache_map for each CPU is equal to the
140 int smt_enabled_at_boot = 1;
143 * Returns 1 if the specified cpu should be brought up during boot.
149 /* Special case - we inhibit secondary thread startup in smp_generic_cpu_bootable()
160 return 1; in smp_generic_cpu_bootable()
168 return -EINVAL; in smp_generic_kick_cpu()
172 * cpu_start field to become non-zero After we set cpu_start, in smp_generic_kick_cpu()
175 if (!paca_ptrs[nr]->cpu_start) { in smp_generic_kick_cpu()
176 paca_ptrs[nr]->cpu_start = 1; in smp_generic_kick_cpu()
183 * Ok it's not there, so it might be soft-unplugged, let's in smp_generic_kick_cpu()
235 * The NMI IPI is a fallback and not truly non-maskable. It is simpler
243 [PPC_MSG_TICK_BROADCAST] = "ipi tick-broadcast",
256 return -EINVAL; in smp_request_message_ipi()
259 return 1; in smp_request_message_ipi()
277 void smp_muxed_ipi_set_message(int cpu, int msg) in smp_muxed_ipi_set_message() argument
279 struct cpu_messages *info = &per_cpu(ipi_message, cpu); in smp_muxed_ipi_set_message()
280 char *message = (char *)&info->messages; in smp_muxed_ipi_set_message()
286 WRITE_ONCE(message[msg], 1); in smp_muxed_ipi_set_message()
289 void smp_muxed_ipi_message_pass(int cpu, int msg) in smp_muxed_ipi_message_pass() argument
291 smp_muxed_ipi_set_message(cpu, msg); in smp_muxed_ipi_message_pass()
297 smp_ops->cause_ipi(cpu); in smp_muxed_ipi_message_pass()
301 #define IPI_MESSAGE(A) (1uL << ((BITS_PER_LONG - 8) - 8 * (A)))
303 #define IPI_MESSAGE(A) (1uL << (8 * (A)))
313 /* sync-free variant. Callers should ensure synchronization */
321 all = xchg(&info->messages, 0); in smp_ipi_demux_relaxed()
345 } while (READ_ONCE(info->messages)); in smp_ipi_demux_relaxed()
351 static inline void do_message_pass(int cpu, int msg) in do_message_pass() argument
353 if (smp_ops->message_pass) in do_message_pass()
354 smp_ops->message_pass(cpu, msg); in do_message_pass()
357 smp_muxed_ipi_message_pass(cpu, msg); in do_message_pass()
361 void arch_smp_send_reschedule(int cpu) in arch_smp_send_reschedule() argument
364 do_message_pass(cpu, PPC_MSG_RESCHEDULE); in arch_smp_send_reschedule()
368 void arch_send_call_function_single_ipi(int cpu) in arch_send_call_function_single_ipi() argument
370 do_message_pass(cpu, PPC_MSG_CALL_FUNCTION); in arch_send_call_function_single_ipi()
375 unsigned int cpu; in arch_send_call_function_ipi_mask() local
377 for_each_cpu(cpu, mask) in arch_send_call_function_ipi_mask()
378 do_message_pass(cpu, PPC_MSG_CALL_FUNCTION); in arch_send_call_function_ipi_mask()
392 * concurrency or re-entrancy.
412 while (raw_atomic_cmpxchg(&__nmi_ipi_lock, 0, 1) == 1) { in nmi_ipi_lock_start()
422 while (raw_atomic_cmpxchg(&__nmi_ipi_lock, 0, 1) == 1) in nmi_ipi_lock()
429 WARN_ON(raw_atomic_read(&__nmi_ipi_lock) != 1); in nmi_ipi_unlock()
459 ret = 1; in smp_handle_nmi_ipi()
469 static void do_smp_send_nmi_ipi(int cpu, bool safe) in do_smp_send_nmi_ipi() argument
471 if (!safe && smp_ops->cause_nmi_ipi && smp_ops->cause_nmi_ipi(cpu)) in do_smp_send_nmi_ipi()
474 if (cpu >= 0) { in do_smp_send_nmi_ipi()
475 do_message_pass(cpu, PPC_MSG_NMI_IPI); in do_smp_send_nmi_ipi()
488 * - cpu is the target CPU (must not be this CPU), or NMI_IPI_ALL_OTHERS.
489 * - fn is the target callback function.
490 * - delay_us > 0 is the delay before giving up waiting for targets to
493 static int __smp_send_nmi_ipi(int cpu, void (*fn)(struct pt_regs *), in __smp_send_nmi_ipi() argument
498 int ret = 1; in __smp_send_nmi_ipi()
500 BUG_ON(cpu == me); in __smp_send_nmi_ipi()
501 BUG_ON(cpu < 0 && cpu != NMI_IPI_ALL_OTHERS); in __smp_send_nmi_ipi()
517 if (cpu < 0) { in __smp_send_nmi_ipi()
522 cpumask_set_cpu(cpu, &nmi_ipi_pending_mask); in __smp_send_nmi_ipi()
529 do_smp_send_nmi_ipi(cpu, safe); in __smp_send_nmi_ipi()
535 udelay(1); in __smp_send_nmi_ipi()
538 delay_us--; in __smp_send_nmi_ipi()
558 int smp_send_nmi_ipi(int cpu, void (*fn)(struct pt_regs *), u64 delay_us) in smp_send_nmi_ipi() argument
560 return __smp_send_nmi_ipi(cpu, fn, delay_us, false); in smp_send_nmi_ipi()
563 int smp_send_safe_nmi_ipi(int cpu, void (*fn)(struct pt_regs *), u64 delay_us) in smp_send_safe_nmi_ipi() argument
565 return __smp_send_nmi_ipi(cpu, fn, delay_us, true); in smp_send_safe_nmi_ipi()
572 unsigned int cpu; in tick_broadcast() local
574 for_each_cpu(cpu, mask) in tick_broadcast()
575 do_message_pass(cpu, PPC_MSG_TICK_BROADCAST); in tick_broadcast()
594 int cpu; in crash_send_ipi() local
598 for_each_present_cpu(cpu) { in crash_send_ipi()
599 if (cpu_online(cpu)) in crash_send_ipi()
610 do_smp_send_nmi_ipi(cpu, false); in crash_send_ipi()
622 * on ibm,os-term rtas call. Skip IPI callbacks to other CPUs before in crash_smp_send_stop()
653 while (1) in nmi_stop_this_cpu()
677 while (1) in stop_this_cpu()
707 = (mfspr(SPRN_TLB1CFG) & TLBnCFG_N_ENTRY) - 1; in smp_store_cpu_info()
712 * Relationships between CPUs are maintained in a set of per-cpu cpumasks so
714 * returns the that cpumask for the given CPU.
732 * Extends set_cpus_related. Instead of setting one CPU at a time in
754 * parse_thread_groups: Parses the "ibm,thread-groups" device tree
755 * property for the CPU device node @dn and stores
759 * @dn: The device node of the CPU device.
761 * output of "ibm,thread-groups" is stored.
763 * ibm,thread-groups[0..N-1] array defines which group of threads in
764 * the CPU-device node can be grouped together based on the property.
768 * ibm,thread-groups[i + 0] tells us the property based on which the
769 * threads are being grouped together. If this value is 1, it implies
774 * ibm,thread-groups[i+1] tells us how many such thread groups exist for the
775 * property ibm,thread-groups[i]
777 * ibm,thread-groups[i+2] tells us the number of threads in each such
779 * Suppose k = (ibm,thread-groups[i+1] * ibm,thread-groups[i+2]), then,
781 * ibm,thread-groups[i+3..i+k+2] (is the list of threads identified by
782 * "ibm,ppc-interrupt-server#s" arranged as per their membership in
786 * If "ibm,thread-groups" = [1,2,4,8,10,12,14,9,11,13,15,2,2,4,8,10,12,14,9,11,13,15]
788 * a) [1,2,4,8,10,12,14,9,11,13,15]
793 * a) provides information of Property "1" being shared by "2" groups,
794 * each with "4" threads each. The "ibm,ppc-interrupt-server#s" of
796 * "ibm,ppc-interrupt-server#s" of the second group is
797 * {9,11,13,15}. Property "1" is indicative of the thread in the
802 * each group with "4" threads. The "ibm,ppc-interrupt-server#s" of
804 * "ibm,ppc-interrupt-server#s" of the second group is
806 * group share the L2-cache.
808 * Returns 0 on success, -EINVAL if the property does not exist,
809 * -ENODATA if property does not have a value, and -EOVERFLOW if the
822 count = of_property_count_u32_elems(dn, "ibm,thread-groups"); in parse_thread_groups()
824 ret = of_property_read_u32_array(dn, "ibm,thread-groups", in parse_thread_groups()
831 struct thread_groups *tg = &tglp->property_tgs[property_idx++]; in parse_thread_groups()
833 tg->property = thread_group_array[i]; in parse_thread_groups()
834 tg->nr_groups = thread_group_array[i + 1]; in parse_thread_groups()
835 tg->threads_per_group = thread_group_array[i + 2]; in parse_thread_groups()
836 total_threads = tg->nr_groups * tg->threads_per_group; in parse_thread_groups()
841 tg->thread_list[j] = thread_list[j]; in parse_thread_groups()
845 tglp->nr_properties = property_idx; in parse_thread_groups()
853 * get_cpu_thread_group_start : Searches the thread group in tg->thread_list
854 * that @cpu belongs to.
856 * @cpu : The logical CPU whose thread group is being searched.
857 * @tg : The thread-group structure of the CPU node which @cpu belongs
860 * Returns the index to tg->thread_list that points to the start
861 * of the thread_group that @cpu belongs to.
863 * Returns -1 if cpu doesn't belong to any of the groups pointed to by
864 * tg->thread_list.
866 static int get_cpu_thread_group_start(int cpu, struct thread_groups *tg) in get_cpu_thread_group_start() argument
868 int hw_cpu_id = get_hard_smp_processor_id(cpu); in get_cpu_thread_group_start()
871 for (i = 0; i < tg->nr_groups; i++) { in get_cpu_thread_group_start()
872 int group_start = i * tg->threads_per_group; in get_cpu_thread_group_start()
874 for (j = 0; j < tg->threads_per_group; j++) { in get_cpu_thread_group_start()
877 if (tg->thread_list[idx] == hw_cpu_id) in get_cpu_thread_group_start()
882 return -1; in get_cpu_thread_group_start()
885 static struct thread_groups *__init get_thread_groups(int cpu, in get_thread_groups() argument
889 struct device_node *dn = of_get_cpu_node(cpu, NULL); in get_thread_groups()
890 struct thread_groups_list *cpu_tgl = &tgl[cpu]; in get_thread_groups()
896 *err = -ENODATA; in get_thread_groups()
900 if (!cpu_tgl->nr_properties) { in get_thread_groups()
906 for (i = 0; i < cpu_tgl->nr_properties; i++) { in get_thread_groups()
907 if (cpu_tgl->property_tgs[i].property == group_property) { in get_thread_groups()
908 tg = &cpu_tgl->property_tgs[i]; in get_thread_groups()
914 *err = -EINVAL; in get_thread_groups()
921 int cpu, int cpu_group_start) in update_mask_from_threadgroup() argument
923 int first_thread = cpu_first_thread_sibling(cpu); in update_mask_from_threadgroup()
926 zalloc_cpumask_var_node(mask, GFP_KERNEL, cpu_to_node(cpu)); in update_mask_from_threadgroup()
931 if (unlikely(i_group_start == -1)) { in update_mask_from_threadgroup()
932 WARN_ON_ONCE(1); in update_mask_from_threadgroup()
933 return -ENODATA; in update_mask_from_threadgroup()
943 static int __init init_thread_group_cache_map(int cpu, int cache_property) in init_thread_group_cache_map() argument
946 int cpu_group_start = -1, err = 0; in init_thread_group_cache_map()
952 return -EINVAL; in init_thread_group_cache_map()
954 tg = get_thread_groups(cpu, cache_property, &err); in init_thread_group_cache_map()
959 cpu_group_start = get_cpu_thread_group_start(cpu, tg); in init_thread_group_cache_map()
961 if (unlikely(cpu_group_start == -1)) { in init_thread_group_cache_map()
962 WARN_ON_ONCE(1); in init_thread_group_cache_map()
963 return -ENODATA; in init_thread_group_cache_map()
967 mask = &per_cpu(thread_group_l1_cache_map, cpu); in init_thread_group_cache_map()
968 update_mask_from_threadgroup(mask, tg, cpu, cpu_group_start); in init_thread_group_cache_map()
971 mask = &per_cpu(thread_group_l2_cache_map, cpu); in init_thread_group_cache_map()
972 update_mask_from_threadgroup(mask, tg, cpu, cpu_group_start); in init_thread_group_cache_map()
973 mask = &per_cpu(thread_group_l3_cache_map, cpu); in init_thread_group_cache_map()
974 update_mask_from_threadgroup(mask, tg, cpu, cpu_group_start); in init_thread_group_cache_map()
1028 * returns a non-const pointer and the compiler barfs on that.
1030 static const struct cpumask *shared_cache_mask(int cpu) in shared_cache_mask() argument
1032 return per_cpu(cpu_l2_cache_map, cpu); in shared_cache_mask()
1036 static const struct cpumask *smallcore_smt_mask(int cpu) in smallcore_smt_mask() argument
1038 return cpu_smallcore_mask(cpu); in smallcore_smt_mask()
1042 static struct cpumask *cpu_coregroup_mask(int cpu) in cpu_coregroup_mask() argument
1044 return per_cpu(cpu_coregroup_map, cpu); in cpu_coregroup_mask()
1056 static const struct cpumask *cpu_mc_mask(int cpu) in cpu_mc_mask() argument
1058 return cpu_coregroup_mask(cpu); in cpu_mc_mask()
1063 int cpu; in init_big_cores() local
1065 for_each_possible_cpu(cpu) { in init_big_cores()
1066 int err = init_thread_group_cache_map(cpu, THREAD_GROUP_SHARE_L1); in init_big_cores()
1071 zalloc_cpumask_var_node(&per_cpu(cpu_smallcore_map, cpu), in init_big_cores()
1073 cpu_to_node(cpu)); in init_big_cores()
1078 for_each_possible_cpu(cpu) { in init_big_cores()
1079 int err = init_thread_group_cache_map(cpu, THREAD_GROUP_SHARE_L2_L3); in init_big_cores()
1094 unsigned int cpu, num_threads; in smp_prepare_cpus() local
1099 * setup_cpu may need to be called on the boot cpu. We haven't in smp_prepare_cpus()
1104 /* Fixup boot cpu */ in smp_prepare_cpus()
1106 cpu_callin_map[boot_cpuid] = 1; in smp_prepare_cpus()
1108 for_each_possible_cpu(cpu) { in smp_prepare_cpus()
1109 zalloc_cpumask_var_node(&per_cpu(cpu_sibling_map, cpu), in smp_prepare_cpus()
1110 GFP_KERNEL, cpu_to_node(cpu)); in smp_prepare_cpus()
1111 zalloc_cpumask_var_node(&per_cpu(cpu_l2_cache_map, cpu), in smp_prepare_cpus()
1112 GFP_KERNEL, cpu_to_node(cpu)); in smp_prepare_cpus()
1113 zalloc_cpumask_var_node(&per_cpu(cpu_core_map, cpu), in smp_prepare_cpus()
1114 GFP_KERNEL, cpu_to_node(cpu)); in smp_prepare_cpus()
1116 zalloc_cpumask_var_node(&per_cpu(cpu_coregroup_map, cpu), in smp_prepare_cpus()
1117 GFP_KERNEL, cpu_to_node(cpu)); in smp_prepare_cpus()
1123 if (cpu_present(cpu)) { in smp_prepare_cpus()
1124 set_cpu_numa_node(cpu, numa_cpu_lookup_table[cpu]); in smp_prepare_cpus()
1125 set_cpu_numa_mem(cpu, in smp_prepare_cpus()
1126 local_memory_node(numa_cpu_lookup_table[cpu])); in smp_prepare_cpus()
1131 /* Init the cpumasks so the boot CPU is related to itself */ in smp_prepare_cpus()
1145 if (cpu_to_chip_id(boot_cpuid) != -1) { in smp_prepare_cpus()
1151 * Assumption: if boot_cpuid doesn't have a chip-id, then no in smp_prepare_cpus()
1152 * other CPUs, will also not have chip-id. in smp_prepare_cpus()
1156 memset(chip_id_lookup_table, -1, sizeof(int) * idx); in smp_prepare_cpus()
1159 if (smp_ops && smp_ops->probe) in smp_prepare_cpus()
1160 smp_ops->probe(); in smp_prepare_cpus()
1163 num_threads = 1; in smp_prepare_cpus()
1173 paca_ptrs[boot_cpuid]->__current = current; in smp_prepare_boot_cpu()
1183 unsigned int cpu = smp_processor_id(); in generic_cpu_disable() local
1185 if (cpu == boot_cpuid) in generic_cpu_disable()
1186 return -EBUSY; in generic_cpu_disable()
1188 set_cpu_online(cpu, false); in generic_cpu_disable()
1190 vdso_data->processorCount--; in generic_cpu_disable()
1192 /* Update affinity of all IRQs previously aimed at this CPU */ in generic_cpu_disable()
1197 * that one of the interrupts we just migrated away from this CPU is in generic_cpu_disable()
1198 * actually already pending on this CPU. If we leave it in that state in generic_cpu_disable()
1201 * be received (and EOI'ed), before we take this CPU offline. in generic_cpu_disable()
1204 mdelay(1); in generic_cpu_disable()
1210 void generic_cpu_die(unsigned int cpu) in generic_cpu_die() argument
1216 if (is_cpu_dead(cpu)) in generic_cpu_die()
1220 printk(KERN_ERR "CPU%d didn't die...\n", cpu); in generic_cpu_die()
1223 void generic_set_cpu_dead(unsigned int cpu) in generic_set_cpu_dead() argument
1225 per_cpu(cpu_state, cpu) = CPU_DEAD; in generic_set_cpu_dead()
1233 void generic_set_cpu_up(unsigned int cpu) in generic_set_cpu_up() argument
1235 per_cpu(cpu_state, cpu) = CPU_UP_PREPARE; in generic_set_cpu_up()
1238 int generic_check_cpu_restart(unsigned int cpu) in generic_check_cpu_restart() argument
1240 return per_cpu(cpu_state, cpu) == CPU_UP_PREPARE; in generic_check_cpu_restart()
1243 int is_cpu_dead(unsigned int cpu) in is_cpu_dead() argument
1245 return per_cpu(cpu_state, cpu) == CPU_DEAD; in is_cpu_dead()
1259 static void cpu_idle_thread_init(unsigned int cpu, struct task_struct *idle) in cpu_idle_thread_init() argument
1262 paca_ptrs[cpu]->__current = idle; in cpu_idle_thread_init()
1263 paca_ptrs[cpu]->kstack = (unsigned long)task_stack_page(idle) + in cpu_idle_thread_init()
1264 THREAD_SIZE - STACK_FRAME_MIN_SIZE; in cpu_idle_thread_init()
1266 task_thread_info(idle)->cpu = cpu; in cpu_idle_thread_init()
1267 secondary_current = current_set[cpu] = idle; in cpu_idle_thread_init()
1270 int __cpu_up(unsigned int cpu, struct task_struct *tidle) in __cpu_up() argument
1274 const unsigned long hp_spin_ms = 1; in __cpu_up()
1282 if (threads_per_core > 1 && secondaries_inhibited() && in __cpu_up()
1283 cpu_thread_in_subcore(cpu)) in __cpu_up()
1284 return -EBUSY; in __cpu_up()
1287 (smp_ops->cpu_bootable && !smp_ops->cpu_bootable(cpu))) in __cpu_up()
1288 return -EINVAL; in __cpu_up()
1290 cpu_idle_thread_init(cpu, tidle); in __cpu_up()
1294 * up the CPU in __cpu_up()
1296 if (smp_ops->prepare_cpu) { in __cpu_up()
1297 rc = smp_ops->prepare_cpu(cpu); in __cpu_up()
1302 /* Make sure callin-map entry is 0 (can be leftover a CPU in __cpu_up()
1305 cpu_callin_map[cpu] = 0; in __cpu_up()
1314 DBG("smp: kicking cpu %d\n", cpu); in __cpu_up()
1315 rc = smp_ops->kick_cpu(cpu); in __cpu_up()
1317 pr_err("smp: failed starting cpu %d (rc %d)\n", cpu, rc); in __cpu_up()
1329 spin_until_cond(cpu_callin_map[cpu] || time_is_before_jiffies(deadline)); in __cpu_up()
1331 if (!cpu_callin_map[cpu] && system_state >= SYSTEM_RUNNING) { in __cpu_up()
1336 while (!cpu_callin_map[cpu] && time_is_after_jiffies(deadline)) in __cpu_up()
1340 if (!cpu_callin_map[cpu]) { in __cpu_up()
1341 printk(KERN_ERR "Processor %u is stuck.\n", cpu); in __cpu_up()
1342 return -ENOENT; in __cpu_up()
1345 DBG("Processor %u found.\n", cpu); in __cpu_up()
1347 if (smp_ops->give_timebase) in __cpu_up()
1348 smp_ops->give_timebase(); in __cpu_up()
1350 /* Wait until cpu puts itself in the online & active maps */ in __cpu_up()
1351 spin_until_cond(cpu_online(cpu)); in __cpu_up()
1357 * logical cpu.
1359 int cpu_to_core_id(int cpu) in cpu_to_core_id() argument
1362 int id = -1; in cpu_to_core_id()
1364 np = of_get_cpu_node(cpu, NULL); in cpu_to_core_id()
1375 /* Helper routines for cpu to core mapping */
1376 int cpu_core_index_of_thread(int cpu) in cpu_core_index_of_thread() argument
1378 return cpu >> threads_shift; in cpu_core_index_of_thread()
1389 * i.e. during cpu online or offline.
1391 static struct device_node *cpu_to_l2cache(int cpu) in cpu_to_l2cache() argument
1396 if (!cpu_present(cpu)) in cpu_to_l2cache()
1399 np = of_get_cpu_node(cpu, NULL); in cpu_to_l2cache()
1410 static bool update_mask_by_l2(int cpu, cpumask_var_t *mask) in update_mask_by_l2() argument
1420 * If the threads in a thread-group share L2 cache, then the in update_mask_by_l2()
1421 * L2-mask can be obtained from thread_group_l2_cache_map. in update_mask_by_l2()
1424 cpumask_set_cpu(cpu, cpu_l2_cache_mask(cpu)); in update_mask_by_l2()
1426 for_each_cpu(i, per_cpu(thread_group_l2_cache_map, cpu)) { in update_mask_by_l2()
1428 set_cpus_related(i, cpu, cpu_l2_cache_mask); in update_mask_by_l2()
1431 /* Verify that L1-cache siblings are a subset of L2 cache-siblings */ in update_mask_by_l2()
1432 if (!cpumask_equal(submask_fn(cpu), cpu_l2_cache_mask(cpu)) && in update_mask_by_l2()
1433 !cpumask_subset(submask_fn(cpu), cpu_l2_cache_mask(cpu))) { in update_mask_by_l2()
1434 pr_warn_once("CPU %d : Inconsistent L1 and L2 cache siblings\n", in update_mask_by_l2()
1435 cpu); in update_mask_by_l2()
1441 l2_cache = cpu_to_l2cache(cpu); in update_mask_by_l2()
1443 /* Assume only core siblings share cache with this CPU */ in update_mask_by_l2()
1444 for_each_cpu(i, cpu_sibling_mask(cpu)) in update_mask_by_l2()
1445 set_cpus_related(cpu, i, cpu_l2_cache_mask); in update_mask_by_l2()
1450 cpumask_and(*mask, cpu_online_mask, cpu_cpu_mask(cpu)); in update_mask_by_l2()
1452 /* Update l2-cache mask with all the CPUs that are part of submask */ in update_mask_by_l2()
1453 or_cpumasks_related(cpu, cpu, submask_fn, cpu_l2_cache_mask); in update_mask_by_l2()
1455 /* Skip all CPUs already part of current CPU l2-cache mask */ in update_mask_by_l2()
1456 cpumask_andnot(*mask, *mask, cpu_l2_cache_mask(cpu)); in update_mask_by_l2()
1460 * when updating the marks the current CPU has not been marked in update_mask_by_l2()
1465 /* Skip all CPUs already part of current CPU l2-cache */ in update_mask_by_l2()
1467 or_cpumasks_related(cpu, i, submask_fn, cpu_l2_cache_mask); in update_mask_by_l2()
1481 static void remove_cpu_from_masks(int cpu) in remove_cpu_from_masks() argument
1486 unmap_cpu_from_node(cpu); in remove_cpu_from_masks()
1491 for_each_cpu(i, mask_fn(cpu)) { in remove_cpu_from_masks()
1492 set_cpus_unrelated(cpu, i, cpu_l2_cache_mask); in remove_cpu_from_masks()
1493 set_cpus_unrelated(cpu, i, cpu_sibling_mask); in remove_cpu_from_masks()
1495 set_cpus_unrelated(cpu, i, cpu_smallcore_mask); in remove_cpu_from_masks()
1498 for_each_cpu(i, cpu_core_mask(cpu)) in remove_cpu_from_masks()
1499 set_cpus_unrelated(cpu, i, cpu_core_mask); in remove_cpu_from_masks()
1502 for_each_cpu(i, cpu_coregroup_mask(cpu)) in remove_cpu_from_masks()
1503 set_cpus_unrelated(cpu, i, cpu_coregroup_mask); in remove_cpu_from_masks()
1508 static inline void add_cpu_to_smallcore_masks(int cpu) in add_cpu_to_smallcore_masks() argument
1515 cpumask_set_cpu(cpu, cpu_smallcore_mask(cpu)); in add_cpu_to_smallcore_masks()
1517 for_each_cpu(i, per_cpu(thread_group_l1_cache_map, cpu)) { in add_cpu_to_smallcore_masks()
1519 set_cpus_related(i, cpu, cpu_smallcore_mask); in add_cpu_to_smallcore_masks()
1523 static void update_coregroup_mask(int cpu, cpumask_var_t *mask) in update_coregroup_mask() argument
1526 int coregroup_id = cpu_to_coregroup_id(cpu); in update_coregroup_mask()
1533 /* Assume only siblings are part of this CPU's coregroup */ in update_coregroup_mask()
1534 for_each_cpu(i, submask_fn(cpu)) in update_coregroup_mask()
1535 set_cpus_related(cpu, i, cpu_coregroup_mask); in update_coregroup_mask()
1540 cpumask_and(*mask, cpu_online_mask, cpu_cpu_mask(cpu)); in update_coregroup_mask()
1543 or_cpumasks_related(cpu, cpu, submask_fn, cpu_coregroup_mask); in update_coregroup_mask()
1546 cpumask_andnot(*mask, *mask, cpu_coregroup_mask(cpu)); in update_coregroup_mask()
1551 or_cpumasks_related(cpu, i, submask_fn, cpu_coregroup_mask); in update_coregroup_mask()
1559 static void add_cpu_to_masks(int cpu) in add_cpu_to_masks() argument
1562 int first_thread = cpu_first_thread_sibling(cpu); in add_cpu_to_masks()
1564 int chip_id = -1; in add_cpu_to_masks()
1569 * This CPU will not be in the online mask yet so we need to manually in add_cpu_to_masks()
1572 map_cpu_to_node(cpu, cpu_to_node(cpu)); in add_cpu_to_masks()
1573 cpumask_set_cpu(cpu, cpu_sibling_mask(cpu)); in add_cpu_to_masks()
1574 cpumask_set_cpu(cpu, cpu_core_mask(cpu)); in add_cpu_to_masks()
1578 set_cpus_related(i, cpu, cpu_sibling_mask); in add_cpu_to_masks()
1580 add_cpu_to_smallcore_masks(cpu); in add_cpu_to_masks()
1582 /* In CPU-hotplug path, hence use GFP_ATOMIC */ in add_cpu_to_masks()
1583 ret = alloc_cpumask_var_node(&mask, GFP_ATOMIC, cpu_to_node(cpu)); in add_cpu_to_masks()
1584 update_mask_by_l2(cpu, &mask); in add_cpu_to_masks()
1587 update_coregroup_mask(cpu, &mask); in add_cpu_to_masks()
1590 chip_id = cpu_to_chip_id(cpu); in add_cpu_to_masks()
1596 or_cpumasks_related(cpu, cpu, submask_fn, cpu_core_mask); in add_cpu_to_masks()
1598 /* Skip all CPUs already part of current CPU core mask */ in add_cpu_to_masks()
1599 cpumask_andnot(mask, cpu_online_mask, cpu_core_mask(cpu)); in add_cpu_to_masks()
1601 /* If chip_id is -1; limit the cpu_core_mask to within PKG */ in add_cpu_to_masks()
1602 if (chip_id == -1) in add_cpu_to_masks()
1603 cpumask_and(mask, mask, cpu_cpu_mask(cpu)); in add_cpu_to_masks()
1607 or_cpumasks_related(cpu, i, submask_fn, cpu_core_mask); in add_cpu_to_masks()
1621 unsigned int cpu = raw_smp_processor_id(); in start_secondary() local
1628 current->active_mm = &init_mm; in start_secondary()
1630 cpumask_set_cpu(cpu, mm_cpumask(&init_mm)); in start_secondary()
1633 smp_store_cpu_info(cpu); in start_secondary()
1635 rcutree_report_cpu_starting(cpu); in start_secondary()
1636 cpu_callin_map[cpu] = 1; in start_secondary()
1638 if (smp_ops->setup_cpu) in start_secondary()
1639 smp_ops->setup_cpu(cpu); in start_secondary()
1640 if (smp_ops->take_timebase) in start_secondary()
1641 smp_ops->take_timebase(); in start_secondary()
1647 vdso_data->processorCount++; in start_secondary()
1651 set_numa_node(numa_cpu_lookup_table[cpu]); in start_secondary()
1652 set_numa_mem(local_memory_node(numa_cpu_lookup_table[cpu])); in start_secondary()
1654 /* Update topology CPU masks */ in start_secondary()
1655 add_cpu_to_masks(cpu); in start_secondary()
1659 * per-core basis because one core in the pair might be disabled. in start_secondary()
1663 struct cpumask *mask = cpu_l2_cache_mask(cpu); in start_secondary()
1668 if (cpumask_weight(mask) > cpumask_weight(sibling_mask(cpu))) in start_secondary()
1673 notify_cpu_starting(cpu); in start_secondary()
1674 set_cpu_online(cpu, true); in start_secondary()
1724 BUG_ON(i >= ARRAY_SIZE(powerpc_topology) - 1); in build_sched_topology()
1732 * We are running pinned to the boot CPU, see rest_init(). in smp_cpus_done()
1734 if (smp_ops && smp_ops->setup_cpu) in smp_cpus_done()
1735 smp_ops->setup_cpu(boot_cpuid); in smp_cpus_done()
1737 if (smp_ops && smp_ops->bringup_done) in smp_cpus_done()
1738 smp_ops->bringup_done(); in smp_cpus_done()
1745 * For asym packing, by default lower numbered CPU has higher priority.
1749 int arch_asym_cpu_priority(int cpu) in arch_asym_cpu_priority() argument
1752 return -cpu / threads_per_core; in arch_asym_cpu_priority()
1754 return -cpu; in arch_asym_cpu_priority()
1760 int cpu = smp_processor_id(); in __cpu_disable() local
1763 if (!smp_ops->cpu_disable) in __cpu_disable()
1764 return -ENOSYS; in __cpu_disable()
1768 err = smp_ops->cpu_disable(); in __cpu_disable()
1773 remove_cpu_from_masks(cpu); in __cpu_disable()
1778 void __cpu_die(unsigned int cpu) in __cpu_die() argument
1784 VM_WARN_ON_ONCE(!cpumask_test_cpu(cpu, mm_cpumask(&init_mm))); in __cpu_die()
1786 cpumask_clear_cpu(cpu, mm_cpumask(&init_mm)); in __cpu_die()
1788 if (smp_ops->cpu_die) in __cpu_die()
1789 smp_ops->cpu_die(cpu); in __cpu_die()
1795 * Disable on the down path. This will be re-enabled by in arch_cpu_idle_dead()
1800 if (smp_ops->cpu_offline_self) in arch_cpu_idle_dead()
1801 smp_ops->cpu_offline_self(); in arch_cpu_idle_dead()
1803 /* If we return, we re-enter start_secondary */ in arch_cpu_idle_dead()