blob: 80c4e44d011ca2f58c02e4a3c42b18d119c5d7b3 [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
10/* Map the K8 CPU local memory controllers to a simple 1:1 CPU:NODE topology */
11
12extern cpumask_t cpu_online_map;
13
14extern unsigned char cpu_to_node[];
15extern cpumask_t node_to_cpumask[];
Linus Torvalds1da177e2005-04-16 15:20:36 -070016
17#ifdef CONFIG_ACPI_NUMA
18extern int __node_distance(int, int);
19#define node_distance(a,b) __node_distance(a,b)
20/* #else fallback version */
21#endif
22
23#define cpu_to_node(cpu) (cpu_to_node[cpu])
24#define parent_node(node) (node)
Ravikiran G Thirumalaic6604392005-12-22 14:21:34 -080025#define node_to_first_cpu(node) (first_cpu(node_to_cpumask[node]))
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#define node_to_cpumask(node) (node_to_cpumask[node])
Andi Kleen69e1a332005-09-12 18:49:24 +020027#define pcibus_to_node(bus) ((long)(bus->sysdata))
Christoph Lameter8c5a0902005-06-23 00:08:18 -070028#define pcibus_to_cpumask(bus) node_to_cpumask(pcibus_to_node(bus));
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
Andi Kleen69d81fc2005-11-05 17:25:53 +010030#define numa_node_id() read_pda(nodenumber)
31
Linus Torvalds1da177e2005-04-16 15:20:36 -070032/* sched_domains SD_NODE_INIT for x86_64 machines */
33#define SD_NODE_INIT (struct sched_domain) { \
34 .span = CPU_MASK_NONE, \
35 .parent = NULL, \
36 .groups = NULL, \
37 .min_interval = 8, \
38 .max_interval = 32, \
39 .busy_factor = 32, \
40 .imbalance_pct = 125, \
Nick Piggin78979862005-06-25 14:57:13 -070041 .cache_nice_tries = 2, \
42 .busy_idx = 3, \
43 .idle_idx = 2, \
Nick Piggin687f1662005-06-25 14:57:21 -070044 .newidle_idx = 0, \
Nick Piggin78979862005-06-25 14:57:13 -070045 .wake_idx = 1, \
Nick Piggin147cbb42005-06-25 14:57:19 -070046 .forkexec_idx = 1, \
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 .per_cpu_gain = 100, \
48 .flags = SD_LOAD_BALANCE \
Nick Piggin147cbb42005-06-25 14:57:19 -070049 | SD_BALANCE_FORK \
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 | SD_BALANCE_EXEC \
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
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])
66#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