]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blob - arch/arm64/kernel/smp.c
arm64: KVM: Do not use stack-protector to compile EL2 code
[mirror_ubuntu-zesty-kernel.git] / arch / arm64 / kernel / smp.c
1 /*
2 * SMP initialisation and IPI support
3 * Based on arch/arm/kernel/smp.c
4 *
5 * Copyright (C) 2012 ARM Ltd.
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19
20 #include <linux/acpi.h>
21 #include <linux/delay.h>
22 #include <linux/init.h>
23 #include <linux/spinlock.h>
24 #include <linux/sched.h>
25 #include <linux/interrupt.h>
26 #include <linux/cache.h>
27 #include <linux/profile.h>
28 #include <linux/errno.h>
29 #include <linux/mm.h>
30 #include <linux/err.h>
31 #include <linux/cpu.h>
32 #include <linux/smp.h>
33 #include <linux/seq_file.h>
34 #include <linux/irq.h>
35 #include <linux/percpu.h>
36 #include <linux/clockchips.h>
37 #include <linux/completion.h>
38 #include <linux/of.h>
39 #include <linux/irq_work.h>
40 #include <linux/kexec.h>
41
42 #include <asm/alternative.h>
43 #include <asm/atomic.h>
44 #include <asm/cacheflush.h>
45 #include <asm/cpu.h>
46 #include <asm/cputype.h>
47 #include <asm/cpu_ops.h>
48 #include <asm/mmu_context.h>
49 #include <asm/numa.h>
50 #include <asm/pgtable.h>
51 #include <asm/pgalloc.h>
52 #include <asm/processor.h>
53 #include <asm/smp_plat.h>
54 #include <asm/sections.h>
55 #include <asm/tlbflush.h>
56 #include <asm/ptrace.h>
57 #include <asm/virt.h>
58
59 #define CREATE_TRACE_POINTS
60 #include <trace/events/ipi.h>
61
62 DEFINE_PER_CPU_READ_MOSTLY(int, cpu_number);
63 EXPORT_PER_CPU_SYMBOL(cpu_number);
64
65 /*
66 * as from 2.5, kernels no longer have an init_tasks structure
67 * so we need some other way of telling a new secondary core
68 * where to place its SVC stack
69 */
70 struct secondary_data secondary_data;
71 /* Number of CPUs which aren't online, but looping in kernel text. */
72 int cpus_stuck_in_kernel;
73
74 enum ipi_msg_type {
75 IPI_RESCHEDULE,
76 IPI_CALL_FUNC,
77 IPI_CPU_STOP,
78 IPI_CPU_CRASH_STOP,
79 IPI_TIMER,
80 IPI_IRQ_WORK,
81 IPI_WAKEUP
82 };
83
84 #ifdef CONFIG_ARM64_VHE
85
86 /* Whether the boot CPU is running in HYP mode or not*/
87 static bool boot_cpu_hyp_mode;
88
89 static inline void save_boot_cpu_run_el(void)
90 {
91 boot_cpu_hyp_mode = is_kernel_in_hyp_mode();
92 }
93
94 static inline bool is_boot_cpu_in_hyp_mode(void)
95 {
96 return boot_cpu_hyp_mode;
97 }
98
99 /*
100 * Verify that a secondary CPU is running the kernel at the same
101 * EL as that of the boot CPU.
102 */
103 void verify_cpu_run_el(void)
104 {
105 bool in_el2 = is_kernel_in_hyp_mode();
106 bool boot_cpu_el2 = is_boot_cpu_in_hyp_mode();
107
108 if (in_el2 ^ boot_cpu_el2) {
109 pr_crit("CPU%d: mismatched Exception Level(EL%d) with boot CPU(EL%d)\n",
110 smp_processor_id(),
111 in_el2 ? 2 : 1,
112 boot_cpu_el2 ? 2 : 1);
113 cpu_panic_kernel();
114 }
115 }
116
117 #else
118 static inline void save_boot_cpu_run_el(void) {}
119 #endif
120
121 #ifdef CONFIG_HOTPLUG_CPU
122 static int op_cpu_kill(unsigned int cpu);
123 #else
124 static inline int op_cpu_kill(unsigned int cpu)
125 {
126 return -ENOSYS;
127 }
128 #endif
129
130
131 /*
132 * Boot a secondary CPU, and assign it the specified idle task.
133 * This also gives us the initial stack to use for this CPU.
134 */
135 static int boot_secondary(unsigned int cpu, struct task_struct *idle)
136 {
137 if (cpu_ops[cpu]->cpu_boot)
138 return cpu_ops[cpu]->cpu_boot(cpu);
139
140 return -EOPNOTSUPP;
141 }
142
143 static DECLARE_COMPLETION(cpu_running);
144
145 int __cpu_up(unsigned int cpu, struct task_struct *idle)
146 {
147 int ret;
148 long status;
149
150 /*
151 * We need to tell the secondary core where to find its stack and the
152 * page tables.
153 */
154 secondary_data.task = idle;
155 secondary_data.stack = task_stack_page(idle) + THREAD_START_SP;
156 update_cpu_boot_status(CPU_MMU_OFF);
157 __flush_dcache_area(&secondary_data, sizeof(secondary_data));
158
159 /*
160 * Now bring the CPU into our world.
161 */
162 ret = boot_secondary(cpu, idle);
163 if (ret == 0) {
164 /*
165 * CPU was successfully started, wait for it to come online or
166 * time out.
167 */
168 wait_for_completion_timeout(&cpu_running,
169 msecs_to_jiffies(1000));
170
171 if (!cpu_online(cpu)) {
172 pr_crit("CPU%u: failed to come online\n", cpu);
173 ret = -EIO;
174 }
175 } else {
176 pr_err("CPU%u: failed to boot: %d\n", cpu, ret);
177 }
178
179 secondary_data.task = NULL;
180 secondary_data.stack = NULL;
181 status = READ_ONCE(secondary_data.status);
182 if (ret && status) {
183
184 if (status == CPU_MMU_OFF)
185 status = READ_ONCE(__early_cpu_boot_status);
186
187 switch (status) {
188 default:
189 pr_err("CPU%u: failed in unknown state : 0x%lx\n",
190 cpu, status);
191 break;
192 case CPU_KILL_ME:
193 if (!op_cpu_kill(cpu)) {
194 pr_crit("CPU%u: died during early boot\n", cpu);
195 break;
196 }
197 /* Fall through */
198 pr_crit("CPU%u: may not have shut down cleanly\n", cpu);
199 case CPU_STUCK_IN_KERNEL:
200 pr_crit("CPU%u: is stuck in kernel\n", cpu);
201 cpus_stuck_in_kernel++;
202 break;
203 case CPU_PANIC_KERNEL:
204 panic("CPU%u detected unsupported configuration\n", cpu);
205 }
206 }
207
208 return ret;
209 }
210
211 /*
212 * This is the secondary CPU boot entry. We're using this CPUs
213 * idle thread stack, but a set of temporary page tables.
214 */
215 asmlinkage void secondary_start_kernel(void)
216 {
217 struct mm_struct *mm = &init_mm;
218 unsigned int cpu;
219
220 cpu = task_cpu(current);
221 set_my_cpu_offset(per_cpu_offset(cpu));
222
223 /*
224 * All kernel threads share the same mm context; grab a
225 * reference and switch to it.
226 */
227 atomic_inc(&mm->mm_count);
228 current->active_mm = mm;
229
230 /*
231 * TTBR0 is only used for the identity mapping at this stage. Make it
232 * point to zero page to avoid speculatively fetching new entries.
233 */
234 cpu_uninstall_idmap();
235
236 preempt_disable();
237 trace_hardirqs_off();
238
239 /*
240 * If the system has established the capabilities, make sure
241 * this CPU ticks all of those. If it doesn't, the CPU will
242 * fail to come online.
243 */
244 check_local_cpu_capabilities();
245
246 if (cpu_ops[cpu]->cpu_postboot)
247 cpu_ops[cpu]->cpu_postboot();
248
249 /*
250 * Log the CPU info before it is marked online and might get read.
251 */
252 cpuinfo_store_cpu();
253
254 /*
255 * Enable GIC and timers.
256 */
257 notify_cpu_starting(cpu);
258
259 store_cpu_topology(cpu);
260
261 /*
262 * OK, now it's safe to let the boot CPU continue. Wait for
263 * the CPU migration code to notice that the CPU is online
264 * before we continue.
265 */
266 pr_info("CPU%u: Booted secondary processor [%08x]\n",
267 cpu, read_cpuid_id());
268 update_cpu_boot_status(CPU_BOOT_SUCCESS);
269 set_cpu_online(cpu, true);
270 complete(&cpu_running);
271
272 local_irq_enable();
273 local_async_enable();
274
275 /*
276 * OK, it's off to the idle thread for us
277 */
278 cpu_startup_entry(CPUHP_AP_ONLINE_IDLE);
279 }
280
281 #ifdef CONFIG_HOTPLUG_CPU
282 static int op_cpu_disable(unsigned int cpu)
283 {
284 /*
285 * If we don't have a cpu_die method, abort before we reach the point
286 * of no return. CPU0 may not have an cpu_ops, so test for it.
287 */
288 if (!cpu_ops[cpu] || !cpu_ops[cpu]->cpu_die)
289 return -EOPNOTSUPP;
290
291 /*
292 * We may need to abort a hot unplug for some other mechanism-specific
293 * reason.
294 */
295 if (cpu_ops[cpu]->cpu_disable)
296 return cpu_ops[cpu]->cpu_disable(cpu);
297
298 return 0;
299 }
300
301 /*
302 * __cpu_disable runs on the processor to be shutdown.
303 */
304 int __cpu_disable(void)
305 {
306 unsigned int cpu = smp_processor_id();
307 int ret;
308
309 ret = op_cpu_disable(cpu);
310 if (ret)
311 return ret;
312
313 /*
314 * Take this CPU offline. Once we clear this, we can't return,
315 * and we must not schedule until we're ready to give up the cpu.
316 */
317 set_cpu_online(cpu, false);
318
319 /*
320 * OK - migrate IRQs away from this CPU
321 */
322 irq_migrate_all_off_this_cpu();
323
324 return 0;
325 }
326
327 static int op_cpu_kill(unsigned int cpu)
328 {
329 /*
330 * If we have no means of synchronising with the dying CPU, then assume
331 * that it is really dead. We can only wait for an arbitrary length of
332 * time and hope that it's dead, so let's skip the wait and just hope.
333 */
334 if (!cpu_ops[cpu]->cpu_kill)
335 return 0;
336
337 return cpu_ops[cpu]->cpu_kill(cpu);
338 }
339
340 /*
341 * called on the thread which is asking for a CPU to be shutdown -
342 * waits until shutdown has completed, or it is timed out.
343 */
344 void __cpu_die(unsigned int cpu)
345 {
346 int err;
347
348 if (!cpu_wait_death(cpu, 5)) {
349 pr_crit("CPU%u: cpu didn't die\n", cpu);
350 return;
351 }
352 pr_notice("CPU%u: shutdown\n", cpu);
353
354 /*
355 * Now that the dying CPU is beyond the point of no return w.r.t.
356 * in-kernel synchronisation, try to get the firwmare to help us to
357 * verify that it has really left the kernel before we consider
358 * clobbering anything it might still be using.
359 */
360 err = op_cpu_kill(cpu);
361 if (err)
362 pr_warn("CPU%d may not have shut down cleanly: %d\n",
363 cpu, err);
364 }
365
366 /*
367 * Called from the idle thread for the CPU which has been shutdown.
368 *
369 * Note that we disable IRQs here, but do not re-enable them
370 * before returning to the caller. This is also the behaviour
371 * of the other hotplug-cpu capable cores, so presumably coming
372 * out of idle fixes this.
373 */
374 void cpu_die(void)
375 {
376 unsigned int cpu = smp_processor_id();
377
378 idle_task_exit();
379
380 local_irq_disable();
381
382 /* Tell __cpu_die() that this CPU is now safe to dispose of */
383 (void)cpu_report_death();
384
385 /*
386 * Actually shutdown the CPU. This must never fail. The specific hotplug
387 * mechanism must perform all required cache maintenance to ensure that
388 * no dirty lines are lost in the process of shutting down the CPU.
389 */
390 cpu_ops[cpu]->cpu_die(cpu);
391
392 BUG();
393 }
394 #endif
395
396 /*
397 * Kill the calling secondary CPU, early in bringup before it is turned
398 * online.
399 */
400 void cpu_die_early(void)
401 {
402 int cpu = smp_processor_id();
403
404 pr_crit("CPU%d: will not boot\n", cpu);
405
406 /* Mark this CPU absent */
407 set_cpu_present(cpu, 0);
408
409 #ifdef CONFIG_HOTPLUG_CPU
410 update_cpu_boot_status(CPU_KILL_ME);
411 /* Check if we can park ourselves */
412 if (cpu_ops[cpu] && cpu_ops[cpu]->cpu_die)
413 cpu_ops[cpu]->cpu_die(cpu);
414 #endif
415 update_cpu_boot_status(CPU_STUCK_IN_KERNEL);
416
417 cpu_park_loop();
418 }
419
420 static void __init hyp_mode_check(void)
421 {
422 if (is_hyp_mode_available())
423 pr_info("CPU: All CPU(s) started at EL2\n");
424 else if (is_hyp_mode_mismatched())
425 WARN_TAINT(1, TAINT_CPU_OUT_OF_SPEC,
426 "CPU: CPUs started in inconsistent modes");
427 else
428 pr_info("CPU: All CPU(s) started at EL1\n");
429 }
430
431 void __init smp_cpus_done(unsigned int max_cpus)
432 {
433 pr_info("SMP: Total of %d processors activated.\n", num_online_cpus());
434 setup_cpu_features();
435 hyp_mode_check();
436 apply_alternatives_all();
437 }
438
439 void __init smp_prepare_boot_cpu(void)
440 {
441 set_my_cpu_offset(per_cpu_offset(smp_processor_id()));
442 /*
443 * Initialise the static keys early as they may be enabled by the
444 * cpufeature code.
445 */
446 jump_label_init();
447 cpuinfo_store_boot_cpu();
448 save_boot_cpu_run_el();
449 /*
450 * Run the errata work around checks on the boot CPU, once we have
451 * initialised the cpu feature infrastructure from
452 * cpuinfo_store_boot_cpu() above.
453 */
454 update_cpu_errata_workarounds();
455 }
456
457 static u64 __init of_get_cpu_mpidr(struct device_node *dn)
458 {
459 const __be32 *cell;
460 u64 hwid;
461
462 /*
463 * A cpu node with missing "reg" property is
464 * considered invalid to build a cpu_logical_map
465 * entry.
466 */
467 cell = of_get_property(dn, "reg", NULL);
468 if (!cell) {
469 pr_err("%s: missing reg property\n", dn->full_name);
470 return INVALID_HWID;
471 }
472
473 hwid = of_read_number(cell, of_n_addr_cells(dn));
474 /*
475 * Non affinity bits must be set to 0 in the DT
476 */
477 if (hwid & ~MPIDR_HWID_BITMASK) {
478 pr_err("%s: invalid reg property\n", dn->full_name);
479 return INVALID_HWID;
480 }
481 return hwid;
482 }
483
484 /*
485 * Duplicate MPIDRs are a recipe for disaster. Scan all initialized
486 * entries and check for duplicates. If any is found just ignore the
487 * cpu. cpu_logical_map was initialized to INVALID_HWID to avoid
488 * matching valid MPIDR values.
489 */
490 static bool __init is_mpidr_duplicate(unsigned int cpu, u64 hwid)
491 {
492 unsigned int i;
493
494 for (i = 1; (i < cpu) && (i < NR_CPUS); i++)
495 if (cpu_logical_map(i) == hwid)
496 return true;
497 return false;
498 }
499
500 /*
501 * Initialize cpu operations for a logical cpu and
502 * set it in the possible mask on success
503 */
504 static int __init smp_cpu_setup(int cpu)
505 {
506 if (cpu_read_ops(cpu))
507 return -ENODEV;
508
509 if (cpu_ops[cpu]->cpu_init(cpu))
510 return -ENODEV;
511
512 set_cpu_possible(cpu, true);
513
514 return 0;
515 }
516
517 static bool bootcpu_valid __initdata;
518 static unsigned int cpu_count = 1;
519
520 #ifdef CONFIG_ACPI
521 static struct acpi_madt_generic_interrupt cpu_madt_gicc[NR_CPUS];
522
523 struct acpi_madt_generic_interrupt *acpi_cpu_get_madt_gicc(int cpu)
524 {
525 return &cpu_madt_gicc[cpu];
526 }
527
528 /*
529 * acpi_map_gic_cpu_interface - parse processor MADT entry
530 *
531 * Carry out sanity checks on MADT processor entry and initialize
532 * cpu_logical_map on success
533 */
534 static void __init
535 acpi_map_gic_cpu_interface(struct acpi_madt_generic_interrupt *processor)
536 {
537 u64 hwid = processor->arm_mpidr;
538
539 if (!(processor->flags & ACPI_MADT_ENABLED)) {
540 pr_debug("skipping disabled CPU entry with 0x%llx MPIDR\n", hwid);
541 return;
542 }
543
544 if (hwid & ~MPIDR_HWID_BITMASK || hwid == INVALID_HWID) {
545 pr_err("skipping CPU entry with invalid MPIDR 0x%llx\n", hwid);
546 return;
547 }
548
549 if (is_mpidr_duplicate(cpu_count, hwid)) {
550 pr_err("duplicate CPU MPIDR 0x%llx in MADT\n", hwid);
551 return;
552 }
553
554 /* Check if GICC structure of boot CPU is available in the MADT */
555 if (cpu_logical_map(0) == hwid) {
556 if (bootcpu_valid) {
557 pr_err("duplicate boot CPU MPIDR: 0x%llx in MADT\n",
558 hwid);
559 return;
560 }
561 bootcpu_valid = true;
562 cpu_madt_gicc[0] = *processor;
563 early_map_cpu_to_node(0, acpi_numa_get_nid(0, hwid));
564 return;
565 }
566
567 if (cpu_count >= NR_CPUS)
568 return;
569
570 /* map the logical cpu id to cpu MPIDR */
571 cpu_logical_map(cpu_count) = hwid;
572
573 cpu_madt_gicc[cpu_count] = *processor;
574
575 /*
576 * Set-up the ACPI parking protocol cpu entries
577 * while initializing the cpu_logical_map to
578 * avoid parsing MADT entries multiple times for
579 * nothing (ie a valid cpu_logical_map entry should
580 * contain a valid parking protocol data set to
581 * initialize the cpu if the parking protocol is
582 * the only available enable method).
583 */
584 acpi_set_mailbox_entry(cpu_count, processor);
585
586 early_map_cpu_to_node(cpu_count, acpi_numa_get_nid(cpu_count, hwid));
587
588 cpu_count++;
589 }
590
591 static int __init
592 acpi_parse_gic_cpu_interface(struct acpi_subtable_header *header,
593 const unsigned long end)
594 {
595 struct acpi_madt_generic_interrupt *processor;
596
597 processor = (struct acpi_madt_generic_interrupt *)header;
598 if (BAD_MADT_GICC_ENTRY(processor, end))
599 return -EINVAL;
600
601 acpi_table_print_madt_entry(header);
602
603 acpi_map_gic_cpu_interface(processor);
604
605 return 0;
606 }
607 #else
608 #define acpi_table_parse_madt(...) do { } while (0)
609 #endif
610
611 /*
612 * Enumerate the possible CPU set from the device tree and build the
613 * cpu logical map array containing MPIDR values related to logical
614 * cpus. Assumes that cpu_logical_map(0) has already been initialized.
615 */
616 static void __init of_parse_and_init_cpus(void)
617 {
618 struct device_node *dn = NULL;
619
620 while ((dn = of_find_node_by_type(dn, "cpu"))) {
621 u64 hwid = of_get_cpu_mpidr(dn);
622
623 if (hwid == INVALID_HWID)
624 goto next;
625
626 if (is_mpidr_duplicate(cpu_count, hwid)) {
627 pr_err("%s: duplicate cpu reg properties in the DT\n",
628 dn->full_name);
629 goto next;
630 }
631
632 /*
633 * The numbering scheme requires that the boot CPU
634 * must be assigned logical id 0. Record it so that
635 * the logical map built from DT is validated and can
636 * be used.
637 */
638 if (hwid == cpu_logical_map(0)) {
639 if (bootcpu_valid) {
640 pr_err("%s: duplicate boot cpu reg property in DT\n",
641 dn->full_name);
642 goto next;
643 }
644
645 bootcpu_valid = true;
646 early_map_cpu_to_node(0, of_node_to_nid(dn));
647
648 /*
649 * cpu_logical_map has already been
650 * initialized and the boot cpu doesn't need
651 * the enable-method so continue without
652 * incrementing cpu.
653 */
654 continue;
655 }
656
657 if (cpu_count >= NR_CPUS)
658 goto next;
659
660 pr_debug("cpu logical map 0x%llx\n", hwid);
661 cpu_logical_map(cpu_count) = hwid;
662
663 early_map_cpu_to_node(cpu_count, of_node_to_nid(dn));
664 next:
665 cpu_count++;
666 }
667 }
668
669 /*
670 * Enumerate the possible CPU set from the device tree or ACPI and build the
671 * cpu logical map array containing MPIDR values related to logical
672 * cpus. Assumes that cpu_logical_map(0) has already been initialized.
673 */
674 void __init smp_init_cpus(void)
675 {
676 int i;
677
678 if (acpi_disabled)
679 of_parse_and_init_cpus();
680 else
681 /*
682 * do a walk of MADT to determine how many CPUs
683 * we have including disabled CPUs, and get information
684 * we need for SMP init
685 */
686 acpi_table_parse_madt(ACPI_MADT_TYPE_GENERIC_INTERRUPT,
687 acpi_parse_gic_cpu_interface, 0);
688
689 if (cpu_count > nr_cpu_ids)
690 pr_warn("Number of cores (%d) exceeds configured maximum of %d - clipping\n",
691 cpu_count, nr_cpu_ids);
692
693 if (!bootcpu_valid) {
694 pr_err("missing boot CPU MPIDR, not enabling secondaries\n");
695 return;
696 }
697
698 /*
699 * We need to set the cpu_logical_map entries before enabling
700 * the cpus so that cpu processor description entries (DT cpu nodes
701 * and ACPI MADT entries) can be retrieved by matching the cpu hwid
702 * with entries in cpu_logical_map while initializing the cpus.
703 * If the cpu set-up fails, invalidate the cpu_logical_map entry.
704 */
705 for (i = 1; i < nr_cpu_ids; i++) {
706 if (cpu_logical_map(i) != INVALID_HWID) {
707 if (smp_cpu_setup(i))
708 cpu_logical_map(i) = INVALID_HWID;
709 }
710 }
711 }
712
713 void __init smp_prepare_cpus(unsigned int max_cpus)
714 {
715 int err;
716 unsigned int cpu;
717 unsigned int this_cpu;
718
719 init_cpu_topology();
720
721 this_cpu = smp_processor_id();
722 store_cpu_topology(this_cpu);
723 numa_store_cpu_info(this_cpu);
724
725 /*
726 * If UP is mandated by "nosmp" (which implies "maxcpus=0"), don't set
727 * secondary CPUs present.
728 */
729 if (max_cpus == 0)
730 return;
731
732 /*
733 * Initialise the present map (which describes the set of CPUs
734 * actually populated at the present time) and release the
735 * secondaries from the bootloader.
736 */
737 for_each_possible_cpu(cpu) {
738
739 per_cpu(cpu_number, cpu) = cpu;
740
741 if (cpu == smp_processor_id())
742 continue;
743
744 if (!cpu_ops[cpu])
745 continue;
746
747 err = cpu_ops[cpu]->cpu_prepare(cpu);
748 if (err)
749 continue;
750
751 set_cpu_present(cpu, true);
752 numa_store_cpu_info(cpu);
753 }
754 }
755
756 void (*__smp_cross_call)(const struct cpumask *, unsigned int);
757
758 void __init set_smp_cross_call(void (*fn)(const struct cpumask *, unsigned int))
759 {
760 __smp_cross_call = fn;
761 }
762
763 static const char *ipi_types[NR_IPI] __tracepoint_string = {
764 #define S(x,s) [x] = s
765 S(IPI_RESCHEDULE, "Rescheduling interrupts"),
766 S(IPI_CALL_FUNC, "Function call interrupts"),
767 S(IPI_CPU_STOP, "CPU stop interrupts"),
768 S(IPI_CPU_CRASH_STOP, "CPU stop (for crash dump) interrupts"),
769 S(IPI_TIMER, "Timer broadcast interrupts"),
770 S(IPI_IRQ_WORK, "IRQ work interrupts"),
771 S(IPI_WAKEUP, "CPU wake-up interrupts"),
772 };
773
774 static void smp_cross_call(const struct cpumask *target, unsigned int ipinr)
775 {
776 trace_ipi_raise(target, ipi_types[ipinr]);
777 __smp_cross_call(target, ipinr);
778 }
779
780 void show_ipi_list(struct seq_file *p, int prec)
781 {
782 unsigned int cpu, i;
783
784 for (i = 0; i < NR_IPI; i++) {
785 seq_printf(p, "%*s%u:%s", prec - 1, "IPI", i,
786 prec >= 4 ? " " : "");
787 for_each_online_cpu(cpu)
788 seq_printf(p, "%10u ",
789 __get_irq_stat(cpu, ipi_irqs[i]));
790 seq_printf(p, " %s\n", ipi_types[i]);
791 }
792 }
793
794 u64 smp_irq_stat_cpu(unsigned int cpu)
795 {
796 u64 sum = 0;
797 int i;
798
799 for (i = 0; i < NR_IPI; i++)
800 sum += __get_irq_stat(cpu, ipi_irqs[i]);
801
802 return sum;
803 }
804
805 void arch_send_call_function_ipi_mask(const struct cpumask *mask)
806 {
807 smp_cross_call(mask, IPI_CALL_FUNC);
808 }
809
810 void arch_send_call_function_single_ipi(int cpu)
811 {
812 smp_cross_call(cpumask_of(cpu), IPI_CALL_FUNC);
813 }
814
815 #ifdef CONFIG_ARM64_ACPI_PARKING_PROTOCOL
816 void arch_send_wakeup_ipi_mask(const struct cpumask *mask)
817 {
818 smp_cross_call(mask, IPI_WAKEUP);
819 }
820 #endif
821
822 #ifdef CONFIG_IRQ_WORK
823 void arch_irq_work_raise(void)
824 {
825 if (__smp_cross_call)
826 smp_cross_call(cpumask_of(smp_processor_id()), IPI_IRQ_WORK);
827 }
828 #endif
829
830 /*
831 * ipi_cpu_stop - handle IPI from smp_send_stop()
832 */
833 static void ipi_cpu_stop(unsigned int cpu)
834 {
835 set_cpu_online(cpu, false);
836
837 local_irq_disable();
838
839 while (1)
840 cpu_relax();
841 }
842
843 #ifdef CONFIG_KEXEC_CORE
844 static atomic_t waiting_for_crash_ipi = ATOMIC_INIT(0);
845 #endif
846
847 static void ipi_cpu_crash_stop(unsigned int cpu, struct pt_regs *regs)
848 {
849 #ifdef CONFIG_KEXEC_CORE
850 crash_save_cpu(regs, cpu);
851
852 atomic_dec(&waiting_for_crash_ipi);
853
854 local_irq_disable();
855
856 #ifdef CONFIG_HOTPLUG_CPU
857 if (cpu_ops[cpu]->cpu_die)
858 cpu_ops[cpu]->cpu_die(cpu);
859 #endif
860
861 /* just in case */
862 cpu_park_loop();
863 #endif
864 }
865
866 /*
867 * Main handler for inter-processor interrupts
868 */
869 void handle_IPI(int ipinr, struct pt_regs *regs)
870 {
871 unsigned int cpu = smp_processor_id();
872 struct pt_regs *old_regs = set_irq_regs(regs);
873
874 if ((unsigned)ipinr < NR_IPI) {
875 trace_ipi_entry_rcuidle(ipi_types[ipinr]);
876 __inc_irq_stat(cpu, ipi_irqs[ipinr]);
877 }
878
879 switch (ipinr) {
880 case IPI_RESCHEDULE:
881 scheduler_ipi();
882 break;
883
884 case IPI_CALL_FUNC:
885 irq_enter();
886 generic_smp_call_function_interrupt();
887 irq_exit();
888 break;
889
890 case IPI_CPU_STOP:
891 irq_enter();
892 ipi_cpu_stop(cpu);
893 irq_exit();
894 break;
895
896 case IPI_CPU_CRASH_STOP:
897 if (IS_ENABLED(CONFIG_KEXEC_CORE)) {
898 irq_enter();
899 ipi_cpu_crash_stop(cpu, regs);
900
901 unreachable();
902 }
903 break;
904
905 #ifdef CONFIG_GENERIC_CLOCKEVENTS_BROADCAST
906 case IPI_TIMER:
907 irq_enter();
908 tick_receive_broadcast();
909 irq_exit();
910 break;
911 #endif
912
913 #ifdef CONFIG_IRQ_WORK
914 case IPI_IRQ_WORK:
915 irq_enter();
916 irq_work_run();
917 irq_exit();
918 break;
919 #endif
920
921 #ifdef CONFIG_ARM64_ACPI_PARKING_PROTOCOL
922 case IPI_WAKEUP:
923 WARN_ONCE(!acpi_parking_protocol_valid(cpu),
924 "CPU%u: Wake-up IPI outside the ACPI parking protocol\n",
925 cpu);
926 break;
927 #endif
928
929 default:
930 pr_crit("CPU%u: Unknown IPI message 0x%x\n", cpu, ipinr);
931 break;
932 }
933
934 if ((unsigned)ipinr < NR_IPI)
935 trace_ipi_exit_rcuidle(ipi_types[ipinr]);
936 set_irq_regs(old_regs);
937 }
938
939 void smp_send_reschedule(int cpu)
940 {
941 smp_cross_call(cpumask_of(cpu), IPI_RESCHEDULE);
942 }
943
944 #ifdef CONFIG_GENERIC_CLOCKEVENTS_BROADCAST
945 void tick_broadcast(const struct cpumask *mask)
946 {
947 smp_cross_call(mask, IPI_TIMER);
948 }
949 #endif
950
951 void smp_send_stop(void)
952 {
953 unsigned long timeout;
954
955 if (num_online_cpus() > 1) {
956 cpumask_t mask;
957
958 cpumask_copy(&mask, cpu_online_mask);
959 cpumask_clear_cpu(smp_processor_id(), &mask);
960
961 if (system_state == SYSTEM_BOOTING ||
962 system_state == SYSTEM_RUNNING)
963 pr_crit("SMP: stopping secondary CPUs\n");
964 smp_cross_call(&mask, IPI_CPU_STOP);
965 }
966
967 /* Wait up to one second for other CPUs to stop */
968 timeout = USEC_PER_SEC;
969 while (num_online_cpus() > 1 && timeout--)
970 udelay(1);
971
972 if (num_online_cpus() > 1)
973 pr_warning("SMP: failed to stop secondary CPUs %*pbl\n",
974 cpumask_pr_args(cpu_online_mask));
975 }
976
977 #ifdef CONFIG_KEXEC_CORE
978 void smp_send_crash_stop(void)
979 {
980 cpumask_t mask;
981 unsigned long timeout;
982
983 if (num_online_cpus() == 1)
984 return;
985
986 cpumask_copy(&mask, cpu_online_mask);
987 cpumask_clear_cpu(smp_processor_id(), &mask);
988
989 atomic_set(&waiting_for_crash_ipi, num_online_cpus() - 1);
990
991 pr_crit("SMP: stopping secondary CPUs\n");
992 smp_cross_call(&mask, IPI_CPU_CRASH_STOP);
993
994 /* Wait up to one second for other CPUs to stop */
995 timeout = USEC_PER_SEC;
996 while ((atomic_read(&waiting_for_crash_ipi) > 0) && timeout--)
997 udelay(1);
998
999 if (atomic_read(&waiting_for_crash_ipi) > 0)
1000 pr_warning("SMP: failed to stop secondary CPUs %*pbl\n",
1001 cpumask_pr_args(&mask));
1002 }
1003
1004 bool smp_crash_stop_failed(void)
1005 {
1006 return (atomic_read(&waiting_for_crash_ipi) > 0);
1007 }
1008 #endif
1009
1010 /*
1011 * not supported here
1012 */
1013 int setup_profiling_timer(unsigned int multiplier)
1014 {
1015 return -EINVAL;
1016 }
1017
1018 static bool have_cpu_die(void)
1019 {
1020 #ifdef CONFIG_HOTPLUG_CPU
1021 int any_cpu = raw_smp_processor_id();
1022
1023 if (cpu_ops[any_cpu]->cpu_die)
1024 return true;
1025 #endif
1026 return false;
1027 }
1028
1029 bool cpus_are_stuck_in_kernel(void)
1030 {
1031 bool smp_spin_tables = (num_possible_cpus() > 1 && !have_cpu_die());
1032
1033 return !!cpus_stuck_in_kernel || smp_spin_tables;
1034 }