blob: 1c1c5ea5cea5dea69e40cf4c4a96932f4d24d58b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* smp.h: Sparc64 specific SMP stuff.
2 *
3 * Copyright (C) 1996 David S. Miller (davem@caip.rutgers.edu)
4 */
5
6#ifndef _SPARC64_SMP_H
7#define _SPARC64_SMP_H
8
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/threads.h>
10#include <asm/asi.h>
11#include <asm/starfire.h>
12#include <asm/spitfire.h>
13
14#ifndef __ASSEMBLY__
15
16#include <linux/cpumask.h>
17#include <linux/cache.h>
18
19#endif /* !(__ASSEMBLY__) */
20
21#ifdef CONFIG_SMP
22
23#ifndef __ASSEMBLY__
24
25/*
26 * Private routines/data
27 */
28
Jiri Slaby1977f032007-10-18 23:40:25 -070029#include <linux/bitops.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <asm/atomic.h>
Mike Travisd5a74302007-10-16 01:24:05 -070031#include <asm/percpu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Mike Travisd5a74302007-10-16 01:24:05 -070033DECLARE_PER_CPU(cpumask_t, cpu_sibling_map);
David S. Millerf78eae22007-06-04 17:01:39 -070034extern cpumask_t cpu_core_map[NR_CPUS];
David S. Millera2f9f6b2007-06-04 21:48:33 -070035extern int sparc64_multi_core;
David S. Miller8935dce2006-03-08 16:09:19 -080036
Linus Torvalds1da177e2005-04-16 15:20:36 -070037/*
38 * General functions that each host system must provide.
39 */
40
David S. Miller92704a12006-02-26 23:27:19 -080041extern int hard_smp_processor_id(void);
Ingo Molnar39c715b2005-06-21 17:14:34 -070042#define raw_smp_processor_id() (current_thread_info()->cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
David S. Miller5cbc3072007-05-25 15:49:59 -070044extern void smp_fill_in_sib_core_maps(void);
David S. Millere02044092007-07-16 03:49:40 -070045extern void cpu_play_dead(void);
David S. Miller7abea922006-02-25 13:39:56 -080046
David S. Miller4f0234f2007-07-13 16:03:42 -070047#ifdef CONFIG_HOTPLUG_CPU
48extern int __cpu_disable(void);
49extern void __cpu_die(unsigned int cpu);
50#endif
51
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#endif /* !(__ASSEMBLY__) */
53
David S. Miller7abea922006-02-25 13:39:56 -080054#else
55
Fernando Luis Vazquez Cao2f4dfe22007-05-09 02:33:25 -070056#define hard_smp_processor_id() 0
David S. Miller5cbc3072007-05-25 15:49:59 -070057#define smp_fill_in_sib_core_maps() do { } while (0)
David S. Miller7abea922006-02-25 13:39:56 -080058
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#endif /* !(CONFIG_SMP) */
60
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#endif /* !(_SPARC64_SMP_H) */