IB: Whitespace cleanups
[linux-2.6/verdex.git] / include / asm-ia64 / sn / sn_cpuid.h
blob749deb2ca6c1fe1dd530242c455ad36488399f99
1 /*
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.
7 * Copyright (C) 2000-2005 Silicon Graphics, Inc. All rights reserved.
8 */
11 #ifndef _ASM_IA64_SN_SN_CPUID_H
12 #define _ASM_IA64_SN_SN_CPUID_H
14 #include <linux/config.h>
15 #include <linux/smp.h>
16 #include <asm/sn/addrs.h>
17 #include <asm/sn/pda.h>
18 #include <asm/intrinsics.h>
22 * Functions for converting between cpuids, nodeids and NASIDs.
24 * These are for SGI platforms only.
32 * Definitions of terms (these definitions are for IA64 ONLY. Other architectures
33 * use cpuid/cpunum quite defferently):
35 * CPUID - a number in range of 0..NR_CPUS-1 that uniquely identifies
36 * the cpu. The value cpuid has no significance on IA64 other than
37 * the boot cpu is 0.
38 * smp_processor_id() returns the cpuid of the current cpu.
40 * CPU_PHYSICAL_ID (also known as HARD_PROCESSOR_ID)
41 * This is the same as 31:24 of the processor LID register
42 * hard_smp_processor_id()- cpu_physical_id of current processor
43 * cpu_physical_id(cpuid) - convert a <cpuid> to a <physical_cpuid>
44 * cpu_logical_id(phy_id) - convert a <physical_cpuid> to a <cpuid>
45 * * not real efficient - don't use in perf critical code
47 * SLICE - a number in the range of 0 - 3 (typically) that represents the
48 * cpu number on a brick.
50 * SUBNODE - (almost obsolete) the number of the FSB that a cpu is
51 * connected to. This is also the same as the PI number. Usually 0 or 1.
53 * NOTE!!!: the value of the bits in the cpu physical id (SAPICid or LID) of a cpu has no
54 * significance. The SAPIC id (LID) is a 16-bit cookie that has meaning only to the PROM.
57 * The macros convert between cpu physical ids & slice/nasid/cnodeid.
58 * These terms are described below:
61 * Brick
62 * ----- ----- ----- ----- CPU
63 * | 0 | | 1 | | 0 | | 1 | SLICE
64 * ----- ----- ----- -----
65 * | | | |
66 * | | | |
67 * 0 | | 2 0 | | 2 FSB SLOT
68 * ------- -------
69 * | |
70 * | |
71 * | |
72 * ------------ -------------
73 * | | | |
74 * | SHUB | | SHUB | NASID (0..MAX_NASIDS)
75 * | |----- | | CNODEID (0..num_compact_nodes-1)
76 * | | | |
77 * | | | |
78 * ------------ -------------
79 * | |
84 #define get_node_number(addr) NASID_GET(addr)
87 * NOTE: on non-MP systems, only cpuid 0 exists
90 extern short physical_node_map[]; /* indexed by nasid to get cnode */
93 * Macros for retrieving info about current cpu
95 #define get_nasid() (sn_nodepda->phys_cpuid[smp_processor_id()].nasid)
96 #define get_subnode() (sn_nodepda->phys_cpuid[smp_processor_id()].subnode)
97 #define get_slice() (sn_nodepda->phys_cpuid[smp_processor_id()].slice)
98 #define get_cnode() (sn_nodepda->phys_cpuid[smp_processor_id()].cnode)
99 #define get_sapicid() ((ia64_getreg(_IA64_REG_CR_LID) >> 16) & 0xffff)
102 * Macros for retrieving info about an arbitrary cpu
103 * cpuid - logical cpu id
105 #define cpuid_to_nasid(cpuid) (sn_nodepda->phys_cpuid[cpuid].nasid)
106 #define cpuid_to_subnode(cpuid) (sn_nodepda->phys_cpuid[cpuid].subnode)
107 #define cpuid_to_slice(cpuid) (sn_nodepda->phys_cpuid[cpuid].slice)
111 * Dont use the following in performance critical code. They require scans
112 * of potentially large tables.
114 extern int nasid_slice_to_cpuid(int, int);
117 * cnodeid_to_nasid - convert a cnodeid to a NASID
119 #define cnodeid_to_nasid(cnodeid) (sn_cnodeid_to_nasid[cnodeid])
122 * nasid_to_cnodeid - convert a NASID to a cnodeid
124 #define nasid_to_cnodeid(nasid) (physical_node_map[nasid])
127 * partition_coherence_id - get the coherence ID of the current partition
129 extern u8 sn_coherency_id;
130 #define partition_coherence_id() (sn_coherency_id)
132 #endif /* _ASM_IA64_SN_SN_CPUID_H */