topology.h 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  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. /*
  37. * to preserve the visibility of NUMA_NO_NODE definition,
  38. * moved to there from here. May be used independent of
  39. * CONFIG_NUMA.
  40. */
  41. #include <linux/numa.h>
  42. #ifdef CONFIG_NUMA
  43. #include <linux/cpumask.h>
  44. #include <asm/mpspec.h>
  45. /* Mappings between logical cpu number and node number */
  46. DECLARE_EARLY_PER_CPU(int, x86_cpu_to_node_map);
  47. #ifdef CONFIG_DEBUG_PER_CPU_MAPS
  48. /*
  49. * override generic percpu implementation of cpu_to_node
  50. */
  51. extern int __cpu_to_node(int cpu);
  52. #define cpu_to_node __cpu_to_node
  53. extern int early_cpu_to_node(int cpu);
  54. #else /* !CONFIG_DEBUG_PER_CPU_MAPS */
  55. /* Same function but used if called before per_cpu areas are setup */
  56. static inline int early_cpu_to_node(int cpu)
  57. {
  58. return early_per_cpu(x86_cpu_to_node_map, cpu);
  59. }
  60. #endif /* !CONFIG_DEBUG_PER_CPU_MAPS */
  61. /* Mappings between node number and cpus on that node. */
  62. extern cpumask_var_t node_to_cpumask_map[MAX_NUMNODES];
  63. #ifdef CONFIG_DEBUG_PER_CPU_MAPS
  64. extern const struct cpumask *cpumask_of_node(int node);
  65. #else
  66. /* Returns a pointer to the cpumask of CPUs on Node 'node'. */
  67. static inline const struct cpumask *cpumask_of_node(int node)
  68. {
  69. return node_to_cpumask_map[node];
  70. }
  71. #endif
  72. extern void setup_node_to_cpumask_map(void);
  73. /*
  74. * Returns the number of the node containing Node 'node'. This
  75. * architecture is flat, so it is a pretty simple function!
  76. */
  77. #define parent_node(node) (node)
  78. #define pcibus_to_node(bus) __pcibus_to_node(bus)
  79. #ifdef CONFIG_X86_32
  80. # define SD_CACHE_NICE_TRIES 1
  81. # define SD_IDLE_IDX 1
  82. #else
  83. # define SD_CACHE_NICE_TRIES 2
  84. # define SD_IDLE_IDX 2
  85. #endif
  86. /* sched_domains SD_NODE_INIT for NUMA machines */
  87. #define SD_NODE_INIT (struct sched_domain) { \
  88. .min_interval = 8, \
  89. .max_interval = 32, \
  90. .busy_factor = 32, \
  91. .imbalance_pct = 125, \
  92. .cache_nice_tries = SD_CACHE_NICE_TRIES, \
  93. .busy_idx = 3, \
  94. .idle_idx = SD_IDLE_IDX, \
  95. .newidle_idx = 0, \
  96. .wake_idx = 0, \
  97. .forkexec_idx = 0, \
  98. \
  99. .flags = 1*SD_LOAD_BALANCE \
  100. | 1*SD_BALANCE_NEWIDLE \
  101. | 1*SD_BALANCE_EXEC \
  102. | 1*SD_BALANCE_FORK \
  103. | 0*SD_BALANCE_WAKE \
  104. | 1*SD_WAKE_AFFINE \
  105. | 0*SD_PREFER_LOCAL \
  106. | 0*SD_SHARE_CPUPOWER \
  107. | 0*SD_POWERSAVINGS_BALANCE \
  108. | 0*SD_SHARE_PKG_RESOURCES \
  109. | 1*SD_SERIALIZE \
  110. | 0*SD_PREFER_SIBLING \
  111. , \
  112. .last_balance = jiffies, \
  113. .balance_interval = 1, \
  114. }
  115. #ifdef CONFIG_X86_64
  116. extern int __node_distance(int, int);
  117. #define node_distance(a, b) __node_distance(a, b)
  118. #endif
  119. #else /* !CONFIG_NUMA */
  120. static inline int numa_node_id(void)
  121. {
  122. return 0;
  123. }
  124. /*
  125. * indicate override:
  126. */
  127. #define numa_node_id numa_node_id
  128. static inline int early_cpu_to_node(int cpu)
  129. {
  130. return 0;
  131. }
  132. static inline void setup_node_to_cpumask_map(void) { }
  133. #endif
  134. #include <asm-generic/topology.h>
  135. extern const struct cpumask *cpu_coregroup_mask(int cpu);
  136. #ifdef ENABLE_TOPO_DEFINES
  137. #define topology_physical_package_id(cpu) (cpu_data(cpu).phys_proc_id)
  138. #define topology_core_id(cpu) (cpu_data(cpu).cpu_core_id)
  139. #define topology_core_cpumask(cpu) (per_cpu(cpu_core_map, cpu))
  140. #define topology_thread_cpumask(cpu) (per_cpu(cpu_sibling_map, cpu))
  141. /* indicates that pointers to the topology cpumask_t maps are valid */
  142. #define arch_provides_topology_pointers yes
  143. #endif
  144. static inline void arch_fix_phys_package_id(int num, u32 slot)
  145. {
  146. }
  147. struct pci_bus;
  148. void x86_pci_root_bus_res_quirks(struct pci_bus *b);
  149. #ifdef CONFIG_SMP
  150. #define mc_capable() ((boot_cpu_data.x86_max_cores > 1) && \
  151. (cpumask_weight(cpu_core_mask(0)) != nr_cpu_ids))
  152. #define smt_capable() (smp_num_siblings > 1)
  153. #endif
  154. #ifdef CONFIG_NUMA
  155. extern int get_mp_bus_to_node(int busnum);
  156. extern void set_mp_bus_to_node(int busnum, int node);
  157. #else
  158. static inline int get_mp_bus_to_node(int busnum)
  159. {
  160. return 0;
  161. }
  162. static inline void set_mp_bus_to_node(int busnum, int node)
  163. {
  164. }
  165. #endif
  166. #endif /* _ASM_X86_TOPOLOGY_H */