Pull icc-cleanup into release branch
[pandora-kernel.git] / include / asm-i386 / topology.h
1 /*
2  * linux/include/asm-i386/topology.h
3  *
4  * Written by: Matthew Dobson, IBM Corporation
5  *
6  * Copyright (C) 2002, IBM Corp.
7  *
8  * All rights reserved.          
9  *
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.
14  *
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
19  * details.
20  *
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.
24  *
25  * Send feedback to <colpatch@us.ibm.com>
26  */
27 #ifndef _ASM_I386_TOPOLOGY_H
28 #define _ASM_I386_TOPOLOGY_H
29
30 #ifdef CONFIG_X86_HT
31 #define topology_physical_package_id(cpu)                               \
32         (phys_proc_id[cpu] == BAD_APICID ? -1 : phys_proc_id[cpu])
33 #define topology_core_id(cpu)                                           \
34         (cpu_core_id[cpu] == BAD_APICID ? 0 : cpu_core_id[cpu])
35 #define topology_core_siblings(cpu)             (cpu_core_map[cpu])
36 #define topology_thread_siblings(cpu)           (cpu_sibling_map[cpu])
37 #endif
38
39 #ifdef CONFIG_NUMA
40
41 #include <asm/mpspec.h>
42
43 #include <linux/cpumask.h>
44
45 /* Mappings between logical cpu number and node number */
46 extern cpumask_t node_2_cpu_mask[];
47 extern int cpu_2_node[];
48
49 /* Returns the number of the node containing CPU 'cpu' */
50 static inline int cpu_to_node(int cpu)
51
52         return cpu_2_node[cpu];
53 }
54
55 /* Returns the number of the node containing Node 'node'.  This architecture is flat, 
56    so it is a pretty simple function! */
57 #define parent_node(node) (node)
58
59 /* Returns a bitmask of CPUs on Node 'node'. */
60 static inline cpumask_t node_to_cpumask(int node)
61 {
62         return node_2_cpu_mask[node];
63 }
64
65 /* Returns the number of the first CPU on Node 'node'. */
66 static inline int node_to_first_cpu(int node)
67
68         cpumask_t mask = node_to_cpumask(node);
69         return first_cpu(mask);
70 }
71
72 #define pcibus_to_node(bus) ((long) (bus)->sysdata)
73 #define pcibus_to_cpumask(bus) node_to_cpumask(pcibus_to_node(bus))
74
75 /* sched_domains SD_NODE_INIT for NUMAQ machines */
76 #define SD_NODE_INIT (struct sched_domain) {            \
77         .span                   = CPU_MASK_NONE,        \
78         .parent                 = NULL,                 \
79         .groups                 = NULL,                 \
80         .min_interval           = 8,                    \
81         .max_interval           = 32,                   \
82         .busy_factor            = 32,                   \
83         .imbalance_pct          = 125,                  \
84         .cache_nice_tries       = 1,                    \
85         .busy_idx               = 3,                    \
86         .idle_idx               = 1,                    \
87         .newidle_idx            = 2,                    \
88         .wake_idx               = 1,                    \
89         .per_cpu_gain           = 100,                  \
90         .flags                  = SD_LOAD_BALANCE       \
91                                 | SD_BALANCE_EXEC       \
92                                 | SD_BALANCE_FORK       \
93                                 | SD_WAKE_BALANCE,      \
94         .last_balance           = jiffies,              \
95         .balance_interval       = 1,                    \
96         .nr_balance_failed      = 0,                    \
97 }
98
99 extern unsigned long node_start_pfn[];
100 extern unsigned long node_end_pfn[];
101 extern unsigned long node_remap_size[];
102
103 #define node_has_online_mem(nid) (node_start_pfn[nid] != node_end_pfn[nid])
104
105 #else /* !CONFIG_NUMA */
106 /*
107  * Other i386 platforms should define their own version of the 
108  * above macros here.
109  */
110
111 #include <asm-generic/topology.h>
112
113 #endif /* CONFIG_NUMA */
114
115 #endif /* _ASM_I386_TOPOLOGY_H */