blob: 96ed521f240877cd20a7d44df4c24b1481aae4f6 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Russell King4baa9922008-08-02 10:55:55 +01002 * arch/arm/include/asm/smp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * Copyright (C) 2004-2005 ARM Ltd.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10#ifndef __ASM_ARM_SMP_H
11#define __ASM_ARM_SMP_H
12
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/threads.h>
14#include <linux/cpumask.h>
15#include <linux/thread_info.h>
16
Russell Kinga09e64f2008-08-05 16:14:15 +010017#include <mach/smp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
19#ifndef CONFIG_SMP
Russell King4baa9922008-08-02 10:55:55 +010020# error "<asm/smp.h> included in non-SMP build"
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#endif
22
Ingo Molnar39c715b2005-06-21 17:14:34 -070023#define raw_smp_processor_id() (current_thread_info()->cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Linus Torvalds1da177e2005-04-16 15:20:36 -070025/*
26 * at the moment, there's not a big penalty for changing CPUs
27 * (the >big< penalty is running SMP in the first place)
28 */
29#define PROC_CHANGE_PENALTY 15
30
31struct seq_file;
32
33/*
34 * generate IPI list text
35 */
Russell Kingf13cd412010-11-15 14:33:51 +000036extern void show_ipi_list(struct seq_file *, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38/*
Russell King3b6353f2005-11-08 15:35:23 +000039 * Called from assembly code, this handles an IPI.
40 */
Russell Kingad3b6992010-11-15 09:42:08 +000041asmlinkage void do_IPI(int ipinr, struct pt_regs *regs);
Russell King3b6353f2005-11-08 15:35:23 +000042
43/*
Russell Kinge03cdad2009-05-28 14:16:52 +010044 * Setup the set of possible CPUs (via set_cpu_possible)
Russell King7bbb7942006-02-16 11:08:09 +000045 */
46extern void smp_init_cpus(void);
47
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49/*
50 * Raise an IPI cross call on CPUs in callmap.
51 */
Russell Kingad3b6992010-11-15 09:42:08 +000052extern void smp_cross_call(const struct cpumask *mask, int ipi);
Russell Kingdbebb4c2005-11-08 10:40:10 +000053
54/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 * Boot a secondary CPU, and assign it the specified idle task.
56 * This also gives us the initial stack to use for this CPU.
57 */
58extern int boot_secondary(unsigned int cpu, struct task_struct *);
59
Russell Kinge65f38e2005-06-18 09:33:31 +010060/*
Russell King3b6353f2005-11-08 15:35:23 +000061 * Called from platform specific assembly code, this is the
62 * secondary CPU entry point.
63 */
64asmlinkage void secondary_start_kernel(void);
65
66/*
Russell Kinge65f38e2005-06-18 09:33:31 +010067 * Perform platform specific initialisation of the specified CPU.
68 */
69extern void platform_secondary_init(unsigned int cpu);
70
71/*
Russell King05c74a62010-12-03 11:09:48 +000072 * Initialize cpu_possible map, and enable coherency
73 */
74extern void platform_smp_prepare_cpus(unsigned int);
75
76/*
Russell Kinge65f38e2005-06-18 09:33:31 +010077 * Initial data for bringing up a secondary CPU.
78 */
79struct secondary_data {
80 unsigned long pgdir;
81 void *stack;
82};
83extern struct secondary_data secondary_data;
84
Russell Kinga054a812005-11-02 22:24:33 +000085extern int __cpu_disable(void);
Russell King8e2a43f2010-05-15 10:18:05 +010086extern int platform_cpu_disable(unsigned int cpu);
Russell Kinga054a812005-11-02 22:24:33 +000087
88extern void __cpu_die(unsigned int cpu);
89extern void cpu_die(void);
90
91extern void platform_cpu_die(unsigned int cpu);
92extern int platform_cpu_kill(unsigned int cpu);
93extern void platform_cpu_enable(unsigned int cpu);
94
Jens Axboef6dd9fa2008-06-10 20:48:30 +020095extern void arch_send_call_function_single_ipi(int cpu);
Russell King82668102009-05-17 16:20:18 +010096extern void arch_send_call_function_ipi_mask(const struct cpumask *mask);
Jens Axboef6dd9fa2008-06-10 20:48:30 +020097
Catalin Marinas3e459992008-02-04 17:28:56 +010098/*
Russell King37ee16a2005-11-08 19:08:05 +000099 * show local interrupt info
100 */
Russell Kingf13cd412010-11-15 14:33:51 +0000101extern void show_local_irqs(struct seq_file *, int);
Russell King37ee16a2005-11-08 19:08:05 +0000102
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103#endif /* ifndef __ASM_ARM_SMP_H */