Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | * |
Dean Nelson | 2e34f07 | 2005-03-21 19:41:00 -0700 | [diff] [blame] | 7 | * Copyright (C) 2000-2005 Silicon Graphics, Inc. All rights reserved. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | */ |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | #define get_node_number(addr) NASID_GET(addr) |
| 85 | |
| 86 | /* |
| 87 | * NOTE: on non-MP systems, only cpuid 0 exists |
| 88 | */ |
| 89 | |
Dean Nelson | 9b48b46 | 2005-03-22 16:00:00 -0700 | [diff] [blame] | 90 | extern short physical_node_map[]; /* indexed by nasid to get cnode */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | |
| 92 | /* |
| 93 | * Macros for retrieving info about current cpu |
| 94 | */ |
Dean Nelson | 9b48b46 | 2005-03-22 16:00:00 -0700 | [diff] [blame] | 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) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | |
| 101 | /* |
| 102 | * Macros for retrieving info about an arbitrary cpu |
| 103 | * cpuid - logical cpu id |
| 104 | */ |
Dean Nelson | 9b48b46 | 2005-03-22 16:00:00 -0700 | [diff] [blame] | 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) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | |
| 109 | |
| 110 | /* |
| 111 | * Dont use the following in performance critical code. They require scans |
| 112 | * of potentially large tables. |
| 113 | */ |
| 114 | extern int nasid_slice_to_cpuid(int, int); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | |
| 116 | /* |
| 117 | * cnodeid_to_nasid - convert a cnodeid to a NASID |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | */ |
Dean Nelson | 2e34f07 | 2005-03-21 19:41:00 -0700 | [diff] [blame] | 119 | #define cnodeid_to_nasid(cnodeid) (sn_cnodeid_to_nasid[cnodeid]) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | |
| 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 | */ |
| 129 | extern u8 sn_coherency_id; |
| 130 | #define partition_coherence_id() (sn_coherency_id) |
| 131 | |
| 132 | #endif /* _ASM_IA64_SN_SN_CPUID_H */ |
| 133 | |