1 #ifndef _ASM_X86_64_TOPOLOGY_H
2 #define _ASM_X86_64_TOPOLOGY_H
7 #include <asm/mpspec.h>
8 #include <asm/bitops.h>
10 /* Map the K8 CPU local memory controllers to a simple 1:1 CPU:NODE topology */
12 extern cpumask_t cpu_online_map
;
14 extern unsigned char cpu_to_node
[];
15 extern cpumask_t node_to_cpumask
[];
17 #ifdef CONFIG_ACPI_NUMA
18 extern int __node_distance(int, int);
19 #define node_distance(a,b) __node_distance(a,b)
20 /* #else fallback version */
23 #define cpu_to_node(cpu) (cpu_to_node[cpu])
24 #define parent_node(node) (node)
25 #define node_to_first_cpu(node) (first_cpu(node_to_cpumask[node]))
26 #define node_to_cpumask(node) (node_to_cpumask[node])
27 #define pcibus_to_node(bus) ((long)(bus->sysdata))
28 #define pcibus_to_cpumask(bus) node_to_cpumask(pcibus_to_node(bus));
30 #define numa_node_id() read_pda(nodenumber)
32 /* sched_domains SD_NODE_INIT for x86_64 machines */
33 #define SD_NODE_INIT (struct sched_domain) { \
34 .span = CPU_MASK_NONE, \
40 .imbalance_pct = 125, \
41 .cache_nice_tries = 2, \
47 .per_cpu_gain = 100, \
48 .flags = SD_LOAD_BALANCE \
52 .last_balance = jiffies, \
53 .balance_interval = 1, \
54 .nr_balance_failed = 0, \
60 #define topology_physical_package_id(cpu) \
61 (phys_proc_id[cpu] == BAD_APICID ? -1 : phys_proc_id[cpu])
62 #define topology_core_id(cpu) \
63 (cpu_core_id[cpu] == BAD_APICID ? 0 : cpu_core_id[cpu])
64 #define topology_core_siblings(cpu) (cpu_core_map[cpu])
65 #define topology_thread_siblings(cpu) (cpu_sibling_map[cpu])
68 #include <asm-generic/topology.h>
70 extern cpumask_t
cpu_coregroup_map(int cpu
);