blob: e8a96a31761bad24b17d33911f1e942e26a1b415 [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
29#include <asm/bitops.h>
30#include <asm/atomic.h>
31
David S. Miller8935dce2006-03-08 16:09:19 -080032extern cpumask_t cpu_sibling_map[NR_CPUS];
David S. Millerf78eae22007-06-04 17:01:39 -070033extern cpumask_t cpu_core_map[NR_CPUS];
David S. Millera2f9f6b2007-06-04 21:48:33 -070034extern int sparc64_multi_core;
David S. Miller8935dce2006-03-08 16:09:19 -080035
Linus Torvalds1da177e2005-04-16 15:20:36 -070036/*
37 * General functions that each host system must provide.
38 */
39
David S. Miller92704a12006-02-26 23:27:19 -080040extern int hard_smp_processor_id(void);
Ingo Molnar39c715b2005-06-21 17:14:34 -070041#define raw_smp_processor_id() (current_thread_info()->cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
David S. Miller5cbc3072007-05-25 15:49:59 -070043extern void smp_fill_in_sib_core_maps(void);
David S. Millere0204402007-07-16 03:49:40 -070044extern void cpu_play_dead(void);
David S. Miller7abea922006-02-25 13:39:56 -080045
David S. Miller4f0234f2007-07-13 16:03:42 -070046#ifdef CONFIG_HOTPLUG_CPU
47extern int __cpu_disable(void);
48extern void __cpu_die(unsigned int cpu);
49#endif
50
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#endif /* !(__ASSEMBLY__) */
52
David S. Miller7abea922006-02-25 13:39:56 -080053#else
54
Fernando Luis Vazquez Cao2f4dfe22007-05-09 02:33:25 -070055#define hard_smp_processor_id() 0
David S. Miller5cbc3072007-05-25 15:49:59 -070056#define smp_fill_in_sib_core_maps() do { } while (0)
David S. Miller7abea922006-02-25 13:39:56 -080057
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#endif /* !(CONFIG_SMP) */
59
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#endif /* !(_SPARC64_SMP_H) */