topology_32.h 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  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_I386_TOPOLOGY_H
  26. #define _ASM_I386_TOPOLOGY_H
  27. #ifdef CONFIG_X86_HT
  28. #define topology_physical_package_id(cpu) (cpu_data(cpu).phys_proc_id)
  29. #define topology_core_id(cpu) (cpu_data(cpu).cpu_core_id)
  30. #define topology_core_siblings(cpu) (per_cpu(cpu_core_map, cpu))
  31. #define topology_thread_siblings(cpu) (per_cpu(cpu_sibling_map, cpu))
  32. #endif
  33. #ifdef CONFIG_NUMA
  34. #include <asm/mpspec.h>
  35. #include <linux/cpumask.h>
  36. /* Mappings between logical cpu number and node number */
  37. extern cpumask_t node_to_cpumask_map[];
  38. extern int cpu_to_node_map[];
  39. /* Returns the number of the node containing CPU 'cpu' */
  40. static inline int cpu_to_node(int cpu)
  41. {
  42. return cpu_to_node_map[cpu];
  43. }
  44. /* Returns the number of the node containing Node 'node'. This architecture is flat,
  45. so it is a pretty simple function! */
  46. #define parent_node(node) (node)
  47. /* Returns a bitmask of CPUs on Node 'node'. */
  48. static inline cpumask_t node_to_cpumask(int node)
  49. {
  50. return node_to_cpumask_map[node];
  51. }
  52. /* Returns the number of the first CPU on Node 'node'. */
  53. static inline int node_to_first_cpu(int node)
  54. {
  55. cpumask_t mask = node_to_cpumask(node);
  56. return first_cpu(mask);
  57. }
  58. #define pcibus_to_node(bus) ((struct pci_sysdata *)((bus)->sysdata))->node
  59. #define pcibus_to_cpumask(bus) node_to_cpumask(pcibus_to_node(bus))
  60. /* sched_domains SD_NODE_INIT for NUMAQ machines */
  61. #define SD_NODE_INIT (struct sched_domain) { \
  62. .span = CPU_MASK_NONE, \
  63. .parent = NULL, \
  64. .child = NULL, \
  65. .groups = NULL, \
  66. .min_interval = 8, \
  67. .max_interval = 32, \
  68. .busy_factor = 32, \
  69. .imbalance_pct = 125, \
  70. .cache_nice_tries = 1, \
  71. .busy_idx = 3, \
  72. .idle_idx = 1, \
  73. .newidle_idx = 2, \
  74. .wake_idx = 1, \
  75. .flags = SD_LOAD_BALANCE \
  76. | SD_BALANCE_EXEC \
  77. | SD_BALANCE_FORK \
  78. | SD_SERIALIZE \
  79. | SD_WAKE_BALANCE, \
  80. .last_balance = jiffies, \
  81. .balance_interval = 1, \
  82. .nr_balance_failed = 0, \
  83. }
  84. extern unsigned long node_start_pfn[];
  85. extern unsigned long node_end_pfn[];
  86. extern unsigned long node_remap_size[];
  87. #define node_has_online_mem(nid) (node_start_pfn[nid] != node_end_pfn[nid])
  88. #else /* !CONFIG_NUMA */
  89. /*
  90. * Other i386 platforms should define their own version of the
  91. * above macros here.
  92. */
  93. #include <asm-generic/topology.h>
  94. #endif /* CONFIG_NUMA */
  95. extern cpumask_t cpu_coregroup_map(int cpu);
  96. #ifdef CONFIG_SMP
  97. #define mc_capable() (boot_cpu_data.x86_max_cores > 1)
  98. #define smt_capable() (smp_num_siblings > 1)
  99. #endif
  100. #endif /* _ASM_I386_TOPOLOGY_H */