blob: 1e0f20a9cddaa0caac16e0e5adfe09537cdce1dc [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * This file is subject to the terms and conditions of the GNU General
3 * Public License. See the file "COPYING" in the main directory of this
4 * archive for more details.
5 *
6 * Copyright (C) 2000 - 2001 by Kanoj Sarcar (kanoj@sgi.com)
7 * Copyright (C) 2000 - 2001 by Silicon Graphics, Inc.
8 * Copyright (C) 2000, 2001, 2002 Ralf Baechle
9 * Copyright (C) 2000, 2001 Broadcom Corporation
10 */
11#ifndef __ASM_SMP_H
12#define __ASM_SMP_H
13
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/bitops.h>
15#include <linux/linkage.h>
Ralf Baechle631330f2009-06-19 14:05:26 +010016#include <linux/smp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/threads.h>
18#include <linux/cpumask.h>
Ralf Baechle87353d82007-11-19 12:23:51 +000019
Arun Sharma600634972011-07-26 16:09:06 -070020#include <linux/atomic.h>
Ralf Baechle87353d82007-11-19 12:23:51 +000021#include <asm/smp-ops.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
Ralf Baechle0ab7aef2007-03-02 20:42:04 +000023extern int smp_num_siblings;
24extern cpumask_t cpu_sibling_map[];
Huacai Chenbda45842014-06-26 11:41:26 +080025extern cpumask_t cpu_core_map[];
Ralf Baechle0ab7aef2007-03-02 20:42:04 +000026
Ingo Molnar39c715b2005-06-21 17:14:34 -070027#define raw_smp_processor_id() (current_thread_info()->cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
29/* Map from cpu id to sequential logical cpu number. This will only
Ralf Baechle70342282013-01-22 12:59:30 +010030 not be idempotent when cpus failed to come on-line. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070031extern int __cpu_number_map[NR_CPUS];
32#define cpu_number_map(cpu) __cpu_number_map[cpu]
33
34/* The reverse map from sequential logical cpu number to cpu id. */
35extern int __cpu_logical_map[NR_CPUS];
36#define cpu_logical_map(cpu) __cpu_logical_map[cpu]
37
38#define NO_PROC_ID (-1)
39
Huacai Chenbda45842014-06-26 11:41:26 +080040#define topology_physical_package_id(cpu) (cpu_data[cpu].package)
41#define topology_core_id(cpu) (cpu_data[cpu].core)
42#define topology_core_cpumask(cpu) (&cpu_core_map[cpu])
43#define topology_thread_cpumask(cpu) (&cpu_sibling_map[cpu])
44
Ralf Baechle70342282013-01-22 12:59:30 +010045#define SMP_RESCHEDULE_YOURSELF 0x1 /* XXX braindead */
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#define SMP_CALL_FUNCTION 0x2
David Daneyddcdb1b2008-12-11 15:33:32 -080047/* Octeon - Tell another core to flush its icache */
48#define SMP_ICACHE_FLUSH 0x4
Ralf Baechle7aa1c8f2012-10-11 18:14:58 +020049/* Used by kexec crashdump to save all cpu's state */
50#define SMP_DUMP 0x8
Huacai Chenc4a987d2014-03-21 18:44:09 +080051#define SMP_ASK_C0COUNT 0x10
David Daneyddcdb1b2008-12-11 15:33:32 -080052
Ralf Baechle773cb772009-06-23 10:36:38 +010053extern volatile cpumask_t cpu_callin_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Paul Burton76306f42014-02-14 16:30:52 +000055/* Mask of CPUs which are currently definitely operating coherently */
56extern cpumask_t cpu_coherent_mask;
57
Linus Torvalds1da177e2005-04-16 15:20:36 -070058extern void asmlinkage smp_bootstrap(void);
59
60/*
61 * this function sends a 'reschedule' IPI to another CPU.
62 * it goes straight through and wastes no time serializing
63 * anything. Worst case is that we lose a reschedule ...
64 */
65static inline void smp_send_reschedule(int cpu)
66{
Ralf Baechle87353d82007-11-19 12:23:51 +000067 extern struct plat_smp_ops *mp_ops; /* private */
68
69 mp_ops->send_ipi_single(cpu, SMP_RESCHEDULE_YOURSELF);
Linus Torvalds1da177e2005-04-16 15:20:36 -070070}
71
Ralf Baechle1b2bc752009-06-23 10:00:31 +010072#ifdef CONFIG_HOTPLUG_CPU
73static inline int __cpu_disable(void)
74{
Ralf Baechle70342282013-01-22 12:59:30 +010075 extern struct plat_smp_ops *mp_ops; /* private */
Ralf Baechle1b2bc752009-06-23 10:00:31 +010076
77 return mp_ops->cpu_disable();
78}
79
80static inline void __cpu_die(unsigned int cpu)
81{
Ralf Baechle70342282013-01-22 12:59:30 +010082 extern struct plat_smp_ops *mp_ops; /* private */
Ralf Baechle1b2bc752009-06-23 10:00:31 +010083
84 mp_ops->cpu_die(cpu);
85}
86
87extern void play_dead(void);
88#endif
89
Linus Torvalds1da177e2005-04-16 15:20:36 -070090extern asmlinkage void smp_call_function_interrupt(void);
91
Ralf Baechleeef34ec2009-09-25 15:35:28 +010092static inline void arch_send_call_function_single_ipi(int cpu)
93{
Ralf Baechle70342282013-01-22 12:59:30 +010094 extern struct plat_smp_ops *mp_ops; /* private */
Ralf Baechleeef34ec2009-09-25 15:35:28 +010095
96 mp_ops->send_ipi_mask(&cpumask_of_cpu(cpu), SMP_CALL_FUNCTION);
97}
98
99static inline void arch_send_call_function_ipi_mask(const struct cpumask *mask)
100{
Ralf Baechle70342282013-01-22 12:59:30 +0100101 extern struct plat_smp_ops *mp_ops; /* private */
Ralf Baechleeef34ec2009-09-25 15:35:28 +0100102
103 mp_ops->send_ipi_mask(mask, SMP_CALL_FUNCTION);
104}
Jens Axboe2f304c02008-06-17 10:45:23 +0200105
Ralf Baechle7aa1c8f2012-10-11 18:14:58 +0200106#if defined(CONFIG_KEXEC)
107extern void (*dump_ipi_function_ptr)(void *);
108void dump_send_ipi(void (*dump_ipi_callback)(void *));
109#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110#endif /* __ASM_SMP_H */