blob: 540021268684778a380b73f2f981d6414cf5ef43 [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
32extern cpumask_t phys_cpu_present_map;
33#define cpu_possible_map phys_cpu_present_map
34
David S. Miller8935dce2006-03-08 16:09:19 -080035extern cpumask_t cpu_sibling_map[NR_CPUS];
David S. Millerf78eae22007-06-04 17:01:39 -070036extern cpumask_t cpu_core_map[NR_CPUS];
David S. Miller8935dce2006-03-08 16:09:19 -080037
Linus Torvalds1da177e2005-04-16 15:20:36 -070038/*
39 * General functions that each host system must provide.
40 */
41
David S. Miller92704a12006-02-26 23:27:19 -080042extern int hard_smp_processor_id(void);
Ingo Molnar39c715b2005-06-21 17:14:34 -070043#define raw_smp_processor_id() (current_thread_info()->cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
David S. Miller5cbc3072007-05-25 15:49:59 -070045extern void smp_fill_in_sib_core_maps(void);
David S. Miller777a4472007-02-22 06:24:10 -080046extern unsigned char boot_cpu_id;
David S. Miller7abea922006-02-25 13:39:56 -080047
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#endif /* !(__ASSEMBLY__) */
49
David S. Miller7abea922006-02-25 13:39:56 -080050#else
51
Fernando Luis Vazquez Cao2f4dfe22007-05-09 02:33:25 -070052#define hard_smp_processor_id() 0
David S. Miller5cbc3072007-05-25 15:49:59 -070053#define smp_fill_in_sib_core_maps() do { } while (0)
David S. Miller777a4472007-02-22 06:24:10 -080054#define boot_cpu_id (0)
David S. Miller7abea922006-02-25 13:39:56 -080055
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#endif /* !(CONFIG_SMP) */
57
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#endif /* !(_SPARC64_SMP_H) */