2 * linux/include/asm-i386/topology.h
4 * Written by: Matthew Dobson, IBM Corporation
6 * Copyright (C) 2002, IBM Corp.
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful, but
16 * WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
18 * NON INFRINGEMENT. See the GNU General Public License for more
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
25 * Send feedback to <colpatch@us.ibm.com>
27 #ifndef _ASM_I386_TOPOLOGY_H
28 #define _ASM_I386_TOPOLOGY_H
32 #include <asm/mpspec.h>
34 #include <linux/cpumask.h>
36 /* Mappings between logical cpu number and node number */
37 extern cpumask_t node_2_cpu_mask
[];
38 extern int cpu_2_node
[];
40 /* Returns the number of the node containing CPU 'cpu' */
41 static inline int cpu_to_node(int cpu
)
43 return cpu_2_node
[cpu
];
46 /* Returns the number of the node containing Node 'node'. This architecture is flat,
47 so it is a pretty simple function! */
48 #define parent_node(node) (node)
50 /* Returns a bitmask of CPUs on Node 'node'. */
51 static inline cpumask_t
node_to_cpumask(int node
)
53 return node_2_cpu_mask
[node
];
56 /* Returns the number of the first CPU on Node 'node'. */
57 static inline int node_to_first_cpu(int node
)
59 cpumask_t mask
= node_to_cpumask(node
);
60 return first_cpu(mask
);
63 /* Returns the number of the node containing PCI bus number 'busnr' */
64 static inline cpumask_t
__pcibus_to_cpumask(int busnr
)
66 return node_to_cpumask(mp_bus_id_to_node
[busnr
]);
68 #define pcibus_to_cpumask(bus) __pcibus_to_cpumask(bus->number)
70 /* sched_domains SD_NODE_INIT for NUMAQ machines */
71 #define SD_NODE_INIT (struct sched_domain) { \
72 .span = CPU_MASK_NONE, \
78 .imbalance_pct = 125, \
79 .cache_hot_time = (10*1000000), \
80 .cache_nice_tries = 1, \
81 .per_cpu_gain = 100, \
82 .flags = SD_LOAD_BALANCE \
84 | SD_BALANCE_NEWIDLE \
87 .last_balance = jiffies, \
88 .balance_interval = 1, \
89 .nr_balance_failed = 0, \
92 extern unsigned long node_start_pfn
[];
93 extern unsigned long node_end_pfn
[];
94 extern unsigned long node_remap_size
[];
96 #define node_has_online_mem(nid) (node_start_pfn[nid] != node_end_pfn[nid])
98 #else /* !CONFIG_NUMA */
100 * Other i386 platforms should define their own version of the
104 #include <asm-generic/topology.h>
106 #endif /* CONFIG_NUMA */
108 #endif /* _ASM_I386_TOPOLOGY_H */