smp.h 3.0 KB
Newer Older
C
Catalin Marinas 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/*
 * Copyright (C) 2012 ARM Ltd.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
#ifndef __ASM_SMP_H
#define __ASM_SMP_H

19 20 21 22 23 24 25 26 27 28 29 30 31
/* Values for secondary_data.status */

#define CPU_MMU_OFF		(-1)
#define CPU_BOOT_SUCCESS	(0)
/* The cpu invoked ops->cpu_die, synchronise it with cpu_kill */
#define CPU_KILL_ME		(1)
/* The cpu couldn't die gracefully and is looping in the kernel */
#define CPU_STUCK_IN_KERNEL	(2)
/* Fatal system error detected by secondary CPU, crash the system */
#define CPU_PANIC_KERNEL	(3)

#ifndef __ASSEMBLY__

C
Catalin Marinas 已提交
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
#include <linux/threads.h>
#include <linux/cpumask.h>
#include <linux/thread_info.h>

#define raw_smp_processor_id() (current_thread_info()->cpu)

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);

/*
51 52
 * Discover the set of possible CPUs and determine their
 * SMP operations.
C
Catalin Marinas 已提交
53
 */
54
extern void smp_init_cpus(void);
C
Catalin Marinas 已提交
55 56 57 58 59 60

/*
 * 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));

61 62
extern void (*__smp_cross_call)(const struct cpumask *, unsigned int);

C
Catalin Marinas 已提交
63 64 65 66 67 68 69
/*
 * 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.
70 71 72
 * @stack  - sp for the secondary CPU
 * @status - Result passed back from the secondary CPU to
 *           indicate failure.
C
Catalin Marinas 已提交
73 74 75
 */
struct secondary_data {
	void *stack;
76
	long status;
C
Catalin Marinas 已提交
77
};
78

C
Catalin Marinas 已提交
79
extern struct secondary_data secondary_data;
80
extern long __early_cpu_boot_status;
81
extern void secondary_entry(void);
C
Catalin Marinas 已提交
82 83 84 85

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

86 87 88 89 90 91 92 93 94
#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

95 96 97 98
extern int __cpu_disable(void);

extern void __cpu_die(unsigned int cpu);
extern void cpu_die(void);
99
extern void cpu_die_early(void);
100

101 102 103 104 105 106 107 108
static inline void cpu_park_loop(void)
{
	for (;;) {
		wfe();
		wfi();
	}
}

109 110 111 112 113 114 115 116 117
static inline void update_cpu_boot_status(int val)
{
	WRITE_ONCE(secondary_data.status, val);
	/* Ensure the visibility of the status update */
	dsb(ishst);
}

#endif /* ifndef __ASSEMBLY__ */

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