blob: 6e28dbe818ab122d32dbecd9a03b569f04cb5894 [file] [log] [blame]
Changbin Du848942c2019-05-08 23:21:17 +08001.. SPDX-License-Identifier: GPL-2.0
2
3============
Borislav Petkovf7be8612016-03-28 11:56:09 +02004x86 Topology
5============
6
7This documents and clarifies the main aspects of x86 topology modelling and
8representation in the kernel. Update/change when doing changes to the
9respective code.
10
11The architecture-agnostic topology definitions are in
12Documentation/cputopology.txt. This file holds x86-specific
13differences/specialities which must not necessarily apply to the generic
14definitions. Thus, the way to read up on Linux topology on x86 is to start
15with the generic one and look at this one in parallel for the x86 specifics.
16
17Needless to say, code should use the generic functions - this file is *only*
18here to *document* the inner workings of x86 topology.
19
20Started by Thomas Gleixner <tglx@linutronix.de> and Borislav Petkov <bp@alien8.de>.
21
22The main aim of the topology facilities is to present adequate interfaces to
23code which needs to know/query/use the structure of the running system wrt
24threads, cores, packages, etc.
25
26The kernel does not care about the concept of physical sockets because a
27socket has no relevance to software. It's an electromechanical component. In
28the past a socket always contained a single package (see below), but with the
29advent of Multi Chip Modules (MCM) a socket can hold more than one package. So
30there might be still references to sockets in the code, but they are of
31historical nature and should be cleaned up.
32
33The topology of a system is described in the units of:
34
35 - packages
36 - cores
37 - threads
38
Changbin Du848942c2019-05-08 23:21:17 +080039Package
40=======
41Packages contain a number of cores plus shared resources, e.g. DRAM
42controller, shared caches etc.
Borislav Petkovf7be8612016-03-28 11:56:09 +020043
Changbin Du848942c2019-05-08 23:21:17 +080044AMD nomenclature for package is 'Node'.
Borislav Petkovf7be8612016-03-28 11:56:09 +020045
Changbin Du848942c2019-05-08 23:21:17 +080046Package-related topology information in the kernel:
Borislav Petkovf7be8612016-03-28 11:56:09 +020047
48 - cpuinfo_x86.x86_max_cores:
49
50 The number of cores in a package. This information is retrieved via CPUID.
51
52 - cpuinfo_x86.phys_proc_id:
53
54 The physical ID of the package. This information is retrieved via CPUID
55 and deduced from the APIC IDs of the cores in the package.
56
Len Brownef7c7722019-02-26 01:19:59 -050057 - cpuinfo_x86.logical_proc_id:
Borislav Petkovf7be8612016-03-28 11:56:09 +020058
59 The logical ID of the package. As we do not trust BIOSes to enumerate the
60 packages in a consistent way, we introduced the concept of logical package
61 ID so we can sanely calculate the number of maximum possible packages in
62 the system and have the packages enumerated linearly.
63
64 - topology_max_packages():
65
66 The maximum possible number of packages in the system. Helpful for per
67 package facilities to preallocate per package information.
68
Borislav Petkova268b5f2016-11-17 10:45:57 +010069 - cpu_llc_id:
70
71 A per-CPU variable containing:
Borislav Petkova268b5f2016-11-17 10:45:57 +010072
Changbin Du848942c2019-05-08 23:21:17 +080073 - On Intel, the first APIC ID of the list of CPUs sharing the Last Level
74 Cache
Borislav Petkovf7be8612016-03-28 11:56:09 +020075
Changbin Du848942c2019-05-08 23:21:17 +080076 - On AMD, the Node ID or Core Complex ID containing the Last Level
77 Cache. In general, it is a number identifying an LLC uniquely on the
78 system.
Borislav Petkovf7be8612016-03-28 11:56:09 +020079
Changbin Du848942c2019-05-08 23:21:17 +080080Cores
81=====
82A core consists of 1 or more threads. It does not matter whether the threads
83are SMT- or CMT-type threads.
Borislav Petkovf7be8612016-03-28 11:56:09 +020084
Changbin Du848942c2019-05-08 23:21:17 +080085AMDs nomenclature for a CMT core is "Compute Unit". The kernel always uses
86"core".
Borislav Petkovf7be8612016-03-28 11:56:09 +020087
Changbin Du848942c2019-05-08 23:21:17 +080088Core-related topology information in the kernel:
Borislav Petkovf7be8612016-03-28 11:56:09 +020089
90 - smp_num_siblings:
91
92 The number of threads in a core. The number of threads in a package can be
Changbin Du848942c2019-05-08 23:21:17 +080093 calculated by::
Borislav Petkovf7be8612016-03-28 11:56:09 +020094
95 threads_per_package = cpuinfo_x86.x86_max_cores * smp_num_siblings
96
97
Changbin Du848942c2019-05-08 23:21:17 +080098Threads
99=======
100A thread is a single scheduling unit. It's the equivalent to a logical Linux
101CPU.
Borislav Petkovf7be8612016-03-28 11:56:09 +0200102
Changbin Du848942c2019-05-08 23:21:17 +0800103AMDs nomenclature for CMT threads is "Compute Unit Core". The kernel always
104uses "thread".
Borislav Petkovf7be8612016-03-28 11:56:09 +0200105
Changbin Du848942c2019-05-08 23:21:17 +0800106Thread-related topology information in the kernel:
Borislav Petkovf7be8612016-03-28 11:56:09 +0200107
108 - topology_core_cpumask():
109
110 The cpumask contains all online threads in the package to which a thread
111 belongs.
112
113 The number of online threads is also printed in /proc/cpuinfo "siblings."
114
Dou Liyang0c52f7c2018-02-22 16:48:12 +0800115 - topology_sibling_cpumask():
Borislav Petkovf7be8612016-03-28 11:56:09 +0200116
117 The cpumask contains all online threads in the core to which a thread
118 belongs.
119
Changbin Du848942c2019-05-08 23:21:17 +0800120 - topology_logical_package_id():
Borislav Petkovf7be8612016-03-28 11:56:09 +0200121
122 The logical package ID to which a thread belongs.
123
Changbin Du848942c2019-05-08 23:21:17 +0800124 - topology_physical_package_id():
Borislav Petkovf7be8612016-03-28 11:56:09 +0200125
126 The physical package ID to which a thread belongs.
127
Changbin Du848942c2019-05-08 23:21:17 +0800128 - topology_core_id();
Borislav Petkovf7be8612016-03-28 11:56:09 +0200129
130 The ID of the core to which a thread belongs. It is also printed in /proc/cpuinfo
131 "core_id."
132
133
134
135System topology examples
Changbin Du848942c2019-05-08 23:21:17 +0800136========================
Borislav Petkovf7be8612016-03-28 11:56:09 +0200137
Changbin Du848942c2019-05-08 23:21:17 +0800138.. note::
139 The alternative Linux CPU enumeration depends on how the BIOS enumerates the
140 threads. Many BIOSes enumerate all threads 0 first and then all threads 1.
141 That has the "advantage" that the logical Linux CPU numbers of threads 0 stay
142 the same whether threads are enabled or not. That's merely an implementation
143 detail and has no practical impact.
Borislav Petkovf7be8612016-03-28 11:56:09 +0200144
Changbin Du848942c2019-05-08 23:21:17 +08001451) Single Package, Single Core::
Borislav Petkovf7be8612016-03-28 11:56:09 +0200146
147 [package 0] -> [core 0] -> [thread 0] -> Linux CPU 0
148
1492) Single Package, Dual Core
150
Changbin Du848942c2019-05-08 23:21:17 +0800151 a) One thread per core::
Borislav Petkovf7be8612016-03-28 11:56:09 +0200152
153 [package 0] -> [core 0] -> [thread 0] -> Linux CPU 0
154 -> [core 1] -> [thread 0] -> Linux CPU 1
155
Changbin Du848942c2019-05-08 23:21:17 +0800156 b) Two threads per core::
Borislav Petkovf7be8612016-03-28 11:56:09 +0200157
158 [package 0] -> [core 0] -> [thread 0] -> Linux CPU 0
159 -> [thread 1] -> Linux CPU 1
160 -> [core 1] -> [thread 0] -> Linux CPU 2
161 -> [thread 1] -> Linux CPU 3
162
Changbin Du848942c2019-05-08 23:21:17 +0800163 Alternative enumeration::
Borislav Petkovf7be8612016-03-28 11:56:09 +0200164
165 [package 0] -> [core 0] -> [thread 0] -> Linux CPU 0
166 -> [thread 1] -> Linux CPU 2
167 -> [core 1] -> [thread 0] -> Linux CPU 1
168 -> [thread 1] -> Linux CPU 3
169
Changbin Du848942c2019-05-08 23:21:17 +0800170 AMD nomenclature for CMT systems::
Borislav Petkovf7be8612016-03-28 11:56:09 +0200171
172 [node 0] -> [Compute Unit 0] -> [Compute Unit Core 0] -> Linux CPU 0
173 -> [Compute Unit Core 1] -> Linux CPU 1
174 -> [Compute Unit 1] -> [Compute Unit Core 0] -> Linux CPU 2
175 -> [Compute Unit Core 1] -> Linux CPU 3
176
1774) Dual Package, Dual Core
178
Changbin Du848942c2019-05-08 23:21:17 +0800179 a) One thread per core::
Borislav Petkovf7be8612016-03-28 11:56:09 +0200180
181 [package 0] -> [core 0] -> [thread 0] -> Linux CPU 0
182 -> [core 1] -> [thread 0] -> Linux CPU 1
183
184 [package 1] -> [core 0] -> [thread 0] -> Linux CPU 2
185 -> [core 1] -> [thread 0] -> Linux CPU 3
186
Changbin Du848942c2019-05-08 23:21:17 +0800187 b) Two threads per core::
Borislav Petkovf7be8612016-03-28 11:56:09 +0200188
189 [package 0] -> [core 0] -> [thread 0] -> Linux CPU 0
190 -> [thread 1] -> Linux CPU 1
191 -> [core 1] -> [thread 0] -> Linux CPU 2
192 -> [thread 1] -> Linux CPU 3
193
194 [package 1] -> [core 0] -> [thread 0] -> Linux CPU 4
195 -> [thread 1] -> Linux CPU 5
196 -> [core 1] -> [thread 0] -> Linux CPU 6
197 -> [thread 1] -> Linux CPU 7
198
Changbin Du848942c2019-05-08 23:21:17 +0800199 Alternative enumeration::
Borislav Petkovf7be8612016-03-28 11:56:09 +0200200
201 [package 0] -> [core 0] -> [thread 0] -> Linux CPU 0
202 -> [thread 1] -> Linux CPU 4
203 -> [core 1] -> [thread 0] -> Linux CPU 1
204 -> [thread 1] -> Linux CPU 5
205
206 [package 1] -> [core 0] -> [thread 0] -> Linux CPU 2
207 -> [thread 1] -> Linux CPU 6
208 -> [core 1] -> [thread 0] -> Linux CPU 3
209 -> [thread 1] -> Linux CPU 7
210
Changbin Du848942c2019-05-08 23:21:17 +0800211 AMD nomenclature for CMT systems::
Borislav Petkovf7be8612016-03-28 11:56:09 +0200212
213 [node 0] -> [Compute Unit 0] -> [Compute Unit Core 0] -> Linux CPU 0
214 -> [Compute Unit Core 1] -> Linux CPU 1
215 -> [Compute Unit 1] -> [Compute Unit Core 0] -> Linux CPU 2
216 -> [Compute Unit Core 1] -> Linux CPU 3
217
218 [node 1] -> [Compute Unit 0] -> [Compute Unit Core 0] -> Linux CPU 4
219 -> [Compute Unit Core 1] -> Linux CPU 5
220 -> [Compute Unit 1] -> [Compute Unit Core 0] -> Linux CPU 6
221 -> [Compute Unit Core 1] -> Linux CPU 7