cpumask: remove node_to_first_cpu
[linux-2.6/mini2440.git] / arch / sparc / include / asm / topology_64.h
blob2770f64fdc3b59edc23714d7afad0367d19ac822
1 #ifndef _ASM_SPARC64_TOPOLOGY_H
2 #define _ASM_SPARC64_TOPOLOGY_H
4 #ifdef CONFIG_NUMA
6 #include <asm/mmzone.h>
8 static inline int cpu_to_node(int cpu)
10 return numa_cpu_lookup_table[cpu];
13 #define parent_node(node) (node)
15 static inline cpumask_t node_to_cpumask(int node)
17 return numa_cpumask_lookup_table[node];
19 #define cpumask_of_node(node) (&numa_cpumask_lookup_table[node])
22 * Returns a pointer to the cpumask of CPUs on Node 'node'.
23 * Deprecated: use "const struct cpumask *mask = cpumask_of_node(node)"
25 #define node_to_cpumask_ptr(v, node) \
26 cpumask_t *v = &(numa_cpumask_lookup_table[node])
28 #define node_to_cpumask_ptr_next(v, node) \
29 v = &(numa_cpumask_lookup_table[node])
31 struct pci_bus;
32 #ifdef CONFIG_PCI
33 extern int pcibus_to_node(struct pci_bus *pbus);
34 #else
35 static inline int pcibus_to_node(struct pci_bus *pbus)
37 return -1;
39 #endif
41 #define pcibus_to_cpumask(bus) \
42 (pcibus_to_node(bus) == -1 ? \
43 CPU_MASK_ALL : \
44 node_to_cpumask(pcibus_to_node(bus)))
45 #define cpumask_of_pcibus(bus) \
46 (pcibus_to_node(bus) == -1 ? \
47 CPU_MASK_ALL_PTR : \
48 cpumask_of_node(pcibus_to_node(bus)))
50 #define SD_NODE_INIT (struct sched_domain) { \
51 .min_interval = 8, \
52 .max_interval = 32, \
53 .busy_factor = 32, \
54 .imbalance_pct = 125, \
55 .cache_nice_tries = 2, \
56 .busy_idx = 3, \
57 .idle_idx = 2, \
58 .newidle_idx = 0, \
59 .wake_idx = 1, \
60 .forkexec_idx = 1, \
61 .flags = SD_LOAD_BALANCE \
62 | SD_BALANCE_FORK \
63 | SD_BALANCE_EXEC \
64 | SD_SERIALIZE \
65 | SD_WAKE_BALANCE, \
66 .last_balance = jiffies, \
67 .balance_interval = 1, \
70 #else /* CONFIG_NUMA */
72 #include <asm-generic/topology.h>
74 #endif /* !(CONFIG_NUMA) */
76 #ifdef CONFIG_SMP
77 #define topology_physical_package_id(cpu) (cpu_data(cpu).proc_id)
78 #define topology_core_id(cpu) (cpu_data(cpu).core_id)
79 #define topology_core_siblings(cpu) (cpu_core_map[cpu])
80 #define topology_thread_siblings(cpu) (per_cpu(cpu_sibling_map, cpu))
81 #define topology_core_cpumask(cpu) (&cpu_core_map[cpu])
82 #define topology_thread_cpumask(cpu) (&per_cpu(cpu_sibling_map, cpu))
83 #define mc_capable() (sparc64_multi_core)
84 #define smt_capable() (sparc64_multi_core)
85 #endif /* CONFIG_SMP */
87 #define cpu_coregroup_map(cpu) (cpu_core_map[cpu])
88 #define cpu_coregroup_mask(cpu) (&cpu_core_map[cpu])
90 #endif /* _ASM_SPARC64_TOPOLOGY_H */