sn_cpuid.h 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. /*
  2. *
  3. * This file is subject to the terms and conditions of the GNU General Public
  4. * License. See the file "COPYING" in the main directory of this archive
  5. * for more details.
  6. *
  7. * Copyright (C) 2000-2005 Silicon Graphics, Inc. All rights reserved.
  8. */
  9. #ifndef _ASM_IA64_SN_SN_CPUID_H
  10. #define _ASM_IA64_SN_SN_CPUID_H
  11. #include <linux/smp.h>
  12. #include <asm/sn/addrs.h>
  13. #include <asm/sn/pda.h>
  14. #include <asm/intrinsics.h>
  15. /*
  16. * Functions for converting between cpuids, nodeids and NASIDs.
  17. *
  18. * These are for SGI platforms only.
  19. *
  20. */
  21. /*
  22. * Definitions of terms (these definitions are for IA64 ONLY. Other architectures
  23. * use cpuid/cpunum quite defferently):
  24. *
  25. * CPUID - a number in range of 0..NR_CPUS-1 that uniquely identifies
  26. * the cpu. The value cpuid has no significance on IA64 other than
  27. * the boot cpu is 0.
  28. * smp_processor_id() returns the cpuid of the current cpu.
  29. *
  30. * CPU_PHYSICAL_ID (also known as HARD_PROCESSOR_ID)
  31. * This is the same as 31:24 of the processor LID register
  32. * hard_smp_processor_id()- cpu_physical_id of current processor
  33. * cpu_physical_id(cpuid) - convert a <cpuid> to a <physical_cpuid>
  34. * cpu_logical_id(phy_id) - convert a <physical_cpuid> to a <cpuid>
  35. * * not real efficient - don't use in perf critical code
  36. *
  37. * SLICE - a number in the range of 0 - 3 (typically) that represents the
  38. * cpu number on a brick.
  39. *
  40. * SUBNODE - (almost obsolete) the number of the FSB that a cpu is
  41. * connected to. This is also the same as the PI number. Usually 0 or 1.
  42. *
  43. * NOTE!!!: the value of the bits in the cpu physical id (SAPICid or LID) of a cpu has no
  44. * significance. The SAPIC id (LID) is a 16-bit cookie that has meaning only to the PROM.
  45. *
  46. *
  47. * The macros convert between cpu physical ids & slice/nasid/cnodeid.
  48. * These terms are described below:
  49. *
  50. *
  51. * Brick
  52. * ----- ----- ----- ----- CPU
  53. * | 0 | | 1 | | 0 | | 1 | SLICE
  54. * ----- ----- ----- -----
  55. * | | | |
  56. * | | | |
  57. * 0 | | 2 0 | | 2 FSB SLOT
  58. * ------- -------
  59. * | |
  60. * | |
  61. * | |
  62. * ------------ -------------
  63. * | | | |
  64. * | SHUB | | SHUB | NASID (0..MAX_NASIDS)
  65. * | |----- | | CNODEID (0..num_compact_nodes-1)
  66. * | | | |
  67. * | | | |
  68. * ------------ -------------
  69. * | |
  70. *
  71. *
  72. */
  73. #define get_node_number(addr) NASID_GET(addr)
  74. /*
  75. * NOTE: on non-MP systems, only cpuid 0 exists
  76. */
  77. extern short physical_node_map[]; /* indexed by nasid to get cnode */
  78. /*
  79. * Macros for retrieving info about current cpu
  80. */
  81. #define get_nasid() (sn_nodepda->phys_cpuid[smp_processor_id()].nasid)
  82. #define get_subnode() (sn_nodepda->phys_cpuid[smp_processor_id()].subnode)
  83. #define get_slice() (sn_nodepda->phys_cpuid[smp_processor_id()].slice)
  84. #define get_cnode() (sn_nodepda->phys_cpuid[smp_processor_id()].cnode)
  85. #define get_sapicid() ((ia64_getreg(_IA64_REG_CR_LID) >> 16) & 0xffff)
  86. /*
  87. * Macros for retrieving info about an arbitrary cpu
  88. * cpuid - logical cpu id
  89. */
  90. #define cpuid_to_nasid(cpuid) (sn_nodepda->phys_cpuid[cpuid].nasid)
  91. #define cpuid_to_subnode(cpuid) (sn_nodepda->phys_cpuid[cpuid].subnode)
  92. #define cpuid_to_slice(cpuid) (sn_nodepda->phys_cpuid[cpuid].slice)
  93. /*
  94. * Dont use the following in performance critical code. They require scans
  95. * of potentially large tables.
  96. */
  97. extern int nasid_slice_to_cpuid(int, int);
  98. /*
  99. * cnodeid_to_nasid - convert a cnodeid to a NASID
  100. */
  101. #define cnodeid_to_nasid(cnodeid) (sn_cnodeid_to_nasid[cnodeid])
  102. /*
  103. * nasid_to_cnodeid - convert a NASID to a cnodeid
  104. */
  105. #define nasid_to_cnodeid(nasid) (physical_node_map[nasid])
  106. /*
  107. * partition_coherence_id - get the coherence ID of the current partition
  108. */
  109. extern u8 sn_coherency_id;
  110. #define partition_coherence_id() (sn_coherency_id)
  111. #endif /* _ASM_IA64_SN_SN_CPUID_H */