smp.h 4.1 KB
Newer Older
1
/* SPDX-License-Identifier: GPL-2.0-only */
C
Catalin Marinas 已提交
2 3 4 5 6 7
/*
 * Copyright (C) 2012 ARM Ltd.
 */
#ifndef __ASM_SMP_H
#define __ASM_SMP_H

8 9
#include <linux/const.h>

10
/* 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 15
#define CPU_MMU_OFF			(-1)
#define CPU_BOOT_SUCCESS		(0)
16
/* The cpu invoked ops->cpu_die, synchronise it with cpu_kill */
17
#define CPU_KILL_ME			(1)
18
/* The cpu couldn't die gracefully and is looping in the kernel */
19
#define CPU_STUCK_IN_KERNEL		(2)
20
/* Fatal system error detected by secondary CPU, crash the system */
21 22
#define CPU_PANIC_KERNEL		(3)

23 24
#define CPU_STUCK_REASON_52_BIT_VA	(UL(1) << CPU_STUCK_REASON_SHIFT)
#define CPU_STUCK_REASON_NO_GRAN	(UL(2) << CPU_STUCK_REASON_SHIFT)
25 26 27

#ifndef __ASSEMBLY__

28 29
#include <asm/percpu.h>

C
Catalin Marinas 已提交
30 31 32 33
#include <linux/threads.h>
#include <linux/cpumask.h>
#include <linux/thread_info.h>

34 35 36 37 38 39
DECLARE_PER_CPU_READ_MOSTLY(int, cpu_number);

/*
 * We don't use this_cpu_read(cpu_number) as that has implicit writes to
 * preempt_count, and associated (compiler) barriers, that we'd like to avoid
 * the expense of. If we're preemptible, the value can be stale at use anyway.
40 41
 * And we can't use this_cpu_ptr() either, as that winds up recursing back
 * here under CONFIG_DEBUG_PREEMPT=y.
42
 */
43
#define raw_smp_processor_id() (*raw_cpu_ptr(&cpu_number))
C
Catalin Marinas 已提交
44

45 46 47 48 49 50
/*
 * Logical CPU mapping.
 */
extern u64 __cpu_logical_map[NR_CPUS];
#define cpu_logical_map(cpu)    __cpu_logical_map[cpu]

C
Catalin Marinas 已提交
51 52 53 54 55 56 57 58 59 60 61 62 63
struct seq_file;

/*
 * generate IPI list text
 */
extern void show_ipi_list(struct seq_file *p, int prec);

/*
 * Called from C code, this handles an IPI.
 */
extern void handle_IPI(int ipinr, struct pt_regs *regs);

/*
64 65
 * Discover the set of possible CPUs and determine their
 * SMP operations.
C
Catalin Marinas 已提交
66
 */
67
extern void smp_init_cpus(void);
C
Catalin Marinas 已提交
68 69 70 71 72 73

/*
 * Provide a function to raise an IPI cross call on CPUs in callmap.
 */
extern void set_smp_cross_call(void (*)(const struct cpumask *, unsigned int));

74 75
extern void (*__smp_cross_call)(const struct cpumask *, unsigned int);

C
Catalin Marinas 已提交
76 77 78 79 80 81 82
/*
 * Called from the secondary holding pen, this is the secondary CPU entry point.
 */
asmlinkage void secondary_start_kernel(void);

/*
 * Initial data for bringing up a secondary CPU.
83 84 85
 * @stack  - sp for the secondary CPU
 * @status - Result passed back from the secondary CPU to
 *           indicate failure.
C
Catalin Marinas 已提交
86 87 88
 */
struct secondary_data {
	void *stack;
89
	struct task_struct *task;
90
	long status;
C
Catalin Marinas 已提交
91
};
92

C
Catalin Marinas 已提交
93
extern struct secondary_data secondary_data;
94
extern long __early_cpu_boot_status;
95
extern void secondary_entry(void);
C
Catalin Marinas 已提交
96 97 98 99

extern void arch_send_call_function_single_ipi(int cpu);
extern void arch_send_call_function_ipi_mask(const struct cpumask *mask);

100 101 102 103 104 105 106 107 108
#ifdef CONFIG_ARM64_ACPI_PARKING_PROTOCOL
extern void arch_send_wakeup_ipi_mask(const struct cpumask *mask);
#else
static inline void arch_send_wakeup_ipi_mask(const struct cpumask *mask)
{
	BUILD_BUG();
}
#endif

109 110 111 112
extern int __cpu_disable(void);

extern void __cpu_die(unsigned int cpu);
extern void cpu_die(void);
113
extern void cpu_die_early(void);
114

115 116 117 118 119 120 121 122
static inline void cpu_park_loop(void)
{
	for (;;) {
		wfe();
		wfi();
	}
}

123 124 125 126 127 128 129
static inline void update_cpu_boot_status(int val)
{
	WRITE_ONCE(secondary_data.status, val);
	/* Ensure the visibility of the status update */
	dsb(ishst);
}

130 131 132 133 134 135 136 137 138 139 140
/*
 * The calling secondary CPU has detected serious configuration mismatch,
 * which calls for a kernel panic. Update the boot status and park the calling
 * CPU.
 */
static inline void cpu_panic_kernel(void)
{
	update_cpu_boot_status(CPU_PANIC_KERNEL);
	cpu_park_loop();
}

141 142 143 144 145 146 147 148 149 150 151 152
/*
 * If a secondary CPU enters the kernel but fails to come online,
 * (e.g. due to mismatched features), and cannot exit the kernel,
 * we increment cpus_stuck_in_kernel and leave the CPU in a
 * quiesecent loop within the kernel text. The memory containing
 * this loop must not be re-used for anything else as the 'stuck'
 * core is executing it.
 *
 * This function is used to inhibit features like kexec and hibernate.
 */
bool cpus_are_stuck_in_kernel(void);

153
extern void crash_smp_send_stop(void);
154 155
extern bool smp_crash_stop_failed(void);

156 157
#endif /* ifndef __ASSEMBLY__ */

C
Catalin Marinas 已提交
158
#endif /* ifndef __ASM_SMP_H */