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