]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - arch/ia64/include/asm/topology.h
Merge branch 'linus' into cpus4096
[linux-2.6-omap-h63xx.git] / arch / ia64 / include / asm / topology.h
1 /*
2  * Copyright (C) 2002, Erich Focht, NEC
3  *
4  * All rights reserved.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  */
11 #ifndef _ASM_IA64_TOPOLOGY_H
12 #define _ASM_IA64_TOPOLOGY_H
13
14 #include <asm/acpi.h>
15 #include <asm/numa.h>
16 #include <asm/smp.h>
17
18 #ifdef CONFIG_NUMA
19
20 /* Nodes w/o CPUs are preferred for memory allocations, see build_zonelists */
21 #define PENALTY_FOR_NODE_WITH_CPUS 255
22
23 /*
24  * Distance above which we begin to use zone reclaim
25  */
26 #define RECLAIM_DISTANCE 15
27
28 /*
29  * Returns the number of the node containing CPU 'cpu'
30  */
31 #define cpu_to_node(cpu) (int)(cpu_to_node_map[cpu])
32
33 /*
34  * Returns a bitmask of CPUs on Node 'node'.
35  */
36 #define node_to_cpumask(node) (node_to_cpu_mask[node])
37
38 /*
39  * Returns the number of the node containing Node 'nid'.
40  * Not implemented here. Multi-level hierarchies detected with
41  * the help of node_distance().
42  */
43 #define parent_node(nid) (nid)
44
45 /*
46  * Returns the number of the first CPU on Node 'node'.
47  */
48 #define node_to_first_cpu(node) (first_cpu(node_to_cpumask(node)))
49
50 /*
51  * Determines the node for a given pci bus
52  */
53 #define pcibus_to_node(bus) PCI_CONTROLLER(bus)->node
54
55 void build_cpu_to_node_map(void);
56
57 #define SD_CPU_INIT (struct sched_domain) {             \
58         .parent                 = NULL,                 \
59         .child                  = NULL,                 \
60         .groups                 = NULL,                 \
61         .min_interval           = 1,                    \
62         .max_interval           = 4,                    \
63         .busy_factor            = 64,                   \
64         .imbalance_pct          = 125,                  \
65         .cache_nice_tries       = 2,                    \
66         .busy_idx               = 2,                    \
67         .idle_idx               = 1,                    \
68         .newidle_idx            = 2,                    \
69         .wake_idx               = 1,                    \
70         .forkexec_idx           = 1,                    \
71         .flags                  = SD_LOAD_BALANCE       \
72                                 | SD_BALANCE_NEWIDLE    \
73                                 | SD_BALANCE_EXEC       \
74                                 | SD_WAKE_AFFINE,       \
75         .last_balance           = jiffies,              \
76         .balance_interval       = 1,                    \
77         .nr_balance_failed      = 0,                    \
78 }
79
80 /* sched_domains SD_NODE_INIT for IA64 NUMA machines */
81 #define SD_NODE_INIT (struct sched_domain) {            \
82         .parent                 = NULL,                 \
83         .child                  = NULL,                 \
84         .groups                 = NULL,                 \
85         .min_interval           = 8,                    \
86         .max_interval           = 8*(min(num_online_cpus(), 32)), \
87         .busy_factor            = 64,                   \
88         .imbalance_pct          = 125,                  \
89         .cache_nice_tries       = 2,                    \
90         .busy_idx               = 3,                    \
91         .idle_idx               = 2,                    \
92         .newidle_idx            = 2,                    \
93         .wake_idx               = 1,                    \
94         .forkexec_idx           = 1,                    \
95         .flags                  = SD_LOAD_BALANCE       \
96                                 | SD_BALANCE_EXEC       \
97                                 | SD_BALANCE_FORK       \
98                                 | SD_SERIALIZE          \
99                                 | SD_WAKE_BALANCE,      \
100         .last_balance           = jiffies,              \
101         .balance_interval       = 64,                   \
102         .nr_balance_failed      = 0,                    \
103 }
104
105 #endif /* CONFIG_NUMA */
106
107 #ifdef CONFIG_SMP
108 #define topology_physical_package_id(cpu)       (cpu_data(cpu)->socket_id)
109 #define topology_core_id(cpu)                   (cpu_data(cpu)->core_id)
110 #define topology_core_siblings(cpu)             (cpu_core_map[cpu])
111 #define topology_thread_siblings(cpu)           (per_cpu(cpu_sibling_map, cpu))
112 #define smt_capable()                           (smp_num_siblings > 1)
113 #endif
114
115 extern void arch_fix_phys_package_id(int num, u32 slot);
116
117 #define pcibus_to_cpumask(bus)  (pcibus_to_node(bus) == -1 ? \
118                                         CPU_MASK_ALL : \
119                                         node_to_cpumask(pcibus_to_node(bus)) \
120                                 )
121
122 #include <asm-generic/topology.h>
123
124 #endif /* _ASM_IA64_TOPOLOGY_H */