blob: 2facec5914d2cb4793b96bc4cdfdbc908341b861 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _ASM_X86_64_TOPOLOGY_H
2#define _ASM_X86_64_TOPOLOGY_H
3
Linus Torvalds1da177e2005-04-16 15:20:36 -07004
Matt Tolentino2b976902005-06-23 00:08:06 -07005#ifdef CONFIG_NUMA
Linus Torvalds1da177e2005-04-16 15:20:36 -07006
7#include <asm/mpspec.h>
8#include <asm/bitops.h>
9
Linus Torvalds1da177e2005-04-16 15:20:36 -070010extern cpumask_t cpu_online_map;
11
12extern unsigned char cpu_to_node[];
13extern cpumask_t node_to_cpumask[];
Linus Torvalds1da177e2005-04-16 15:20:36 -070014
15#ifdef CONFIG_ACPI_NUMA
16extern int __node_distance(int, int);
17#define node_distance(a,b) __node_distance(a,b)
18/* #else fallback version */
19#endif
20
21#define cpu_to_node(cpu) (cpu_to_node[cpu])
22#define parent_node(node) (node)
Ravikiran G Thirumalaic6604392005-12-22 14:21:34 -080023#define node_to_first_cpu(node) (first_cpu(node_to_cpumask[node]))
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#define node_to_cpumask(node) (node_to_cpumask[node])
Andi Kleen69e1a332005-09-12 18:49:24 +020025#define pcibus_to_node(bus) ((long)(bus->sysdata))
Christoph Lameter8c5a0902005-06-23 00:08:18 -070026#define pcibus_to_cpumask(bus) node_to_cpumask(pcibus_to_node(bus));
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
Andi Kleen69d81fc2005-11-05 17:25:53 +010028#define numa_node_id() read_pda(nodenumber)
29
Linus Torvalds1da177e2005-04-16 15:20:36 -070030/* sched_domains SD_NODE_INIT for x86_64 machines */
31#define SD_NODE_INIT (struct sched_domain) { \
32 .span = CPU_MASK_NONE, \
33 .parent = NULL, \
Siddha, Suresh B1a848872006-10-03 01:14:08 -070034 .child = NULL, \
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 .groups = NULL, \
36 .min_interval = 8, \
37 .max_interval = 32, \
38 .busy_factor = 32, \
39 .imbalance_pct = 125, \
Nick Piggin78979862005-06-25 14:57:13 -070040 .cache_nice_tries = 2, \
41 .busy_idx = 3, \
42 .idle_idx = 2, \
Nick Piggin687f1662005-06-25 14:57:21 -070043 .newidle_idx = 0, \
Nick Piggin78979862005-06-25 14:57:13 -070044 .wake_idx = 1, \
Nick Piggin147cbb42005-06-25 14:57:19 -070045 .forkexec_idx = 1, \
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 .per_cpu_gain = 100, \
47 .flags = SD_LOAD_BALANCE \
Nick Piggin147cbb42005-06-25 14:57:19 -070048 | SD_BALANCE_FORK \
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 | SD_BALANCE_EXEC \
Christoph Lameter08c183f2006-12-10 02:20:29 -080050 | SD_SERIALIZE \
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 | SD_WAKE_BALANCE, \
52 .last_balance = jiffies, \
53 .balance_interval = 1, \
54 .nr_balance_failed = 0, \
55}
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
57#endif
58
Zhang, Yanmin69dcc992006-02-03 03:04:36 -080059#ifdef CONFIG_SMP
Rohit Sethf3fa8eb2006-06-26 13:58:17 +020060#define topology_physical_package_id(cpu) (cpu_data[cpu].phys_proc_id)
61#define topology_core_id(cpu) (cpu_data[cpu].cpu_core_id)
Zhang, Yanmin69dcc992006-02-03 03:04:36 -080062#define topology_core_siblings(cpu) (cpu_core_map[cpu])
63#define topology_thread_siblings(cpu) (cpu_sibling_map[cpu])
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -070064#define mc_capable() (boot_cpu_data.x86_max_cores > 1)
65#define smt_capable() (smp_num_siblings > 1)
Zhang, Yanmin69dcc992006-02-03 03:04:36 -080066#endif
67
Linus Torvalds1da177e2005-04-16 15:20:36 -070068#include <asm-generic/topology.h>
69
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -080070extern cpumask_t cpu_coregroup_map(int cpu);
71
Linus Torvalds1da177e2005-04-16 15:20:36 -070072#endif