Thomas Gleixner | d2912cb | 2019-06-04 10:11:33 +0200 | [diff] [blame^] | 1 | /* SPDX-License-Identifier: GPL-2.0-only */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
Russell King | 4baa992 | 2008-08-02 10:55:55 +0100 | [diff] [blame] | 3 | * arch/arm/include/asm/smp.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * |
| 5 | * Copyright (C) 2004-2005 ARM Ltd. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | */ |
| 7 | #ifndef __ASM_ARM_SMP_H |
| 8 | #define __ASM_ARM_SMP_H |
| 9 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | #include <linux/threads.h> |
| 11 | #include <linux/cpumask.h> |
| 12 | #include <linux/thread_info.h> |
| 13 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | #ifndef CONFIG_SMP |
Russell King | 4baa992 | 2008-08-02 10:55:55 +0100 | [diff] [blame] | 15 | # error "<asm/smp.h> included in non-SMP build" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #endif |
| 17 | |
Ingo Molnar | 39c715b | 2005-06-21 17:14:34 -0700 | [diff] [blame] | 18 | #define raw_smp_processor_id() (current_thread_info()->cpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | struct seq_file; |
| 21 | |
| 22 | /* |
| 23 | * generate IPI list text |
| 24 | */ |
Russell King | f13cd41 | 2010-11-15 14:33:51 +0000 | [diff] [blame] | 25 | extern void show_ipi_list(struct seq_file *, int); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | |
| 27 | /* |
Russell King | 3b6353f | 2005-11-08 15:35:23 +0000 | [diff] [blame] | 28 | * Called from assembly code, this handles an IPI. |
| 29 | */ |
Russell King | ad3b6993 | 2010-11-15 09:42:08 +0000 | [diff] [blame] | 30 | asmlinkage void do_IPI(int ipinr, struct pt_regs *regs); |
Russell King | 3b6353f | 2005-11-08 15:35:23 +0000 | [diff] [blame] | 31 | |
| 32 | /* |
Shawn Guo | 0b5a1b95 | 2011-10-06 15:18:14 +0100 | [diff] [blame] | 33 | * Called from C code, this handles an IPI. |
| 34 | */ |
| 35 | void handle_IPI(int ipinr, struct pt_regs *regs); |
| 36 | |
| 37 | /* |
Russell King | e03cdad | 2009-05-28 14:16:52 +0100 | [diff] [blame] | 38 | * Setup the set of possible CPUs (via set_cpu_possible) |
Russell King | 7bbb794 | 2006-02-16 11:08:09 +0000 | [diff] [blame] | 39 | */ |
| 40 | extern void smp_init_cpus(void); |
| 41 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | |
| 43 | /* |
Russell King | 0f7b332 | 2011-04-03 13:01:30 +0100 | [diff] [blame] | 44 | * Provide a function to raise an IPI cross call on CPUs in callmap. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | */ |
Russell King | 0f7b332 | 2011-04-03 13:01:30 +0100 | [diff] [blame] | 46 | extern void set_smp_cross_call(void (*)(const struct cpumask *, unsigned int)); |
Russell King | dbebb4c | 2005-11-08 10:40:10 +0000 | [diff] [blame] | 47 | |
| 48 | /* |
Russell King | 3b6353f | 2005-11-08 15:35:23 +0000 | [diff] [blame] | 49 | * Called from platform specific assembly code, this is the |
| 50 | * secondary CPU entry point. |
| 51 | */ |
| 52 | asmlinkage void secondary_start_kernel(void); |
| 53 | |
Russell King | 05c74a6 | 2010-12-03 11:09:48 +0000 | [diff] [blame] | 54 | |
| 55 | /* |
Russell King | e65f38e | 2005-06-18 09:33:31 +0100 | [diff] [blame] | 56 | * Initial data for bringing up a secondary CPU. |
| 57 | */ |
| 58 | struct secondary_data { |
Jonathan Austin | eb08375 | 2013-02-22 18:51:30 +0000 | [diff] [blame] | 59 | union { |
Vladimir Murzin | a0995c08 | 2017-10-16 12:54:05 +0100 | [diff] [blame] | 60 | struct mpu_rgn_info *mpu_rgn_info; |
Russell King | b2c3e38 | 2015-04-04 20:09:46 +0100 | [diff] [blame] | 61 | u64 pgdir; |
Jonathan Austin | eb08375 | 2013-02-22 18:51:30 +0000 | [diff] [blame] | 62 | }; |
Catalin Marinas | d427958 | 2011-05-26 11:22:44 +0100 | [diff] [blame] | 63 | unsigned long swapper_pg_dir; |
Russell King | e65f38e | 2005-06-18 09:33:31 +0100 | [diff] [blame] | 64 | void *stack; |
| 65 | }; |
| 66 | extern struct secondary_data secondary_data; |
Arnd Bergmann | 1146b60 | 2014-03-16 18:04:54 +0100 | [diff] [blame] | 67 | extern void secondary_startup(void); |
Yingjoe Chen | 29d2e56 | 2015-05-18 09:06:13 +0100 | [diff] [blame] | 68 | extern void secondary_startup_arm(void); |
Russell King | e65f38e | 2005-06-18 09:33:31 +0100 | [diff] [blame] | 69 | |
Russell King | a054a81 | 2005-11-02 22:24:33 +0000 | [diff] [blame] | 70 | extern int __cpu_disable(void); |
Russell King | a054a81 | 2005-11-02 22:24:33 +0000 | [diff] [blame] | 71 | |
| 72 | extern void __cpu_die(unsigned int cpu); |
Russell King | a054a81 | 2005-11-02 22:24:33 +0000 | [diff] [blame] | 73 | |
Jens Axboe | f6dd9fa | 2008-06-10 20:48:30 +0200 | [diff] [blame] | 74 | extern void arch_send_call_function_single_ipi(int cpu); |
Russell King | 8266810 | 2009-05-17 16:20:18 +0100 | [diff] [blame] | 75 | extern void arch_send_call_function_ipi_mask(const struct cpumask *mask); |
Shawn Guo | b62655f | 2012-11-06 03:48:40 +0100 | [diff] [blame] | 76 | extern void arch_send_wakeup_ipi_mask(const struct cpumask *mask); |
Jens Axboe | f6dd9fa | 2008-06-10 20:48:30 +0200 | [diff] [blame] | 77 | |
Nicolas Pitre | 5135d87 | 2012-11-27 21:54:41 -0500 | [diff] [blame] | 78 | extern int register_ipi_completion(struct completion *completion, int cpu); |
| 79 | |
Marc Zyngier | abcee5f | 2011-09-08 09:06:10 +0100 | [diff] [blame] | 80 | struct smp_operations { |
| 81 | #ifdef CONFIG_SMP |
| 82 | /* |
| 83 | * Setup the set of possible CPUs (via set_cpu_possible) |
| 84 | */ |
| 85 | void (*smp_init_cpus)(void); |
| 86 | /* |
| 87 | * Initialize cpu_possible map, and enable coherency |
| 88 | */ |
| 89 | void (*smp_prepare_cpus)(unsigned int max_cpus); |
| 90 | |
| 91 | /* |
| 92 | * Perform platform specific initialisation of the specified CPU. |
| 93 | */ |
| 94 | void (*smp_secondary_init)(unsigned int cpu); |
| 95 | /* |
| 96 | * Boot a secondary CPU, and assign it the specified idle task. |
| 97 | * This also gives us the initial stack to use for this CPU. |
| 98 | */ |
| 99 | int (*smp_boot_secondary)(unsigned int cpu, struct task_struct *idle); |
| 100 | #ifdef CONFIG_HOTPLUG_CPU |
| 101 | int (*cpu_kill)(unsigned int cpu); |
| 102 | void (*cpu_die)(unsigned int cpu); |
Stephen Boyd | 787047e | 2015-07-29 00:34:48 +0100 | [diff] [blame] | 103 | bool (*cpu_can_disable)(unsigned int cpu); |
Marc Zyngier | abcee5f | 2011-09-08 09:06:10 +0100 | [diff] [blame] | 104 | int (*cpu_disable)(unsigned int cpu); |
| 105 | #endif |
| 106 | #endif |
| 107 | }; |
| 108 | |
Stephen Boyd | 6c3ff8b | 2013-10-30 18:21:09 -0700 | [diff] [blame] | 109 | struct of_cpu_method { |
| 110 | const char *method; |
Masahiro Yamada | f460b6a | 2015-08-26 07:49:12 +0100 | [diff] [blame] | 111 | const struct smp_operations *ops; |
Stephen Boyd | 6c3ff8b | 2013-10-30 18:21:09 -0700 | [diff] [blame] | 112 | }; |
| 113 | |
| 114 | #define CPU_METHOD_OF_DECLARE(name, _method, _ops) \ |
| 115 | static const struct of_cpu_method __cpu_method_of_table_##name \ |
| 116 | __used __section(__cpu_method_of_table) \ |
| 117 | = { .method = _method, .ops = _ops } |
Marc Zyngier | abcee5f | 2011-09-08 09:06:10 +0100 | [diff] [blame] | 118 | /* |
| 119 | * set platform specific SMP operations |
| 120 | */ |
Masahiro Yamada | 4caa9dd | 2015-08-26 07:49:11 +0100 | [diff] [blame] | 121 | extern void smp_set_ops(const struct smp_operations *); |
Marc Zyngier | abcee5f | 2011-09-08 09:06:10 +0100 | [diff] [blame] | 122 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | #endif /* ifndef __ASM_ARM_SMP_H */ |