blob: 749deb2ca6c1fe1dd530242c455ad36488399f99 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 *
Dean Nelson2e34f072005-03-21 19:41:00 -07007 * Copyright (C) 2000-2005 Silicon Graphics, Inc. All rights reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 */
9
10
11#ifndef _ASM_IA64_SN_SN_CPUID_H
12#define _ASM_IA64_SN_SN_CPUID_H
13
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>
19
20
21/*
22 * Functions for converting between cpuids, nodeids and NASIDs.
23 *
24 * These are for SGI platforms only.
25 *
26 */
27
28
29
30
31/*
32 * Definitions of terms (these definitions are for IA64 ONLY. Other architectures
33 * use cpuid/cpunum quite defferently):
34 *
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.
39 *
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
46 *
47 * SLICE - a number in the range of 0 - 3 (typically) that represents the
48 * cpu number on a brick.
49 *
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.
52 *
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.
55 *
56 *
57 * The macros convert between cpu physical ids & slice/nasid/cnodeid.
58 * These terms are described below:
59 *
60 *
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 * | |
80 *
81 *
82 */
83
Linus Torvalds1da177e2005-04-16 15:20:36 -070084#define get_node_number(addr) NASID_GET(addr)
85
86/*
87 * NOTE: on non-MP systems, only cpuid 0 exists
88 */
89
Dean Nelson9b48b462005-03-22 16:00:00 -070090extern short physical_node_map[]; /* indexed by nasid to get cnode */
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
92/*
93 * Macros for retrieving info about current cpu
94 */
Dean Nelson9b48b462005-03-22 16:00:00 -070095#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)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
101/*
102 * Macros for retrieving info about an arbitrary cpu
103 * cpuid - logical cpu id
104 */
Dean Nelson9b48b462005-03-22 16:00:00 -0700105#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)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
109
110/*
111 * Dont use the following in performance critical code. They require scans
112 * of potentially large tables.
113 */
114extern int nasid_slice_to_cpuid(int, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
116/*
117 * cnodeid_to_nasid - convert a cnodeid to a NASID
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 */
Dean Nelson2e34f072005-03-21 19:41:00 -0700119#define cnodeid_to_nasid(cnodeid) (sn_cnodeid_to_nasid[cnodeid])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
121/*
122 * nasid_to_cnodeid - convert a NASID to a cnodeid
123 */
124#define nasid_to_cnodeid(nasid) (physical_node_map[nasid])
125
126/*
127 * partition_coherence_id - get the coherence ID of the current partition
128 */
129extern u8 sn_coherency_id;
130#define partition_coherence_id() (sn_coherency_id)
131
132#endif /* _ASM_IA64_SN_SN_CPUID_H */
133