blob: 2e7f529ec5a6559138137ee5b5143a70b0702965 [file] [log] [blame]
David Brazdil0f672f62019-12-10 10:32:29 +00001/* SPDX-License-Identifier: GPL-2.0-only */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002/*
3 * Copyright (C) 2012 ARM Ltd.
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004 */
5#ifndef __ASM_SMP_H
6#define __ASM_SMP_H
7
David Brazdil0f672f62019-12-10 10:32:29 +00008#include <linux/const.h>
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00009
David Brazdil0f672f62019-12-10 10:32:29 +000010/* Values for secondary_data.status */
11#define CPU_STUCK_REASON_SHIFT (8)
12#define CPU_BOOT_STATUS_MASK ((UL(1) << CPU_STUCK_REASON_SHIFT) - 1)
13
14#define CPU_MMU_OFF (-1)
15#define CPU_BOOT_SUCCESS (0)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000016/* The cpu invoked ops->cpu_die, synchronise it with cpu_kill */
David Brazdil0f672f62019-12-10 10:32:29 +000017#define CPU_KILL_ME (1)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000018/* The cpu couldn't die gracefully and is looping in the kernel */
David Brazdil0f672f62019-12-10 10:32:29 +000019#define CPU_STUCK_IN_KERNEL (2)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000020/* Fatal system error detected by secondary CPU, crash the system */
David Brazdil0f672f62019-12-10 10:32:29 +000021#define CPU_PANIC_KERNEL (3)
22
23#define CPU_STUCK_REASON_52_BIT_VA (UL(1) << CPU_STUCK_REASON_SHIFT)
24#define CPU_STUCK_REASON_NO_GRAN (UL(2) << CPU_STUCK_REASON_SHIFT)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000025
26#ifndef __ASSEMBLY__
27
28#include <asm/percpu.h>
29
30#include <linux/threads.h>
31#include <linux/cpumask.h>
32#include <linux/thread_info.h>
33
34DECLARE_PER_CPU_READ_MOSTLY(int, cpu_number);
35
36/*
37 * We don't use this_cpu_read(cpu_number) as that has implicit writes to
38 * preempt_count, and associated (compiler) barriers, that we'd like to avoid
39 * the expense of. If we're preemptible, the value can be stale at use anyway.
40 * And we can't use this_cpu_ptr() either, as that winds up recursing back
41 * here under CONFIG_DEBUG_PREEMPT=y.
42 */
43#define raw_smp_processor_id() (*raw_cpu_ptr(&cpu_number))
44
David Brazdil0f672f62019-12-10 10:32:29 +000045/*
46 * Logical CPU mapping.
47 */
48extern u64 __cpu_logical_map[NR_CPUS];
Olivier Deprez0e641232021-09-23 10:07:05 +020049extern u64 cpu_logical_map(int cpu);
50
51static inline void set_cpu_logical_map(int cpu, u64 hwid)
52{
53 __cpu_logical_map[cpu] = hwid;
54}
David Brazdil0f672f62019-12-10 10:32:29 +000055
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000056struct seq_file;
57
58/*
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000059 * Discover the set of possible CPUs and determine their
60 * SMP operations.
61 */
62extern void smp_init_cpus(void);
63
64/*
Olivier Deprez157378f2022-04-04 15:47:50 +020065 * Register IPI interrupts with the arch SMP code
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000066 */
Olivier Deprez157378f2022-04-04 15:47:50 +020067extern void set_smp_ipi_range(int ipi_base, int nr_ipi);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000068
69/*
70 * Called from the secondary holding pen, this is the secondary CPU entry point.
71 */
72asmlinkage void secondary_start_kernel(void);
73
74/*
75 * Initial data for bringing up a secondary CPU.
76 * @stack - sp for the secondary CPU
77 * @status - Result passed back from the secondary CPU to
78 * indicate failure.
79 */
80struct secondary_data {
81 void *stack;
82 struct task_struct *task;
83 long status;
84};
85
86extern struct secondary_data secondary_data;
87extern long __early_cpu_boot_status;
88extern void secondary_entry(void);
89
90extern void arch_send_call_function_single_ipi(int cpu);
91extern void arch_send_call_function_ipi_mask(const struct cpumask *mask);
92
93#ifdef CONFIG_ARM64_ACPI_PARKING_PROTOCOL
94extern void arch_send_wakeup_ipi_mask(const struct cpumask *mask);
95#else
96static inline void arch_send_wakeup_ipi_mask(const struct cpumask *mask)
97{
98 BUILD_BUG();
99}
100#endif
101
102extern int __cpu_disable(void);
103
104extern void __cpu_die(unsigned int cpu);
105extern void cpu_die(void);
106extern void cpu_die_early(void);
107
108static inline void cpu_park_loop(void)
109{
110 for (;;) {
111 wfe();
112 wfi();
113 }
114}
115
116static inline void update_cpu_boot_status(int val)
117{
118 WRITE_ONCE(secondary_data.status, val);
119 /* Ensure the visibility of the status update */
120 dsb(ishst);
121}
122
123/*
124 * The calling secondary CPU has detected serious configuration mismatch,
125 * which calls for a kernel panic. Update the boot status and park the calling
126 * CPU.
127 */
128static inline void cpu_panic_kernel(void)
129{
130 update_cpu_boot_status(CPU_PANIC_KERNEL);
131 cpu_park_loop();
132}
133
134/*
135 * If a secondary CPU enters the kernel but fails to come online,
136 * (e.g. due to mismatched features), and cannot exit the kernel,
137 * we increment cpus_stuck_in_kernel and leave the CPU in a
138 * quiesecent loop within the kernel text. The memory containing
139 * this loop must not be re-used for anything else as the 'stuck'
140 * core is executing it.
141 *
142 * This function is used to inhibit features like kexec and hibernate.
143 */
144bool cpus_are_stuck_in_kernel(void);
145
146extern void crash_smp_send_stop(void);
147extern bool smp_crash_stop_failed(void);
148
149#endif /* ifndef __ASSEMBLY__ */
150
151#endif /* ifndef __ASM_SMP_H */