blob: 03722d4326a1aad05935b58805ec8d881703201e [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[];
Markos Chandrascccf34e2015-07-10 09:29:10 +010026extern cpumask_t cpu_foreign_map;
Ralf Baechle0ab7aef2007-03-02 20:42:04 +000027
Ingo Molnar39c715b2005-06-21 17:14:34 -070028#define raw_smp_processor_id() (current_thread_info()->cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
30/* Map from cpu id to sequential logical cpu number. This will only
Ralf Baechle70342282013-01-22 12:59:30 +010031 not be idempotent when cpus failed to come on-line. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070032extern int __cpu_number_map[NR_CPUS];
33#define cpu_number_map(cpu) __cpu_number_map[cpu]
34
35/* The reverse map from sequential logical cpu number to cpu id. */
36extern int __cpu_logical_map[NR_CPUS];
37#define cpu_logical_map(cpu) __cpu_logical_map[cpu]
38
39#define NO_PROC_ID (-1)
40
Ralf Baechle70342282013-01-22 12:59:30 +010041#define SMP_RESCHEDULE_YOURSELF 0x1 /* XXX braindead */
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#define SMP_CALL_FUNCTION 0x2
David Daneyddcdb1b2008-12-11 15:33:32 -080043/* Octeon - Tell another core to flush its icache */
44#define SMP_ICACHE_FLUSH 0x4
Ralf Baechle7aa1c8f2012-10-11 18:14:58 +020045/* Used by kexec crashdump to save all cpu's state */
46#define SMP_DUMP 0x8
Huacai Chenc4a987d2014-03-21 18:44:09 +080047#define SMP_ASK_C0COUNT 0x10
David Daneyddcdb1b2008-12-11 15:33:32 -080048
Ralf Baechlecafb45b2015-05-12 06:43:04 +020049extern cpumask_t cpu_callin_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Paul Burton76306f42014-02-14 16:30:52 +000051/* Mask of CPUs which are currently definitely operating coherently */
52extern cpumask_t cpu_coherent_mask;
53
Linus Torvalds1da177e2005-04-16 15:20:36 -070054extern void asmlinkage smp_bootstrap(void);
55
56/*
57 * this function sends a 'reschedule' IPI to another CPU.
58 * it goes straight through and wastes no time serializing
59 * anything. Worst case is that we lose a reschedule ...
60 */
61static inline void smp_send_reschedule(int cpu)
62{
Ralf Baechle87353d82007-11-19 12:23:51 +000063 extern struct plat_smp_ops *mp_ops; /* private */
64
65 mp_ops->send_ipi_single(cpu, SMP_RESCHEDULE_YOURSELF);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066}
67
Ralf Baechle1b2bc752009-06-23 10:00:31 +010068#ifdef CONFIG_HOTPLUG_CPU
69static inline int __cpu_disable(void)
70{
Ralf Baechle70342282013-01-22 12:59:30 +010071 extern struct plat_smp_ops *mp_ops; /* private */
Ralf Baechle1b2bc752009-06-23 10:00:31 +010072
73 return mp_ops->cpu_disable();
74}
75
76static inline void __cpu_die(unsigned int cpu)
77{
Ralf Baechle70342282013-01-22 12:59:30 +010078 extern struct plat_smp_ops *mp_ops; /* private */
Ralf Baechle1b2bc752009-06-23 10:00:31 +010079
80 mp_ops->cpu_die(cpu);
81}
82
83extern void play_dead(void);
84#endif
85
Ralf Baechleeef34ec2009-09-25 15:35:28 +010086static inline void arch_send_call_function_single_ipi(int cpu)
87{
Ralf Baechle70342282013-01-22 12:59:30 +010088 extern struct plat_smp_ops *mp_ops; /* private */
Ralf Baechleeef34ec2009-09-25 15:35:28 +010089
Rusty Russell1ed18352015-03-10 13:00:43 +103090 mp_ops->send_ipi_mask(cpumask_of(cpu), SMP_CALL_FUNCTION);
Ralf Baechleeef34ec2009-09-25 15:35:28 +010091}
92
93static inline void arch_send_call_function_ipi_mask(const struct cpumask *mask)
94{
Ralf Baechle70342282013-01-22 12:59:30 +010095 extern struct plat_smp_ops *mp_ops; /* private */
Ralf Baechleeef34ec2009-09-25 15:35:28 +010096
97 mp_ops->send_ipi_mask(mask, SMP_CALL_FUNCTION);
98}
Jens Axboe2f304c02008-06-17 10:45:23 +020099
Ralf Baechle7aa1c8f2012-10-11 18:14:58 +0200100#if defined(CONFIG_KEXEC)
101extern void (*dump_ipi_function_ptr)(void *);
102void dump_send_ipi(void (*dump_ipi_callback)(void *));
103#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104#endif /* __ASM_SMP_H */