topology.h 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  1. /*
  2. * Written by: Matthew Dobson, IBM Corporation
  3. *
  4. * Copyright (C) 2002, IBM Corp.
  5. *
  6. * All rights reserved.
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation; either version 2 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful, but
  14. * WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
  16. * NON INFRINGEMENT. See the GNU General Public License for more
  17. * details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program; if not, write to the Free Software
  21. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  22. *
  23. * Send feedback to <colpatch@us.ibm.com>
  24. */
  25. #ifndef _ASM_X86_TOPOLOGY_H
  26. #define _ASM_X86_TOPOLOGY_H
  27. #ifdef CONFIG_X86_32
  28. # ifdef CONFIG_X86_HT
  29. # define ENABLE_TOPO_DEFINES
  30. # endif
  31. #else
  32. # ifdef CONFIG_SMP
  33. # define ENABLE_TOPO_DEFINES
  34. # endif
  35. #endif
  36. /* Node not present */
  37. #define NUMA_NO_NODE (-1)
  38. #ifdef CONFIG_NUMA
  39. #include <linux/cpumask.h>
  40. #include <asm/mpspec.h>
  41. #ifdef CONFIG_X86_32
  42. /* Mappings between logical cpu number and node number */
  43. extern int cpu_to_node_map[];
  44. /* Returns the number of the node containing CPU 'cpu' */
  45. static inline int cpu_to_node(int cpu)
  46. {
  47. return cpu_to_node_map[cpu];
  48. }
  49. #define early_cpu_to_node(cpu) cpu_to_node(cpu)
  50. #else /* CONFIG_X86_64 */
  51. /* Mappings between logical cpu number and node number */
  52. DECLARE_EARLY_PER_CPU(int, x86_cpu_to_node_map);
  53. /* Returns the number of the current Node. */
  54. DECLARE_PER_CPU(int, node_number);
  55. #define numa_node_id() percpu_read(node_number)
  56. #ifdef CONFIG_DEBUG_PER_CPU_MAPS
  57. extern int cpu_to_node(int cpu);
  58. extern int early_cpu_to_node(int cpu);
  59. #else /* !CONFIG_DEBUG_PER_CPU_MAPS */
  60. /* Returns the number of the node containing CPU 'cpu' */
  61. static inline int cpu_to_node(int cpu)
  62. {
  63. return per_cpu(x86_cpu_to_node_map, cpu);
  64. }
  65. /* Same function but used if called before per_cpu areas are setup */
  66. static inline int early_cpu_to_node(int cpu)
  67. {
  68. return early_per_cpu(x86_cpu_to_node_map, cpu);
  69. }
  70. #endif /* !CONFIG_DEBUG_PER_CPU_MAPS */
  71. #endif /* CONFIG_X86_64 */
  72. /* Mappings between node number and cpus on that node. */
  73. extern cpumask_var_t node_to_cpumask_map[MAX_NUMNODES];
  74. #ifdef CONFIG_DEBUG_PER_CPU_MAPS
  75. extern const struct cpumask *cpumask_of_node(int node);
  76. #else
  77. /* Returns a pointer to the cpumask of CPUs on Node 'node'. */
  78. static inline const struct cpumask *cpumask_of_node(int node)
  79. {
  80. return node_to_cpumask_map[node];
  81. }
  82. #endif
  83. extern void setup_node_to_cpumask_map(void);
  84. /*
  85. * Returns the number of the node containing Node 'node'. This
  86. * architecture is flat, so it is a pretty simple function!
  87. */
  88. #define parent_node(node) (node)
  89. #define pcibus_to_node(bus) __pcibus_to_node(bus)
  90. #ifdef CONFIG_X86_32
  91. extern unsigned long node_start_pfn[];
  92. extern unsigned long node_end_pfn[];
  93. extern unsigned long node_remap_size[];
  94. #define node_has_online_mem(nid) (node_start_pfn[nid] != node_end_pfn[nid])
  95. # define SD_CACHE_NICE_TRIES 1
  96. # define SD_IDLE_IDX 1
  97. #else
  98. # define SD_CACHE_NICE_TRIES 2
  99. # define SD_IDLE_IDX 2
  100. #endif
  101. /* sched_domains SD_NODE_INIT for NUMA machines */
  102. #define SD_NODE_INIT (struct sched_domain) { \
  103. .min_interval = 8, \
  104. .max_interval = 32, \
  105. .busy_factor = 32, \
  106. .imbalance_pct = 125, \
  107. .cache_nice_tries = SD_CACHE_NICE_TRIES, \
  108. .busy_idx = 3, \
  109. .idle_idx = SD_IDLE_IDX, \
  110. .newidle_idx = 0, \
  111. .wake_idx = 0, \
  112. .forkexec_idx = 0, \
  113. \
  114. .flags = 1*SD_LOAD_BALANCE \
  115. | 1*SD_BALANCE_NEWIDLE \
  116. | 1*SD_BALANCE_EXEC \
  117. | 1*SD_BALANCE_FORK \
  118. | 0*SD_BALANCE_WAKE \
  119. | 1*SD_WAKE_AFFINE \
  120. | 0*SD_SHARE_CPUPOWER \
  121. | 0*SD_POWERSAVINGS_BALANCE \
  122. | 0*SD_SHARE_PKG_RESOURCES \
  123. | 1*SD_SERIALIZE \
  124. | 0*SD_PREFER_SIBLING \
  125. , \
  126. .last_balance = jiffies, \
  127. .balance_interval = 1, \
  128. }
  129. #ifdef CONFIG_X86_64_ACPI_NUMA
  130. extern int __node_distance(int, int);
  131. #define node_distance(a, b) __node_distance(a, b)
  132. #endif
  133. #else /* !CONFIG_NUMA */
  134. static inline int numa_node_id(void)
  135. {
  136. return 0;
  137. }
  138. static inline int cpu_to_node(int cpu)
  139. {
  140. return 0;
  141. }
  142. static inline int early_cpu_to_node(int cpu)
  143. {
  144. return 0;
  145. }
  146. static inline const struct cpumask *cpumask_of_node(int node)
  147. {
  148. return cpu_online_mask;
  149. }
  150. static inline void setup_node_to_cpumask_map(void) { }
  151. #endif
  152. #include <asm-generic/topology.h>
  153. extern const struct cpumask *cpu_coregroup_mask(int cpu);
  154. #ifdef ENABLE_TOPO_DEFINES
  155. #define topology_physical_package_id(cpu) (cpu_data(cpu).phys_proc_id)
  156. #define topology_core_id(cpu) (cpu_data(cpu).cpu_core_id)
  157. #define topology_core_cpumask(cpu) (per_cpu(cpu_core_map, cpu))
  158. #define topology_thread_cpumask(cpu) (per_cpu(cpu_sibling_map, cpu))
  159. /* indicates that pointers to the topology cpumask_t maps are valid */
  160. #define arch_provides_topology_pointers yes
  161. #endif
  162. static inline void arch_fix_phys_package_id(int num, u32 slot)
  163. {
  164. }
  165. struct pci_bus;
  166. void x86_pci_root_bus_res_quirks(struct pci_bus *b);
  167. #ifdef CONFIG_SMP
  168. #define mc_capable() ((boot_cpu_data.x86_max_cores > 1) && \
  169. (cpumask_weight(cpu_core_mask(0)) != nr_cpu_ids))
  170. #define smt_capable() (smp_num_siblings > 1)
  171. #endif
  172. #ifdef CONFIG_NUMA
  173. extern int get_mp_bus_to_node(int busnum);
  174. extern void set_mp_bus_to_node(int busnum, int node);
  175. #else
  176. static inline int get_mp_bus_to_node(int busnum)
  177. {
  178. return 0;
  179. }
  180. static inline void set_mp_bus_to_node(int busnum, int node)
  181. {
  182. }
  183. #endif
  184. #endif /* _ASM_X86_TOPOLOGY_H */