1 #ifndef _ASM_X86_64_TOPOLOGY_H
2 #define _ASM_X86_64_TOPOLOGY_H
4 #include <linux/config.h>
8 #include <asm/mpspec.h>
9 #include <asm/bitops.h>
11 /* Map the K8 CPU local memory controllers to a simple 1:1 CPU:NODE topology */
13 extern cpumask_t cpu_online_map;
15 extern unsigned char cpu_to_node[];
16 extern cpumask_t node_to_cpumask[];
18 #ifdef CONFIG_ACPI_NUMA
19 extern int __node_distance(int, int);
20 #define node_distance(a,b) __node_distance(a,b)
21 /* #else fallback version */
24 #define cpu_to_node(cpu) (cpu_to_node[cpu])
25 #define parent_node(node) (node)
26 #define node_to_first_cpu(node) (first_cpu(node_to_cpumask[node]))
27 #define node_to_cpumask(node) (node_to_cpumask[node])
28 #define pcibus_to_node(bus) ((long)(bus->sysdata))
29 #define pcibus_to_cpumask(bus) node_to_cpumask(pcibus_to_node(bus));
31 #define numa_node_id() read_pda(nodenumber)
33 /* sched_domains SD_NODE_INIT for x86_64 machines */
34 #define SD_NODE_INIT (struct sched_domain) { \
35 .span = CPU_MASK_NONE, \
41 .imbalance_pct = 125, \
42 .cache_nice_tries = 2, \
48 .per_cpu_gain = 100, \
49 .flags = SD_LOAD_BALANCE \
53 .last_balance = jiffies, \
54 .balance_interval = 1, \
55 .nr_balance_failed = 0, \
61 #define topology_physical_package_id(cpu) \
62 (phys_proc_id[cpu] == BAD_APICID ? -1 : phys_proc_id[cpu])
63 #define topology_core_id(cpu) \
64 (cpu_core_id[cpu] == BAD_APICID ? 0 : cpu_core_id[cpu])
65 #define topology_core_siblings(cpu) (cpu_core_map[cpu])
66 #define topology_thread_siblings(cpu) (cpu_sibling_map[cpu])
69 #include <asm-generic/topology.h>