topology.h 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  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_NUMA
  28. #include <linux/cpumask.h>
  29. #include <asm/mpspec.h>
  30. /* Mappings between logical cpu number and node number */
  31. DECLARE_PER_CPU(u16, x86_cpu_to_node_map);
  32. extern u16 __initdata x86_cpu_to_node_map_init[];
  33. extern void *x86_cpu_to_node_map_early_ptr;
  34. extern cpumask_t node_to_cpumask_map[];
  35. #define NUMA_NO_NODE ((u16)(~0))
  36. /* Returns the number of the node containing CPU 'cpu' */
  37. static inline int cpu_to_node(int cpu)
  38. {
  39. u16 *cpu_to_node_map = (u16 *)x86_cpu_to_node_map_early_ptr;
  40. if (cpu_to_node_map)
  41. return cpu_to_node_map[cpu];
  42. else if (per_cpu_offset(cpu))
  43. return per_cpu(x86_cpu_to_node_map, cpu);
  44. else
  45. return NUMA_NO_NODE;
  46. }
  47. /*
  48. * Returns the number of the node containing Node 'node'. This
  49. * architecture is flat, so it is a pretty simple function!
  50. */
  51. #define parent_node(node) (node)
  52. /* Returns a bitmask of CPUs on Node 'node'. */
  53. static inline cpumask_t node_to_cpumask(int node)
  54. {
  55. return node_to_cpumask_map[node];
  56. }
  57. /* Returns the number of the first CPU on Node 'node'. */
  58. static inline int node_to_first_cpu(int node)
  59. {
  60. cpumask_t mask = node_to_cpumask(node);
  61. return first_cpu(mask);
  62. }
  63. #define pcibus_to_node(bus) __pcibus_to_node(bus)
  64. #define pcibus_to_cpumask(bus) __pcibus_to_cpumask(bus)
  65. #ifdef CONFIG_X86_32
  66. extern unsigned long node_start_pfn[];
  67. extern unsigned long node_end_pfn[];
  68. extern unsigned long node_remap_size[];
  69. #define node_has_online_mem(nid) (node_start_pfn[nid] != node_end_pfn[nid])
  70. # ifdef CONFIG_X86_HT
  71. # define ENABLE_TOPO_DEFINES
  72. # endif
  73. # define SD_CACHE_NICE_TRIES 1
  74. # define SD_IDLE_IDX 1
  75. # define SD_NEWIDLE_IDX 2
  76. # define SD_FORKEXEC_IDX 0
  77. #else
  78. # ifdef CONFIG_SMP
  79. # define ENABLE_TOPO_DEFINES
  80. # endif
  81. # define SD_CACHE_NICE_TRIES 2
  82. # define SD_IDLE_IDX 2
  83. # define SD_NEWIDLE_IDX 0
  84. # define SD_FORKEXEC_IDX 1
  85. #endif
  86. /* sched_domains SD_NODE_INIT for NUMAQ machines */
  87. #define SD_NODE_INIT (struct sched_domain) { \
  88. .span = CPU_MASK_NONE, \
  89. .parent = NULL, \
  90. .child = NULL, \
  91. .groups = NULL, \
  92. .min_interval = 8, \
  93. .max_interval = 32, \
  94. .busy_factor = 32, \
  95. .imbalance_pct = 125, \
  96. .cache_nice_tries = SD_CACHE_NICE_TRIES, \
  97. .busy_idx = 3, \
  98. .idle_idx = SD_IDLE_IDX, \
  99. .newidle_idx = SD_NEWIDLE_IDX, \
  100. .wake_idx = 1, \
  101. .forkexec_idx = SD_FORKEXEC_IDX, \
  102. .flags = SD_LOAD_BALANCE \
  103. | SD_BALANCE_EXEC \
  104. | SD_BALANCE_FORK \
  105. | SD_SERIALIZE \
  106. | SD_WAKE_BALANCE, \
  107. .last_balance = jiffies, \
  108. .balance_interval = 1, \
  109. .nr_balance_failed = 0, \
  110. }
  111. #ifdef CONFIG_X86_64_ACPI_NUMA
  112. extern int __node_distance(int, int);
  113. #define node_distance(a, b) __node_distance(a, b)
  114. #endif
  115. #else /* CONFIG_NUMA */
  116. #include <asm-generic/topology.h>
  117. #endif
  118. extern cpumask_t cpu_coregroup_map(int cpu);
  119. #ifdef ENABLE_TOPO_DEFINES
  120. #define topology_physical_package_id(cpu) (cpu_data(cpu).phys_proc_id)
  121. #define topology_core_id(cpu) (cpu_data(cpu).cpu_core_id)
  122. #define topology_core_siblings(cpu) (per_cpu(cpu_core_map, cpu))
  123. #define topology_thread_siblings(cpu) (per_cpu(cpu_sibling_map, cpu))
  124. #endif
  125. #ifdef CONFIG_SMP
  126. #define mc_capable() (boot_cpu_data.x86_max_cores > 1)
  127. #define smt_capable() (smp_num_siblings > 1)
  128. #endif
  129. #endif