topology.h 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. /*
  2. * linux/include/asm-i386/topology.h
  3. *
  4. * Written by: Matthew Dobson, IBM Corporation
  5. *
  6. * Copyright (C) 2002, IBM Corp.
  7. *
  8. * All rights reserved.
  9. *
  10. * This program is free software; you can redistribute it and/or modify
  11. * it under the terms of the GNU General Public License as published by
  12. * the Free Software Foundation; either version 2 of the License, or
  13. * (at your option) any later version.
  14. *
  15. * This program is distributed in the hope that it will be useful, but
  16. * WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
  18. * NON INFRINGEMENT. See the GNU General Public License for more
  19. * details.
  20. *
  21. * You should have received a copy of the GNU General Public License
  22. * along with this program; if not, write to the Free Software
  23. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  24. *
  25. * Send feedback to <colpatch@us.ibm.com>
  26. */
  27. #ifndef _ASM_I386_TOPOLOGY_H
  28. #define _ASM_I386_TOPOLOGY_H
  29. #ifdef CONFIG_NUMA
  30. #include <asm/mpspec.h>
  31. #include <linux/cpumask.h>
  32. /* Mappings between logical cpu number and node number */
  33. extern cpumask_t node_2_cpu_mask[];
  34. extern int cpu_2_node[];
  35. /* Returns the number of the node containing CPU 'cpu' */
  36. static inline int cpu_to_node(int cpu)
  37. {
  38. return cpu_2_node[cpu];
  39. }
  40. /* Returns the number of the node containing Node 'node'. This architecture is flat,
  41. so it is a pretty simple function! */
  42. #define parent_node(node) (node)
  43. /* Returns a bitmask of CPUs on Node 'node'. */
  44. static inline cpumask_t node_to_cpumask(int node)
  45. {
  46. return node_2_cpu_mask[node];
  47. }
  48. /* Returns the number of the first CPU on Node 'node'. */
  49. static inline int node_to_first_cpu(int node)
  50. {
  51. cpumask_t mask = node_to_cpumask(node);
  52. return first_cpu(mask);
  53. }
  54. #define pcibus_to_node(bus) ((long) (bus)->sysdata)
  55. #define pcibus_to_cpumask(bus) node_to_cpumask(pcibus_to_node(bus))
  56. /* sched_domains SD_NODE_INIT for NUMAQ machines */
  57. #define SD_NODE_INIT (struct sched_domain) { \
  58. .span = CPU_MASK_NONE, \
  59. .parent = NULL, \
  60. .groups = NULL, \
  61. .min_interval = 8, \
  62. .max_interval = 32, \
  63. .busy_factor = 32, \
  64. .imbalance_pct = 125, \
  65. .cache_nice_tries = 1, \
  66. .busy_idx = 3, \
  67. .idle_idx = 1, \
  68. .newidle_idx = 2, \
  69. .wake_idx = 1, \
  70. .per_cpu_gain = 100, \
  71. .flags = SD_LOAD_BALANCE \
  72. | SD_BALANCE_EXEC \
  73. | SD_BALANCE_FORK \
  74. | SD_WAKE_BALANCE, \
  75. .last_balance = jiffies, \
  76. .balance_interval = 1, \
  77. .nr_balance_failed = 0, \
  78. }
  79. extern unsigned long node_start_pfn[];
  80. extern unsigned long node_end_pfn[];
  81. extern unsigned long node_remap_size[];
  82. #define node_has_online_mem(nid) (node_start_pfn[nid] != node_end_pfn[nid])
  83. #else /* !CONFIG_NUMA */
  84. /*
  85. * Other i386 platforms should define their own version of the
  86. * above macros here.
  87. */
  88. #include <asm-generic/topology.h>
  89. #endif /* CONFIG_NUMA */
  90. #endif /* _ASM_I386_TOPOLOGY_H */